Skip to content

Instantly share code, notes, and snippets.

@mauro3

mauro3/#README Secret

Last active May 21, 2019 13:10
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 mauro3/6089af612380cb39ca00016d4f632cc2 to your computer and use it in GitHub Desktop.
Save mauro3/6089af612380cb39ca00016d4f632cc2 to your computer and use it in GitHub Desktop.
Julia-Intro
From
https://github.com/JuliaComputing/JuliaBoxTutorials/tree/master/introductory-tutorials/intro-to-julia/short-version
lightly adapted.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Julia is fast\n",
"\n",
"Very often, benchmarks are used to compare languages. These benchmarks can lead to long discussions, first as to exactly what is being benchmarked and secondly what explains the differences. These simple questions can sometimes get more complicated than you at first might imagine.\n",
"\n",
"The purpose of this notebook is for you to see a simple benchmark for yourself. One can read the notebook and see what happened on the author's Macbook Pro with a 4-core Intel Core I7, or run the notebook yourself.\n",
"\n",
"(This material began life as a wonderful lecture by Steven Johnson at MIT: https://github.com/stevengj/18S096/blob/master/lectures/lecture1/Boxes-and-registers.ipynb.)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Outline of this notebook\n",
"\n",
"- Define the sum function\n",
"- Implementations & benchmarking of sum in...\n",
" - C (hand-written)\n",
" - C (hand-written with -ffast-math)\n",
" - python (built-in)\n",
" - python (numpy)\n",
" - python (hand-written)\n",
" - Julia (built-in)\n",
" - Julia (hand-written)\n",
" - Julia (hand-written with SIMD)\n",
"- Summary of benchmarks"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# `sum`: An easy enough function to understand"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Consider the **sum** function `sum(a)`, which computes\n",
"$$\n",
"\\mathrm{sum}(a) = \\sum_{i=1}^n a_i,\n",
"$$\n",
"where $n$ is the length of `a`."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"10000000-element Array{Float64,1}:\n",
" 0.29537308739291657 \n",
" 0.6222946431219714 \n",
" 0.994901236995569 \n",
" 0.8423773757016357 \n",
" 0.376362069462733 \n",
" 0.8878365850980467 \n",
" 0.5479896278606624 \n",
" 0.5292467771845317 \n",
" 0.1587866913317426 \n",
" 0.7289068946404345 \n",
" 0.3316223201559607 \n",
" 0.07231933734350471 \n",
" 0.082867557700953 \n",
" ⋮ \n",
" 0.8877975347567155 \n",
" 0.05052784236033103 \n",
" 0.1575147170030966 \n",
" 0.7142387156192505 \n",
" 0.3371085457226555 \n",
" 0.24799745462979916 \n",
" 0.4302614718615332 \n",
" 0.19020630043223075 \n",
" 0.8811645437498168 \n",
" 0.022302398214089303\n",
" 0.8928006901655872 \n",
" 0.09523210998675635 "
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"a = rand(10^7) # 1D vector of random numbers, uniform on [0,1)"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5.00129166729673e6"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sum(a)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The expected result is 0.5 * 10^7, since the mean of each entry is 0.5"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Benchmarking a few ways in a few languages"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 0.005898 seconds (5 allocations: 176 bytes)\n"
]
},
{
"data": {
"text/plain": [
"5.00129166729673e6"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@time sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 0.006157 seconds (5 allocations: 176 bytes)\n"
]
},
{
"data": {
"text/plain": [
"5.00129166729673e6"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@time sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 0.006957 seconds (5 allocations: 176 bytes)\n"
]
},
{
"data": {
"text/plain": [
"5.00129166729673e6"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@time sum(a)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The `@time` macro can yield noisy results, so it's not our best choice for benchmarking!\n",
"\n",
"Luckily, Julia has a `BenchmarkTools.jl` package to make benchmarking easy and accurate:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# using Pkg\n",
"# Pkg.add(\"BenchmarkTools\")"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"scrolled": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 4.436 ms (0 allocations: 0 bytes)\n"
]
},
{
"data": {
"text/plain": [
"5.00129166729673e6"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using BenchmarkTools \n",
"@btime sum($a)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 1. The C language\n",
"\n",
"C is often considered the gold standard: difficult on the human, nice for the machine. Getting within a factor of 2 of C is often satisfying. Nonetheless, even within C, there are many kinds of optimizations possible that a naive C writer may or may not get the advantage of.\n",
"\n",
"The current author does not speak C, so he does not read the cell below, but is happy to know that you can put C code in a Julia session, compile it, and run it. Note that the `\"\"\"` wrap a multi-line string."
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"c_sum (generic function with 1 method)"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Libdl\n",
"C_code = \"\"\"\n",
"#include <stddef.h>\n",
"double c_sum(size_t n, double *X) {\n",
" double s = 0.0;\n",
" for (size_t i = 0; i < n; ++i) {\n",
" s += X[i];\n",
" }\n",
" return s;\n",
"}\n",
"\"\"\"\n",
"\n",
"const Clib = tempname() # make a temporary file\n",
"\n",
"\n",
"# compile to a shared library by piping C_code to gcc\n",
"# (works only if you have gcc installed):\n",
"\n",
"open(`gcc -fPIC -O3 -msse3 -xc -shared -o $(Clib * \".\" * Libdl.dlext) -`, \"w\") do f\n",
" print(f, C_code) \n",
"end\n",
"\n",
"# define a Julia function that calls the C function:\n",
"c_sum(X::Array{Float64}) = ccall((\"c_sum\", Clib), Float64, (Csize_t, Ptr{Float64}), length(X), X)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"5.001291667296473e6"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"c_sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"true"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"c_sum(a) ≈ sum(a) # type \\approx and then <TAB> to get the ≈ symbolb"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"c_sum(a) - sum(a) "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"≈ # alias for the `isapprox` function"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"?isapprox"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can now benchmark the C code directly from Julia:"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 0 bytes\n",
" allocs estimate: 0\n",
" --------------\n",
" minimum time: 8.652 ms (0.00% GC)\n",
" median time: 8.772 ms (0.00% GC)\n",
" mean time: 8.812 ms (0.00% GC)\n",
" maximum time: 9.737 ms (0.00% GC)\n",
" --------------\n",
" samples: 567\n",
" evals/sample: 1"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"c_bench = @benchmark c_sum($a)"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"scrolled": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"C: Fastest time was 8.652178 msec\n"
]
}
],
"source": [
"println(\"C: Fastest time was $(minimum(c_bench.times) / 1e6) msec\")"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 1 entry:\n",
" \"C\" => 8.65218"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d = Dict() # a \"dictionary\", i.e. an associative array\n",
"d[\"C\"] = minimum(c_bench.times) / 1e6 # in milliseconds\n",
"d"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Plots.GRBackend()"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Plots\n",
"gr()"
]
},
{
"cell_type": "code",
"execution_count": 21,
"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=\"clip5400\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5400)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5401\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5400)\" points=\"\n",
"211.005,1440.48 2321.26,1440.48 2321.26,47.2441 211.005,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5402\">\n",
" <rect x=\"211\" y=\"47\" width=\"2111\" height=\"1394\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 454.272,1440.48 454.272,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 727.267,1440.48 727.267,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1000.26,1440.48 1000.26,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1273.26,1440.48 1273.26,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1546.25,1440.48 1546.25,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1819.25,1440.48 1819.25,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2092.25,1440.48 2092.25,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,1401.05 2321.26,1401.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,1198.84 2321.26,1198.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,996.628 2321.26,996.628 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,794.416 2321.26,794.416 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,592.205 2321.26,592.205 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,389.993 2321.26,389.993 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 211.005,187.781 2321.26,187.781 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,1440.48 2321.26,1440.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,1440.48 211.005,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 454.272,1440.48 454.272,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 727.267,1440.48 727.267,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1000.26,1440.48 1000.26,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1273.26,1440.48 1273.26,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1546.25,1440.48 1546.25,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1819.25,1440.48 1819.25,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2092.25,1440.48 2092.25,1419.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,1401.05 242.659,1401.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,1198.84 242.659,1198.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,996.628 242.659,996.628 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,794.416 242.659,794.416 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,592.205 242.659,592.205 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,389.993 242.659,389.993 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 211.005,187.781 242.659,187.781 \n",
" \"/>\n",
"<g clip-path=\"url(#clip5400)\">\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, 454.272, 1494.48)\" x=\"454.272\" y=\"1494.48\">8.66</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 727.267, 1494.48)\" x=\"727.267\" y=\"1494.48\">8.68</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 1000.26, 1494.48)\" x=\"1000.26\" y=\"1494.48\">8.70</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 1273.26, 1494.48)\" x=\"1273.26\" y=\"1494.48\">8.72</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 1546.25, 1494.48)\" x=\"1546.25\" y=\"1494.48\">8.74</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 1819.25, 1494.48)\" x=\"1819.25\" y=\"1494.48\">8.76</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 2092.25, 1494.48)\" x=\"2092.25\" y=\"1494.48\">8.78</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 1418.55)\" x=\"187.005\" y=\"1418.55\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 1216.34)\" x=\"187.005\" y=\"1216.34\">2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 1014.13)\" x=\"187.005\" y=\"1014.13\">4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 811.916)\" x=\"187.005\" y=\"811.916\">6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 609.705)\" x=\"187.005\" y=\"609.705\">8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 407.493)\" x=\"187.005\" y=\"407.493\">10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\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, 187.005, 205.281)\" x=\"187.005\" y=\"205.281\">12</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;\" transform=\"rotate(0, 1266.13, 1590.4)\" x=\"1266.13\" y=\"1590.4\">milliseconds</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5400)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;\" transform=\"rotate(-90, 57.6, 743.863)\" x=\"57.6\" y=\"743.863\">count</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"345.073,1299.95 345.073,1401.05 372.373,1401.05 372.373,1299.95 345.073,1299.95 345.073,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 345.073,1299.95 345.073,1401.05 372.373,1401.05 372.373,1299.95 345.073,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"372.373,1097.73 372.373,1401.05 399.672,1401.05 399.672,1097.73 372.373,1097.73 372.373,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 372.373,1097.73 372.373,1401.05 399.672,1401.05 399.672,1097.73 372.373,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"399.672,1299.95 399.672,1401.05 426.972,1401.05 426.972,1299.95 399.672,1299.95 399.672,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 399.672,1299.95 399.672,1401.05 426.972,1401.05 426.972,1299.95 399.672,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"426.972,1097.73 426.972,1401.05 454.272,1401.05 454.272,1097.73 426.972,1097.73 426.972,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 426.972,1097.73 426.972,1401.05 454.272,1401.05 454.272,1097.73 426.972,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"454.272,1299.95 454.272,1401.05 481.571,1401.05 481.571,1299.95 454.272,1299.95 454.272,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 454.272,1299.95 454.272,1401.05 481.571,1401.05 481.571,1299.95 454.272,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"481.571,1299.95 481.571,1401.05 508.871,1401.05 508.871,1299.95 481.571,1299.95 481.571,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 481.571,1299.95 481.571,1401.05 508.871,1401.05 508.871,1299.95 481.571,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"508.871,1299.95 508.871,1401.05 536.17,1401.05 536.17,1299.95 508.871,1299.95 508.871,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 508.871,1299.95 508.871,1401.05 536.17,1401.05 536.17,1299.95 508.871,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"536.17,1401.05 536.17,1401.05 563.47,1401.05 563.47,1401.05 536.17,1401.05 536.17,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 536.17,1401.05 536.17,1401.05 563.47,1401.05 536.17,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"563.47,1097.73 563.47,1401.05 590.769,1401.05 590.769,1097.73 563.47,1097.73 563.47,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 563.47,1097.73 563.47,1401.05 590.769,1401.05 590.769,1097.73 563.47,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"590.769,1299.95 590.769,1401.05 618.069,1401.05 618.069,1299.95 590.769,1299.95 590.769,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 590.769,1299.95 590.769,1401.05 618.069,1401.05 618.069,1299.95 590.769,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"618.069,1097.73 618.069,1401.05 645.369,1401.05 645.369,1097.73 618.069,1097.73 618.069,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 618.069,1097.73 618.069,1401.05 645.369,1401.05 645.369,1097.73 618.069,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"645.369,996.628 645.369,1401.05 672.668,1401.05 672.668,996.628 645.369,996.628 645.369,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 645.369,996.628 645.369,1401.05 672.668,1401.05 672.668,996.628 645.369,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"672.668,1299.95 672.668,1401.05 699.968,1401.05 699.968,1299.95 672.668,1299.95 672.668,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 672.668,1299.95 672.668,1401.05 699.968,1401.05 699.968,1299.95 672.668,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"699.968,895.522 699.968,1401.05 727.267,1401.05 727.267,895.522 699.968,895.522 699.968,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 699.968,895.522 699.968,1401.05 727.267,1401.05 727.267,895.522 699.968,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"727.267,1198.84 727.267,1401.05 754.567,1401.05 754.567,1198.84 727.267,1198.84 727.267,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 727.267,1198.84 727.267,1401.05 754.567,1401.05 754.567,1198.84 727.267,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"754.567,1097.73 754.567,1401.05 781.867,1401.05 781.867,1097.73 754.567,1097.73 754.567,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 754.567,1097.73 754.567,1401.05 781.867,1401.05 781.867,1097.73 754.567,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"781.867,1299.95 781.867,1401.05 809.166,1401.05 809.166,1299.95 781.867,1299.95 781.867,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 781.867,1299.95 781.867,1401.05 809.166,1401.05 809.166,1299.95 781.867,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"809.166,895.522 809.166,1401.05 836.466,1401.05 836.466,895.522 809.166,895.522 809.166,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 809.166,895.522 809.166,1401.05 836.466,1401.05 836.466,895.522 809.166,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"836.466,996.628 836.466,1401.05 863.765,1401.05 863.765,996.628 836.466,996.628 836.466,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 836.466,996.628 836.466,1401.05 863.765,1401.05 863.765,996.628 836.466,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"863.765,895.522 863.765,1401.05 891.065,1401.05 891.065,895.522 863.765,895.522 863.765,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 863.765,895.522 863.765,1401.05 891.065,1401.05 891.065,895.522 863.765,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"891.065,1097.73 891.065,1401.05 918.364,1401.05 918.364,1097.73 891.065,1097.73 891.065,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 891.065,1097.73 891.065,1401.05 918.364,1401.05 918.364,1097.73 891.065,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"918.364,1299.95 918.364,1401.05 945.664,1401.05 945.664,1299.95 918.364,1299.95 918.364,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 918.364,1299.95 918.364,1401.05 945.664,1401.05 945.664,1299.95 918.364,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"945.664,996.628 945.664,1401.05 972.964,1401.05 972.964,996.628 945.664,996.628 945.664,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 945.664,996.628 945.664,1401.05 972.964,1401.05 972.964,996.628 945.664,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"972.964,895.522 972.964,1401.05 1000.26,1401.05 1000.26,895.522 972.964,895.522 972.964,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 972.964,895.522 972.964,1401.05 1000.26,1401.05 1000.26,895.522 972.964,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1000.26,996.628 1000.26,1401.05 1027.56,1401.05 1027.56,996.628 1000.26,996.628 1000.26,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1000.26,996.628 1000.26,1401.05 1027.56,1401.05 1027.56,996.628 1000.26,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1027.56,895.522 1027.56,1401.05 1054.86,1401.05 1054.86,895.522 1027.56,895.522 1027.56,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1027.56,895.522 1027.56,1401.05 1054.86,1401.05 1054.86,895.522 1027.56,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1054.86,895.522 1054.86,1401.05 1082.16,1401.05 1082.16,895.522 1054.86,895.522 1054.86,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1054.86,895.522 1054.86,1401.05 1082.16,1401.05 1082.16,895.522 1054.86,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1082.16,794.416 1082.16,1401.05 1109.46,1401.05 1109.46,794.416 1082.16,794.416 1082.16,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1082.16,794.416 1082.16,1401.05 1109.46,1401.05 1109.46,794.416 1082.16,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1109.46,693.31 1109.46,1401.05 1136.76,1401.05 1136.76,693.31 1109.46,693.31 1109.46,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1109.46,693.31 1109.46,1401.05 1136.76,1401.05 1136.76,693.31 1109.46,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1136.76,794.416 1136.76,1401.05 1164.06,1401.05 1164.06,794.416 1136.76,794.416 1136.76,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1136.76,794.416 1136.76,1401.05 1164.06,1401.05 1164.06,794.416 1136.76,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1164.06,693.31 1164.06,1401.05 1191.36,1401.05 1191.36,693.31 1164.06,693.31 1164.06,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1164.06,693.31 1164.06,1401.05 1191.36,1401.05 1191.36,693.31 1164.06,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1191.36,895.522 1191.36,1401.05 1218.66,1401.05 1218.66,895.522 1191.36,895.522 1191.36,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1191.36,895.522 1191.36,1401.05 1218.66,1401.05 1218.66,895.522 1191.36,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1218.66,1097.73 1218.66,1401.05 1245.96,1401.05 1245.96,1097.73 1218.66,1097.73 1218.66,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1218.66,1097.73 1218.66,1401.05 1245.96,1401.05 1245.96,1097.73 1218.66,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1245.96,1198.84 1245.96,1401.05 1273.26,1401.05 1273.26,1198.84 1245.96,1198.84 1245.96,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1245.96,1198.84 1245.96,1401.05 1273.26,1401.05 1273.26,1198.84 1245.96,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1273.26,592.205 1273.26,1401.05 1300.56,1401.05 1300.56,592.205 1273.26,592.205 1273.26,592.205 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1273.26,592.205 1273.26,1401.05 1300.56,1401.05 1300.56,592.205 1273.26,592.205 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1300.56,895.522 1300.56,1401.05 1327.86,1401.05 1327.86,895.522 1300.56,895.522 1300.56,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.56,895.522 1300.56,1401.05 1327.86,1401.05 1327.86,895.522 1300.56,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1327.86,895.522 1327.86,1401.05 1355.16,1401.05 1355.16,895.522 1327.86,895.522 1327.86,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.86,895.522 1327.86,1401.05 1355.16,1401.05 1355.16,895.522 1327.86,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1355.16,491.099 1355.16,1401.05 1382.46,1401.05 1382.46,491.099 1355.16,491.099 1355.16,491.099 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1355.16,491.099 1355.16,1401.05 1382.46,1401.05 1382.46,491.099 1355.16,491.099 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1382.46,592.205 1382.46,1401.05 1409.76,1401.05 1409.76,592.205 1382.46,592.205 1382.46,592.205 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.46,592.205 1382.46,1401.05 1409.76,1401.05 1409.76,592.205 1382.46,592.205 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1409.76,288.887 1409.76,1401.05 1437.06,1401.05 1437.06,288.887 1409.76,288.887 1409.76,288.887 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1409.76,288.887 1409.76,1401.05 1437.06,1401.05 1437.06,288.887 1409.76,288.887 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1437.06,996.628 1437.06,1401.05 1464.36,1401.05 1464.36,996.628 1437.06,996.628 1437.06,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1437.06,996.628 1437.06,1401.05 1464.36,1401.05 1464.36,996.628 1437.06,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1464.36,996.628 1464.36,1401.05 1491.66,1401.05 1491.66,996.628 1464.36,996.628 1464.36,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1464.36,996.628 1464.36,1401.05 1491.66,1401.05 1491.66,996.628 1464.36,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1491.66,794.416 1491.66,1401.05 1518.96,1401.05 1518.96,794.416 1491.66,794.416 1491.66,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1491.66,794.416 1491.66,1401.05 1518.96,1401.05 1518.96,794.416 1491.66,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1518.96,794.416 1518.96,1401.05 1546.25,1401.05 1546.25,794.416 1518.96,794.416 1518.96,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1518.96,794.416 1518.96,1401.05 1546.25,1401.05 1546.25,794.416 1518.96,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1546.25,288.887 1546.25,1401.05 1573.55,1401.05 1573.55,288.887 1546.25,288.887 1546.25,288.887 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1546.25,288.887 1546.25,1401.05 1573.55,1401.05 1573.55,288.887 1546.25,288.887 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1573.55,996.628 1573.55,1401.05 1600.85,1401.05 1600.85,996.628 1573.55,996.628 1573.55,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1573.55,996.628 1573.55,1401.05 1600.85,1401.05 1600.85,996.628 1573.55,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1600.85,996.628 1600.85,1401.05 1628.15,1401.05 1628.15,996.628 1600.85,996.628 1600.85,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1600.85,996.628 1600.85,1401.05 1628.15,1401.05 1628.15,996.628 1600.85,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1628.15,996.628 1628.15,1401.05 1655.45,1401.05 1655.45,996.628 1628.15,996.628 1628.15,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1628.15,996.628 1628.15,1401.05 1655.45,1401.05 1655.45,996.628 1628.15,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1655.45,794.416 1655.45,1401.05 1682.75,1401.05 1682.75,794.416 1655.45,794.416 1655.45,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1655.45,794.416 1655.45,1401.05 1682.75,1401.05 1682.75,794.416 1655.45,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1682.75,86.6754 1682.75,1401.05 1710.05,1401.05 1710.05,86.6754 1682.75,86.6754 1682.75,86.6754 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1682.75,86.6754 1682.75,1401.05 1710.05,1401.05 1710.05,86.6754 1682.75,86.6754 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1710.05,693.31 1710.05,1401.05 1737.35,1401.05 1737.35,693.31 1710.05,693.31 1710.05,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1710.05,693.31 1710.05,1401.05 1737.35,1401.05 1737.35,693.31 1710.05,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1737.35,794.416 1737.35,1401.05 1764.65,1401.05 1764.65,794.416 1737.35,794.416 1737.35,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1737.35,794.416 1737.35,1401.05 1764.65,1401.05 1764.65,794.416 1737.35,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1764.65,491.099 1764.65,1401.05 1791.95,1401.05 1791.95,491.099 1764.65,491.099 1764.65,491.099 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1764.65,491.099 1764.65,1401.05 1791.95,1401.05 1791.95,491.099 1764.65,491.099 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1791.95,996.628 1791.95,1401.05 1819.25,1401.05 1819.25,996.628 1791.95,996.628 1791.95,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1791.95,996.628 1791.95,1401.05 1819.25,1401.05 1819.25,996.628 1791.95,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1819.25,996.628 1819.25,1401.05 1846.55,1401.05 1846.55,996.628 1819.25,996.628 1819.25,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1819.25,996.628 1819.25,1401.05 1846.55,1401.05 1846.55,996.628 1819.25,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1846.55,491.099 1846.55,1401.05 1873.85,1401.05 1873.85,491.099 1846.55,491.099 1846.55,491.099 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1846.55,491.099 1846.55,1401.05 1873.85,1401.05 1873.85,491.099 1846.55,491.099 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1873.85,592.205 1873.85,1401.05 1901.15,1401.05 1901.15,592.205 1873.85,592.205 1873.85,592.205 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1873.85,592.205 1873.85,1401.05 1901.15,1401.05 1901.15,592.205 1873.85,592.205 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1901.15,996.628 1901.15,1401.05 1928.45,1401.05 1928.45,996.628 1901.15,996.628 1901.15,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.15,996.628 1901.15,1401.05 1928.45,1401.05 1928.45,996.628 1901.15,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1928.45,693.31 1928.45,1401.05 1955.75,1401.05 1955.75,693.31 1928.45,693.31 1928.45,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1928.45,693.31 1928.45,1401.05 1955.75,1401.05 1955.75,693.31 1928.45,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1955.75,794.416 1955.75,1401.05 1983.05,1401.05 1983.05,794.416 1955.75,794.416 1955.75,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1955.75,794.416 1955.75,1401.05 1983.05,1401.05 1983.05,794.416 1955.75,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"1983.05,895.522 1983.05,1401.05 2010.35,1401.05 2010.35,895.522 1983.05,895.522 1983.05,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1983.05,895.522 1983.05,1401.05 2010.35,1401.05 2010.35,895.522 1983.05,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2010.35,1097.73 2010.35,1401.05 2037.65,1401.05 2037.65,1097.73 2010.35,1097.73 2010.35,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2010.35,1097.73 2010.35,1401.05 2037.65,1401.05 2037.65,1097.73 2010.35,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2037.65,389.993 2037.65,1401.05 2064.95,1401.05 2064.95,389.993 2037.65,389.993 2037.65,389.993 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2037.65,389.993 2037.65,1401.05 2064.95,1401.05 2064.95,389.993 2037.65,389.993 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2064.95,895.522 2064.95,1401.05 2092.25,1401.05 2092.25,895.522 2064.95,895.522 2064.95,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2064.95,895.522 2064.95,1401.05 2092.25,1401.05 2092.25,895.522 2064.95,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2092.25,895.522 2092.25,1401.05 2119.55,1401.05 2119.55,895.522 2092.25,895.522 2092.25,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2092.25,895.522 2092.25,1401.05 2119.55,1401.05 2119.55,895.522 2092.25,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2119.55,592.205 2119.55,1401.05 2146.85,1401.05 2146.85,592.205 2119.55,592.205 2119.55,592.205 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2119.55,592.205 2119.55,1401.05 2146.85,1401.05 2146.85,592.205 2119.55,592.205 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2146.85,895.522 2146.85,1401.05 2174.15,1401.05 2174.15,895.522 2146.85,895.522 2146.85,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2146.85,895.522 2146.85,1401.05 2174.15,1401.05 2174.15,895.522 2146.85,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2174.15,491.099 2174.15,1401.05 2201.44,1401.05 2201.44,491.099 2174.15,491.099 2174.15,491.099 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2174.15,491.099 2174.15,1401.05 2201.44,1401.05 2201.44,491.099 2174.15,491.099 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2201.44,1097.73 2201.44,1401.05 2228.74,1401.05 2228.74,1097.73 2201.44,1097.73 2201.44,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2201.44,1097.73 2201.44,1401.05 2228.74,1401.05 2228.74,1097.73 2201.44,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2228.74,1097.73 2228.74,1401.05 2256.04,1401.05 2256.04,1097.73 2228.74,1097.73 2228.74,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2228.74,1097.73 2228.74,1401.05 2256.04,1401.05 2256.04,1097.73 2228.74,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2256.04,491.099 2256.04,1401.05 2283.34,1401.05 2283.34,491.099 2256.04,491.099 2256.04,491.099 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2256.04,491.099 2256.04,1401.05 2283.34,1401.05 2283.34,491.099 2256.04,491.099 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2283.34,1401.05 2283.34,1401.05 2310.64,1401.05 2310.64,1401.05 2283.34,1401.05 2283.34,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2283.34,1401.05 2283.34,1401.05 2310.64,1401.05 2283.34,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2310.64,1097.73 2310.64,1401.05 2337.94,1401.05 2337.94,1097.73 2310.64,1097.73 2310.64,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2310.64,1097.73 2310.64,1401.05 2337.94,1401.05 2337.94,1097.73 2310.64,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2337.94,693.31 2337.94,1401.05 2365.24,1401.05 2365.24,693.31 2337.94,693.31 2337.94,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2337.94,693.31 2337.94,1401.05 2365.24,1401.05 2365.24,693.31 2337.94,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2365.24,1097.73 2365.24,1401.05 2392.54,1401.05 2392.54,1097.73 2365.24,1097.73 2365.24,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2365.24,1097.73 2365.24,1401.05 2392.54,1401.05 2392.54,1097.73 2365.24,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2392.54,1097.73 2392.54,1401.05 2419.84,1401.05 2419.84,1097.73 2392.54,1097.73 2392.54,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2392.54,1097.73 2392.54,1401.05 2419.84,1401.05 2419.84,1097.73 2392.54,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2419.84,1097.73 2419.84,1401.05 2447.14,1401.05 2447.14,1097.73 2419.84,1097.73 2419.84,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2419.84,1097.73 2419.84,1401.05 2447.14,1401.05 2447.14,1097.73 2419.84,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2447.14,895.522 2447.14,1401.05 2474.44,1401.05 2474.44,895.522 2447.14,895.522 2447.14,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2447.14,895.522 2447.14,1401.05 2474.44,1401.05 2474.44,895.522 2447.14,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2474.44,693.31 2474.44,1401.05 2501.74,1401.05 2501.74,693.31 2474.44,693.31 2474.44,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2474.44,693.31 2474.44,1401.05 2501.74,1401.05 2501.74,693.31 2474.44,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2501.74,1097.73 2501.74,1401.05 2529.04,1401.05 2529.04,1097.73 2501.74,1097.73 2501.74,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2501.74,1097.73 2501.74,1401.05 2529.04,1401.05 2529.04,1097.73 2501.74,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2529.04,794.416 2529.04,1401.05 2556.34,1401.05 2556.34,794.416 2529.04,794.416 2529.04,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2529.04,794.416 2529.04,1401.05 2556.34,1401.05 2556.34,794.416 2529.04,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2556.34,895.522 2556.34,1401.05 2583.64,1401.05 2583.64,895.522 2556.34,895.522 2556.34,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2556.34,895.522 2556.34,1401.05 2583.64,1401.05 2583.64,895.522 2556.34,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2583.64,1097.73 2583.64,1401.05 2610.94,1401.05 2610.94,1097.73 2583.64,1097.73 2583.64,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2583.64,1097.73 2583.64,1401.05 2610.94,1401.05 2610.94,1097.73 2583.64,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2610.94,996.628 2610.94,1401.05 2638.24,1401.05 2638.24,996.628 2610.94,996.628 2610.94,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2610.94,996.628 2610.94,1401.05 2638.24,1401.05 2638.24,996.628 2610.94,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2638.24,1097.73 2638.24,1401.05 2665.54,1401.05 2665.54,1097.73 2638.24,1097.73 2638.24,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2638.24,1097.73 2638.24,1401.05 2665.54,1401.05 2665.54,1097.73 2638.24,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2665.54,996.628 2665.54,1401.05 2692.84,1401.05 2692.84,996.628 2665.54,996.628 2665.54,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2665.54,996.628 2665.54,1401.05 2692.84,1401.05 2692.84,996.628 2665.54,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2692.84,895.522 2692.84,1401.05 2720.14,1401.05 2720.14,895.522 2692.84,895.522 2692.84,895.522 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2692.84,895.522 2692.84,1401.05 2720.14,1401.05 2720.14,895.522 2692.84,895.522 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2720.14,794.416 2720.14,1401.05 2747.44,1401.05 2747.44,794.416 2720.14,794.416 2720.14,794.416 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2720.14,794.416 2720.14,1401.05 2747.44,1401.05 2747.44,794.416 2720.14,794.416 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2747.44,1198.84 2747.44,1401.05 2774.74,1401.05 2774.74,1198.84 2747.44,1198.84 2747.44,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2747.44,1198.84 2747.44,1401.05 2774.74,1401.05 2774.74,1198.84 2747.44,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2774.74,1097.73 2774.74,1401.05 2802.04,1401.05 2802.04,1097.73 2774.74,1097.73 2774.74,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2774.74,1097.73 2774.74,1401.05 2802.04,1401.05 2802.04,1097.73 2774.74,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2802.04,693.31 2802.04,1401.05 2829.34,1401.05 2829.34,693.31 2802.04,693.31 2802.04,693.31 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2802.04,693.31 2802.04,1401.05 2829.34,1401.05 2829.34,693.31 2802.04,693.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2829.34,1198.84 2829.34,1401.05 2856.63,1401.05 2856.63,1198.84 2829.34,1198.84 2829.34,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2829.34,1198.84 2829.34,1401.05 2856.63,1401.05 2856.63,1198.84 2829.34,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2856.63,1401.05 2856.63,1401.05 2883.93,1401.05 2883.93,1401.05 2856.63,1401.05 2856.63,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2856.63,1401.05 2856.63,1401.05 2883.93,1401.05 2856.63,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2883.93,1198.84 2883.93,1401.05 2911.23,1401.05 2911.23,1198.84 2883.93,1198.84 2883.93,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2883.93,1198.84 2883.93,1401.05 2911.23,1401.05 2911.23,1198.84 2883.93,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2911.23,1097.73 2911.23,1401.05 2938.53,1401.05 2938.53,1097.73 2911.23,1097.73 2911.23,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2911.23,1097.73 2911.23,1401.05 2938.53,1401.05 2938.53,1097.73 2911.23,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2938.53,1299.95 2938.53,1401.05 2965.83,1401.05 2965.83,1299.95 2938.53,1299.95 2938.53,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2938.53,1299.95 2938.53,1401.05 2965.83,1401.05 2965.83,1299.95 2938.53,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2965.83,1198.84 2965.83,1401.05 2993.13,1401.05 2993.13,1198.84 2965.83,1198.84 2965.83,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2965.83,1198.84 2965.83,1401.05 2993.13,1401.05 2993.13,1198.84 2965.83,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"2993.13,996.628 2993.13,1401.05 3020.43,1401.05 3020.43,996.628 2993.13,996.628 2993.13,996.628 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2993.13,996.628 2993.13,1401.05 3020.43,1401.05 3020.43,996.628 2993.13,996.628 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3020.43,1097.73 3020.43,1401.05 3047.73,1401.05 3047.73,1097.73 3020.43,1097.73 3020.43,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3020.43,1097.73 3020.43,1401.05 3047.73,1401.05 3047.73,1097.73 3020.43,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3047.73,1198.84 3047.73,1401.05 3075.03,1401.05 3075.03,1198.84 3047.73,1198.84 3047.73,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3047.73,1198.84 3047.73,1401.05 3075.03,1401.05 3075.03,1198.84 3047.73,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3075.03,1097.73 3075.03,1401.05 3102.33,1401.05 3102.33,1097.73 3075.03,1097.73 3075.03,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3075.03,1097.73 3075.03,1401.05 3102.33,1401.05 3102.33,1097.73 3075.03,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3102.33,1198.84 3102.33,1401.05 3129.63,1401.05 3129.63,1198.84 3102.33,1198.84 3102.33,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3102.33,1198.84 3102.33,1401.05 3129.63,1401.05 3129.63,1198.84 3102.33,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3129.63,1299.95 3129.63,1401.05 3156.93,1401.05 3156.93,1299.95 3129.63,1299.95 3129.63,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3129.63,1299.95 3129.63,1401.05 3156.93,1401.05 3156.93,1299.95 3129.63,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3156.93,1401.05 3156.93,1401.05 3184.23,1401.05 3184.23,1401.05 3156.93,1401.05 3156.93,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3156.93,1401.05 3156.93,1401.05 3184.23,1401.05 3156.93,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3184.23,1198.84 3184.23,1401.05 3211.53,1401.05 3211.53,1198.84 3184.23,1198.84 3184.23,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3184.23,1198.84 3184.23,1401.05 3211.53,1401.05 3211.53,1198.84 3184.23,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3211.53,1097.73 3211.53,1401.05 3238.83,1401.05 3238.83,1097.73 3211.53,1097.73 3211.53,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3211.53,1097.73 3211.53,1401.05 3238.83,1401.05 3238.83,1097.73 3211.53,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3238.83,1299.95 3238.83,1401.05 3266.13,1401.05 3266.13,1299.95 3238.83,1299.95 3238.83,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3238.83,1299.95 3238.83,1401.05 3266.13,1401.05 3266.13,1299.95 3238.83,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3266.13,1299.95 3266.13,1401.05 3293.43,1401.05 3293.43,1299.95 3266.13,1299.95 3266.13,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3266.13,1299.95 3266.13,1401.05 3293.43,1401.05 3293.43,1299.95 3266.13,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3293.43,1198.84 3293.43,1401.05 3320.73,1401.05 3320.73,1198.84 3293.43,1198.84 3293.43,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3293.43,1198.84 3293.43,1401.05 3320.73,1401.05 3320.73,1198.84 3293.43,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3320.73,1299.95 3320.73,1401.05 3348.03,1401.05 3348.03,1299.95 3320.73,1299.95 3320.73,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3320.73,1299.95 3320.73,1401.05 3348.03,1401.05 3348.03,1299.95 3320.73,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3348.03,1198.84 3348.03,1401.05 3375.33,1401.05 3375.33,1198.84 3348.03,1198.84 3348.03,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3348.03,1198.84 3348.03,1401.05 3375.33,1401.05 3375.33,1198.84 3348.03,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3375.33,1097.73 3375.33,1401.05 3402.63,1401.05 3402.63,1097.73 3375.33,1097.73 3375.33,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3375.33,1097.73 3375.33,1401.05 3402.63,1401.05 3402.63,1097.73 3375.33,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3402.63,1299.95 3402.63,1401.05 3429.93,1401.05 3429.93,1299.95 3402.63,1299.95 3402.63,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3402.63,1299.95 3402.63,1401.05 3429.93,1401.05 3429.93,1299.95 3402.63,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3429.93,1401.05 3429.93,1401.05 3457.23,1401.05 3457.23,1401.05 3429.93,1401.05 3429.93,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3429.93,1401.05 3429.93,1401.05 3457.23,1401.05 3429.93,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3457.23,1401.05 3457.23,1401.05 3484.53,1401.05 3484.53,1401.05 3457.23,1401.05 3457.23,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3457.23,1401.05 3457.23,1401.05 3484.53,1401.05 3457.23,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3484.53,1198.84 3484.53,1401.05 3511.82,1401.05 3511.82,1198.84 3484.53,1198.84 3484.53,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3484.53,1198.84 3484.53,1401.05 3511.82,1401.05 3511.82,1198.84 3484.53,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3511.82,1198.84 3511.82,1401.05 3539.12,1401.05 3539.12,1198.84 3511.82,1198.84 3511.82,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3511.82,1198.84 3511.82,1401.05 3539.12,1401.05 3539.12,1198.84 3511.82,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3539.12,1401.05 3539.12,1401.05 3566.42,1401.05 3566.42,1401.05 3539.12,1401.05 3539.12,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3539.12,1401.05 3539.12,1401.05 3566.42,1401.05 3539.12,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3566.42,1401.05 3566.42,1401.05 3593.72,1401.05 3593.72,1401.05 3566.42,1401.05 3566.42,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3566.42,1401.05 3566.42,1401.05 3593.72,1401.05 3566.42,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3593.72,1401.05 3593.72,1401.05 3621.02,1401.05 3621.02,1401.05 3593.72,1401.05 3593.72,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3593.72,1401.05 3593.72,1401.05 3621.02,1401.05 3593.72,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3621.02,1097.73 3621.02,1401.05 3648.32,1401.05 3648.32,1097.73 3621.02,1097.73 3621.02,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3621.02,1097.73 3621.02,1401.05 3648.32,1401.05 3648.32,1097.73 3621.02,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3648.32,1198.84 3648.32,1401.05 3675.62,1401.05 3675.62,1198.84 3648.32,1198.84 3648.32,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3648.32,1198.84 3648.32,1401.05 3675.62,1401.05 3675.62,1198.84 3648.32,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3675.62,1299.95 3675.62,1401.05 3702.92,1401.05 3702.92,1299.95 3675.62,1299.95 3675.62,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3675.62,1299.95 3675.62,1401.05 3702.92,1401.05 3702.92,1299.95 3675.62,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3702.92,1198.84 3702.92,1401.05 3730.22,1401.05 3730.22,1198.84 3702.92,1198.84 3702.92,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3702.92,1198.84 3702.92,1401.05 3730.22,1401.05 3730.22,1198.84 3702.92,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3730.22,1401.05 3730.22,1401.05 3757.52,1401.05 3757.52,1401.05 3730.22,1401.05 3730.22,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3730.22,1401.05 3730.22,1401.05 3757.52,1401.05 3730.22,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3757.52,1299.95 3757.52,1401.05 3784.82,1401.05 3784.82,1299.95 3757.52,1299.95 3757.52,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3757.52,1299.95 3757.52,1401.05 3784.82,1401.05 3784.82,1299.95 3757.52,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3784.82,1198.84 3784.82,1401.05 3812.12,1401.05 3812.12,1198.84 3784.82,1198.84 3784.82,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3784.82,1198.84 3784.82,1401.05 3812.12,1401.05 3812.12,1198.84 3784.82,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3812.12,1401.05 3812.12,1401.05 3839.42,1401.05 3839.42,1401.05 3812.12,1401.05 3812.12,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3812.12,1401.05 3812.12,1401.05 3839.42,1401.05 3812.12,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3839.42,1299.95 3839.42,1401.05 3866.72,1401.05 3866.72,1299.95 3839.42,1299.95 3839.42,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3839.42,1299.95 3839.42,1401.05 3866.72,1401.05 3866.72,1299.95 3839.42,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3866.72,1299.95 3866.72,1401.05 3894.02,1401.05 3894.02,1299.95 3866.72,1299.95 3866.72,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3866.72,1299.95 3866.72,1401.05 3894.02,1401.05 3894.02,1299.95 3866.72,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3894.02,1097.73 3894.02,1401.05 3921.32,1401.05 3921.32,1097.73 3894.02,1097.73 3894.02,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3894.02,1097.73 3894.02,1401.05 3921.32,1401.05 3921.32,1097.73 3894.02,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3921.32,1299.95 3921.32,1401.05 3948.62,1401.05 3948.62,1299.95 3921.32,1299.95 3921.32,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3921.32,1299.95 3921.32,1401.05 3948.62,1401.05 3948.62,1299.95 3921.32,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3948.62,1198.84 3948.62,1401.05 3975.92,1401.05 3975.92,1198.84 3948.62,1198.84 3948.62,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3948.62,1198.84 3948.62,1401.05 3975.92,1401.05 3975.92,1198.84 3948.62,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"3975.92,1299.95 3975.92,1401.05 4003.22,1401.05 4003.22,1299.95 3975.92,1299.95 3975.92,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3975.92,1299.95 3975.92,1401.05 4003.22,1401.05 4003.22,1299.95 3975.92,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4003.22,1097.73 4003.22,1401.05 4030.52,1401.05 4030.52,1097.73 4003.22,1097.73 4003.22,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4003.22,1097.73 4003.22,1401.05 4030.52,1401.05 4030.52,1097.73 4003.22,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4030.52,1299.95 4030.52,1401.05 4057.82,1401.05 4057.82,1299.95 4030.52,1299.95 4030.52,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4030.52,1299.95 4030.52,1401.05 4057.82,1401.05 4057.82,1299.95 4030.52,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4057.82,1198.84 4057.82,1401.05 4085.12,1401.05 4085.12,1198.84 4057.82,1198.84 4057.82,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4057.82,1198.84 4057.82,1401.05 4085.12,1401.05 4085.12,1198.84 4057.82,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4085.12,1401.05 4085.12,1401.05 4112.42,1401.05 4112.42,1401.05 4085.12,1401.05 4085.12,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4085.12,1401.05 4085.12,1401.05 4112.42,1401.05 4085.12,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4112.42,1401.05 4112.42,1401.05 4139.72,1401.05 4139.72,1401.05 4112.42,1401.05 4112.42,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4112.42,1401.05 4112.42,1401.05 4139.72,1401.05 4112.42,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4139.72,1401.05 4139.72,1401.05 4167.01,1401.05 4167.01,1401.05 4139.72,1401.05 4139.72,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4139.72,1401.05 4139.72,1401.05 4167.01,1401.05 4139.72,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4167.01,1198.84 4167.01,1401.05 4194.31,1401.05 4194.31,1198.84 4167.01,1198.84 4167.01,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4167.01,1198.84 4167.01,1401.05 4194.31,1401.05 4194.31,1198.84 4167.01,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4194.31,1401.05 4194.31,1401.05 4221.61,1401.05 4221.61,1401.05 4194.31,1401.05 4194.31,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4194.31,1401.05 4194.31,1401.05 4221.61,1401.05 4194.31,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4221.61,1401.05 4221.61,1401.05 4248.91,1401.05 4248.91,1401.05 4221.61,1401.05 4221.61,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4221.61,1401.05 4221.61,1401.05 4248.91,1401.05 4221.61,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4248.91,1401.05 4248.91,1401.05 4276.21,1401.05 4276.21,1401.05 4248.91,1401.05 4248.91,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4248.91,1401.05 4248.91,1401.05 4276.21,1401.05 4248.91,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4276.21,1299.95 4276.21,1401.05 4303.51,1401.05 4303.51,1299.95 4276.21,1299.95 4276.21,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4276.21,1299.95 4276.21,1401.05 4303.51,1401.05 4303.51,1299.95 4276.21,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4303.51,1299.95 4303.51,1401.05 4330.81,1401.05 4330.81,1299.95 4303.51,1299.95 4303.51,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4303.51,1299.95 4303.51,1401.05 4330.81,1401.05 4330.81,1299.95 4303.51,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4330.81,1299.95 4330.81,1401.05 4358.11,1401.05 4358.11,1299.95 4330.81,1299.95 4330.81,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4330.81,1299.95 4330.81,1401.05 4358.11,1401.05 4358.11,1299.95 4330.81,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4358.11,1401.05 4358.11,1401.05 4385.41,1401.05 4385.41,1401.05 4358.11,1401.05 4358.11,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4358.11,1401.05 4358.11,1401.05 4385.41,1401.05 4358.11,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4385.41,1198.84 4385.41,1401.05 4412.71,1401.05 4412.71,1198.84 4385.41,1198.84 4385.41,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4385.41,1198.84 4385.41,1401.05 4412.71,1401.05 4412.71,1198.84 4385.41,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4412.71,1401.05 4412.71,1401.05 4440.01,1401.05 4440.01,1401.05 4412.71,1401.05 4412.71,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4412.71,1401.05 4412.71,1401.05 4440.01,1401.05 4412.71,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4440.01,1401.05 4440.01,1401.05 4467.31,1401.05 4467.31,1401.05 4440.01,1401.05 4440.01,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4440.01,1401.05 4440.01,1401.05 4467.31,1401.05 4440.01,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4467.31,1198.84 4467.31,1401.05 4494.61,1401.05 4494.61,1198.84 4467.31,1198.84 4467.31,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4467.31,1198.84 4467.31,1401.05 4494.61,1401.05 4494.61,1198.84 4467.31,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4494.61,1401.05 4494.61,1401.05 4521.91,1401.05 4521.91,1401.05 4494.61,1401.05 4494.61,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4494.61,1401.05 4494.61,1401.05 4521.91,1401.05 4494.61,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4521.91,1097.73 4521.91,1401.05 4549.21,1401.05 4549.21,1097.73 4521.91,1097.73 4521.91,1097.73 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4521.91,1097.73 4521.91,1401.05 4549.21,1401.05 4549.21,1097.73 4521.91,1097.73 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4549.21,1401.05 4549.21,1401.05 4576.51,1401.05 4576.51,1401.05 4549.21,1401.05 4549.21,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4549.21,1401.05 4549.21,1401.05 4576.51,1401.05 4549.21,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4576.51,1299.95 4576.51,1401.05 4603.81,1401.05 4603.81,1299.95 4576.51,1299.95 4576.51,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4576.51,1299.95 4576.51,1401.05 4603.81,1401.05 4603.81,1299.95 4576.51,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4603.81,1401.05 4603.81,1401.05 4631.11,1401.05 4631.11,1401.05 4603.81,1401.05 4603.81,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4603.81,1401.05 4603.81,1401.05 4631.11,1401.05 4603.81,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4631.11,1299.95 4631.11,1401.05 4658.41,1401.05 4658.41,1299.95 4631.11,1299.95 4631.11,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4631.11,1299.95 4631.11,1401.05 4658.41,1401.05 4658.41,1299.95 4631.11,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4658.41,1401.05 4658.41,1401.05 4685.71,1401.05 4685.71,1401.05 4658.41,1401.05 4658.41,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4658.41,1401.05 4658.41,1401.05 4685.71,1401.05 4658.41,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4685.71,1401.05 4685.71,1401.05 4713.01,1401.05 4713.01,1401.05 4685.71,1401.05 4685.71,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4685.71,1401.05 4685.71,1401.05 4713.01,1401.05 4685.71,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4713.01,1401.05 4713.01,1401.05 4740.31,1401.05 4740.31,1401.05 4713.01,1401.05 4713.01,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4713.01,1401.05 4713.01,1401.05 4740.31,1401.05 4713.01,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4740.31,1401.05 4740.31,1401.05 4767.61,1401.05 4767.61,1401.05 4740.31,1401.05 4740.31,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4740.31,1401.05 4740.31,1401.05 4767.61,1401.05 4740.31,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4767.61,1299.95 4767.61,1401.05 4794.91,1401.05 4794.91,1299.95 4767.61,1299.95 4767.61,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4767.61,1299.95 4767.61,1401.05 4794.91,1401.05 4794.91,1299.95 4767.61,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4794.91,1401.05 4794.91,1401.05 4822.2,1401.05 4822.2,1401.05 4794.91,1401.05 4794.91,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4794.91,1401.05 4794.91,1401.05 4822.2,1401.05 4794.91,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4822.2,1198.84 4822.2,1401.05 4849.5,1401.05 4849.5,1198.84 4822.2,1198.84 4822.2,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4822.2,1198.84 4822.2,1401.05 4849.5,1401.05 4849.5,1198.84 4822.2,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4849.5,1401.05 4849.5,1401.05 4876.8,1401.05 4876.8,1401.05 4849.5,1401.05 4849.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4849.5,1401.05 4849.5,1401.05 4876.8,1401.05 4849.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4876.8,1401.05 4876.8,1401.05 4904.1,1401.05 4904.1,1401.05 4876.8,1401.05 4876.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4876.8,1401.05 4876.8,1401.05 4904.1,1401.05 4876.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4904.1,1401.05 4904.1,1401.05 4931.4,1401.05 4931.4,1401.05 4904.1,1401.05 4904.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4904.1,1401.05 4904.1,1401.05 4931.4,1401.05 4904.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4931.4,1401.05 4931.4,1401.05 4958.7,1401.05 4958.7,1401.05 4931.4,1401.05 4931.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4931.4,1401.05 4931.4,1401.05 4958.7,1401.05 4931.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4958.7,1299.95 4958.7,1401.05 4986,1401.05 4986,1299.95 4958.7,1299.95 4958.7,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4958.7,1299.95 4958.7,1401.05 4986,1401.05 4986,1299.95 4958.7,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"4986,1299.95 4986,1401.05 5013.3,1401.05 5013.3,1299.95 4986,1299.95 4986,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 4986,1299.95 4986,1401.05 5013.3,1401.05 5013.3,1299.95 4986,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5013.3,1401.05 5013.3,1401.05 5040.6,1401.05 5040.6,1401.05 5013.3,1401.05 5013.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5013.3,1401.05 5013.3,1401.05 5040.6,1401.05 5013.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5040.6,1401.05 5040.6,1401.05 5067.9,1401.05 5067.9,1401.05 5040.6,1401.05 5040.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5040.6,1401.05 5040.6,1401.05 5067.9,1401.05 5040.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5067.9,1299.95 5067.9,1401.05 5095.2,1401.05 5095.2,1299.95 5067.9,1299.95 5067.9,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5067.9,1299.95 5067.9,1401.05 5095.2,1401.05 5095.2,1299.95 5067.9,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5095.2,1401.05 5095.2,1401.05 5122.5,1401.05 5122.5,1401.05 5095.2,1401.05 5095.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5095.2,1401.05 5095.2,1401.05 5122.5,1401.05 5095.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5122.5,1299.95 5122.5,1401.05 5149.8,1401.05 5149.8,1299.95 5122.5,1299.95 5122.5,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5122.5,1299.95 5122.5,1401.05 5149.8,1401.05 5149.8,1299.95 5122.5,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5149.8,1401.05 5149.8,1401.05 5177.1,1401.05 5177.1,1401.05 5149.8,1401.05 5149.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5149.8,1401.05 5149.8,1401.05 5177.1,1401.05 5149.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5177.1,1299.95 5177.1,1401.05 5204.4,1401.05 5204.4,1299.95 5177.1,1299.95 5177.1,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5177.1,1299.95 5177.1,1401.05 5204.4,1401.05 5204.4,1299.95 5177.1,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5204.4,1401.05 5204.4,1401.05 5231.7,1401.05 5231.7,1401.05 5204.4,1401.05 5204.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5204.4,1401.05 5204.4,1401.05 5231.7,1401.05 5204.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5231.7,1401.05 5231.7,1401.05 5259,1401.05 5259,1401.05 5231.7,1401.05 5231.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5231.7,1401.05 5231.7,1401.05 5259,1401.05 5231.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5259,1401.05 5259,1401.05 5286.3,1401.05 5286.3,1401.05 5259,1401.05 5259,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5259,1401.05 5259,1401.05 5286.3,1401.05 5259,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5286.3,1401.05 5286.3,1401.05 5313.6,1401.05 5313.6,1401.05 5286.3,1401.05 5286.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5286.3,1401.05 5286.3,1401.05 5313.6,1401.05 5286.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5313.6,1401.05 5313.6,1401.05 5340.9,1401.05 5340.9,1401.05 5313.6,1401.05 5313.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5313.6,1401.05 5313.6,1401.05 5340.9,1401.05 5313.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5340.9,1401.05 5340.9,1401.05 5368.2,1401.05 5368.2,1401.05 5340.9,1401.05 5340.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5340.9,1401.05 5340.9,1401.05 5368.2,1401.05 5340.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5368.2,1401.05 5368.2,1401.05 5395.5,1401.05 5395.5,1401.05 5368.2,1401.05 5368.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5368.2,1401.05 5368.2,1401.05 5395.5,1401.05 5368.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5395.5,1401.05 5395.5,1401.05 5422.8,1401.05 5422.8,1401.05 5395.5,1401.05 5395.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5395.5,1401.05 5395.5,1401.05 5422.8,1401.05 5395.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5422.8,1401.05 5422.8,1401.05 5450.1,1401.05 5450.1,1401.05 5422.8,1401.05 5422.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5422.8,1401.05 5422.8,1401.05 5450.1,1401.05 5422.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5450.1,1401.05 5450.1,1401.05 5477.39,1401.05 5477.39,1401.05 5450.1,1401.05 5450.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5450.1,1401.05 5450.1,1401.05 5477.39,1401.05 5450.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5477.39,1299.95 5477.39,1401.05 5504.69,1401.05 5504.69,1299.95 5477.39,1299.95 5477.39,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5477.39,1299.95 5477.39,1401.05 5504.69,1401.05 5504.69,1299.95 5477.39,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5504.69,1401.05 5504.69,1401.05 5531.99,1401.05 5531.99,1401.05 5504.69,1401.05 5504.69,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5504.69,1401.05 5504.69,1401.05 5531.99,1401.05 5504.69,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5531.99,1401.05 5531.99,1401.05 5559.29,1401.05 5559.29,1401.05 5531.99,1401.05 5531.99,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5531.99,1401.05 5531.99,1401.05 5559.29,1401.05 5531.99,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5559.29,1401.05 5559.29,1401.05 5586.59,1401.05 5586.59,1401.05 5559.29,1401.05 5559.29,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5559.29,1401.05 5559.29,1401.05 5586.59,1401.05 5559.29,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5586.59,1401.05 5586.59,1401.05 5613.89,1401.05 5613.89,1401.05 5586.59,1401.05 5586.59,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5586.59,1401.05 5586.59,1401.05 5613.89,1401.05 5586.59,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5613.89,1401.05 5613.89,1401.05 5641.19,1401.05 5641.19,1401.05 5613.89,1401.05 5613.89,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5613.89,1401.05 5613.89,1401.05 5641.19,1401.05 5613.89,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5641.19,1299.95 5641.19,1401.05 5668.49,1401.05 5668.49,1299.95 5641.19,1299.95 5641.19,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5641.19,1299.95 5641.19,1401.05 5668.49,1401.05 5668.49,1299.95 5641.19,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5668.49,1401.05 5668.49,1401.05 5695.79,1401.05 5695.79,1401.05 5668.49,1401.05 5668.49,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5668.49,1401.05 5668.49,1401.05 5695.79,1401.05 5668.49,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5695.79,1401.05 5695.79,1401.05 5723.09,1401.05 5723.09,1401.05 5695.79,1401.05 5695.79,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5695.79,1401.05 5695.79,1401.05 5723.09,1401.05 5695.79,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5723.09,1401.05 5723.09,1401.05 5750.39,1401.05 5750.39,1401.05 5723.09,1401.05 5723.09,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5723.09,1401.05 5723.09,1401.05 5750.39,1401.05 5723.09,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5750.39,1401.05 5750.39,1401.05 5777.69,1401.05 5777.69,1401.05 5750.39,1401.05 5750.39,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5750.39,1401.05 5750.39,1401.05 5777.69,1401.05 5750.39,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5777.69,1401.05 5777.69,1401.05 5804.99,1401.05 5804.99,1401.05 5777.69,1401.05 5777.69,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5777.69,1401.05 5777.69,1401.05 5804.99,1401.05 5777.69,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5804.99,1299.95 5804.99,1401.05 5832.29,1401.05 5832.29,1299.95 5804.99,1299.95 5804.99,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5804.99,1299.95 5804.99,1401.05 5832.29,1401.05 5832.29,1299.95 5804.99,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5832.29,1401.05 5832.29,1401.05 5859.59,1401.05 5859.59,1401.05 5832.29,1401.05 5832.29,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5832.29,1401.05 5832.29,1401.05 5859.59,1401.05 5832.29,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5859.59,1401.05 5859.59,1401.05 5886.89,1401.05 5886.89,1401.05 5859.59,1401.05 5859.59,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5859.59,1401.05 5859.59,1401.05 5886.89,1401.05 5859.59,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5886.89,1401.05 5886.89,1401.05 5914.19,1401.05 5914.19,1401.05 5886.89,1401.05 5886.89,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5886.89,1401.05 5886.89,1401.05 5914.19,1401.05 5886.89,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5914.19,1401.05 5914.19,1401.05 5941.49,1401.05 5941.49,1401.05 5914.19,1401.05 5914.19,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5914.19,1401.05 5914.19,1401.05 5941.49,1401.05 5914.19,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5941.49,1401.05 5941.49,1401.05 5968.79,1401.05 5968.79,1401.05 5941.49,1401.05 5941.49,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5941.49,1401.05 5941.49,1401.05 5968.79,1401.05 5941.49,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5968.79,1299.95 5968.79,1401.05 5996.09,1401.05 5996.09,1299.95 5968.79,1299.95 5968.79,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5968.79,1299.95 5968.79,1401.05 5996.09,1401.05 5996.09,1299.95 5968.79,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"5996.09,1401.05 5996.09,1401.05 6023.39,1401.05 6023.39,1401.05 5996.09,1401.05 5996.09,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 5996.09,1401.05 5996.09,1401.05 6023.39,1401.05 5996.09,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6023.39,1299.95 6023.39,1401.05 6050.69,1401.05 6050.69,1299.95 6023.39,1299.95 6023.39,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6023.39,1299.95 6023.39,1401.05 6050.69,1401.05 6050.69,1299.95 6023.39,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6050.69,1299.95 6050.69,1401.05 6077.99,1401.05 6077.99,1299.95 6050.69,1299.95 6050.69,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6050.69,1299.95 6050.69,1401.05 6077.99,1401.05 6077.99,1299.95 6050.69,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6077.99,1401.05 6077.99,1401.05 6105.29,1401.05 6105.29,1401.05 6077.99,1401.05 6077.99,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6077.99,1401.05 6077.99,1401.05 6105.29,1401.05 6077.99,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6105.29,1401.05 6105.29,1401.05 6132.58,1401.05 6132.58,1401.05 6105.29,1401.05 6105.29,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6105.29,1401.05 6105.29,1401.05 6132.58,1401.05 6105.29,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6132.58,1401.05 6132.58,1401.05 6159.88,1401.05 6159.88,1401.05 6132.58,1401.05 6132.58,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6132.58,1401.05 6132.58,1401.05 6159.88,1401.05 6132.58,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6159.88,1198.84 6159.88,1401.05 6187.18,1401.05 6187.18,1198.84 6159.88,1198.84 6159.88,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6159.88,1198.84 6159.88,1401.05 6187.18,1401.05 6187.18,1198.84 6159.88,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6187.18,1299.95 6187.18,1401.05 6214.48,1401.05 6214.48,1299.95 6187.18,1299.95 6187.18,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6187.18,1299.95 6187.18,1401.05 6214.48,1401.05 6214.48,1299.95 6187.18,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6214.48,1299.95 6214.48,1401.05 6241.78,1401.05 6241.78,1299.95 6214.48,1299.95 6214.48,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6214.48,1299.95 6214.48,1401.05 6241.78,1401.05 6241.78,1299.95 6214.48,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6241.78,1401.05 6241.78,1401.05 6269.08,1401.05 6269.08,1401.05 6241.78,1401.05 6241.78,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6241.78,1401.05 6241.78,1401.05 6269.08,1401.05 6241.78,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6269.08,1401.05 6269.08,1401.05 6296.38,1401.05 6296.38,1401.05 6269.08,1401.05 6269.08,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6269.08,1401.05 6269.08,1401.05 6296.38,1401.05 6269.08,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6296.38,1401.05 6296.38,1401.05 6323.68,1401.05 6323.68,1401.05 6296.38,1401.05 6296.38,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6296.38,1401.05 6296.38,1401.05 6323.68,1401.05 6296.38,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6323.68,1401.05 6323.68,1401.05 6350.98,1401.05 6350.98,1401.05 6323.68,1401.05 6323.68,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6323.68,1401.05 6323.68,1401.05 6350.98,1401.05 6323.68,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6350.98,1401.05 6350.98,1401.05 6378.28,1401.05 6378.28,1401.05 6350.98,1401.05 6350.98,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6350.98,1401.05 6350.98,1401.05 6378.28,1401.05 6350.98,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6378.28,1401.05 6378.28,1401.05 6405.58,1401.05 6405.58,1401.05 6378.28,1401.05 6378.28,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6378.28,1401.05 6378.28,1401.05 6405.58,1401.05 6378.28,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6405.58,1401.05 6405.58,1401.05 6432.88,1401.05 6432.88,1401.05 6405.58,1401.05 6405.58,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6405.58,1401.05 6405.58,1401.05 6432.88,1401.05 6405.58,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6432.88,1401.05 6432.88,1401.05 6460.18,1401.05 6460.18,1401.05 6432.88,1401.05 6432.88,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6432.88,1401.05 6432.88,1401.05 6460.18,1401.05 6432.88,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6460.18,1299.95 6460.18,1401.05 6487.48,1401.05 6487.48,1299.95 6460.18,1299.95 6460.18,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6460.18,1299.95 6460.18,1401.05 6487.48,1401.05 6487.48,1299.95 6460.18,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6487.48,1299.95 6487.48,1401.05 6514.78,1401.05 6514.78,1299.95 6487.48,1299.95 6487.48,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6487.48,1299.95 6487.48,1401.05 6514.78,1401.05 6514.78,1299.95 6487.48,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6514.78,1401.05 6514.78,1401.05 6542.08,1401.05 6542.08,1401.05 6514.78,1401.05 6514.78,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6514.78,1401.05 6514.78,1401.05 6542.08,1401.05 6514.78,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6542.08,1401.05 6542.08,1401.05 6569.38,1401.05 6569.38,1401.05 6542.08,1401.05 6542.08,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6542.08,1401.05 6542.08,1401.05 6569.38,1401.05 6542.08,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6569.38,1401.05 6569.38,1401.05 6596.68,1401.05 6596.68,1401.05 6569.38,1401.05 6569.38,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6569.38,1401.05 6569.38,1401.05 6596.68,1401.05 6569.38,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6596.68,1401.05 6596.68,1401.05 6623.98,1401.05 6623.98,1401.05 6596.68,1401.05 6596.68,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6596.68,1401.05 6596.68,1401.05 6623.98,1401.05 6596.68,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6623.98,1299.95 6623.98,1401.05 6651.28,1401.05 6651.28,1299.95 6623.98,1299.95 6623.98,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6623.98,1299.95 6623.98,1401.05 6651.28,1401.05 6651.28,1299.95 6623.98,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6651.28,1401.05 6651.28,1401.05 6678.58,1401.05 6678.58,1401.05 6651.28,1401.05 6651.28,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6651.28,1401.05 6651.28,1401.05 6678.58,1401.05 6651.28,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6678.58,1401.05 6678.58,1401.05 6705.88,1401.05 6705.88,1401.05 6678.58,1401.05 6678.58,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6678.58,1401.05 6678.58,1401.05 6705.88,1401.05 6678.58,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6705.88,1299.95 6705.88,1401.05 6733.18,1401.05 6733.18,1299.95 6705.88,1299.95 6705.88,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6705.88,1299.95 6705.88,1401.05 6733.18,1401.05 6733.18,1299.95 6705.88,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6733.18,1401.05 6733.18,1401.05 6760.48,1401.05 6760.48,1401.05 6733.18,1401.05 6733.18,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6733.18,1401.05 6733.18,1401.05 6760.48,1401.05 6733.18,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6760.48,1401.05 6760.48,1401.05 6787.77,1401.05 6787.77,1401.05 6760.48,1401.05 6760.48,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6760.48,1401.05 6760.48,1401.05 6787.77,1401.05 6760.48,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6787.77,1401.05 6787.77,1401.05 6815.07,1401.05 6815.07,1401.05 6787.77,1401.05 6787.77,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6787.77,1401.05 6787.77,1401.05 6815.07,1401.05 6787.77,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6815.07,1299.95 6815.07,1401.05 6842.37,1401.05 6842.37,1299.95 6815.07,1299.95 6815.07,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6815.07,1299.95 6815.07,1401.05 6842.37,1401.05 6842.37,1299.95 6815.07,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6842.37,1401.05 6842.37,1401.05 6869.67,1401.05 6869.67,1401.05 6842.37,1401.05 6842.37,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6842.37,1401.05 6842.37,1401.05 6869.67,1401.05 6842.37,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6869.67,1299.95 6869.67,1401.05 6896.97,1401.05 6896.97,1299.95 6869.67,1299.95 6869.67,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6869.67,1299.95 6869.67,1401.05 6896.97,1401.05 6896.97,1299.95 6869.67,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6896.97,1401.05 6896.97,1401.05 6924.27,1401.05 6924.27,1401.05 6896.97,1401.05 6896.97,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6896.97,1401.05 6896.97,1401.05 6924.27,1401.05 6896.97,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6924.27,1198.84 6924.27,1401.05 6951.57,1401.05 6951.57,1198.84 6924.27,1198.84 6924.27,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6924.27,1198.84 6924.27,1401.05 6951.57,1401.05 6951.57,1198.84 6924.27,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6951.57,1401.05 6951.57,1401.05 6978.87,1401.05 6978.87,1401.05 6951.57,1401.05 6951.57,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6951.57,1401.05 6951.57,1401.05 6978.87,1401.05 6951.57,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"6978.87,1401.05 6978.87,1401.05 7006.17,1401.05 7006.17,1401.05 6978.87,1401.05 6978.87,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 6978.87,1401.05 6978.87,1401.05 7006.17,1401.05 6978.87,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7006.17,1401.05 7006.17,1401.05 7033.47,1401.05 7033.47,1401.05 7006.17,1401.05 7006.17,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7006.17,1401.05 7006.17,1401.05 7033.47,1401.05 7006.17,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7033.47,1401.05 7033.47,1401.05 7060.77,1401.05 7060.77,1401.05 7033.47,1401.05 7033.47,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7033.47,1401.05 7033.47,1401.05 7060.77,1401.05 7033.47,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7060.77,1401.05 7060.77,1401.05 7088.07,1401.05 7088.07,1401.05 7060.77,1401.05 7060.77,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7060.77,1401.05 7060.77,1401.05 7088.07,1401.05 7060.77,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7088.07,1299.95 7088.07,1401.05 7115.37,1401.05 7115.37,1299.95 7088.07,1299.95 7088.07,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7088.07,1299.95 7088.07,1401.05 7115.37,1401.05 7115.37,1299.95 7088.07,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7115.37,1198.84 7115.37,1401.05 7142.67,1401.05 7142.67,1198.84 7115.37,1198.84 7115.37,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7115.37,1198.84 7115.37,1401.05 7142.67,1401.05 7142.67,1198.84 7115.37,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7142.67,1401.05 7142.67,1401.05 7169.97,1401.05 7169.97,1401.05 7142.67,1401.05 7142.67,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7142.67,1401.05 7142.67,1401.05 7169.97,1401.05 7142.67,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7169.97,1401.05 7169.97,1401.05 7197.27,1401.05 7197.27,1401.05 7169.97,1401.05 7169.97,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7169.97,1401.05 7169.97,1401.05 7197.27,1401.05 7169.97,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7197.27,1401.05 7197.27,1401.05 7224.57,1401.05 7224.57,1401.05 7197.27,1401.05 7197.27,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7197.27,1401.05 7197.27,1401.05 7224.57,1401.05 7197.27,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7224.57,1401.05 7224.57,1401.05 7251.87,1401.05 7251.87,1401.05 7224.57,1401.05 7224.57,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7224.57,1401.05 7224.57,1401.05 7251.87,1401.05 7224.57,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7251.87,1401.05 7251.87,1401.05 7279.17,1401.05 7279.17,1401.05 7251.87,1401.05 7251.87,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7251.87,1401.05 7251.87,1401.05 7279.17,1401.05 7251.87,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7279.17,1299.95 7279.17,1401.05 7306.47,1401.05 7306.47,1299.95 7279.17,1299.95 7279.17,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7279.17,1299.95 7279.17,1401.05 7306.47,1401.05 7306.47,1299.95 7279.17,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7306.47,1401.05 7306.47,1401.05 7333.77,1401.05 7333.77,1401.05 7306.47,1401.05 7306.47,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7306.47,1401.05 7306.47,1401.05 7333.77,1401.05 7306.47,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7333.77,1299.95 7333.77,1401.05 7361.07,1401.05 7361.07,1299.95 7333.77,1299.95 7333.77,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7333.77,1299.95 7333.77,1401.05 7361.07,1401.05 7361.07,1299.95 7333.77,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7361.07,1401.05 7361.07,1401.05 7388.37,1401.05 7388.37,1401.05 7361.07,1401.05 7361.07,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7361.07,1401.05 7361.07,1401.05 7388.37,1401.05 7361.07,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7388.37,1401.05 7388.37,1401.05 7415.67,1401.05 7415.67,1401.05 7388.37,1401.05 7388.37,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7388.37,1401.05 7388.37,1401.05 7415.67,1401.05 7388.37,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7415.67,1401.05 7415.67,1401.05 7442.96,1401.05 7442.96,1401.05 7415.67,1401.05 7415.67,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7415.67,1401.05 7415.67,1401.05 7442.96,1401.05 7415.67,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7442.96,1401.05 7442.96,1401.05 7470.26,1401.05 7470.26,1401.05 7442.96,1401.05 7442.96,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7442.96,1401.05 7442.96,1401.05 7470.26,1401.05 7442.96,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7470.26,1401.05 7470.26,1401.05 7497.56,1401.05 7497.56,1401.05 7470.26,1401.05 7470.26,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7470.26,1401.05 7470.26,1401.05 7497.56,1401.05 7470.26,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7497.56,1401.05 7497.56,1401.05 7524.86,1401.05 7524.86,1401.05 7497.56,1401.05 7497.56,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7497.56,1401.05 7497.56,1401.05 7524.86,1401.05 7497.56,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7524.86,1299.95 7524.86,1401.05 7552.16,1401.05 7552.16,1299.95 7524.86,1299.95 7524.86,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7524.86,1299.95 7524.86,1401.05 7552.16,1401.05 7552.16,1299.95 7524.86,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7552.16,1401.05 7552.16,1401.05 7579.46,1401.05 7579.46,1401.05 7552.16,1401.05 7552.16,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7552.16,1401.05 7552.16,1401.05 7579.46,1401.05 7552.16,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7579.46,1299.95 7579.46,1401.05 7606.76,1401.05 7606.76,1299.95 7579.46,1299.95 7579.46,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7579.46,1299.95 7579.46,1401.05 7606.76,1401.05 7606.76,1299.95 7579.46,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7606.76,1401.05 7606.76,1401.05 7634.06,1401.05 7634.06,1401.05 7606.76,1401.05 7606.76,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7606.76,1401.05 7606.76,1401.05 7634.06,1401.05 7606.76,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7634.06,1401.05 7634.06,1401.05 7661.36,1401.05 7661.36,1401.05 7634.06,1401.05 7634.06,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7634.06,1401.05 7634.06,1401.05 7661.36,1401.05 7634.06,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7661.36,1401.05 7661.36,1401.05 7688.66,1401.05 7688.66,1401.05 7661.36,1401.05 7661.36,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7661.36,1401.05 7661.36,1401.05 7688.66,1401.05 7661.36,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7688.66,1401.05 7688.66,1401.05 7715.96,1401.05 7715.96,1401.05 7688.66,1401.05 7688.66,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7688.66,1401.05 7688.66,1401.05 7715.96,1401.05 7688.66,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7715.96,1401.05 7715.96,1401.05 7743.26,1401.05 7743.26,1401.05 7715.96,1401.05 7715.96,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7715.96,1401.05 7715.96,1401.05 7743.26,1401.05 7715.96,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7743.26,1299.95 7743.26,1401.05 7770.56,1401.05 7770.56,1299.95 7743.26,1299.95 7743.26,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7743.26,1299.95 7743.26,1401.05 7770.56,1401.05 7770.56,1299.95 7743.26,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7770.56,1401.05 7770.56,1401.05 7797.86,1401.05 7797.86,1401.05 7770.56,1401.05 7770.56,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7770.56,1401.05 7770.56,1401.05 7797.86,1401.05 7770.56,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7797.86,1401.05 7797.86,1401.05 7825.16,1401.05 7825.16,1401.05 7797.86,1401.05 7797.86,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7797.86,1401.05 7797.86,1401.05 7825.16,1401.05 7797.86,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7825.16,1401.05 7825.16,1401.05 7852.46,1401.05 7852.46,1401.05 7825.16,1401.05 7825.16,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7825.16,1401.05 7825.16,1401.05 7852.46,1401.05 7825.16,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7852.46,1401.05 7852.46,1401.05 7879.76,1401.05 7879.76,1401.05 7852.46,1401.05 7852.46,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7852.46,1401.05 7852.46,1401.05 7879.76,1401.05 7852.46,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7879.76,1401.05 7879.76,1401.05 7907.06,1401.05 7907.06,1401.05 7879.76,1401.05 7879.76,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7879.76,1401.05 7879.76,1401.05 7907.06,1401.05 7879.76,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7907.06,1401.05 7907.06,1401.05 7934.36,1401.05 7934.36,1401.05 7907.06,1401.05 7907.06,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7907.06,1401.05 7907.06,1401.05 7934.36,1401.05 7907.06,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7934.36,1401.05 7934.36,1401.05 7961.66,1401.05 7961.66,1401.05 7934.36,1401.05 7934.36,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7934.36,1401.05 7934.36,1401.05 7961.66,1401.05 7934.36,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7961.66,1401.05 7961.66,1401.05 7988.96,1401.05 7988.96,1401.05 7961.66,1401.05 7961.66,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7961.66,1401.05 7961.66,1401.05 7988.96,1401.05 7961.66,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"7988.96,1401.05 7988.96,1401.05 8016.26,1401.05 8016.26,1401.05 7988.96,1401.05 7988.96,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 7988.96,1401.05 7988.96,1401.05 8016.26,1401.05 7988.96,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8016.26,1401.05 8016.26,1401.05 8043.56,1401.05 8043.56,1401.05 8016.26,1401.05 8016.26,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8016.26,1401.05 8016.26,1401.05 8043.56,1401.05 8016.26,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8043.56,1401.05 8043.56,1401.05 8070.86,1401.05 8070.86,1401.05 8043.56,1401.05 8043.56,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8043.56,1401.05 8043.56,1401.05 8070.86,1401.05 8043.56,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8070.86,1401.05 8070.86,1401.05 8098.15,1401.05 8098.15,1401.05 8070.86,1401.05 8070.86,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8070.86,1401.05 8070.86,1401.05 8098.15,1401.05 8070.86,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8098.15,1401.05 8098.15,1401.05 8125.45,1401.05 8125.45,1401.05 8098.15,1401.05 8098.15,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8098.15,1401.05 8098.15,1401.05 8125.45,1401.05 8098.15,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8125.45,1198.84 8125.45,1401.05 8152.75,1401.05 8152.75,1198.84 8125.45,1198.84 8125.45,1198.84 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8125.45,1198.84 8125.45,1401.05 8152.75,1401.05 8152.75,1198.84 8125.45,1198.84 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8152.75,1401.05 8152.75,1401.05 8180.05,1401.05 8180.05,1401.05 8152.75,1401.05 8152.75,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8152.75,1401.05 8152.75,1401.05 8180.05,1401.05 8152.75,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8180.05,1299.95 8180.05,1401.05 8207.35,1401.05 8207.35,1299.95 8180.05,1299.95 8180.05,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8180.05,1299.95 8180.05,1401.05 8207.35,1401.05 8207.35,1299.95 8180.05,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8207.35,1401.05 8207.35,1401.05 8234.65,1401.05 8234.65,1401.05 8207.35,1401.05 8207.35,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8207.35,1401.05 8207.35,1401.05 8234.65,1401.05 8207.35,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8234.65,1401.05 8234.65,1401.05 8261.95,1401.05 8261.95,1401.05 8234.65,1401.05 8234.65,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8234.65,1401.05 8234.65,1401.05 8261.95,1401.05 8234.65,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8261.95,1401.05 8261.95,1401.05 8289.25,1401.05 8289.25,1401.05 8261.95,1401.05 8261.95,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8261.95,1401.05 8261.95,1401.05 8289.25,1401.05 8261.95,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8289.25,1401.05 8289.25,1401.05 8316.55,1401.05 8316.55,1401.05 8289.25,1401.05 8289.25,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8289.25,1401.05 8289.25,1401.05 8316.55,1401.05 8289.25,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8316.55,1401.05 8316.55,1401.05 8343.85,1401.05 8343.85,1401.05 8316.55,1401.05 8316.55,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8316.55,1401.05 8316.55,1401.05 8343.85,1401.05 8316.55,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8343.85,1401.05 8343.85,1401.05 8371.15,1401.05 8371.15,1401.05 8343.85,1401.05 8343.85,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8343.85,1401.05 8343.85,1401.05 8371.15,1401.05 8343.85,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8371.15,1401.05 8371.15,1401.05 8398.45,1401.05 8398.45,1401.05 8371.15,1401.05 8371.15,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8371.15,1401.05 8371.15,1401.05 8398.45,1401.05 8371.15,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8398.45,1401.05 8398.45,1401.05 8425.75,1401.05 8425.75,1401.05 8398.45,1401.05 8398.45,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8398.45,1401.05 8398.45,1401.05 8425.75,1401.05 8398.45,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8425.75,1401.05 8425.75,1401.05 8453.05,1401.05 8453.05,1401.05 8425.75,1401.05 8425.75,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8425.75,1401.05 8425.75,1401.05 8453.05,1401.05 8425.75,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8453.05,1401.05 8453.05,1401.05 8480.35,1401.05 8480.35,1401.05 8453.05,1401.05 8453.05,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8453.05,1401.05 8453.05,1401.05 8480.35,1401.05 8453.05,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8480.35,1401.05 8480.35,1401.05 8507.65,1401.05 8507.65,1401.05 8480.35,1401.05 8480.35,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8480.35,1401.05 8480.35,1401.05 8507.65,1401.05 8480.35,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8507.65,1401.05 8507.65,1401.05 8534.95,1401.05 8534.95,1401.05 8507.65,1401.05 8507.65,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8507.65,1401.05 8507.65,1401.05 8534.95,1401.05 8507.65,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8534.95,1401.05 8534.95,1401.05 8562.25,1401.05 8562.25,1401.05 8534.95,1401.05 8534.95,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8534.95,1401.05 8534.95,1401.05 8562.25,1401.05 8534.95,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8562.25,1401.05 8562.25,1401.05 8589.55,1401.05 8589.55,1401.05 8562.25,1401.05 8562.25,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8562.25,1401.05 8562.25,1401.05 8589.55,1401.05 8562.25,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8589.55,1401.05 8589.55,1401.05 8616.85,1401.05 8616.85,1401.05 8589.55,1401.05 8589.55,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8589.55,1401.05 8589.55,1401.05 8616.85,1401.05 8589.55,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8616.85,1401.05 8616.85,1401.05 8644.15,1401.05 8644.15,1401.05 8616.85,1401.05 8616.85,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8616.85,1401.05 8616.85,1401.05 8644.15,1401.05 8616.85,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8644.15,1401.05 8644.15,1401.05 8671.45,1401.05 8671.45,1401.05 8644.15,1401.05 8644.15,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8644.15,1401.05 8644.15,1401.05 8671.45,1401.05 8644.15,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8671.45,1299.95 8671.45,1401.05 8698.75,1401.05 8698.75,1299.95 8671.45,1299.95 8671.45,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8671.45,1299.95 8671.45,1401.05 8698.75,1401.05 8698.75,1299.95 8671.45,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8698.75,1401.05 8698.75,1401.05 8726.05,1401.05 8726.05,1401.05 8698.75,1401.05 8698.75,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8698.75,1401.05 8698.75,1401.05 8726.05,1401.05 8698.75,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8726.05,1299.95 8726.05,1401.05 8753.34,1401.05 8753.34,1299.95 8726.05,1299.95 8726.05,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8726.05,1299.95 8726.05,1401.05 8753.34,1401.05 8753.34,1299.95 8726.05,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8753.34,1401.05 8753.34,1401.05 8780.64,1401.05 8780.64,1401.05 8753.34,1401.05 8753.34,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8753.34,1401.05 8753.34,1401.05 8780.64,1401.05 8753.34,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8780.64,1401.05 8780.64,1401.05 8807.94,1401.05 8807.94,1401.05 8780.64,1401.05 8780.64,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8780.64,1401.05 8780.64,1401.05 8807.94,1401.05 8780.64,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8807.94,1401.05 8807.94,1401.05 8835.24,1401.05 8835.24,1401.05 8807.94,1401.05 8807.94,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8807.94,1401.05 8807.94,1401.05 8835.24,1401.05 8807.94,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8835.24,1401.05 8835.24,1401.05 8862.54,1401.05 8862.54,1401.05 8835.24,1401.05 8835.24,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8835.24,1401.05 8835.24,1401.05 8862.54,1401.05 8835.24,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8862.54,1401.05 8862.54,1401.05 8889.84,1401.05 8889.84,1401.05 8862.54,1401.05 8862.54,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8862.54,1401.05 8862.54,1401.05 8889.84,1401.05 8862.54,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8889.84,1401.05 8889.84,1401.05 8917.14,1401.05 8917.14,1401.05 8889.84,1401.05 8889.84,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8889.84,1401.05 8889.84,1401.05 8917.14,1401.05 8889.84,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8917.14,1401.05 8917.14,1401.05 8944.44,1401.05 8944.44,1401.05 8917.14,1401.05 8917.14,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8917.14,1401.05 8917.14,1401.05 8944.44,1401.05 8917.14,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8944.44,1401.05 8944.44,1401.05 8971.74,1401.05 8971.74,1401.05 8944.44,1401.05 8944.44,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8944.44,1401.05 8944.44,1401.05 8971.74,1401.05 8944.44,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8971.74,1401.05 8971.74,1401.05 8999.04,1401.05 8999.04,1401.05 8971.74,1401.05 8971.74,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8971.74,1401.05 8971.74,1401.05 8999.04,1401.05 8971.74,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"8999.04,1401.05 8999.04,1401.05 9026.34,1401.05 9026.34,1401.05 8999.04,1401.05 8999.04,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 8999.04,1401.05 8999.04,1401.05 9026.34,1401.05 8999.04,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9026.34,1299.95 9026.34,1401.05 9053.64,1401.05 9053.64,1299.95 9026.34,1299.95 9026.34,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9026.34,1299.95 9026.34,1401.05 9053.64,1401.05 9053.64,1299.95 9026.34,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9053.64,1401.05 9053.64,1401.05 9080.94,1401.05 9080.94,1401.05 9053.64,1401.05 9053.64,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9053.64,1401.05 9053.64,1401.05 9080.94,1401.05 9053.64,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9080.94,1401.05 9080.94,1401.05 9108.24,1401.05 9108.24,1401.05 9080.94,1401.05 9080.94,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9080.94,1401.05 9080.94,1401.05 9108.24,1401.05 9080.94,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9108.24,1401.05 9108.24,1401.05 9135.54,1401.05 9135.54,1401.05 9108.24,1401.05 9108.24,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9108.24,1401.05 9108.24,1401.05 9135.54,1401.05 9108.24,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9135.54,1401.05 9135.54,1401.05 9162.84,1401.05 9162.84,1401.05 9135.54,1401.05 9135.54,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9135.54,1401.05 9135.54,1401.05 9162.84,1401.05 9135.54,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9162.84,1401.05 9162.84,1401.05 9190.14,1401.05 9190.14,1401.05 9162.84,1401.05 9162.84,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9162.84,1401.05 9162.84,1401.05 9190.14,1401.05 9162.84,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9190.14,1299.95 9190.14,1401.05 9217.44,1401.05 9217.44,1299.95 9190.14,1299.95 9190.14,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9190.14,1299.95 9190.14,1401.05 9217.44,1401.05 9217.44,1299.95 9190.14,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9217.44,1401.05 9217.44,1401.05 9244.74,1401.05 9244.74,1401.05 9217.44,1401.05 9217.44,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9217.44,1401.05 9217.44,1401.05 9244.74,1401.05 9217.44,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9244.74,1401.05 9244.74,1401.05 9272.04,1401.05 9272.04,1401.05 9244.74,1401.05 9244.74,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9244.74,1401.05 9244.74,1401.05 9272.04,1401.05 9244.74,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9272.04,1299.95 9272.04,1401.05 9299.34,1401.05 9299.34,1299.95 9272.04,1299.95 9272.04,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9272.04,1299.95 9272.04,1401.05 9299.34,1401.05 9299.34,1299.95 9272.04,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9299.34,1401.05 9299.34,1401.05 9326.64,1401.05 9326.64,1401.05 9299.34,1401.05 9299.34,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9299.34,1401.05 9299.34,1401.05 9326.64,1401.05 9299.34,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9326.64,1401.05 9326.64,1401.05 9353.94,1401.05 9353.94,1401.05 9326.64,1401.05 9326.64,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9326.64,1401.05 9326.64,1401.05 9353.94,1401.05 9326.64,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9353.94,1401.05 9353.94,1401.05 9381.23,1401.05 9381.23,1401.05 9353.94,1401.05 9353.94,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9353.94,1401.05 9353.94,1401.05 9381.23,1401.05 9353.94,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9381.23,1299.95 9381.23,1401.05 9408.53,1401.05 9408.53,1299.95 9381.23,1299.95 9381.23,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9381.23,1299.95 9381.23,1401.05 9408.53,1401.05 9408.53,1299.95 9381.23,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9408.53,1401.05 9408.53,1401.05 9435.83,1401.05 9435.83,1401.05 9408.53,1401.05 9408.53,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9408.53,1401.05 9408.53,1401.05 9435.83,1401.05 9408.53,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9435.83,1299.95 9435.83,1401.05 9463.13,1401.05 9463.13,1299.95 9435.83,1299.95 9435.83,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9435.83,1299.95 9435.83,1401.05 9463.13,1401.05 9463.13,1299.95 9435.83,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9463.13,1299.95 9463.13,1401.05 9490.43,1401.05 9490.43,1299.95 9463.13,1299.95 9463.13,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9463.13,1299.95 9463.13,1401.05 9490.43,1401.05 9490.43,1299.95 9463.13,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9490.43,1401.05 9490.43,1401.05 9517.73,1401.05 9517.73,1401.05 9490.43,1401.05 9490.43,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9490.43,1401.05 9490.43,1401.05 9517.73,1401.05 9490.43,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9517.73,1299.95 9517.73,1401.05 9545.03,1401.05 9545.03,1299.95 9517.73,1299.95 9517.73,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9517.73,1299.95 9517.73,1401.05 9545.03,1401.05 9545.03,1299.95 9517.73,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9545.03,1401.05 9545.03,1401.05 9572.33,1401.05 9572.33,1401.05 9545.03,1401.05 9545.03,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9545.03,1401.05 9545.03,1401.05 9572.33,1401.05 9545.03,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9572.33,1401.05 9572.33,1401.05 9599.63,1401.05 9599.63,1401.05 9572.33,1401.05 9572.33,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9572.33,1401.05 9572.33,1401.05 9599.63,1401.05 9572.33,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9599.63,1401.05 9599.63,1401.05 9626.93,1401.05 9626.93,1401.05 9599.63,1401.05 9599.63,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9599.63,1401.05 9599.63,1401.05 9626.93,1401.05 9599.63,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9626.93,1401.05 9626.93,1401.05 9654.23,1401.05 9654.23,1401.05 9626.93,1401.05 9626.93,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9626.93,1401.05 9626.93,1401.05 9654.23,1401.05 9626.93,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9654.23,1401.05 9654.23,1401.05 9681.53,1401.05 9681.53,1401.05 9654.23,1401.05 9654.23,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9654.23,1401.05 9654.23,1401.05 9681.53,1401.05 9654.23,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9681.53,1401.05 9681.53,1401.05 9708.83,1401.05 9708.83,1401.05 9681.53,1401.05 9681.53,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9681.53,1401.05 9681.53,1401.05 9708.83,1401.05 9681.53,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9708.83,1401.05 9708.83,1401.05 9736.13,1401.05 9736.13,1401.05 9708.83,1401.05 9708.83,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9708.83,1401.05 9708.83,1401.05 9736.13,1401.05 9708.83,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9736.13,1401.05 9736.13,1401.05 9763.43,1401.05 9763.43,1401.05 9736.13,1401.05 9736.13,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9736.13,1401.05 9736.13,1401.05 9763.43,1401.05 9736.13,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9763.43,1401.05 9763.43,1401.05 9790.73,1401.05 9790.73,1401.05 9763.43,1401.05 9763.43,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9763.43,1401.05 9763.43,1401.05 9790.73,1401.05 9763.43,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9790.73,1401.05 9790.73,1401.05 9818.03,1401.05 9818.03,1401.05 9790.73,1401.05 9790.73,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9790.73,1401.05 9790.73,1401.05 9818.03,1401.05 9790.73,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9818.03,1401.05 9818.03,1401.05 9845.33,1401.05 9845.33,1401.05 9818.03,1401.05 9818.03,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9818.03,1401.05 9818.03,1401.05 9845.33,1401.05 9818.03,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9845.33,1401.05 9845.33,1401.05 9872.63,1401.05 9872.63,1401.05 9845.33,1401.05 9845.33,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9845.33,1401.05 9845.33,1401.05 9872.63,1401.05 9845.33,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9872.63,1401.05 9872.63,1401.05 9899.93,1401.05 9899.93,1401.05 9872.63,1401.05 9872.63,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9872.63,1401.05 9872.63,1401.05 9899.93,1401.05 9872.63,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9899.93,1401.05 9899.93,1401.05 9927.23,1401.05 9927.23,1401.05 9899.93,1401.05 9899.93,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9899.93,1401.05 9899.93,1401.05 9927.23,1401.05 9899.93,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9927.23,1401.05 9927.23,1401.05 9954.53,1401.05 9954.53,1401.05 9927.23,1401.05 9927.23,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9927.23,1401.05 9927.23,1401.05 9954.53,1401.05 9927.23,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9954.53,1401.05 9954.53,1401.05 9981.83,1401.05 9981.83,1401.05 9954.53,1401.05 9954.53,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9954.53,1401.05 9954.53,1401.05 9981.83,1401.05 9954.53,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"9981.83,1401.05 9981.83,1401.05 10009.1,1401.05 10009.1,1401.05 9981.83,1401.05 9981.83,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 9981.83,1401.05 9981.83,1401.05 10009.1,1401.05 9981.83,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10009.1,1401.05 10009.1,1401.05 10036.4,1401.05 10036.4,1401.05 10009.1,1401.05 10009.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10009.1,1401.05 10009.1,1401.05 10036.4,1401.05 10009.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10036.4,1401.05 10036.4,1401.05 10063.7,1401.05 10063.7,1401.05 10036.4,1401.05 10036.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10036.4,1401.05 10036.4,1401.05 10063.7,1401.05 10036.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10063.7,1401.05 10063.7,1401.05 10091,1401.05 10091,1401.05 10063.7,1401.05 10063.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10063.7,1401.05 10063.7,1401.05 10091,1401.05 10063.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10091,1401.05 10091,1401.05 10118.3,1401.05 10118.3,1401.05 10091,1401.05 10091,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10091,1401.05 10091,1401.05 10118.3,1401.05 10091,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10118.3,1401.05 10118.3,1401.05 10145.6,1401.05 10145.6,1401.05 10118.3,1401.05 10118.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10118.3,1401.05 10118.3,1401.05 10145.6,1401.05 10118.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10145.6,1401.05 10145.6,1401.05 10172.9,1401.05 10172.9,1401.05 10145.6,1401.05 10145.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10145.6,1401.05 10145.6,1401.05 10172.9,1401.05 10145.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10172.9,1401.05 10172.9,1401.05 10200.2,1401.05 10200.2,1401.05 10172.9,1401.05 10172.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10172.9,1401.05 10172.9,1401.05 10200.2,1401.05 10172.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10200.2,1401.05 10200.2,1401.05 10227.5,1401.05 10227.5,1401.05 10200.2,1401.05 10200.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10200.2,1401.05 10200.2,1401.05 10227.5,1401.05 10200.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10227.5,1401.05 10227.5,1401.05 10254.8,1401.05 10254.8,1401.05 10227.5,1401.05 10227.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10227.5,1401.05 10227.5,1401.05 10254.8,1401.05 10227.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10254.8,1401.05 10254.8,1401.05 10282.1,1401.05 10282.1,1401.05 10254.8,1401.05 10254.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10254.8,1401.05 10254.8,1401.05 10282.1,1401.05 10254.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10282.1,1401.05 10282.1,1401.05 10309.4,1401.05 10309.4,1401.05 10282.1,1401.05 10282.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10282.1,1401.05 10282.1,1401.05 10309.4,1401.05 10282.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10309.4,1401.05 10309.4,1401.05 10336.7,1401.05 10336.7,1401.05 10309.4,1401.05 10309.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10309.4,1401.05 10309.4,1401.05 10336.7,1401.05 10309.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10336.7,1401.05 10336.7,1401.05 10364,1401.05 10364,1401.05 10336.7,1401.05 10336.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10336.7,1401.05 10336.7,1401.05 10364,1401.05 10336.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10364,1401.05 10364,1401.05 10391.3,1401.05 10391.3,1401.05 10364,1401.05 10364,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10364,1401.05 10364,1401.05 10391.3,1401.05 10364,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10391.3,1401.05 10391.3,1401.05 10418.6,1401.05 10418.6,1401.05 10391.3,1401.05 10391.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10391.3,1401.05 10391.3,1401.05 10418.6,1401.05 10391.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10418.6,1401.05 10418.6,1401.05 10445.9,1401.05 10445.9,1401.05 10418.6,1401.05 10418.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10418.6,1401.05 10418.6,1401.05 10445.9,1401.05 10418.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10445.9,1401.05 10445.9,1401.05 10473.2,1401.05 10473.2,1401.05 10445.9,1401.05 10445.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10445.9,1401.05 10445.9,1401.05 10473.2,1401.05 10445.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10473.2,1401.05 10473.2,1401.05 10500.5,1401.05 10500.5,1401.05 10473.2,1401.05 10473.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10473.2,1401.05 10473.2,1401.05 10500.5,1401.05 10473.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10500.5,1401.05 10500.5,1401.05 10527.8,1401.05 10527.8,1401.05 10500.5,1401.05 10500.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10500.5,1401.05 10500.5,1401.05 10527.8,1401.05 10500.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10527.8,1401.05 10527.8,1401.05 10555.1,1401.05 10555.1,1401.05 10527.8,1401.05 10527.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10527.8,1401.05 10527.8,1401.05 10555.1,1401.05 10527.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10555.1,1401.05 10555.1,1401.05 10582.4,1401.05 10582.4,1401.05 10555.1,1401.05 10555.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10555.1,1401.05 10555.1,1401.05 10582.4,1401.05 10555.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10582.4,1401.05 10582.4,1401.05 10609.7,1401.05 10609.7,1401.05 10582.4,1401.05 10582.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10582.4,1401.05 10582.4,1401.05 10609.7,1401.05 10582.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10609.7,1401.05 10609.7,1401.05 10637,1401.05 10637,1401.05 10609.7,1401.05 10609.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10609.7,1401.05 10609.7,1401.05 10637,1401.05 10609.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10637,1401.05 10637,1401.05 10664.3,1401.05 10664.3,1401.05 10637,1401.05 10637,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10637,1401.05 10637,1401.05 10664.3,1401.05 10637,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10664.3,1299.95 10664.3,1401.05 10691.6,1401.05 10691.6,1299.95 10664.3,1299.95 10664.3,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10664.3,1299.95 10664.3,1401.05 10691.6,1401.05 10691.6,1299.95 10664.3,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10691.6,1401.05 10691.6,1401.05 10718.9,1401.05 10718.9,1401.05 10691.6,1401.05 10691.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10691.6,1401.05 10691.6,1401.05 10718.9,1401.05 10691.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10718.9,1401.05 10718.9,1401.05 10746.2,1401.05 10746.2,1401.05 10718.9,1401.05 10718.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10718.9,1401.05 10718.9,1401.05 10746.2,1401.05 10718.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10746.2,1401.05 10746.2,1401.05 10773.5,1401.05 10773.5,1401.05 10746.2,1401.05 10746.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10746.2,1401.05 10746.2,1401.05 10773.5,1401.05 10746.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10773.5,1401.05 10773.5,1401.05 10800.8,1401.05 10800.8,1401.05 10773.5,1401.05 10773.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10773.5,1401.05 10773.5,1401.05 10800.8,1401.05 10773.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10800.8,1401.05 10800.8,1401.05 10828.1,1401.05 10828.1,1401.05 10800.8,1401.05 10800.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10800.8,1401.05 10800.8,1401.05 10828.1,1401.05 10800.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10828.1,1401.05 10828.1,1401.05 10855.4,1401.05 10855.4,1401.05 10828.1,1401.05 10828.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10828.1,1401.05 10828.1,1401.05 10855.4,1401.05 10828.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10855.4,1401.05 10855.4,1401.05 10882.7,1401.05 10882.7,1401.05 10855.4,1401.05 10855.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10855.4,1401.05 10855.4,1401.05 10882.7,1401.05 10855.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10882.7,1401.05 10882.7,1401.05 10910,1401.05 10910,1401.05 10882.7,1401.05 10882.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10882.7,1401.05 10882.7,1401.05 10910,1401.05 10882.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10910,1401.05 10910,1401.05 10937.3,1401.05 10937.3,1401.05 10910,1401.05 10910,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10910,1401.05 10910,1401.05 10937.3,1401.05 10910,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10937.3,1401.05 10937.3,1401.05 10964.6,1401.05 10964.6,1401.05 10937.3,1401.05 10937.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10937.3,1401.05 10937.3,1401.05 10964.6,1401.05 10937.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10964.6,1401.05 10964.6,1401.05 10991.9,1401.05 10991.9,1401.05 10964.6,1401.05 10964.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10964.6,1401.05 10964.6,1401.05 10991.9,1401.05 10964.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"10991.9,1401.05 10991.9,1401.05 11019.2,1401.05 11019.2,1401.05 10991.9,1401.05 10991.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 10991.9,1401.05 10991.9,1401.05 11019.2,1401.05 10991.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11019.2,1401.05 11019.2,1401.05 11046.5,1401.05 11046.5,1401.05 11019.2,1401.05 11019.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11019.2,1401.05 11019.2,1401.05 11046.5,1401.05 11019.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11046.5,1401.05 11046.5,1401.05 11073.8,1401.05 11073.8,1401.05 11046.5,1401.05 11046.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11046.5,1401.05 11046.5,1401.05 11073.8,1401.05 11046.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11073.8,1401.05 11073.8,1401.05 11101.1,1401.05 11101.1,1401.05 11073.8,1401.05 11073.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11073.8,1401.05 11073.8,1401.05 11101.1,1401.05 11073.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11101.1,1401.05 11101.1,1401.05 11128.4,1401.05 11128.4,1401.05 11101.1,1401.05 11101.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11101.1,1401.05 11101.1,1401.05 11128.4,1401.05 11101.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11128.4,1401.05 11128.4,1401.05 11155.7,1401.05 11155.7,1401.05 11128.4,1401.05 11128.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11128.4,1401.05 11128.4,1401.05 11155.7,1401.05 11128.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11155.7,1401.05 11155.7,1401.05 11183,1401.05 11183,1401.05 11155.7,1401.05 11155.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11155.7,1401.05 11155.7,1401.05 11183,1401.05 11155.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11183,1401.05 11183,1401.05 11210.3,1401.05 11210.3,1401.05 11183,1401.05 11183,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11183,1401.05 11183,1401.05 11210.3,1401.05 11183,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11210.3,1401.05 11210.3,1401.05 11237.6,1401.05 11237.6,1401.05 11210.3,1401.05 11210.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11210.3,1401.05 11210.3,1401.05 11237.6,1401.05 11210.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11237.6,1401.05 11237.6,1401.05 11264.9,1401.05 11264.9,1401.05 11237.6,1401.05 11237.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11237.6,1401.05 11237.6,1401.05 11264.9,1401.05 11237.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11264.9,1401.05 11264.9,1401.05 11292.2,1401.05 11292.2,1401.05 11264.9,1401.05 11264.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11264.9,1401.05 11264.9,1401.05 11292.2,1401.05 11264.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11292.2,1401.05 11292.2,1401.05 11319.5,1401.05 11319.5,1401.05 11292.2,1401.05 11292.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11292.2,1401.05 11292.2,1401.05 11319.5,1401.05 11292.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11319.5,1401.05 11319.5,1401.05 11346.8,1401.05 11346.8,1401.05 11319.5,1401.05 11319.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11319.5,1401.05 11319.5,1401.05 11346.8,1401.05 11319.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11346.8,1401.05 11346.8,1401.05 11374.1,1401.05 11374.1,1401.05 11346.8,1401.05 11346.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11346.8,1401.05 11346.8,1401.05 11374.1,1401.05 11346.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11374.1,1401.05 11374.1,1401.05 11401.4,1401.05 11401.4,1401.05 11374.1,1401.05 11374.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11374.1,1401.05 11374.1,1401.05 11401.4,1401.05 11374.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11401.4,1401.05 11401.4,1401.05 11428.7,1401.05 11428.7,1401.05 11401.4,1401.05 11401.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11401.4,1401.05 11401.4,1401.05 11428.7,1401.05 11401.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11428.7,1401.05 11428.7,1401.05 11456,1401.05 11456,1401.05 11428.7,1401.05 11428.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11428.7,1401.05 11428.7,1401.05 11456,1401.05 11428.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11456,1401.05 11456,1401.05 11483.3,1401.05 11483.3,1401.05 11456,1401.05 11456,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11456,1401.05 11456,1401.05 11483.3,1401.05 11456,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11483.3,1401.05 11483.3,1401.05 11510.6,1401.05 11510.6,1401.05 11483.3,1401.05 11483.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11483.3,1401.05 11483.3,1401.05 11510.6,1401.05 11483.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11510.6,1401.05 11510.6,1401.05 11537.9,1401.05 11537.9,1401.05 11510.6,1401.05 11510.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11510.6,1401.05 11510.6,1401.05 11537.9,1401.05 11510.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11537.9,1401.05 11537.9,1401.05 11565.2,1401.05 11565.2,1401.05 11537.9,1401.05 11537.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11537.9,1401.05 11537.9,1401.05 11565.2,1401.05 11537.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11565.2,1401.05 11565.2,1401.05 11592.5,1401.05 11592.5,1401.05 11565.2,1401.05 11565.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11565.2,1401.05 11565.2,1401.05 11592.5,1401.05 11565.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11592.5,1401.05 11592.5,1401.05 11619.8,1401.05 11619.8,1401.05 11592.5,1401.05 11592.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11592.5,1401.05 11592.5,1401.05 11619.8,1401.05 11592.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11619.8,1401.05 11619.8,1401.05 11647.1,1401.05 11647.1,1401.05 11619.8,1401.05 11619.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11619.8,1401.05 11619.8,1401.05 11647.1,1401.05 11619.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11647.1,1401.05 11647.1,1401.05 11674.4,1401.05 11674.4,1401.05 11647.1,1401.05 11647.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11647.1,1401.05 11647.1,1401.05 11674.4,1401.05 11647.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11674.4,1401.05 11674.4,1401.05 11701.7,1401.05 11701.7,1401.05 11674.4,1401.05 11674.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11674.4,1401.05 11674.4,1401.05 11701.7,1401.05 11674.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11701.7,1401.05 11701.7,1401.05 11729,1401.05 11729,1401.05 11701.7,1401.05 11701.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11701.7,1401.05 11701.7,1401.05 11729,1401.05 11701.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11729,1401.05 11729,1401.05 11756.3,1401.05 11756.3,1401.05 11729,1401.05 11729,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11729,1401.05 11729,1401.05 11756.3,1401.05 11729,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11756.3,1401.05 11756.3,1401.05 11783.6,1401.05 11783.6,1401.05 11756.3,1401.05 11756.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11756.3,1401.05 11756.3,1401.05 11783.6,1401.05 11756.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11783.6,1401.05 11783.6,1401.05 11810.9,1401.05 11810.9,1401.05 11783.6,1401.05 11783.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11783.6,1401.05 11783.6,1401.05 11810.9,1401.05 11783.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11810.9,1401.05 11810.9,1401.05 11838.2,1401.05 11838.2,1401.05 11810.9,1401.05 11810.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11810.9,1401.05 11810.9,1401.05 11838.2,1401.05 11810.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11838.2,1401.05 11838.2,1401.05 11865.5,1401.05 11865.5,1401.05 11838.2,1401.05 11838.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11838.2,1401.05 11838.2,1401.05 11865.5,1401.05 11838.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11865.5,1401.05 11865.5,1401.05 11892.8,1401.05 11892.8,1401.05 11865.5,1401.05 11865.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11865.5,1401.05 11865.5,1401.05 11892.8,1401.05 11865.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11892.8,1401.05 11892.8,1401.05 11920.1,1401.05 11920.1,1401.05 11892.8,1401.05 11892.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11892.8,1401.05 11892.8,1401.05 11920.1,1401.05 11892.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11920.1,1299.95 11920.1,1401.05 11947.4,1401.05 11947.4,1299.95 11920.1,1299.95 11920.1,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11920.1,1299.95 11920.1,1401.05 11947.4,1401.05 11947.4,1299.95 11920.1,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11947.4,1401.05 11947.4,1401.05 11974.7,1401.05 11974.7,1401.05 11947.4,1401.05 11947.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11947.4,1401.05 11947.4,1401.05 11974.7,1401.05 11947.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"11974.7,1401.05 11974.7,1401.05 12002,1401.05 12002,1401.05 11974.7,1401.05 11974.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 11974.7,1401.05 11974.7,1401.05 12002,1401.05 11974.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12002,1401.05 12002,1401.05 12029.3,1401.05 12029.3,1401.05 12002,1401.05 12002,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12002,1401.05 12002,1401.05 12029.3,1401.05 12002,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12029.3,1401.05 12029.3,1401.05 12056.6,1401.05 12056.6,1401.05 12029.3,1401.05 12029.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12029.3,1401.05 12029.3,1401.05 12056.6,1401.05 12029.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12056.6,1401.05 12056.6,1401.05 12083.9,1401.05 12083.9,1401.05 12056.6,1401.05 12056.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12056.6,1401.05 12056.6,1401.05 12083.9,1401.05 12056.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12083.9,1401.05 12083.9,1401.05 12111.2,1401.05 12111.2,1401.05 12083.9,1401.05 12083.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12083.9,1401.05 12083.9,1401.05 12111.2,1401.05 12083.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12111.2,1401.05 12111.2,1401.05 12138.5,1401.05 12138.5,1401.05 12111.2,1401.05 12111.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12111.2,1401.05 12111.2,1401.05 12138.5,1401.05 12111.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12138.5,1401.05 12138.5,1401.05 12165.8,1401.05 12165.8,1401.05 12138.5,1401.05 12138.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12138.5,1401.05 12138.5,1401.05 12165.8,1401.05 12138.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12165.8,1401.05 12165.8,1401.05 12193.1,1401.05 12193.1,1401.05 12165.8,1401.05 12165.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12165.8,1401.05 12165.8,1401.05 12193.1,1401.05 12165.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12193.1,1401.05 12193.1,1401.05 12220.4,1401.05 12220.4,1401.05 12193.1,1401.05 12193.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12193.1,1401.05 12193.1,1401.05 12220.4,1401.05 12193.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12220.4,1401.05 12220.4,1401.05 12247.7,1401.05 12247.7,1401.05 12220.4,1401.05 12220.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12220.4,1401.05 12220.4,1401.05 12247.7,1401.05 12220.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12247.7,1401.05 12247.7,1401.05 12275,1401.05 12275,1401.05 12247.7,1401.05 12247.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12247.7,1401.05 12247.7,1401.05 12275,1401.05 12247.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12275,1401.05 12275,1401.05 12302.3,1401.05 12302.3,1401.05 12275,1401.05 12275,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12275,1401.05 12275,1401.05 12302.3,1401.05 12275,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12302.3,1401.05 12302.3,1401.05 12329.6,1401.05 12329.6,1401.05 12302.3,1401.05 12302.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12302.3,1401.05 12302.3,1401.05 12329.6,1401.05 12302.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12329.6,1401.05 12329.6,1401.05 12356.9,1401.05 12356.9,1401.05 12329.6,1401.05 12329.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12329.6,1401.05 12329.6,1401.05 12356.9,1401.05 12329.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12356.9,1401.05 12356.9,1401.05 12384.2,1401.05 12384.2,1401.05 12356.9,1401.05 12356.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12356.9,1401.05 12356.9,1401.05 12384.2,1401.05 12356.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12384.2,1401.05 12384.2,1401.05 12411.5,1401.05 12411.5,1401.05 12384.2,1401.05 12384.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12384.2,1401.05 12384.2,1401.05 12411.5,1401.05 12384.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12411.5,1401.05 12411.5,1401.05 12438.8,1401.05 12438.8,1401.05 12411.5,1401.05 12411.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12411.5,1401.05 12411.5,1401.05 12438.8,1401.05 12411.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12438.8,1401.05 12438.8,1401.05 12466.1,1401.05 12466.1,1401.05 12438.8,1401.05 12438.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12438.8,1401.05 12438.8,1401.05 12466.1,1401.05 12438.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12466.1,1401.05 12466.1,1401.05 12493.4,1401.05 12493.4,1401.05 12466.1,1401.05 12466.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12466.1,1401.05 12466.1,1401.05 12493.4,1401.05 12466.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12493.4,1401.05 12493.4,1401.05 12520.7,1401.05 12520.7,1401.05 12493.4,1401.05 12493.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12493.4,1401.05 12493.4,1401.05 12520.7,1401.05 12493.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12520.7,1401.05 12520.7,1401.05 12548,1401.05 12548,1401.05 12520.7,1401.05 12520.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12520.7,1401.05 12520.7,1401.05 12548,1401.05 12520.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12548,1299.95 12548,1401.05 12575.3,1401.05 12575.3,1299.95 12548,1299.95 12548,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12548,1299.95 12548,1401.05 12575.3,1401.05 12575.3,1299.95 12548,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12575.3,1401.05 12575.3,1401.05 12602.6,1401.05 12602.6,1401.05 12575.3,1401.05 12575.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12575.3,1401.05 12575.3,1401.05 12602.6,1401.05 12575.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12602.6,1401.05 12602.6,1401.05 12629.9,1401.05 12629.9,1401.05 12602.6,1401.05 12602.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12602.6,1401.05 12602.6,1401.05 12629.9,1401.05 12602.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12629.9,1401.05 12629.9,1401.05 12657.2,1401.05 12657.2,1401.05 12629.9,1401.05 12629.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12629.9,1401.05 12629.9,1401.05 12657.2,1401.05 12629.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12657.2,1401.05 12657.2,1401.05 12684.5,1401.05 12684.5,1401.05 12657.2,1401.05 12657.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12657.2,1401.05 12657.2,1401.05 12684.5,1401.05 12657.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12684.5,1401.05 12684.5,1401.05 12711.8,1401.05 12711.8,1401.05 12684.5,1401.05 12684.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12684.5,1401.05 12684.5,1401.05 12711.8,1401.05 12684.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12711.8,1401.05 12711.8,1401.05 12739.1,1401.05 12739.1,1401.05 12711.8,1401.05 12711.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12711.8,1401.05 12711.8,1401.05 12739.1,1401.05 12711.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12739.1,1401.05 12739.1,1401.05 12766.4,1401.05 12766.4,1401.05 12739.1,1401.05 12739.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12739.1,1401.05 12739.1,1401.05 12766.4,1401.05 12739.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12766.4,1401.05 12766.4,1401.05 12793.7,1401.05 12793.7,1401.05 12766.4,1401.05 12766.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12766.4,1401.05 12766.4,1401.05 12793.7,1401.05 12766.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12793.7,1299.95 12793.7,1401.05 12821,1401.05 12821,1299.95 12793.7,1299.95 12793.7,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12793.7,1299.95 12793.7,1401.05 12821,1401.05 12821,1299.95 12793.7,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12821,1401.05 12821,1401.05 12848.3,1401.05 12848.3,1401.05 12821,1401.05 12821,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12821,1401.05 12821,1401.05 12848.3,1401.05 12821,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12848.3,1401.05 12848.3,1401.05 12875.6,1401.05 12875.6,1401.05 12848.3,1401.05 12848.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12848.3,1401.05 12848.3,1401.05 12875.6,1401.05 12848.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12875.6,1401.05 12875.6,1401.05 12902.9,1401.05 12902.9,1401.05 12875.6,1401.05 12875.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12875.6,1401.05 12875.6,1401.05 12902.9,1401.05 12875.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12902.9,1401.05 12902.9,1401.05 12930.2,1401.05 12930.2,1401.05 12902.9,1401.05 12902.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12902.9,1401.05 12902.9,1401.05 12930.2,1401.05 12902.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12930.2,1401.05 12930.2,1401.05 12957.5,1401.05 12957.5,1401.05 12930.2,1401.05 12930.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12930.2,1401.05 12930.2,1401.05 12957.5,1401.05 12930.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12957.5,1401.05 12957.5,1401.05 12984.8,1401.05 12984.8,1401.05 12957.5,1401.05 12957.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12957.5,1401.05 12957.5,1401.05 12984.8,1401.05 12957.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"12984.8,1401.05 12984.8,1401.05 13012.1,1401.05 13012.1,1401.05 12984.8,1401.05 12984.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 12984.8,1401.05 12984.8,1401.05 13012.1,1401.05 12984.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13012.1,1401.05 13012.1,1401.05 13039.4,1401.05 13039.4,1401.05 13012.1,1401.05 13012.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13012.1,1401.05 13012.1,1401.05 13039.4,1401.05 13012.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13039.4,1401.05 13039.4,1401.05 13066.7,1401.05 13066.7,1401.05 13039.4,1401.05 13039.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13039.4,1401.05 13039.4,1401.05 13066.7,1401.05 13039.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13066.7,1401.05 13066.7,1401.05 13094,1401.05 13094,1401.05 13066.7,1401.05 13066.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13066.7,1401.05 13066.7,1401.05 13094,1401.05 13066.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13094,1401.05 13094,1401.05 13121.3,1401.05 13121.3,1401.05 13094,1401.05 13094,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13094,1401.05 13094,1401.05 13121.3,1401.05 13094,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13121.3,1401.05 13121.3,1401.05 13148.6,1401.05 13148.6,1401.05 13121.3,1401.05 13121.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13121.3,1401.05 13121.3,1401.05 13148.6,1401.05 13121.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13148.6,1401.05 13148.6,1401.05 13175.9,1401.05 13175.9,1401.05 13148.6,1401.05 13148.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13148.6,1401.05 13148.6,1401.05 13175.9,1401.05 13148.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13175.9,1401.05 13175.9,1401.05 13203.2,1401.05 13203.2,1401.05 13175.9,1401.05 13175.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13175.9,1401.05 13175.9,1401.05 13203.2,1401.05 13175.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13203.2,1401.05 13203.2,1401.05 13230.5,1401.05 13230.5,1401.05 13203.2,1401.05 13203.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13203.2,1401.05 13203.2,1401.05 13230.5,1401.05 13203.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13230.5,1401.05 13230.5,1401.05 13257.8,1401.05 13257.8,1401.05 13230.5,1401.05 13230.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13230.5,1401.05 13230.5,1401.05 13257.8,1401.05 13230.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13257.8,1401.05 13257.8,1401.05 13285.1,1401.05 13285.1,1401.05 13257.8,1401.05 13257.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13257.8,1401.05 13257.8,1401.05 13285.1,1401.05 13257.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13285.1,1401.05 13285.1,1401.05 13312.4,1401.05 13312.4,1401.05 13285.1,1401.05 13285.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13285.1,1401.05 13285.1,1401.05 13312.4,1401.05 13285.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13312.4,1401.05 13312.4,1401.05 13339.7,1401.05 13339.7,1401.05 13312.4,1401.05 13312.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13312.4,1401.05 13312.4,1401.05 13339.7,1401.05 13312.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13339.7,1299.95 13339.7,1401.05 13367,1401.05 13367,1299.95 13339.7,1299.95 13339.7,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13339.7,1299.95 13339.7,1401.05 13367,1401.05 13367,1299.95 13339.7,1299.95 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13367,1401.05 13367,1401.05 13394.3,1401.05 13394.3,1401.05 13367,1401.05 13367,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13367,1401.05 13367,1401.05 13394.3,1401.05 13367,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13394.3,1401.05 13394.3,1401.05 13421.6,1401.05 13421.6,1401.05 13394.3,1401.05 13394.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13394.3,1401.05 13394.3,1401.05 13421.6,1401.05 13394.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13421.6,1401.05 13421.6,1401.05 13448.9,1401.05 13448.9,1401.05 13421.6,1401.05 13421.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13421.6,1401.05 13421.6,1401.05 13448.9,1401.05 13421.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13448.9,1401.05 13448.9,1401.05 13476.2,1401.05 13476.2,1401.05 13448.9,1401.05 13448.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13448.9,1401.05 13448.9,1401.05 13476.2,1401.05 13448.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13476.2,1401.05 13476.2,1401.05 13503.5,1401.05 13503.5,1401.05 13476.2,1401.05 13476.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13476.2,1401.05 13476.2,1401.05 13503.5,1401.05 13476.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13503.5,1401.05 13503.5,1401.05 13530.8,1401.05 13530.8,1401.05 13503.5,1401.05 13503.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13503.5,1401.05 13503.5,1401.05 13530.8,1401.05 13503.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13530.8,1401.05 13530.8,1401.05 13558.1,1401.05 13558.1,1401.05 13530.8,1401.05 13530.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13530.8,1401.05 13530.8,1401.05 13558.1,1401.05 13530.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13558.1,1401.05 13558.1,1401.05 13585.4,1401.05 13585.4,1401.05 13558.1,1401.05 13558.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13558.1,1401.05 13558.1,1401.05 13585.4,1401.05 13558.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13585.4,1401.05 13585.4,1401.05 13612.7,1401.05 13612.7,1401.05 13585.4,1401.05 13585.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13585.4,1401.05 13585.4,1401.05 13612.7,1401.05 13585.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13612.7,1401.05 13612.7,1401.05 13640,1401.05 13640,1401.05 13612.7,1401.05 13612.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13612.7,1401.05 13612.7,1401.05 13640,1401.05 13612.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13640,1401.05 13640,1401.05 13667.3,1401.05 13667.3,1401.05 13640,1401.05 13640,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13640,1401.05 13640,1401.05 13667.3,1401.05 13640,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13667.3,1401.05 13667.3,1401.05 13694.6,1401.05 13694.6,1401.05 13667.3,1401.05 13667.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13667.3,1401.05 13667.3,1401.05 13694.6,1401.05 13667.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13694.6,1401.05 13694.6,1401.05 13721.9,1401.05 13721.9,1401.05 13694.6,1401.05 13694.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13694.6,1401.05 13694.6,1401.05 13721.9,1401.05 13694.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13721.9,1401.05 13721.9,1401.05 13749.2,1401.05 13749.2,1401.05 13721.9,1401.05 13721.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13721.9,1401.05 13721.9,1401.05 13749.2,1401.05 13721.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13749.2,1401.05 13749.2,1401.05 13776.5,1401.05 13776.5,1401.05 13749.2,1401.05 13749.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13749.2,1401.05 13749.2,1401.05 13776.5,1401.05 13749.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13776.5,1401.05 13776.5,1401.05 13803.8,1401.05 13803.8,1401.05 13776.5,1401.05 13776.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13776.5,1401.05 13776.5,1401.05 13803.8,1401.05 13776.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13803.8,1401.05 13803.8,1401.05 13831.1,1401.05 13831.1,1401.05 13803.8,1401.05 13803.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13803.8,1401.05 13803.8,1401.05 13831.1,1401.05 13803.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13831.1,1401.05 13831.1,1401.05 13858.4,1401.05 13858.4,1401.05 13831.1,1401.05 13831.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13831.1,1401.05 13831.1,1401.05 13858.4,1401.05 13831.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13858.4,1401.05 13858.4,1401.05 13885.7,1401.05 13885.7,1401.05 13858.4,1401.05 13858.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13858.4,1401.05 13858.4,1401.05 13885.7,1401.05 13858.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13885.7,1401.05 13885.7,1401.05 13913,1401.05 13913,1401.05 13885.7,1401.05 13885.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13885.7,1401.05 13885.7,1401.05 13913,1401.05 13885.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13913,1401.05 13913,1401.05 13940.3,1401.05 13940.3,1401.05 13913,1401.05 13913,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13913,1401.05 13913,1401.05 13940.3,1401.05 13913,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13940.3,1401.05 13940.3,1401.05 13967.6,1401.05 13967.6,1401.05 13940.3,1401.05 13940.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13940.3,1401.05 13940.3,1401.05 13967.6,1401.05 13940.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13967.6,1401.05 13967.6,1401.05 13994.9,1401.05 13994.9,1401.05 13967.6,1401.05 13967.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13967.6,1401.05 13967.6,1401.05 13994.9,1401.05 13967.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"13994.9,1401.05 13994.9,1401.05 14022.2,1401.05 14022.2,1401.05 13994.9,1401.05 13994.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 13994.9,1401.05 13994.9,1401.05 14022.2,1401.05 13994.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14022.2,1401.05 14022.2,1401.05 14049.5,1401.05 14049.5,1401.05 14022.2,1401.05 14022.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14022.2,1401.05 14022.2,1401.05 14049.5,1401.05 14022.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14049.5,1401.05 14049.5,1401.05 14076.8,1401.05 14076.8,1401.05 14049.5,1401.05 14049.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14049.5,1401.05 14049.5,1401.05 14076.8,1401.05 14049.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14076.8,1401.05 14076.8,1401.05 14104.1,1401.05 14104.1,1401.05 14076.8,1401.05 14076.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14076.8,1401.05 14076.8,1401.05 14104.1,1401.05 14076.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14104.1,1401.05 14104.1,1401.05 14131.4,1401.05 14131.4,1401.05 14104.1,1401.05 14104.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14104.1,1401.05 14104.1,1401.05 14131.4,1401.05 14104.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14131.4,1401.05 14131.4,1401.05 14158.7,1401.05 14158.7,1401.05 14131.4,1401.05 14131.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14131.4,1401.05 14131.4,1401.05 14158.7,1401.05 14131.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14158.7,1401.05 14158.7,1401.05 14186,1401.05 14186,1401.05 14158.7,1401.05 14158.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14158.7,1401.05 14158.7,1401.05 14186,1401.05 14158.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14186,1401.05 14186,1401.05 14213.3,1401.05 14213.3,1401.05 14186,1401.05 14186,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14186,1401.05 14186,1401.05 14213.3,1401.05 14186,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14213.3,1401.05 14213.3,1401.05 14240.6,1401.05 14240.6,1401.05 14213.3,1401.05 14213.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14213.3,1401.05 14213.3,1401.05 14240.6,1401.05 14213.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14240.6,1401.05 14240.6,1401.05 14267.9,1401.05 14267.9,1401.05 14240.6,1401.05 14240.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14240.6,1401.05 14240.6,1401.05 14267.9,1401.05 14240.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14267.9,1401.05 14267.9,1401.05 14295.2,1401.05 14295.2,1401.05 14267.9,1401.05 14267.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14267.9,1401.05 14267.9,1401.05 14295.2,1401.05 14267.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14295.2,1401.05 14295.2,1401.05 14322.5,1401.05 14322.5,1401.05 14295.2,1401.05 14295.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14295.2,1401.05 14295.2,1401.05 14322.5,1401.05 14295.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14322.5,1401.05 14322.5,1401.05 14349.8,1401.05 14349.8,1401.05 14322.5,1401.05 14322.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14322.5,1401.05 14322.5,1401.05 14349.8,1401.05 14322.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14349.8,1401.05 14349.8,1401.05 14377.1,1401.05 14377.1,1401.05 14349.8,1401.05 14349.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14349.8,1401.05 14349.8,1401.05 14377.1,1401.05 14349.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14377.1,1401.05 14377.1,1401.05 14404.4,1401.05 14404.4,1401.05 14377.1,1401.05 14377.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14377.1,1401.05 14377.1,1401.05 14404.4,1401.05 14377.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14404.4,1401.05 14404.4,1401.05 14431.7,1401.05 14431.7,1401.05 14404.4,1401.05 14404.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14404.4,1401.05 14404.4,1401.05 14431.7,1401.05 14404.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14431.7,1401.05 14431.7,1401.05 14459,1401.05 14459,1401.05 14431.7,1401.05 14431.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14431.7,1401.05 14431.7,1401.05 14459,1401.05 14431.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14459,1401.05 14459,1401.05 14486.3,1401.05 14486.3,1401.05 14459,1401.05 14459,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14459,1401.05 14459,1401.05 14486.3,1401.05 14459,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14486.3,1401.05 14486.3,1401.05 14513.6,1401.05 14513.6,1401.05 14486.3,1401.05 14486.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14486.3,1401.05 14486.3,1401.05 14513.6,1401.05 14486.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14513.6,1401.05 14513.6,1401.05 14540.9,1401.05 14540.9,1401.05 14513.6,1401.05 14513.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14513.6,1401.05 14513.6,1401.05 14540.9,1401.05 14513.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14540.9,1401.05 14540.9,1401.05 14568.2,1401.05 14568.2,1401.05 14540.9,1401.05 14540.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14540.9,1401.05 14540.9,1401.05 14568.2,1401.05 14540.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14568.2,1401.05 14568.2,1401.05 14595.5,1401.05 14595.5,1401.05 14568.2,1401.05 14568.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14568.2,1401.05 14568.2,1401.05 14595.5,1401.05 14568.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14595.5,1401.05 14595.5,1401.05 14622.8,1401.05 14622.8,1401.05 14595.5,1401.05 14595.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14595.5,1401.05 14595.5,1401.05 14622.8,1401.05 14595.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14622.8,1401.05 14622.8,1401.05 14650.1,1401.05 14650.1,1401.05 14622.8,1401.05 14622.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14622.8,1401.05 14622.8,1401.05 14650.1,1401.05 14622.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14650.1,1401.05 14650.1,1401.05 14677.4,1401.05 14677.4,1401.05 14650.1,1401.05 14650.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14650.1,1401.05 14650.1,1401.05 14677.4,1401.05 14650.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14677.4,1401.05 14677.4,1401.05 14704.7,1401.05 14704.7,1401.05 14677.4,1401.05 14677.4,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14677.4,1401.05 14677.4,1401.05 14704.7,1401.05 14677.4,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14704.7,1401.05 14704.7,1401.05 14732,1401.05 14732,1401.05 14704.7,1401.05 14704.7,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14704.7,1401.05 14704.7,1401.05 14732,1401.05 14704.7,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14732,1401.05 14732,1401.05 14759.3,1401.05 14759.3,1401.05 14732,1401.05 14732,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14732,1401.05 14732,1401.05 14759.3,1401.05 14732,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14759.3,1401.05 14759.3,1401.05 14786.6,1401.05 14786.6,1401.05 14759.3,1401.05 14759.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14759.3,1401.05 14759.3,1401.05 14786.6,1401.05 14759.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14786.6,1401.05 14786.6,1401.05 14813.9,1401.05 14813.9,1401.05 14786.6,1401.05 14786.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14786.6,1401.05 14786.6,1401.05 14813.9,1401.05 14786.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14813.9,1401.05 14813.9,1401.05 14841.2,1401.05 14841.2,1401.05 14813.9,1401.05 14813.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14813.9,1401.05 14813.9,1401.05 14841.2,1401.05 14813.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14841.2,1401.05 14841.2,1401.05 14868.5,1401.05 14868.5,1401.05 14841.2,1401.05 14841.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14841.2,1401.05 14841.2,1401.05 14868.5,1401.05 14841.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14868.5,1401.05 14868.5,1401.05 14895.8,1401.05 14895.8,1401.05 14868.5,1401.05 14868.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14868.5,1401.05 14868.5,1401.05 14895.8,1401.05 14868.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14895.8,1401.05 14895.8,1401.05 14923.1,1401.05 14923.1,1401.05 14895.8,1401.05 14895.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14895.8,1401.05 14895.8,1401.05 14923.1,1401.05 14895.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14923.1,1401.05 14923.1,1401.05 14950.3,1401.05 14950.3,1401.05 14923.1,1401.05 14923.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14923.1,1401.05 14923.1,1401.05 14950.3,1401.05 14923.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14950.3,1401.05 14950.3,1401.05 14977.6,1401.05 14977.6,1401.05 14950.3,1401.05 14950.3,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14950.3,1401.05 14950.3,1401.05 14977.6,1401.05 14950.3,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"14977.6,1401.05 14977.6,1401.05 15004.9,1401.05 15004.9,1401.05 14977.6,1401.05 14977.6,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 14977.6,1401.05 14977.6,1401.05 15004.9,1401.05 14977.6,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15004.9,1401.05 15004.9,1401.05 15032.2,1401.05 15032.2,1401.05 15004.9,1401.05 15004.9,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15004.9,1401.05 15004.9,1401.05 15032.2,1401.05 15004.9,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15032.2,1401.05 15032.2,1401.05 15059.5,1401.05 15059.5,1401.05 15032.2,1401.05 15032.2,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15032.2,1401.05 15032.2,1401.05 15059.5,1401.05 15032.2,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15059.5,1401.05 15059.5,1401.05 15086.8,1401.05 15086.8,1401.05 15059.5,1401.05 15059.5,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15059.5,1401.05 15059.5,1401.05 15086.8,1401.05 15059.5,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15086.8,1401.05 15086.8,1401.05 15114.1,1401.05 15114.1,1401.05 15086.8,1401.05 15086.8,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15086.8,1401.05 15086.8,1401.05 15114.1,1401.05 15086.8,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15114.1,1401.05 15114.1,1401.05 15141.4,1401.05 15141.4,1401.05 15114.1,1401.05 15114.1,1401.05 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15114.1,1401.05 15114.1,1401.05 15141.4,1401.05 15114.1,1401.05 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5402)\" points=\"\n",
"15141.4,1299.95 15141.4,1401.05 15168.7,1401.05 15168.7,1299.95 15141.4,1299.95 15141.4,1299.95 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5402)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 15141.4,1299.95 15141.4,1401.05 15168.7,1401.05 15168.7,1299.95 15141.4,1299.95 \n",
" \"/>\n",
"</svg>\n"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Statistics # bring in statistical support for standard deviations\n",
"t = c_bench.times / 1e6 # times in milliseconds\n",
"m, σ = minimum(t), std(t)\n",
"\n",
"histogram(t, bins=500,\n",
" xlim=(m - 0.01, m + σ),\n",
" xlabel=\"milliseconds\", ylabel=\"count\", label=\"\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 2. C with -ffast-math\n",
"\n",
"If we allow C to re-arrange the floating point operations, then it'll vectorize with SIMD (single instruction, multiple data) instructions."
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"c_sum_fastmath (generic function with 1 method)"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"const Clib_fastmath = tempname() # make a temporary file\n",
"\n",
"# The same as above but with a -ffast-math flag added\n",
"open(`gcc -fPIC -O3 -msse3 -xc -shared -ffast-math -o $(Clib_fastmath * \".\" * Libdl.dlext) -`, \"w\") do f\n",
" print(f, C_code) \n",
"end\n",
"\n",
"# define a Julia function that calls the C function:\n",
"c_sum_fastmath(X::Array{Float64}) = ccall((\"c_sum\", Clib_fastmath), Float64, (Csize_t, Ptr{Float64}), length(X), X)"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 0 bytes\n",
" allocs estimate: 0\n",
" --------------\n",
" minimum time: 4.796 ms (0.00% GC)\n",
" median time: 4.975 ms (0.00% GC)\n",
" mean time: 5.054 ms (0.00% GC)\n",
" maximum time: 7.738 ms (0.00% GC)\n",
" --------------\n",
" samples: 987\n",
" evals/sample: 1"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"c_fastmath_bench = @benchmark $c_sum_fastmath($a)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4.796354"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"C -ffast-math\"] = minimum(c_fastmath_bench.times) / 1e6 # in milliseconds"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 3. Python's built in `sum` "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The `PyCall` package provides a Julia interface to Python:"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"scrolled": true
},
"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 %\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 [438e738f]\u001b[39m\u001b[92m + PyCall v1.91.2\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": [
"using Pkg; Pkg.add(\"PyCall\")\n",
"using PyCall"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"PyObject <built-in function sum>"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# get the Python built-in \"sum\" function:\n",
"pysum = pybuiltin(\"sum\")"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"5.001291667296473e6"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pysum(a)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"true"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pysum(a) ≈ sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 368 bytes\n",
" allocs estimate: 8\n",
" --------------\n",
" minimum time: 817.063 ms (0.00% GC)\n",
" median time: 840.961 ms (0.00% GC)\n",
" mean time: 846.405 ms (0.00% GC)\n",
" maximum time: 888.676 ms (0.00% GC)\n",
" --------------\n",
" samples: 6\n",
" evals/sample: 1"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"py_list_bench = @benchmark $pysum($a)"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 3 entries:\n",
" \"C\" => 8.65218\n",
" \"Python built-in\" => 817.063\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Python built-in\"] = minimum(py_list_bench.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 4. Python: `numpy` \n",
"\n",
"## Takes advantage of hardware \"SIMD\", but only works when it works.\n",
"\n",
"`numpy` is an optimized C library, callable from Python.\n",
"It may be installed within Julia as follows:"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"scrolled": false
},
"outputs": [
{
"ename": "ArgumentError",
"evalue": "ArgumentError: Package Conda not found in current path:\n- Run `import Pkg; Pkg.add(\"Conda\")` to install the Conda package.\n",
"output_type": "error",
"traceback": [
"ArgumentError: Package Conda not found in current path:\n- Run `import Pkg; Pkg.add(\"Conda\")` to install the Conda package.\n",
"",
"Stacktrace:",
" [1] require(::Module, ::Symbol) at ./loading.jl:823",
" [2] top-level scope at In[32]:1"
]
}
],
"source": [
"# using Pkg; Pkg.add(\"Conda\")\n",
"using Conda"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [],
"source": [
"# Conda.add(\"numpy\")"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"scrolled": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"┌ Warning: `getindex(o::PyObject, s::AbstractString)` is deprecated in favor of dot overloading (`getproperty`) so elements should now be accessed as e.g. `o.\"s\"` instead of `o[\"s\"]`.\n",
"│ caller = top-level scope at In[34]:1\n",
"└ @ Core In[34]:1\n"
]
},
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 368 bytes\n",
" allocs estimate: 8\n",
" --------------\n",
" minimum time: 4.536 ms (0.00% GC)\n",
" median time: 4.721 ms (0.00% GC)\n",
" mean time: 4.811 ms (0.00% GC)\n",
" maximum time: 6.929 ms (0.00% GC)\n",
" --------------\n",
" samples: 1036\n",
" evals/sample: 1"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"numpy_sum = pyimport(\"numpy\")[\"sum\"]\n",
"\n",
"py_numpy_bench = @benchmark $numpy_sum($a)"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"5.001291667296729e6"
]
},
"execution_count": 35,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"numpy_sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"true"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"numpy_sum(a) ≈ sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 4 entries:\n",
" \"C\" => 8.65218\n",
" \"Python numpy\" => 4.53581\n",
" \"Python built-in\" => 817.063\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Python numpy\"] = minimum(py_numpy_bench.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 5. Python, hand-written "
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"PyObject <function py_sum at 0x7ff6d1c150d0>"
]
},
"execution_count": 38,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"py\"\"\"\n",
"def py_sum(A):\n",
" s = 0.0\n",
" for a in A:\n",
" s += a\n",
" return s\n",
"\"\"\"\n",
"\n",
"sum_py = py\"py_sum\""
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 368 bytes\n",
" allocs estimate: 8\n",
" --------------\n",
" minimum time: 1.149 s (0.00% GC)\n",
" median time: 1.163 s (0.00% GC)\n",
" mean time: 1.169 s (0.00% GC)\n",
" maximum time: 1.210 s (0.00% GC)\n",
" --------------\n",
" samples: 5\n",
" evals/sample: 1"
]
},
"execution_count": 39,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"py_hand = @benchmark $sum_py($a)"
]
},
{
"cell_type": "code",
"execution_count": 40,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"5.001291667296473e6"
]
},
"execution_count": 40,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sum_py(a)"
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"true"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sum_py(a) ≈ sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 5 entries:\n",
" \"C\" => 8.65218\n",
" \"Python numpy\" => 4.53581\n",
" \"Python hand-written\" => 1148.87\n",
" \"Python built-in\" => 817.063\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 42,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Python hand-written\"] = minimum(py_hand.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 6. Julia (built-in) \n",
"\n",
"## Written directly in Julia, not in C!"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"sum(a::<b>AbstractArray</b>) in Base at <a href=\"https://github.com/JuliaLang/julia/tree/80516ca20297a67b996caa08c38786332379b6a5/base/reducedim.jl#L648\" target=\"_blank\">reducedim.jl:648</a>"
],
"text/plain": [
"sum(a::AbstractArray) in Base at reducedim.jl:648"
]
},
"execution_count": 43,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@which sum(a)"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 0 bytes\n",
" allocs estimate: 0\n",
" --------------\n",
" minimum time: 4.409 ms (0.00% GC)\n",
" median time: 4.549 ms (0.00% GC)\n",
" mean time: 4.613 ms (0.00% GC)\n",
" maximum time: 6.061 ms (0.00% GC)\n",
" --------------\n",
" samples: 1081\n",
" evals/sample: 1"
]
},
"execution_count": 44,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"j_bench = @benchmark sum($a)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 6 entries:\n",
" \"C\" => 8.65218\n",
" \"Python numpy\" => 4.53581\n",
" \"Python hand-written\" => 1148.87\n",
" \"Python built-in\" => 817.063\n",
" \"Julia built-in\" => 4.40938\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Julia built-in\"] = minimum(j_bench.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 7. Julia (hand-written) "
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"mysum (generic function with 1 method)"
]
},
"execution_count": 46,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function mysum(A) \n",
" s = 0.0 # s = zero(eltype(a))\n",
" for a in A\n",
" s += a\n",
" end\n",
" s\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 0 bytes\n",
" allocs estimate: 0\n",
" --------------\n",
" minimum time: 8.684 ms (0.00% GC)\n",
" median time: 8.893 ms (0.00% GC)\n",
" mean time: 8.981 ms (0.00% GC)\n",
" maximum time: 10.601 ms (0.00% GC)\n",
" --------------\n",
" samples: 556\n",
" evals/sample: 1"
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"j_bench_hand = @benchmark mysum($a)"
]
},
{
"cell_type": "code",
"execution_count": 48,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 7 entries:\n",
" \"C\" => 8.65218\n",
" \"Python numpy\" => 4.53581\n",
" \"Julia hand-written\" => 8.68355\n",
" \"Python hand-written\" => 1148.87\n",
" \"Python built-in\" => 817.063\n",
" \"Julia built-in\" => 4.40938\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 48,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Julia hand-written\"] = minimum(j_bench_hand.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 8. Julia (hand-written w. simd) "
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"mysum_simd (generic function with 1 method)"
]
},
"execution_count": 49,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function mysum_simd(A) \n",
" s = 0.0 # s = zero(eltype(A))\n",
" @simd for a in A\n",
" s += a\n",
" end\n",
" s\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/plain": [
"BenchmarkTools.Trial: \n",
" memory estimate: 0 bytes\n",
" allocs estimate: 0\n",
" --------------\n",
" minimum time: 4.295 ms (0.00% GC)\n",
" median time: 4.501 ms (0.00% GC)\n",
" mean time: 4.582 ms (0.00% GC)\n",
" maximum time: 7.126 ms (0.00% GC)\n",
" --------------\n",
" samples: 1088\n",
" evals/sample: 1"
]
},
"execution_count": 50,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"j_bench_hand_simd = @benchmark mysum_simd($a)"
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5.001291667296788e6"
]
},
"execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"mysum_simd(a)"
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"Dict{Any,Any} with 8 entries:\n",
" \"Julia hand-written simd\" => 4.29476\n",
" \"C\" => 8.65218\n",
" \"Python numpy\" => 4.53581\n",
" \"Julia hand-written\" => 8.68355\n",
" \"Python hand-written\" => 1148.87\n",
" \"Python built-in\" => 817.063\n",
" \"Julia built-in\" => 4.40938\n",
" \"C -ffast-math\" => 4.79635"
]
},
"execution_count": 52,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"d[\"Julia hand-written simd\"] = minimum(j_bench_hand_simd.times) / 1e6\n",
"d"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Summary"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Julia hand-written simd.....4.3\n",
"Julia built-in..............4.4\n",
"Python numpy................4.5\n",
"C -ffast-math...............4.8\n",
"C...........................8.7\n",
"Julia hand-written..........8.7\n",
"Python built-in...........817.1\n",
"Python hand-written......1148.9\n"
]
}
],
"source": [
"for (key, value) in sort(collect(d), by=last)\n",
" println(rpad(key, 25, \".\"), lpad(round(value; digits=1), 6, \".\"))\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"anaconda-cloud": {},
"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"
},
"toc": {
"colors": {
"hover_highlight": "#DAA520",
"running_highlight": "#FF0000",
"selected_highlight": "#FFD700"
},
"moveMenuLeft": true,
"nav_menu": {
"height": "212px",
"width": "252px"
},
"navigate_menu": true,
"number_sections": true,
"sideBar": true,
"threshold": "2",
"toc_cell": false,
"toc_section_display": "block",
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment