Skip to content

Instantly share code, notes, and snippets.

@Karthik-d-k
Last active June 19, 2022 16:11
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 Karthik-d-k/8b70ba97764c795d9e5e22c5525683ce to your computer and use it in GitHub Desktop.
Save Karthik-d-k/8b70ba97764c795d9e5e22c5525683ce to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "xVT8RtsWDmAC"
},
"source": [
"# Mixture Density Networks with Julia\n",
"\n",
"[This post is also available as a Jupyter notebook.](https://github.com/jklaise/personal_website/tree/master/notebooks/mdn_julia.ipynb)\n",
"\n",
"Related posts:\n",
"\n",
" - JavaScript [implementation](http://blog.otoro.net/2015/06/14/mixture-density-networks/).\n",
" - TensorFlow [implementation](http://blog.otoro.net/2015/11/24/mixture-density-networks-with-tensorflow/).\n",
" - PyTorch [implementation](https://github.com/hardmaru/pytorch_notebooks/blob/master/mixture_density_networks.ipynb)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "gJRR0mR2DmAG"
},
"source": [
"This post is a result of me trying to understand how to do deep learning in Julia using the excellent [Flux](https://fluxml.ai/) package as well as getting a better understanding of conditional density estimation using a simple but effective technique—[Mixture Density Networks](https://publications.aston.ac.uk/id/eprint/373/1/NCRG_94_004.pdf) (Bishop, 1994). This post follows very closely the PyTorch implementation (including paraphrasing some statements) listed above, which itself was adapted from the original TensorFlow and JavaScript implementations."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "JC9FUq63DmAI"
},
"source": [
"## Prelude: Why Julia?"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "CftXbow_DmAJ"
},
"source": [
"If we want to do generic training of models via backpropagation we need an automatic differentiation (AD) solution—nobody has time to write their gradients by hand, you just want to define your forward pass and let the AD handle the backward pass. In Python I might use one of the big frameworks like PyTorch or TensorFlow to do this (if I'm feeling adventurous then maybe [autograd](https://github.com/HIPS/autograd) or [jax](https://github.com/google/jax) at the cost of forgoing higher-level interfaces for neural network layers, optimizers etc.). The problem with these big frameworks is that if you have some very custom model operations on the forward pass, it might be impossible for the AD to take gradients. You may be able to write your own, but it might involve hacking the underlying framework (which is most likely C++ rather than Python) without guarantees of working. A concrete example is [backpropagating through an ODE solver](https://fluxml.ai/2019/03/05/dp-vs-rl.html) to do model based reinforcement learning.\n",
"\n",
"Julia has the promise of native [differentiable programming](https://fluxml.ai/2019/02/07/what-is-differentiable-programming.html) to allow just the kind of use cases. [Swift for Tensorflow](https://www.tensorflow.org/swift) is a similar endeavour, but I think Julia has the upper hand for several reasons: it has an extensive scientific package ecosystem, a flexible compiler enabling things like [source-to-source automatic differentiation](https://github.com/FluxML/Zygote.jl), and it's a solution to the [two language problem](https://thebottomline.as.ucsb.edu/2018/10/julia-a-solution-to-the-two-language-programming-problem) which can plague Python frameworks such as PyTorch and TensorFlow when it comes to writing very custom models."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "eZPnNxlnDmAJ"
},
"source": [
"## Warm-up: 1-D regression\n",
"Let's warm up by doing some very simple data fitting in 1D by using a neural network with one hidden layer. We will try to fit the sinusoidal function\n",
"\n",
"$$\n",
"y(x)=7 \\sin( 0.75 x ) + 0.5 x + \\epsilon,\n",
"$$\n",
"\n",
"where\n",
"\n",
"- $7 \\sin( 0.75 x)$: a large periodic sine wave.\n",
"- $0.5 x$: add a slight upward slope.\n",
"- $\\epsilon$: add some standard Gaussian noise\n",
"\n",
"First we import the libraries we need."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"id": "IXTOs1vbDmAK"
},
"outputs": [],
"source": [
"# using Distributions\n",
"using Flux\n",
"using Plots\n",
"using Random\n",
"Random.seed!(12345); # for reproducibility"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "OXMmrtHhDmAN"
},
"source": [
"Next we define generate a sample dataset of points $(x, y(x))$ and visualize it:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"id": "kk42CtMSDmAN"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1×1000 Matrix{Float64}\n",
"1×1000 Matrix{Float64}\n"
]
}
],
"source": [
"# Flux expects batch dimension to be last\n",
"function generate_data(n_samples)\n",
" ϵ = randn(1, n_samples) # Normal(μ = 0, σ = 1)\n",
" x = -10.5 .+ ((10.5 + 10.5) .* rand(1, n_samples)) # Uniform(a = -10.5, b = 10.5)\n",
" y = 7sin.(0.75x) + 0.5x + ϵ\n",
" return x, y\n",
"end\n",
"\n",
"n_samples = 1000\n",
"x, y = generate_data(n_samples)\n",
"foreach(println ∘ summary, (x, y))"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"id": "o35-ja8pDmAO",
"outputId": "b6818202-8e77-413a-bdd2-c22256ca867d"
},
"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=\"clip740\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip741\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M178.867 1486.45 L2352.76 1486.45 L2352.76 47.2441 L178.867 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip742\">\n",
" <rect x=\"178\" y=\"47\" width=\"2175\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 287.195,1486.45 287.195,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.793,1486.45 776.793,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1266.39,1486.45 1266.39,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1755.99,1486.45 1755.99,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2245.59,1486.45 2245.59,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 287.195,1486.45 287.195,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.793,1486.45 776.793,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1266.39,1486.45 1266.39,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1755.99,1486.45 1755.99,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2245.59,1486.45 2245.59,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M241.257 1532.02 L270.933 1532.02 L270.933 1535.95 L241.257 1535.95 L241.257 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M281.836 1544.91 L289.475 1544.91 L289.475 1518.55 L281.165 1520.21 L281.165 1515.95 L289.429 1514.29 L294.104 1514.29 L294.104 1544.91 L301.743 1544.91 L301.743 1548.85 L281.836 1548.85 L281.836 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M321.188 1517.37 Q317.577 1517.37 315.748 1520.93 Q313.942 1524.47 313.942 1531.6 Q313.942 1538.71 315.748 1542.27 Q317.577 1545.82 321.188 1545.82 Q324.822 1545.82 326.627 1542.27 Q328.456 1538.71 328.456 1531.6 Q328.456 1524.47 326.627 1520.93 Q324.822 1517.37 321.188 1517.37 M321.188 1513.66 Q326.998 1513.66 330.053 1518.27 Q333.132 1522.85 333.132 1531.6 Q333.132 1540.33 330.053 1544.94 Q326.998 1549.52 321.188 1549.52 Q315.377 1549.52 312.299 1544.94 Q309.243 1540.33 309.243 1531.6 Q309.243 1522.85 312.299 1518.27 Q315.377 1513.66 321.188 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M746.434 1532.02 L776.11 1532.02 L776.11 1535.95 L746.434 1535.95 L746.434 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M786.249 1514.29 L804.605 1514.29 L804.605 1518.22 L790.531 1518.22 L790.531 1526.7 Q791.55 1526.35 792.568 1526.19 Q793.587 1526 794.606 1526 Q800.393 1526 803.772 1529.17 Q807.152 1532.34 807.152 1537.76 Q807.152 1543.34 803.68 1546.44 Q800.207 1549.52 793.888 1549.52 Q791.712 1549.52 789.443 1549.15 Q787.198 1548.78 784.791 1548.04 L784.791 1543.34 Q786.874 1544.47 789.096 1545.03 Q791.318 1545.58 793.795 1545.58 Q797.8 1545.58 800.138 1543.48 Q802.476 1541.37 802.476 1537.76 Q802.476 1534.15 800.138 1532.04 Q797.8 1529.94 793.795 1529.94 Q791.92 1529.94 790.045 1530.35 Q788.194 1530.77 786.249 1531.65 L786.249 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1266.39 1517.37 Q1262.78 1517.37 1260.95 1520.93 Q1259.15 1524.47 1259.15 1531.6 Q1259.15 1538.71 1260.95 1542.27 Q1262.78 1545.82 1266.39 1545.82 Q1270.03 1545.82 1271.83 1542.27 Q1273.66 1538.71 1273.66 1531.6 Q1273.66 1524.47 1271.83 1520.93 Q1270.03 1517.37 1266.39 1517.37 M1266.39 1513.66 Q1272.2 1513.66 1275.26 1518.27 Q1278.34 1522.85 1278.34 1531.6 Q1278.34 1540.33 1275.26 1544.94 Q1272.2 1549.52 1266.39 1549.52 Q1260.58 1549.52 1257.5 1544.94 Q1254.45 1540.33 1254.45 1531.6 Q1254.45 1522.85 1257.5 1518.27 Q1260.58 1513.66 1266.39 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1746.27 1514.29 L1764.62 1514.29 L1764.62 1518.22 L1750.55 1518.22 L1750.55 1526.7 Q1751.57 1526.35 1752.59 1526.19 Q1753.61 1526 1754.62 1526 Q1760.41 1526 1763.79 1529.17 Q1767.17 1532.34 1767.17 1537.76 Q1767.17 1543.34 1763.7 1546.44 Q1760.23 1549.52 1753.91 1549.52 Q1751.73 1549.52 1749.46 1549.15 Q1747.22 1548.78 1744.81 1548.04 L1744.81 1543.34 Q1746.89 1544.47 1749.11 1545.03 Q1751.34 1545.58 1753.81 1545.58 Q1757.82 1545.58 1760.16 1543.48 Q1762.49 1541.37 1762.49 1537.76 Q1762.49 1534.15 1760.16 1532.04 Q1757.82 1529.94 1753.81 1529.94 Q1751.94 1529.94 1750.06 1530.35 Q1748.21 1530.77 1746.27 1531.65 L1746.27 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M2220.28 1544.91 L2227.91 1544.91 L2227.91 1518.55 L2219.6 1520.21 L2219.6 1515.95 L2227.87 1514.29 L2232.54 1514.29 L2232.54 1544.91 L2240.18 1544.91 L2240.18 1548.85 L2220.28 1548.85 L2220.28 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M2259.63 1517.37 Q2256.02 1517.37 2254.19 1520.93 Q2252.38 1524.47 2252.38 1531.6 Q2252.38 1538.71 2254.19 1542.27 Q2256.02 1545.82 2259.63 1545.82 Q2263.26 1545.82 2265.07 1542.27 Q2266.9 1538.71 2266.9 1531.6 Q2266.9 1524.47 2265.07 1520.93 Q2263.26 1517.37 2259.63 1517.37 M2259.63 1513.66 Q2265.44 1513.66 2268.49 1518.27 Q2271.57 1522.85 2271.57 1531.6 Q2271.57 1540.33 2268.49 1544.94 Q2265.44 1549.52 2259.63 1549.52 Q2253.82 1549.52 2250.74 1544.94 Q2247.68 1540.33 2247.68 1531.6 Q2247.68 1522.85 2250.74 1518.27 Q2253.82 1513.66 2259.63 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1268.62 2352.76,1268.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1016.77 2352.76,1016.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,764.907 2352.76,764.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,513.049 2352.76,513.049 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,261.191 2352.76,261.191 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 178.867,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1268.62 197.764,1268.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1016.77 197.764,1016.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,764.907 197.764,764.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,513.049 197.764,513.049 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,261.191 197.764,261.191 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M50.9921 1269.07 L80.6679 1269.07 L80.6679 1273.01 L50.9921 1273.01 L50.9921 1269.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M91.5706 1281.97 L99.2095 1281.97 L99.2095 1255.6 L90.8993 1257.27 L90.8993 1253.01 L99.1632 1251.34 L103.839 1251.34 L103.839 1281.97 L111.478 1281.97 L111.478 1285.9 L91.5706 1285.9 L91.5706 1281.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M130.922 1254.42 Q127.311 1254.42 125.482 1257.99 Q123.677 1261.53 123.677 1268.66 Q123.677 1275.76 125.482 1279.33 Q127.311 1282.87 130.922 1282.87 Q134.556 1282.87 136.362 1279.33 Q138.191 1275.76 138.191 1268.66 Q138.191 1261.53 136.362 1257.99 Q134.556 1254.42 130.922 1254.42 M130.922 1250.72 Q136.732 1250.72 139.788 1255.32 Q142.867 1259.91 142.867 1268.66 Q142.867 1277.38 139.788 1281.99 Q136.732 1286.57 130.922 1286.57 Q125.112 1286.57 122.033 1281.99 Q118.978 1277.38 118.978 1268.66 Q118.978 1259.91 122.033 1255.32 Q125.112 1250.72 130.922 1250.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M82.1494 1017.22 L111.825 1017.22 L111.825 1021.15 L82.1494 1021.15 L82.1494 1017.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M121.964 999.485 L140.32 999.485 L140.32 1003.42 L126.246 1003.42 L126.246 1011.89 Q127.265 1011.55 128.283 1011.38 Q129.302 1011.2 130.32 1011.2 Q136.107 1011.2 139.487 1014.37 Q142.867 1017.54 142.867 1022.96 Q142.867 1028.54 139.394 1031.64 Q135.922 1034.72 129.603 1034.72 Q127.427 1034.72 125.158 1034.35 Q122.913 1033.98 120.506 1033.23 L120.506 1028.54 Q122.589 1029.67 124.811 1030.23 Q127.033 1030.78 129.51 1030.78 Q133.515 1030.78 135.853 1028.67 Q138.191 1026.57 138.191 1022.96 Q138.191 1019.35 135.853 1017.24 Q133.515 1015.13 129.51 1015.13 Q127.635 1015.13 125.76 1015.55 Q123.908 1015.97 121.964 1016.85 L121.964 999.485 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M130.922 750.706 Q127.311 750.706 125.482 754.271 Q123.677 757.812 123.677 764.942 Q123.677 772.048 125.482 775.613 Q127.311 779.155 130.922 779.155 Q134.556 779.155 136.362 775.613 Q138.191 772.048 138.191 764.942 Q138.191 757.812 136.362 754.271 Q134.556 750.706 130.922 750.706 M130.922 747.002 Q136.732 747.002 139.788 751.609 Q142.867 756.192 142.867 764.942 Q142.867 773.669 139.788 778.275 Q136.732 782.858 130.922 782.858 Q125.112 782.858 122.033 778.275 Q118.978 773.669 118.978 764.942 Q118.978 756.192 122.033 751.609 Q125.112 747.002 130.922 747.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M121.964 495.769 L140.32 495.769 L140.32 499.704 L126.246 499.704 L126.246 508.176 Q127.265 507.829 128.283 507.667 Q129.302 507.482 130.32 507.482 Q136.107 507.482 139.487 510.653 Q142.867 513.824 142.867 519.241 Q142.867 524.82 139.394 527.922 Q135.922 531 129.603 531 Q127.427 531 125.158 530.63 Q122.913 530.26 120.506 529.519 L120.506 524.82 Q122.589 525.954 124.811 526.51 Q127.033 527.065 129.51 527.065 Q133.515 527.065 135.853 524.959 Q138.191 522.852 138.191 519.241 Q138.191 515.63 135.853 513.524 Q133.515 511.417 129.51 511.417 Q127.635 511.417 125.76 511.834 Q123.908 512.25 121.964 513.13 L121.964 495.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M91.5706 274.536 L99.2095 274.536 L99.2095 248.17 L90.8993 249.837 L90.8993 245.578 L99.1632 243.911 L103.839 243.911 L103.839 274.536 L111.478 274.536 L111.478 278.471 L91.5706 278.471 L91.5706 274.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M130.922 246.99 Q127.311 246.99 125.482 250.554 Q123.677 254.096 123.677 261.226 Q123.677 268.332 125.482 271.897 Q127.311 275.439 130.922 275.439 Q134.556 275.439 136.362 271.897 Q138.191 268.332 138.191 261.226 Q138.191 254.096 136.362 250.554 Q134.556 246.99 130.922 246.99 M130.922 243.286 Q136.732 243.286 139.788 247.892 Q142.867 252.476 142.867 261.226 Q142.867 269.953 139.788 274.559 Q136.732 279.142 130.922 279.142 Q125.112 279.142 122.033 274.559 Q118.978 269.953 118.978 261.226 Q118.978 252.476 122.033 247.892 Q125.112 243.286 130.922 243.286 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip742)\" cx=\"577.613\" cy=\"717.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2240.59\" cy=\"209.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1906.67\" cy=\"904.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"806.985\" cy=\"732.394\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"992.919\" cy=\"1190.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"413.085\" cy=\"1148.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1719.9\" cy=\"732.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2224.72\" cy=\"282.275\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2204.51\" cy=\"261.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1683.15\" cy=\"655.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1790.7\" cy=\"872.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1028.21\" cy=\"1191.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1999.28\" cy=\"909.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"592.644\" cy=\"633.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"767.648\" cy=\"750.842\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1662.01\" cy=\"666.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"765.839\" cy=\"540.454\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"795.095\" cy=\"723.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"695.518\" cy=\"586.669\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1931.95\" cy=\"1020.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"534.239\" cy=\"778.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"608.194\" cy=\"565.004\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1042.83\" cy=\"1135.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"734.11\" cy=\"618.819\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1970.31\" cy=\"871.883\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1325.26\" cy=\"655.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1058\" cy=\"1152.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"969.392\" cy=\"1131.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"397.549\" cy=\"1164.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1894.5\" cy=\"951.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1901.88\" cy=\"1003.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1862.87\" cy=\"939.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"495.95\" cy=\"933.651\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1247.83\" cy=\"794.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"724.155\" cy=\"609.044\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1903.65\" cy=\"935.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1675.26\" cy=\"672.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2138.47\" cy=\"407.113\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"783.141\" cy=\"647.316\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1992.84\" cy=\"849.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1646.54\" cy=\"636.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2271.37\" cy=\"118.214\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1459.44\" cy=\"381.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1113.53\" cy=\"1216.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2062.68\" cy=\"654.575\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2234.79\" cy=\"161.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1705.26\" cy=\"666.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"683.167\" cy=\"549.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"306.913\" cy=\"1285.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1566.36\" cy=\"356.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1680.56\" cy=\"644.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2279.72\" cy=\"97.323\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"866.596\" cy=\"890.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1107.29\" cy=\"1155.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1394.19\" cy=\"434.852\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"906.278\" cy=\"1023.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1352.41\" cy=\"436.103\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1288.18\" cy=\"724.642\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1342.89\" cy=\"525.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1518.02\" cy=\"399.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2275.96\" cy=\"150.273\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2165.81\" cy=\"387.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1487.67\" cy=\"362.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"600.857\" cy=\"614.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1100.22\" cy=\"1104.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1783.53\" cy=\"880.184\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"627.584\" cy=\"653.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2087.98\" cy=\"668.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"381.063\" cy=\"1150.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"429.44\" cy=\"1070.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"792.399\" cy=\"711.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1552.21\" cy=\"358.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"649.686\" cy=\"592.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1905.69\" cy=\"987.279\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1279.73\" cy=\"701.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1957\" cy=\"870.164\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1939.01\" cy=\"999.428\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"339.648\" cy=\"1215.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2150.22\" cy=\"363.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1541.11\" cy=\"441.045\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"489.472\" cy=\"899.022\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"442.097\" cy=\"996.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"858.96\" cy=\"906.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2213.14\" cy=\"249.878\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"479.623\" cy=\"816.421\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1715.03\" cy=\"862.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"547.361\" cy=\"803.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1385.94\" cy=\"516.824\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2101\" cy=\"489.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"500.3\" cy=\"823.548\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"712.944\" cy=\"585.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2220.79\" cy=\"233.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1337.05\" cy=\"589.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1120.14\" cy=\"1066.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1635.52\" cy=\"541.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"702.022\" cy=\"661.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1451.57\" cy=\"318.393\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"503.176\" cy=\"936.941\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"368.788\" cy=\"1132.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1341.11\" cy=\"484.831\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1535.11\" cy=\"369.669\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1609.78\" cy=\"532.089\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2074.35\" cy=\"620.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"702.554\" cy=\"552.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"743.541\" cy=\"632.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1441.84\" cy=\"356.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"762.152\" cy=\"647.167\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1929.58\" cy=\"959.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1668.11\" cy=\"637.613\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"736.046\" cy=\"553.668\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"440.415\" cy=\"963.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"351.247\" cy=\"1232.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"928.575\" cy=\"959.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2047.33\" cy=\"710.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1870.65\" cy=\"846.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1029.26\" cy=\"1196.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2155.92\" cy=\"331.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"490.928\" cy=\"880.956\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1565.62\" cy=\"374.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"544.439\" cy=\"614.752\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"434.038\" cy=\"1036.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"493.182\" cy=\"844.036\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"759.405\" cy=\"745.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"249.944\" cy=\"1284.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1979.84\" cy=\"793.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"986.864\" cy=\"1201.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1804.27\" cy=\"899.405\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1828.26\" cy=\"978.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1574.57\" cy=\"519.922\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1578.5\" cy=\"477.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1008\" cy=\"1113.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"627.495\" cy=\"556.084\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"241.523\" cy=\"1325.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2268.44\" cy=\"276.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1440.57\" cy=\"329.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"786.036\" cy=\"824.321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"746.672\" cy=\"601.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1291.66\" cy=\"711.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"655.382\" cy=\"429.308\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2045.98\" cy=\"692.624\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1841.22\" cy=\"934.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1304.27\" cy=\"700.281\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1855.66\" cy=\"868.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1738.88\" cy=\"828.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"607.661\" cy=\"597.186\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1215.25\" cy=\"790.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2261.57\" cy=\"168.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1889\" cy=\"934.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1225.1\" cy=\"868.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2237.08\" cy=\"168.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1048.62\" cy=\"1139.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1622.19\" cy=\"546.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"726.302\" cy=\"539.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"720.303\" cy=\"599.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"326.085\" cy=\"1290.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"808.343\" cy=\"846.331\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1620.99\" cy=\"510.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1899.25\" cy=\"919.989\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1559.48\" cy=\"425.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1342.86\" cy=\"514.711\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"255.749\" cy=\"1376.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"310.776\" cy=\"1283.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"972.725\" cy=\"1176.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"719.247\" cy=\"610.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1020.78\" cy=\"1123.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1747.71\" cy=\"768.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1856.21\" cy=\"943.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"907.655\" cy=\"1072.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"960.889\" cy=\"1104.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1918.51\" cy=\"879.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1892.88\" cy=\"943.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"716.09\" cy=\"559.819\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1205.79\" cy=\"985.157\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1761.67\" cy=\"856.744\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1311.98\" cy=\"656.902\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2013.5\" cy=\"807.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1222.69\" cy=\"899.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"953.796\" cy=\"1125.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"629.478\" cy=\"614.676\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1892.33\" cy=\"909.706\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2287.88\" cy=\"109.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1371.22\" cy=\"460.604\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2266.68\" cy=\"150.687\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1795.73\" cy=\"874.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1127.47\" cy=\"1160.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2220.35\" cy=\"226.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"670.735\" cy=\"508.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1367.56\" cy=\"419.546\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1187.2\" cy=\"999.879\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"547.475\" cy=\"676.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1956.12\" cy=\"904.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1039.49\" cy=\"1205.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1887.15\" cy=\"927.022\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1069.36\" cy=\"1248.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"316.91\" cy=\"1232.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2104.48\" cy=\"489.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"557.317\" cy=\"647.294\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"965.378\" cy=\"952.375\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1781.73\" cy=\"868.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1154.4\" cy=\"1055.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"984.659\" cy=\"1156.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1972.85\" cy=\"795.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2080.73\" cy=\"542.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"419.663\" cy=\"973.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1735.07\" cy=\"715.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1609.63\" cy=\"406.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1985.85\" cy=\"762.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"586.217\" cy=\"533.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"329.5\" cy=\"1324.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1141.1\" cy=\"1084.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"417.176\" cy=\"1100.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2178.58\" cy=\"216.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"961.322\" cy=\"1074.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"355.352\" cy=\"1190.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2016.19\" cy=\"885.097\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"969.961\" cy=\"1131.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"253.958\" cy=\"1409.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"420.158\" cy=\"1047.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2085.1\" cy=\"564.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"910.724\" cy=\"967.495\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"988.758\" cy=\"1138.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1045.67\" cy=\"1164.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1629.53\" cy=\"629.486\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1565.97\" cy=\"455.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1624.44\" cy=\"515.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1844.35\" cy=\"1026.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1102.35\" cy=\"1119.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1165.84\" cy=\"1016\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1165.51\" cy=\"996.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1864.41\" cy=\"992.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1201.09\" cy=\"979.392\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"762.536\" cy=\"652.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"368.824\" cy=\"1230.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"283.392\" cy=\"1324.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"342.248\" cy=\"1270.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1796.97\" cy=\"870.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"625.564\" cy=\"574.467\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"619.6\" cy=\"487.528\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"945.628\" cy=\"1090.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2250.58\" cy=\"310.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2135.6\" cy=\"427.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1974.8\" cy=\"810.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1821.06\" cy=\"1028.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2036.25\" cy=\"685.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1756.36\" cy=\"894.507\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1483.9\" cy=\"375.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1417.61\" cy=\"493.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"542.702\" cy=\"735.399\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1434.68\" cy=\"349.979\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2234.7\" cy=\"221.017\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2002.94\" cy=\"801.251\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1214.08\" cy=\"878.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1719.19\" cy=\"697.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2025.81\" cy=\"715.701\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"865.132\" cy=\"937.714\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1148.87\" cy=\"1165.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2257.18\" cy=\"140.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1257.66\" cy=\"769.721\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1766.26\" cy=\"836.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1634.26\" cy=\"489.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1596.29\" cy=\"417.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1291.68\" cy=\"706.528\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1326.8\" cy=\"655.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1200.09\" cy=\"923.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1557.45\" cy=\"435.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1231.99\" cy=\"797.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1019.13\" cy=\"1193.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2036.52\" cy=\"737.704\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1311.21\" cy=\"530.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1788.25\" cy=\"941.489\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"768.977\" cy=\"691.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"999.972\" cy=\"1145.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"480.696\" cy=\"860.359\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1386.48\" cy=\"450.027\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1874.41\" cy=\"1019.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"963.579\" cy=\"1111.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1089.6\" cy=\"1200.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"537.203\" cy=\"668.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1921.72\" cy=\"895.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1564.48\" cy=\"440.456\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1452.3\" cy=\"338.678\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1593.46\" cy=\"462.454\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"429.535\" cy=\"1033.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"803.616\" cy=\"641.688\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1349.35\" cy=\"621.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1147.72\" cy=\"961.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1712.17\" cy=\"752.116\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"913.814\" cy=\"1105.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2165.74\" cy=\"367.543\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1763.48\" cy=\"821.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"716.036\" cy=\"666.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1682.67\" cy=\"692.733\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2121.8\" cy=\"490.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1955.89\" cy=\"840.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"458.048\" cy=\"998.304\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1749.96\" cy=\"899.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1442.19\" cy=\"334.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1398.36\" cy=\"396.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"636.306\" cy=\"565.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1454.82\" cy=\"331.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1286.08\" cy=\"839.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1646.69\" cy=\"539.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2282.94\" cy=\"169.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2141.44\" cy=\"337.963\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1357.19\" cy=\"445.282\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1813.1\" cy=\"838.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1244.49\" cy=\"858.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1248.66\" cy=\"869.908\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1476.92\" cy=\"416.891\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1858.9\" cy=\"1082.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1617.73\" cy=\"579.025\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2181.25\" cy=\"257.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2269.96\" cy=\"97.4565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1980.7\" cy=\"846.317\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"252.258\" cy=\"1327.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1923.72\" cy=\"905.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1244.81\" cy=\"839.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1898.73\" cy=\"929.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2040.01\" cy=\"565.752\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1179.31\" cy=\"978.467\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1640.28\" cy=\"544.519\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"424.685\" cy=\"971.762\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1115.06\" cy=\"1224.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"316.227\" cy=\"1258.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"741.542\" cy=\"610.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1698.2\" cy=\"659.079\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"880.86\" cy=\"933.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2276.31\" cy=\"109.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1138.13\" cy=\"1140.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1566.02\" cy=\"418.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1379.8\" cy=\"402.905\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1341.65\" cy=\"470.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1417.14\" cy=\"418.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"556.757\" cy=\"706.108\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"408.8\" cy=\"1168.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1240.87\" cy=\"870.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"663.786\" cy=\"654.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"773.987\" cy=\"706.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1145.05\" cy=\"1116.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1037.54\" cy=\"1208.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1855.91\" cy=\"972.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1484.69\" cy=\"370.265\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"581.697\" cy=\"612.267\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1544.88\" cy=\"331.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1950.11\" cy=\"888.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1309.34\" cy=\"618.395\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"943.606\" cy=\"989.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1505.77\" cy=\"371.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1867.55\" cy=\"889.906\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2140.65\" cy=\"434.045\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1295.56\" cy=\"724.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1119.22\" cy=\"1144.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"905.891\" cy=\"957.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1712.73\" cy=\"750.625\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"903.655\" cy=\"907.753\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1933.71\" cy=\"926.433\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1481.07\" cy=\"488.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1880.03\" cy=\"928.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"388.326\" cy=\"1137.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1330.72\" cy=\"446.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2051.48\" cy=\"595.541\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1183.86\" cy=\"1042.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1045.55\" cy=\"1185.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1314.87\" cy=\"662.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2237.71\" cy=\"182.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1488.48\" cy=\"322.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1497.17\" cy=\"407.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"283.607\" cy=\"1359.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"971.215\" cy=\"1090.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1299\" cy=\"590.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"968.102\" cy=\"1137.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1557.39\" cy=\"415.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"641.188\" cy=\"618.064\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1760.25\" cy=\"912.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1337.66\" cy=\"541.023\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2089.11\" cy=\"501.396\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1341.77\" cy=\"446.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2286.24\" cy=\"151.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"531.116\" cy=\"745.709\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2156.45\" cy=\"417.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"508.333\" cy=\"810.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1427.1\" cy=\"396.854\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1075.52\" cy=\"1119.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1118.42\" cy=\"1115.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2076.34\" cy=\"539.663\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2083.34\" cy=\"454.415\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1601.09\" cy=\"434.661\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1649.57\" cy=\"560.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1891.09\" cy=\"917.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1379.65\" cy=\"494.026\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2003.2\" cy=\"720.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2100.06\" cy=\"466.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1631.05\" cy=\"562.791\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"862.14\" cy=\"834.249\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1441.74\" cy=\"317.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1496.39\" cy=\"330.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"708.187\" cy=\"577.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1162.39\" cy=\"1145.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1589.65\" cy=\"415.856\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1600.28\" cy=\"493.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1608.7\" cy=\"489.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1174.13\" cy=\"1025.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"865.713\" cy=\"820.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"789.523\" cy=\"660.026\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2221.81\" cy=\"208.202\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"997.611\" cy=\"1174.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"289.314\" cy=\"1378.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1973.91\" cy=\"773.437\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1300.03\" cy=\"739.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1863.18\" cy=\"952.732\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"450.862\" cy=\"931.097\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"424.486\" cy=\"1010.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1593.98\" cy=\"493.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1636.31\" cy=\"560.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"972.206\" cy=\"1092.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1029.81\" cy=\"1221.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1497.5\" cy=\"348.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"822.791\" cy=\"828.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1780.81\" cy=\"830.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"447.338\" cy=\"931.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1415.7\" cy=\"376.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"367.839\" cy=\"1023.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2225.95\" cy=\"167.327\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"741.669\" cy=\"633.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"708.884\" cy=\"506.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"680.269\" cy=\"510.639\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1478.47\" cy=\"331.038\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"681.205\" cy=\"563.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1821.95\" cy=\"908.971\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"484.197\" cy=\"746.938\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1547.16\" cy=\"277.171\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"590.52\" cy=\"628.357\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1055.06\" cy=\"1205.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2137.41\" cy=\"522.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"379.55\" cy=\"1141.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1573.48\" cy=\"470.775\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1319.86\" cy=\"612.696\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"520.961\" cy=\"772.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1163.87\" cy=\"1034.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1392.9\" cy=\"489.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"441.361\" cy=\"962.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"453.322\" cy=\"948.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"679.332\" cy=\"610.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1405.31\" cy=\"373.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1157.27\" cy=\"961.696\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"713.989\" cy=\"543.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1700.79\" cy=\"636.658\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2092.39\" cy=\"647.319\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1835.76\" cy=\"917.203\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2232.48\" cy=\"211.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"953.924\" cy=\"1086.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"509.264\" cy=\"759.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1870.85\" cy=\"908.356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2153.48\" cy=\"421.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"326.398\" cy=\"1298.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"294.774\" cy=\"1399.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"974.386\" cy=\"1179.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2149.65\" cy=\"316.555\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1847.36\" cy=\"930.287\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2071.7\" cy=\"538.954\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"265.442\" cy=\"1377.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1771.59\" cy=\"880.589\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2262.33\" cy=\"173.691\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1215.5\" cy=\"943.794\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1025.9\" cy=\"1174.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"496.721\" cy=\"811.642\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1591.03\" cy=\"444.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1212.15\" cy=\"1017.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1746.73\" cy=\"811.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1212.93\" cy=\"782.586\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1372.45\" cy=\"521.369\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1246.04\" cy=\"881.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1948.83\" cy=\"902.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1425.65\" cy=\"520.193\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"960.612\" cy=\"1071.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"540.274\" cy=\"718.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1659.96\" cy=\"695.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"737.081\" cy=\"629.781\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"891.669\" cy=\"1025.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1176.35\" cy=\"1037.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2015.52\" cy=\"749.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"656.058\" cy=\"579.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1813.05\" cy=\"907.917\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2016.84\" cy=\"896.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"652.6\" cy=\"614.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2182.51\" cy=\"279.945\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2062.42\" cy=\"574.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1666.32\" cy=\"508.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"240.392\" cy=\"1369.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1304.15\" cy=\"664.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1903.72\" cy=\"943.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1413.1\" cy=\"360.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1804.39\" cy=\"918.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"511.032\" cy=\"720.612\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1829.65\" cy=\"1007.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2097.78\" cy=\"513.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1380.3\" cy=\"448.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1250.52\" cy=\"756.099\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1910.63\" cy=\"939.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1386.05\" cy=\"476.765\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"460.591\" cy=\"943.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1665.64\" cy=\"622.221\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1314.44\" cy=\"625.672\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1555.49\" cy=\"318.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"617.426\" cy=\"556.117\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1093.33\" cy=\"1254.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2112.26\" cy=\"540.339\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"504.024\" cy=\"768.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2041.72\" cy=\"724.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"923.947\" cy=\"1003.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2086.25\" cy=\"603.466\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2147.94\" cy=\"302.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1737.23\" cy=\"822.621\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1629.05\" cy=\"510.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1098.04\" cy=\"1207.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2123.86\" cy=\"387.623\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1374.02\" cy=\"427.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1934.04\" cy=\"935.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1533.36\" cy=\"422.732\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2004.44\" cy=\"837.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"759.418\" cy=\"640.397\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"298.218\" cy=\"1349.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"468.177\" cy=\"827.324\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"999.864\" cy=\"1119.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2041.12\" cy=\"727.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"648.427\" cy=\"660.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1068.27\" cy=\"1104.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1286.11\" cy=\"748.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1199.48\" cy=\"980.444\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2081.49\" cy=\"522.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"589.765\" cy=\"606.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"608.663\" cy=\"598.409\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2177.92\" cy=\"267.823\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"488.78\" cy=\"758.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1834.61\" cy=\"991.011\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"830.519\" cy=\"880.341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"725.593\" cy=\"565.056\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"605.397\" cy=\"568.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"630.251\" cy=\"622.776\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2291.23\" cy=\"165.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"342.672\" cy=\"1195.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1752.33\" cy=\"790.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1007.93\" cy=\"1239.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1624.82\" cy=\"525.357\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"674.601\" cy=\"546.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"752.738\" cy=\"655.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2265.92\" cy=\"197.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1683.66\" cy=\"633.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"563.784\" cy=\"668.599\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"887.481\" cy=\"1004.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"379.757\" cy=\"1091.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"300.83\" cy=\"1273.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1704.66\" cy=\"820.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2278.3\" cy=\"211.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1871.16\" cy=\"976.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"479.581\" cy=\"848.933\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1584.55\" cy=\"411.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1878.27\" cy=\"877.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"624.701\" cy=\"599.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1926.7\" cy=\"919.853\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"951.591\" cy=\"1032.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"648.863\" cy=\"580.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"686.366\" cy=\"508.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"932.133\" cy=\"1119.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"980.198\" cy=\"1067.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1840.08\" cy=\"963.831\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1176.44\" cy=\"977.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1822.95\" cy=\"955.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2053.67\" cy=\"734.125\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"820.688\" cy=\"754.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1086.75\" cy=\"1188.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"982.577\" cy=\"1110.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1516.57\" cy=\"354.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"490.611\" cy=\"820.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1313.57\" cy=\"543.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"423.488\" cy=\"981.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2032.3\" cy=\"698.902\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"664.026\" cy=\"528.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1031.42\" cy=\"1141.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1477.18\" cy=\"365.302\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"726.206\" cy=\"619.109\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2275.43\" cy=\"87.9763\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"531.247\" cy=\"713.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1294.52\" cy=\"723.641\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"383.819\" cy=\"1070.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"325.839\" cy=\"1363.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1067.73\" cy=\"1129.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1176\" cy=\"1008.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1447.27\" cy=\"355.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1351.88\" cy=\"519.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"603.692\" cy=\"558.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1644.77\" cy=\"495.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1849.2\" cy=\"922.496\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"366.275\" cy=\"1177.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"557.356\" cy=\"701.864\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1558.7\" cy=\"400.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1600.55\" cy=\"536.177\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2228.8\" cy=\"222.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1420.05\" cy=\"294.289\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"678.985\" cy=\"650.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1057.07\" cy=\"1246.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1260.93\" cy=\"890.342\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1961.28\" cy=\"897.501\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1020.66\" cy=\"1183.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"760.879\" cy=\"577.755\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"888.283\" cy=\"981.585\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1742.67\" cy=\"878.066\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1370.77\" cy=\"402.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1986.11\" cy=\"889.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1695.88\" cy=\"710.511\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1794\" cy=\"890.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"840.868\" cy=\"816.759\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1017.24\" cy=\"1165.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"868.833\" cy=\"889.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"770.551\" cy=\"692.714\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1705.19\" cy=\"730.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"760.082\" cy=\"654.971\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1179.9\" cy=\"1037.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1443.74\" cy=\"330.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1715.57\" cy=\"798.876\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"397.708\" cy=\"1102.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1208.57\" cy=\"890.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"420.174\" cy=\"1038.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"719.126\" cy=\"568.102\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"706.601\" cy=\"634.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"836.146\" cy=\"870.019\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"332.954\" cy=\"1292.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"581.195\" cy=\"569.875\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1492.4\" cy=\"349.851\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"582.397\" cy=\"649.731\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2162.88\" cy=\"272.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"362.474\" cy=\"1235.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"272.767\" cy=\"1445.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"260.719\" cy=\"1401.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"980.701\" cy=\"1163.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1994.06\" cy=\"863.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2223.39\" cy=\"172.166\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"776.462\" cy=\"689.478\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1404.33\" cy=\"415.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"829.528\" cy=\"808.824\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1676.67\" cy=\"671.723\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1962.92\" cy=\"837.815\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"575.576\" cy=\"682.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1851.65\" cy=\"910.486\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1717.88\" cy=\"761.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"902.736\" cy=\"972.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2100.12\" cy=\"523.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2195.55\" cy=\"311.353\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1761.29\" cy=\"823.391\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1299.27\" cy=\"642.747\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2238.03\" cy=\"203.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1150.28\" cy=\"1057.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1503.47\" cy=\"353.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2001.53\" cy=\"750.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"325.155\" cy=\"1219.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1201.53\" cy=\"887.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"853.86\" cy=\"767.794\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1232.63\" cy=\"878.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"371.368\" cy=\"1173.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"826.088\" cy=\"763.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1446.65\" cy=\"482.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"800.041\" cy=\"769.905\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"658.208\" cy=\"498.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1450.9\" cy=\"339.384\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1105.47\" cy=\"1146.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1849.72\" cy=\"935.825\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"983.506\" cy=\"1081.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1639.48\" cy=\"628.202\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"910.086\" cy=\"1013.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1684.96\" cy=\"581.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"438.663\" cy=\"981.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"835.19\" cy=\"849.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2153.83\" cy=\"384.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1708.64\" cy=\"675.141\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"982.562\" cy=\"1083.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2218.92\" cy=\"276.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2062.57\" cy=\"556.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"929.922\" cy=\"1001.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1145.8\" cy=\"1062.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1717\" cy=\"742.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2194.01\" cy=\"272.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1507.11\" cy=\"327.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"943.098\" cy=\"1125.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1782.66\" cy=\"987.249\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1277.29\" cy=\"798.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1549.07\" cy=\"347.668\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1471.2\" cy=\"367.229\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1184.64\" cy=\"970.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2089.47\" cy=\"563.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"296.217\" cy=\"1355.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1415.9\" cy=\"441.891\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"596.422\" cy=\"535.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"587.047\" cy=\"638.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1827.18\" cy=\"981.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1004.02\" cy=\"1104.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1487.67\" cy=\"435.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"329.693\" cy=\"1205.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1681.76\" cy=\"779.921\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1086.37\" cy=\"1189.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1179.75\" cy=\"944.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1213.85\" cy=\"908.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"505.755\" cy=\"821.919\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2086.35\" cy=\"558.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"928.93\" cy=\"1100.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"951.036\" cy=\"1087.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1823.35\" cy=\"994.655\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1393.67\" cy=\"407.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1123.02\" cy=\"1125.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"649.012\" cy=\"527.616\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1971.24\" cy=\"781.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1188.16\" cy=\"969.535\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1381.52\" cy=\"499.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"621.126\" cy=\"643.207\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1189.16\" cy=\"1078.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"457.006\" cy=\"895.281\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"542.813\" cy=\"729.792\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1292.2\" cy=\"716.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1795.41\" cy=\"936.364\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"914.844\" cy=\"962.645\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1577.83\" cy=\"553.934\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1849.72\" cy=\"939.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1972.31\" cy=\"849.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2212.88\" cy=\"295.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"561.321\" cy=\"618.608\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"279.114\" cy=\"1341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1770.68\" cy=\"970.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"310.899\" cy=\"1295.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1173.43\" cy=\"1027.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2164.93\" cy=\"376.105\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"267.529\" cy=\"1341.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1050.29\" cy=\"1163.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1792.45\" cy=\"803.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"745.025\" cy=\"653.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"673.624\" cy=\"549.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"911.361\" cy=\"1058.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1286.85\" cy=\"700.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"538.884\" cy=\"743.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"648.733\" cy=\"609.576\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1645.91\" cy=\"532.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1165.13\" cy=\"1087.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1813.05\" cy=\"900.575\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1916.1\" cy=\"1036.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1072.08\" cy=\"1133.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"823.388\" cy=\"796.196\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"780.758\" cy=\"687.531\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"299.001\" cy=\"1352.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"613.134\" cy=\"631.795\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"835.15\" cy=\"815.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1309.89\" cy=\"638.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1720.89\" cy=\"789.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"884.697\" cy=\"948.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"474.422\" cy=\"857.855\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"893.027\" cy=\"1006.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1532.79\" cy=\"423.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1895.6\" cy=\"994.718\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"654.243\" cy=\"516.685\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1398.18\" cy=\"410.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"772.564\" cy=\"655.927\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2171.4\" cy=\"341.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"463.988\" cy=\"855.419\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"609.128\" cy=\"563.129\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1556.27\" cy=\"376.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1191.92\" cy=\"991.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1720.69\" cy=\"849.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"426.134\" cy=\"1063.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"811.724\" cy=\"775.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1656.74\" cy=\"706.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"670.963\" cy=\"601.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"274.177\" cy=\"1371.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"667.625\" cy=\"551.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2179.62\" cy=\"302.017\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"898.292\" cy=\"903.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"469.722\" cy=\"953.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1908.32\" cy=\"947.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1374.92\" cy=\"459.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2019.99\" cy=\"693.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1634.06\" cy=\"651.602\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"240.845\" cy=\"1339.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1871.51\" cy=\"959.947\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1140.29\" cy=\"1055.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"648.027\" cy=\"610.812\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2040.62\" cy=\"656.096\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2042.63\" cy=\"644.966\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1778.87\" cy=\"848.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"702.487\" cy=\"581.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1207.57\" cy=\"934.006\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"824.705\" cy=\"840.898\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"853.029\" cy=\"895.703\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"301.687\" cy=\"1320.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1818.15\" cy=\"943.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"613.444\" cy=\"624.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1468.62\" cy=\"329.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"348.473\" cy=\"1238.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1022\" cy=\"1158.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2107.03\" cy=\"516.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"674.989\" cy=\"570.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1737.68\" cy=\"783.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1795.95\" cy=\"965.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"458.234\" cy=\"968.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1887.82\" cy=\"988.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1156.79\" cy=\"978.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2234.39\" cy=\"238.871\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2282.57\" cy=\"159.325\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1689.52\" cy=\"691.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1639.43\" cy=\"513.945\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1051.09\" cy=\"1151.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"270.196\" cy=\"1383.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"903.644\" cy=\"873.139\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"439.668\" cy=\"1037.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2054.65\" cy=\"584.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1793.16\" cy=\"858.139\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"461.07\" cy=\"887.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2058.66\" cy=\"667.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1893.4\" cy=\"1007.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1591.88\" cy=\"360.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"965.784\" cy=\"1111.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1370.06\" cy=\"453.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"875.013\" cy=\"900.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"308.778\" cy=\"1272.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"274.621\" cy=\"1383.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"284.904\" cy=\"1304.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1647.46\" cy=\"520.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1331.07\" cy=\"637.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1516.9\" cy=\"375.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1158.26\" cy=\"1067.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1337.04\" cy=\"393.136\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1495.34\" cy=\"371.764\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1706.08\" cy=\"656.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1853.02\" cy=\"887.585\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2155.99\" cy=\"361.456\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"967.376\" cy=\"1123.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1020.84\" cy=\"1160.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1270.32\" cy=\"845.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1074.28\" cy=\"1145.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1291.18\" cy=\"744.773\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1010.5\" cy=\"1242.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1448.47\" cy=\"408.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2036.53\" cy=\"674.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2135.06\" cy=\"426.788\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2018.54\" cy=\"682.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1997.94\" cy=\"806.315\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1044.4\" cy=\"1101.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"832.445\" cy=\"834.513\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2275.66\" cy=\"172.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"523.56\" cy=\"688.573\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"406.244\" cy=\"1136.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"908.105\" cy=\"946.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1655.29\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2013.16\" cy=\"762.535\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"302.659\" cy=\"1270.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"528.014\" cy=\"710.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1509.13\" cy=\"425.123\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1466.58\" cy=\"317.168\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1535.49\" cy=\"390.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1884.06\" cy=\"1009.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1003.86\" cy=\"1184.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1355.31\" cy=\"392.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"695.781\" cy=\"584.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"627.004\" cy=\"632.141\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1774.89\" cy=\"873.723\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1422.45\" cy=\"385.177\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2214.31\" cy=\"350.837\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"923.317\" cy=\"981.488\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2256.77\" cy=\"292.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"936.161\" cy=\"1032.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"453.699\" cy=\"962.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1319.23\" cy=\"571.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"456.977\" cy=\"943.777\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1141.69\" cy=\"1105.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1062.67\" cy=\"1114.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1707.94\" cy=\"705.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"769.118\" cy=\"724.523\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"469.628\" cy=\"886.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1445.02\" cy=\"423.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1385\" cy=\"400.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1980.63\" cy=\"837.717\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1472.44\" cy=\"332.269\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2113.87\" cy=\"465.216\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1342.49\" cy=\"593.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"302.734\" cy=\"1308.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1543.82\" cy=\"459.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"374.034\" cy=\"1184.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1965.18\" cy=\"865.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"425.687\" cy=\"1036.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"499.393\" cy=\"791.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1902.39\" cy=\"976.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"615.351\" cy=\"544.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"663.377\" cy=\"535.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"730.003\" cy=\"571.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2289.1\" cy=\"175.674\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1760.49\" cy=\"973.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2276.14\" cy=\"150.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"620.845\" cy=\"581.685\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2055.18\" cy=\"651.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1009.95\" cy=\"1171.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"439.525\" cy=\"1033.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"670.77\" cy=\"551.989\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"816.806\" cy=\"863.863\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1904.11\" cy=\"875.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"401.305\" cy=\"1079.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1854.66\" cy=\"877.655\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1181.34\" cy=\"1034.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1469.27\" cy=\"240.442\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2261.42\" cy=\"125.527\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"970.236\" cy=\"1059.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1694.59\" cy=\"631.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2037.61\" cy=\"705.558\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1360.31\" cy=\"548.804\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"997.334\" cy=\"1172.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1798.45\" cy=\"881.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1071.99\" cy=\"1085.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"900.457\" cy=\"926.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1032.89\" cy=\"1210.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2249.37\" cy=\"223.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"446.796\" cy=\"886.931\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"729.971\" cy=\"655.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"653.778\" cy=\"577.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2194.72\" cy=\"301.686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1689.72\" cy=\"581.068\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1455.97\" cy=\"435.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2077.38\" cy=\"552.366\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"575.506\" cy=\"598.555\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1039.39\" cy=\"1113.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"864.81\" cy=\"900.021\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1240.8\" cy=\"850.275\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"437.629\" cy=\"1039.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1596\" cy=\"465.186\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"302.673\" cy=\"1266.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"349.549\" cy=\"1215.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"606.444\" cy=\"614.392\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1527.63\" cy=\"443.537\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1744.62\" cy=\"746.626\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1815.58\" cy=\"1025.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2255.49\" cy=\"181.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1518.55\" cy=\"265.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"536.704\" cy=\"749.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"917.453\" cy=\"1105.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1212.66\" cy=\"1001\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1485.47\" cy=\"305.082\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"544.013\" cy=\"729.979\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2225.55\" cy=\"181.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"517.874\" cy=\"781.903\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"781.444\" cy=\"612.155\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"907.316\" cy=\"983.618\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1235.6\" cy=\"817.201\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"591.874\" cy=\"608.974\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"305.088\" cy=\"1242.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1283.9\" cy=\"774.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1873.38\" cy=\"958.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1356.76\" cy=\"536.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"384.445\" cy=\"1122.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2212.52\" cy=\"208.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"544.663\" cy=\"681.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1762.54\" cy=\"882.109\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1745.28\" cy=\"837.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"622.597\" cy=\"581.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2166.81\" cy=\"356.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1558.89\" cy=\"340.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1093.48\" cy=\"1247.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"876.504\" cy=\"979.307\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1667.38\" cy=\"667.461\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1589.41\" cy=\"438.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1800.19\" cy=\"863\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"752.706\" cy=\"647.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1390.1\" cy=\"511.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1146.18\" cy=\"1001.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2220.51\" cy=\"167.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1658.38\" cy=\"626.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2209.24\" cy=\"228.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1824.1\" cy=\"880.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"416.318\" cy=\"1063.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1679.3\" cy=\"686.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1043.11\" cy=\"1041.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1067.91\" cy=\"1165.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1819.09\" cy=\"928.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"317.971\" cy=\"1262.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1284.26\" cy=\"749.042\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1621.35\" cy=\"504.667\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"699.783\" cy=\"547.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"532.806\" cy=\"680.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1732.06\" cy=\"805.422\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1250.43\" cy=\"733.759\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"475.268\" cy=\"861.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"957.742\" cy=\"1043.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"763.487\" cy=\"687.292\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1911.73\" cy=\"974.524\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1397.23\" cy=\"411.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"945.689\" cy=\"1060.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"608.671\" cy=\"715.068\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1242.49\" cy=\"870.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"685.602\" cy=\"519.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1550.8\" cy=\"410.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1396.7\" cy=\"490.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1422.94\" cy=\"357.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1277.83\" cy=\"638.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"962.415\" cy=\"1115.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"1599.34\" cy=\"524.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2249.95\" cy=\"146.444\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2020.77\" cy=\"875.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip742)\" cx=\"2038.93\" cy=\"650.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M1986.32 198.898 L2280.29 198.898 L2280.29 95.2176 L1986.32 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1986.32,198.898 2280.29,198.898 2280.29,95.2176 1986.32,95.2176 1986.32,198.898 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip740)\" cx=\"2082.94\" cy=\"147.058\" r=\"23\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"5.12\"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M2193.4 166.745 Q2191.59 171.375 2189.88 172.787 Q2188.17 174.199 2185.29 174.199 L2181.89 174.199 L2181.89 170.634 L2184.39 170.634 Q2186.15 170.634 2187.12 169.8 Q2188.1 168.967 2189.28 165.865 L2190.04 163.921 L2179.55 138.412 L2184.07 138.412 L2192.17 158.689 L2200.27 138.412 L2204.79 138.412 L2193.4 166.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M2212.08 160.402 L2219.72 160.402 L2219.72 134.037 L2211.41 135.703 L2211.41 131.444 L2219.67 129.778 L2224.35 129.778 L2224.35 160.402 L2231.98 160.402 L2231.98 164.338 L2212.08 164.338 L2212.08 160.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"scatter(x', y', alpha=0.2) # transpose for plotting"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "JCeEP7GYDmAQ"
},
"source": [
"We will now use this data to train a neural network with one hidden layer. The network can be described by the following equation:\n",
"\n",
"$$\n",
"\\hat{y}(x) = W_2\\tanh(W_1x + b_1) +b_2,\n",
"$$\n",
"\n",
"where\n",
"\n",
" - $W_1$, $W_2$ are the weights for the input and output layers\n",
" - $b_1$, $b_2$ are the biases for the input and output layers\n",
" - $\\tanh$ is a the hyperbolic tangent activation function\n",
" \n",
"Let's create this network using 20 hidden nodes. Note that both the input and output are 1-dimensional. We will use Flux's `Dense` layer constructs and the `Chain` model (equivalent to a Sequential layer in PyTorch/Tensorflow) to put these together:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"id": "IJ2__Es2DmAR"
},
"outputs": [],
"source": [
"n_input = 1\n",
"n_hidden = 20\n",
"n_output = 1\n",
"\n",
"model = Chain(\n",
" Dense(n_input, n_hidden, tanh),\n",
" Dense(n_hidden, n_output));"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "jzTAKHsADmAS"
},
"source": [
"To train the network we also need to define a loss function, we will use the standard mean squared error loss for regression models:"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"id": "z-u4stDVDmAS"
},
"outputs": [],
"source": [
"loss(x, y) = Flux.mse(model(x), y);"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "G6ffa4eJDmAT"
},
"source": [
"We also need an optimizer which will try to minimize the loss function at training time. We will use [RMSprop](http://ruder.io/optimizing-gradient-descent/index.html#rmsprop), included in Flux:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"id": "xSK_Bs0ZDmAT"
},
"outputs": [],
"source": [
"opt = RMSProp(0.01, 0.99);"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "wINU1ypmDmAT"
},
"source": [
"We need to get the parameters from the model that are to be optimized, this can be done easily within Flux as the parameters (their values and gradients) are tracked when the model was created:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"id": "rEtOIgg-DmAU"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"20-element Vector{Float32}\n",
"20×1 Matrix{Float32}\n",
"1×20 Matrix{Float32}\n",
"1-element Vector{Float32}\n"
]
}
],
"source": [
"pars = Flux.params(model)\n",
"foreach(println ∘ summary, pars.params)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "VwjOO0ZVDmAU"
},
"source": [
"Finally we define the number of epochs to train for as well as a simple callback function which will allow us to monitor the training loss:"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"id": "Vcly3J1UDmAV"
},
"outputs": [],
"source": [
"n_epochs = 3000\n",
"evalcb() = @show(loss(x, y));"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"id": "HlPTt_ZIDmAV"
},
"outputs": [],
"source": [
"data = Iterators.repeated((x, y), n_epochs);"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "SCUDeENFDmAW"
},
"source": [
"We are now ready to train the network using Flux's high-level `train!` API:"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"id": "21xQ9fwyDmAW",
"outputId": "99e2163c-22d7-40d3-9fbb-3459b838c817"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"loss(x, y) = 27.298287408520643\n",
"loss(x, y) = 1.1932880406359176\n",
"loss(x, y) = 1.1510033394549746\n"
]
}
],
"source": [
"# high-level\n",
"Flux.train!(loss, pars, data, opt, cb=Flux.throttle(evalcb, 1))"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "jTjiZ0NUDmAX"
},
"source": [
"Note that we created an iterator over the data, repeating it for the number of epochs we wanted to train. Alternatively, instead of using the iterator over the data and the callback, you can write the training loop more explicitly like this:"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"id": "9a4kckEcDmAX",
"outputId": "417883a9-b9c6-4306-828c-6e35c6db75f5"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch: 300 loss: 1.1150549085054622\n",
"Epoch: 600 loss: 1.1720569275068586\n",
"Epoch: 900 loss: 1.122003730736572\n",
"Epoch: 1200 loss: 1.0998033504048332\n",
"Epoch: 1500 loss: 1.1733619605717536\n",
"Epoch: 1800 loss: 1.107484668922506\n",
"Epoch: 2100 loss: 1.1120659458041775\n",
"Epoch: 2400 loss: 1.0867373767598607\n",
"Epoch: 2700 loss: 1.1369364727020979\n",
"Epoch: 3000 loss: 1.093817393281882\n"
]
}
],
"source": [
"# lower-level\n",
"data = [(x, y)]\n",
"\n",
"for epoch = 1:n_epochs\n",
" Flux.train!(loss, pars, data, opt)\n",
" if epoch % 300 ==0\n",
" l = loss(x, y)\n",
" println(\"Epoch: \", epoch, \" loss: \", l)\n",
" end\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "RxbeHPmoDmAY"
},
"source": [
"With Flux you can go down to the level of doing the gradient updates manually too, similar how you would do it in PyTorch, we will use this in the next section to update our custom loss function. At the time of writing Flux is [undergoing a change](https://github.com/FluxML/Flux.jl/pull/669) in its automatic differentiation backend which might result in some changes to the low-level API."
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "6cjlkaLVDmAZ"
},
"source": [
"Now that we have trained the model, we can evaluate its performance on some test data:"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"id": "nTi02_l1DmAZ",
"outputId": "f9828832-223a-41e5-fb71-ccd1faed9807"
},
"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=\"clip780\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip780)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip781\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip780)\" d=\"\n",
"M178.867 1486.45 L2352.76 1486.45 L2352.76 47.2441 L178.867 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip782\">\n",
" <rect x=\"178\" y=\"47\" width=\"2175\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 287.195,1486.45 287.195,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.793,1486.45 776.793,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1266.39,1486.45 1266.39,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1755.99,1486.45 1755.99,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2245.59,1486.45 2245.59,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 287.195,1486.45 287.195,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.793,1486.45 776.793,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1266.39,1486.45 1266.39,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1755.99,1486.45 1755.99,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2245.59,1486.45 2245.59,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip780)\" d=\"M241.257 1532.02 L270.933 1532.02 L270.933 1535.95 L241.257 1535.95 L241.257 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M281.836 1544.91 L289.475 1544.91 L289.475 1518.55 L281.165 1520.21 L281.165 1515.95 L289.429 1514.29 L294.104 1514.29 L294.104 1544.91 L301.743 1544.91 L301.743 1548.85 L281.836 1548.85 L281.836 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M321.188 1517.37 Q317.577 1517.37 315.748 1520.93 Q313.942 1524.47 313.942 1531.6 Q313.942 1538.71 315.748 1542.27 Q317.577 1545.82 321.188 1545.82 Q324.822 1545.82 326.627 1542.27 Q328.456 1538.71 328.456 1531.6 Q328.456 1524.47 326.627 1520.93 Q324.822 1517.37 321.188 1517.37 M321.188 1513.66 Q326.998 1513.66 330.053 1518.27 Q333.132 1522.85 333.132 1531.6 Q333.132 1540.33 330.053 1544.94 Q326.998 1549.52 321.188 1549.52 Q315.377 1549.52 312.299 1544.94 Q309.243 1540.33 309.243 1531.6 Q309.243 1522.85 312.299 1518.27 Q315.377 1513.66 321.188 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M746.434 1532.02 L776.11 1532.02 L776.11 1535.95 L746.434 1535.95 L746.434 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M786.249 1514.29 L804.605 1514.29 L804.605 1518.22 L790.531 1518.22 L790.531 1526.7 Q791.55 1526.35 792.568 1526.19 Q793.587 1526 794.606 1526 Q800.393 1526 803.772 1529.17 Q807.152 1532.34 807.152 1537.76 Q807.152 1543.34 803.68 1546.44 Q800.207 1549.52 793.888 1549.52 Q791.712 1549.52 789.443 1549.15 Q787.198 1548.78 784.791 1548.04 L784.791 1543.34 Q786.874 1544.47 789.096 1545.03 Q791.318 1545.58 793.795 1545.58 Q797.8 1545.58 800.138 1543.48 Q802.476 1541.37 802.476 1537.76 Q802.476 1534.15 800.138 1532.04 Q797.8 1529.94 793.795 1529.94 Q791.92 1529.94 790.045 1530.35 Q788.194 1530.77 786.249 1531.65 L786.249 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1266.39 1517.37 Q1262.78 1517.37 1260.95 1520.93 Q1259.15 1524.47 1259.15 1531.6 Q1259.15 1538.71 1260.95 1542.27 Q1262.78 1545.82 1266.39 1545.82 Q1270.03 1545.82 1271.83 1542.27 Q1273.66 1538.71 1273.66 1531.6 Q1273.66 1524.47 1271.83 1520.93 Q1270.03 1517.37 1266.39 1517.37 M1266.39 1513.66 Q1272.2 1513.66 1275.26 1518.27 Q1278.34 1522.85 1278.34 1531.6 Q1278.34 1540.33 1275.26 1544.94 Q1272.2 1549.52 1266.39 1549.52 Q1260.58 1549.52 1257.5 1544.94 Q1254.45 1540.33 1254.45 1531.6 Q1254.45 1522.85 1257.5 1518.27 Q1260.58 1513.66 1266.39 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1746.27 1514.29 L1764.62 1514.29 L1764.62 1518.22 L1750.55 1518.22 L1750.55 1526.7 Q1751.57 1526.35 1752.59 1526.19 Q1753.61 1526 1754.62 1526 Q1760.41 1526 1763.79 1529.17 Q1767.17 1532.34 1767.17 1537.76 Q1767.17 1543.34 1763.7 1546.44 Q1760.23 1549.52 1753.91 1549.52 Q1751.73 1549.52 1749.46 1549.15 Q1747.22 1548.78 1744.81 1548.04 L1744.81 1543.34 Q1746.89 1544.47 1749.11 1545.03 Q1751.34 1545.58 1753.81 1545.58 Q1757.82 1545.58 1760.16 1543.48 Q1762.49 1541.37 1762.49 1537.76 Q1762.49 1534.15 1760.16 1532.04 Q1757.82 1529.94 1753.81 1529.94 Q1751.94 1529.94 1750.06 1530.35 Q1748.21 1530.77 1746.27 1531.65 L1746.27 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2220.28 1544.91 L2227.91 1544.91 L2227.91 1518.55 L2219.6 1520.21 L2219.6 1515.95 L2227.87 1514.29 L2232.54 1514.29 L2232.54 1544.91 L2240.18 1544.91 L2240.18 1548.85 L2220.28 1548.85 L2220.28 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2259.63 1517.37 Q2256.02 1517.37 2254.19 1520.93 Q2252.38 1524.47 2252.38 1531.6 Q2252.38 1538.71 2254.19 1542.27 Q2256.02 1545.82 2259.63 1545.82 Q2263.26 1545.82 2265.07 1542.27 Q2266.9 1538.71 2266.9 1531.6 Q2266.9 1524.47 2265.07 1520.93 Q2263.26 1517.37 2259.63 1517.37 M2259.63 1513.66 Q2265.44 1513.66 2268.49 1518.27 Q2271.57 1522.85 2271.57 1531.6 Q2271.57 1540.33 2268.49 1544.94 Q2265.44 1549.52 2259.63 1549.52 Q2253.82 1549.52 2250.74 1544.94 Q2247.68 1540.33 2247.68 1531.6 Q2247.68 1522.85 2250.74 1518.27 Q2253.82 1513.66 2259.63 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1268.62 2352.76,1268.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1016.77 2352.76,1016.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,764.907 2352.76,764.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,513.049 2352.76,513.049 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,261.191 2352.76,261.191 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 178.867,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1268.62 197.764,1268.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1016.77 197.764,1016.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,764.907 197.764,764.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,513.049 197.764,513.049 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,261.191 197.764,261.191 \n",
" \"/>\n",
"<path clip-path=\"url(#clip780)\" d=\"M50.9921 1269.07 L80.6679 1269.07 L80.6679 1273.01 L50.9921 1273.01 L50.9921 1269.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M91.5706 1281.97 L99.2095 1281.97 L99.2095 1255.6 L90.8993 1257.27 L90.8993 1253.01 L99.1632 1251.34 L103.839 1251.34 L103.839 1281.97 L111.478 1281.97 L111.478 1285.9 L91.5706 1285.9 L91.5706 1281.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M130.922 1254.42 Q127.311 1254.42 125.482 1257.99 Q123.677 1261.53 123.677 1268.66 Q123.677 1275.76 125.482 1279.33 Q127.311 1282.87 130.922 1282.87 Q134.556 1282.87 136.362 1279.33 Q138.191 1275.76 138.191 1268.66 Q138.191 1261.53 136.362 1257.99 Q134.556 1254.42 130.922 1254.42 M130.922 1250.72 Q136.732 1250.72 139.788 1255.32 Q142.867 1259.91 142.867 1268.66 Q142.867 1277.38 139.788 1281.99 Q136.732 1286.57 130.922 1286.57 Q125.112 1286.57 122.033 1281.99 Q118.978 1277.38 118.978 1268.66 Q118.978 1259.91 122.033 1255.32 Q125.112 1250.72 130.922 1250.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M82.1494 1017.22 L111.825 1017.22 L111.825 1021.15 L82.1494 1021.15 L82.1494 1017.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M121.964 999.485 L140.32 999.485 L140.32 1003.42 L126.246 1003.42 L126.246 1011.89 Q127.265 1011.55 128.283 1011.38 Q129.302 1011.2 130.32 1011.2 Q136.107 1011.2 139.487 1014.37 Q142.867 1017.54 142.867 1022.96 Q142.867 1028.54 139.394 1031.64 Q135.922 1034.72 129.603 1034.72 Q127.427 1034.72 125.158 1034.35 Q122.913 1033.98 120.506 1033.23 L120.506 1028.54 Q122.589 1029.67 124.811 1030.23 Q127.033 1030.78 129.51 1030.78 Q133.515 1030.78 135.853 1028.67 Q138.191 1026.57 138.191 1022.96 Q138.191 1019.35 135.853 1017.24 Q133.515 1015.13 129.51 1015.13 Q127.635 1015.13 125.76 1015.55 Q123.908 1015.97 121.964 1016.85 L121.964 999.485 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M130.922 750.706 Q127.311 750.706 125.482 754.271 Q123.677 757.812 123.677 764.942 Q123.677 772.048 125.482 775.613 Q127.311 779.155 130.922 779.155 Q134.556 779.155 136.362 775.613 Q138.191 772.048 138.191 764.942 Q138.191 757.812 136.362 754.271 Q134.556 750.706 130.922 750.706 M130.922 747.002 Q136.732 747.002 139.788 751.609 Q142.867 756.192 142.867 764.942 Q142.867 773.669 139.788 778.275 Q136.732 782.858 130.922 782.858 Q125.112 782.858 122.033 778.275 Q118.978 773.669 118.978 764.942 Q118.978 756.192 122.033 751.609 Q125.112 747.002 130.922 747.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M121.964 495.769 L140.32 495.769 L140.32 499.704 L126.246 499.704 L126.246 508.176 Q127.265 507.829 128.283 507.667 Q129.302 507.482 130.32 507.482 Q136.107 507.482 139.487 510.653 Q142.867 513.824 142.867 519.241 Q142.867 524.82 139.394 527.922 Q135.922 531 129.603 531 Q127.427 531 125.158 530.63 Q122.913 530.26 120.506 529.519 L120.506 524.82 Q122.589 525.954 124.811 526.51 Q127.033 527.065 129.51 527.065 Q133.515 527.065 135.853 524.959 Q138.191 522.852 138.191 519.241 Q138.191 515.63 135.853 513.524 Q133.515 511.417 129.51 511.417 Q127.635 511.417 125.76 511.834 Q123.908 512.25 121.964 513.13 L121.964 495.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M91.5706 274.536 L99.2095 274.536 L99.2095 248.17 L90.8993 249.837 L90.8993 245.578 L99.1632 243.911 L103.839 243.911 L103.839 274.536 L111.478 274.536 L111.478 278.471 L91.5706 278.471 L91.5706 274.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M130.922 246.99 Q127.311 246.99 125.482 250.554 Q123.677 254.096 123.677 261.226 Q123.677 268.332 125.482 271.897 Q127.311 275.439 130.922 275.439 Q134.556 275.439 136.362 271.897 Q138.191 268.332 138.191 261.226 Q138.191 254.096 136.362 250.554 Q134.556 246.99 130.922 246.99 M130.922 243.286 Q136.732 243.286 139.788 247.892 Q142.867 252.476 142.867 261.226 Q142.867 269.953 139.788 274.559 Q136.732 279.142 130.922 279.142 Q125.112 279.142 122.033 274.559 Q118.978 269.953 118.978 261.226 Q118.978 252.476 122.033 247.892 Q125.112 243.286 130.922 243.286 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip782)\" cx=\"577.613\" cy=\"717.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2240.59\" cy=\"209.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1906.67\" cy=\"904.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"806.985\" cy=\"732.394\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"992.919\" cy=\"1190.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"413.085\" cy=\"1148.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1719.9\" cy=\"732.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2224.72\" cy=\"282.275\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2204.51\" cy=\"261.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1683.15\" cy=\"655.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1790.7\" cy=\"872.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1028.21\" cy=\"1191.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1999.28\" cy=\"909.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"592.644\" cy=\"633.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"767.648\" cy=\"750.842\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1662.01\" cy=\"666.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"765.839\" cy=\"540.454\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"795.095\" cy=\"723.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"695.518\" cy=\"586.669\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1931.95\" cy=\"1020.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"534.239\" cy=\"778.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"608.194\" cy=\"565.004\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1042.83\" cy=\"1135.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"734.11\" cy=\"618.819\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1970.31\" cy=\"871.883\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1325.26\" cy=\"655.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1058\" cy=\"1152.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"969.392\" cy=\"1131.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"397.549\" cy=\"1164.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1894.5\" cy=\"951.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1901.88\" cy=\"1003.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1862.87\" cy=\"939.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"495.95\" cy=\"933.651\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1247.83\" cy=\"794.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"724.155\" cy=\"609.044\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1903.65\" cy=\"935.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1675.26\" cy=\"672.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2138.47\" cy=\"407.113\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"783.141\" cy=\"647.316\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1992.84\" cy=\"849.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1646.54\" cy=\"636.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2271.37\" cy=\"118.214\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1459.44\" cy=\"381.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1113.53\" cy=\"1216.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2062.68\" cy=\"654.575\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2234.79\" cy=\"161.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1705.26\" cy=\"666.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"683.167\" cy=\"549.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"306.913\" cy=\"1285.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1566.36\" cy=\"356.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1680.56\" cy=\"644.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2279.72\" cy=\"97.323\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"866.596\" cy=\"890.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1107.29\" cy=\"1155.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1394.19\" cy=\"434.852\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"906.278\" cy=\"1023.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1352.41\" cy=\"436.103\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1288.18\" cy=\"724.642\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1342.89\" cy=\"525.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1518.02\" cy=\"399.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2275.96\" cy=\"150.273\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2165.81\" cy=\"387.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1487.67\" cy=\"362.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"600.857\" cy=\"614.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1100.22\" cy=\"1104.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1783.53\" cy=\"880.184\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"627.584\" cy=\"653.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2087.98\" cy=\"668.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"381.063\" cy=\"1150.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"429.44\" cy=\"1070.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"792.399\" cy=\"711.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1552.21\" cy=\"358.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"649.686\" cy=\"592.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1905.69\" cy=\"987.279\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1279.73\" cy=\"701.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1957\" cy=\"870.164\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1939.01\" cy=\"999.428\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"339.648\" cy=\"1215.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2150.22\" cy=\"363.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1541.11\" cy=\"441.045\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"489.472\" cy=\"899.022\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"442.097\" cy=\"996.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"858.96\" cy=\"906.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2213.14\" cy=\"249.878\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"479.623\" cy=\"816.421\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1715.03\" cy=\"862.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"547.361\" cy=\"803.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1385.94\" cy=\"516.824\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2101\" cy=\"489.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"500.3\" cy=\"823.548\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"712.944\" cy=\"585.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2220.79\" cy=\"233.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1337.05\" cy=\"589.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1120.14\" cy=\"1066.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1635.52\" cy=\"541.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"702.022\" cy=\"661.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1451.57\" cy=\"318.393\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"503.176\" cy=\"936.941\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"368.788\" cy=\"1132.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1341.11\" cy=\"484.831\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1535.11\" cy=\"369.669\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1609.78\" cy=\"532.089\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2074.35\" cy=\"620.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"702.554\" cy=\"552.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"743.541\" cy=\"632.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1441.84\" cy=\"356.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"762.152\" cy=\"647.167\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1929.58\" cy=\"959.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1668.11\" cy=\"637.613\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"736.046\" cy=\"553.668\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"440.415\" cy=\"963.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"351.247\" cy=\"1232.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"928.575\" cy=\"959.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2047.33\" cy=\"710.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1870.65\" cy=\"846.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1029.26\" cy=\"1196.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2155.92\" cy=\"331.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"490.928\" cy=\"880.956\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1565.62\" cy=\"374.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"544.439\" cy=\"614.752\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"434.038\" cy=\"1036.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"493.182\" cy=\"844.036\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"759.405\" cy=\"745.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"249.944\" cy=\"1284.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1979.84\" cy=\"793.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"986.864\" cy=\"1201.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1804.27\" cy=\"899.405\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1828.26\" cy=\"978.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1574.57\" cy=\"519.922\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1578.5\" cy=\"477.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1008\" cy=\"1113.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"627.495\" cy=\"556.084\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"241.523\" cy=\"1325.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2268.44\" cy=\"276.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1440.57\" cy=\"329.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"786.036\" cy=\"824.321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"746.672\" cy=\"601.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1291.66\" cy=\"711.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"655.382\" cy=\"429.308\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2045.98\" cy=\"692.624\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1841.22\" cy=\"934.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1304.27\" cy=\"700.281\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1855.66\" cy=\"868.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1738.88\" cy=\"828.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"607.661\" cy=\"597.186\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1215.25\" cy=\"790.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2261.57\" cy=\"168.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1889\" cy=\"934.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1225.1\" cy=\"868.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2237.08\" cy=\"168.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1048.62\" cy=\"1139.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1622.19\" cy=\"546.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"726.302\" cy=\"539.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"720.303\" cy=\"599.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"326.085\" cy=\"1290.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"808.343\" cy=\"846.331\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1620.99\" cy=\"510.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1899.25\" cy=\"919.989\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1559.48\" cy=\"425.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1342.86\" cy=\"514.711\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"255.749\" cy=\"1376.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"310.776\" cy=\"1283.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"972.725\" cy=\"1176.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"719.247\" cy=\"610.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1020.78\" cy=\"1123.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1747.71\" cy=\"768.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1856.21\" cy=\"943.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"907.655\" cy=\"1072.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"960.889\" cy=\"1104.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1918.51\" cy=\"879.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1892.88\" cy=\"943.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"716.09\" cy=\"559.819\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1205.79\" cy=\"985.157\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1761.67\" cy=\"856.744\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1311.98\" cy=\"656.902\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2013.5\" cy=\"807.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1222.69\" cy=\"899.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"953.796\" cy=\"1125.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"629.478\" cy=\"614.676\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1892.33\" cy=\"909.706\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2287.88\" cy=\"109.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1371.22\" cy=\"460.604\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2266.68\" cy=\"150.687\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1795.73\" cy=\"874.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1127.47\" cy=\"1160.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2220.35\" cy=\"226.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"670.735\" cy=\"508.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1367.56\" cy=\"419.546\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1187.2\" cy=\"999.879\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"547.475\" cy=\"676.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1956.12\" cy=\"904.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1039.49\" cy=\"1205.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1887.15\" cy=\"927.022\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1069.36\" cy=\"1248.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"316.91\" cy=\"1232.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2104.48\" cy=\"489.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"557.317\" cy=\"647.294\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"965.378\" cy=\"952.375\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1781.73\" cy=\"868.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1154.4\" cy=\"1055.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"984.659\" cy=\"1156.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1972.85\" cy=\"795.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2080.73\" cy=\"542.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"419.663\" cy=\"973.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1735.07\" cy=\"715.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1609.63\" cy=\"406.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1985.85\" cy=\"762.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"586.217\" cy=\"533.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"329.5\" cy=\"1324.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1141.1\" cy=\"1084.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"417.176\" cy=\"1100.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2178.58\" cy=\"216.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"961.322\" cy=\"1074.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"355.352\" cy=\"1190.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2016.19\" cy=\"885.097\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"969.961\" cy=\"1131.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"253.958\" cy=\"1409.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"420.158\" cy=\"1047.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2085.1\" cy=\"564.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"910.724\" cy=\"967.495\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"988.758\" cy=\"1138.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1045.67\" cy=\"1164.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1629.53\" cy=\"629.486\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1565.97\" cy=\"455.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1624.44\" cy=\"515.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1844.35\" cy=\"1026.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1102.35\" cy=\"1119.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1165.84\" cy=\"1016\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1165.51\" cy=\"996.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1864.41\" cy=\"992.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1201.09\" cy=\"979.392\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"762.536\" cy=\"652.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"368.824\" cy=\"1230.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"283.392\" cy=\"1324.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"342.248\" cy=\"1270.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1796.97\" cy=\"870.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"625.564\" cy=\"574.467\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"619.6\" cy=\"487.528\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"945.628\" cy=\"1090.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2250.58\" cy=\"310.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2135.6\" cy=\"427.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1974.8\" cy=\"810.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1821.06\" cy=\"1028.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2036.25\" cy=\"685.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1756.36\" cy=\"894.507\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1483.9\" cy=\"375.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1417.61\" cy=\"493.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"542.702\" cy=\"735.399\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1434.68\" cy=\"349.979\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2234.7\" cy=\"221.017\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2002.94\" cy=\"801.251\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1214.08\" cy=\"878.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1719.19\" cy=\"697.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2025.81\" cy=\"715.701\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"865.132\" cy=\"937.714\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1148.87\" cy=\"1165.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2257.18\" cy=\"140.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1257.66\" cy=\"769.721\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1766.26\" cy=\"836.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1634.26\" cy=\"489.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1596.29\" cy=\"417.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1291.68\" cy=\"706.528\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1326.8\" cy=\"655.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1200.09\" cy=\"923.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1557.45\" cy=\"435.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1231.99\" cy=\"797.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1019.13\" cy=\"1193.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2036.52\" cy=\"737.704\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1311.21\" cy=\"530.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1788.25\" cy=\"941.489\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"768.977\" cy=\"691.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"999.972\" cy=\"1145.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"480.696\" cy=\"860.359\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1386.48\" cy=\"450.027\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1874.41\" cy=\"1019.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"963.579\" cy=\"1111.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1089.6\" cy=\"1200.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"537.203\" cy=\"668.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1921.72\" cy=\"895.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1564.48\" cy=\"440.456\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1452.3\" cy=\"338.678\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1593.46\" cy=\"462.454\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"429.535\" cy=\"1033.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"803.616\" cy=\"641.688\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1349.35\" cy=\"621.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1147.72\" cy=\"961.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1712.17\" cy=\"752.116\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"913.814\" cy=\"1105.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2165.74\" cy=\"367.543\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1763.48\" cy=\"821.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"716.036\" cy=\"666.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1682.67\" cy=\"692.733\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2121.8\" cy=\"490.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1955.89\" cy=\"840.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"458.048\" cy=\"998.304\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1749.96\" cy=\"899.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1442.19\" cy=\"334.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1398.36\" cy=\"396.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"636.306\" cy=\"565.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1454.82\" cy=\"331.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1286.08\" cy=\"839.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1646.69\" cy=\"539.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2282.94\" cy=\"169.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2141.44\" cy=\"337.963\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1357.19\" cy=\"445.282\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1813.1\" cy=\"838.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1244.49\" cy=\"858.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1248.66\" cy=\"869.908\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1476.92\" cy=\"416.891\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1858.9\" cy=\"1082.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1617.73\" cy=\"579.025\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2181.25\" cy=\"257.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2269.96\" cy=\"97.4565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1980.7\" cy=\"846.317\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"252.258\" cy=\"1327.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1923.72\" cy=\"905.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1244.81\" cy=\"839.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1898.73\" cy=\"929.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2040.01\" cy=\"565.752\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1179.31\" cy=\"978.467\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1640.28\" cy=\"544.519\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"424.685\" cy=\"971.762\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1115.06\" cy=\"1224.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"316.227\" cy=\"1258.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"741.542\" cy=\"610.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1698.2\" cy=\"659.079\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"880.86\" cy=\"933.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2276.31\" cy=\"109.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1138.13\" cy=\"1140.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1566.02\" cy=\"418.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1379.8\" cy=\"402.905\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1341.65\" cy=\"470.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1417.14\" cy=\"418.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"556.757\" cy=\"706.108\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"408.8\" cy=\"1168.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1240.87\" cy=\"870.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"663.786\" cy=\"654.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"773.987\" cy=\"706.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1145.05\" cy=\"1116.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1037.54\" cy=\"1208.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1855.91\" cy=\"972.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1484.69\" cy=\"370.265\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"581.697\" cy=\"612.267\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1544.88\" cy=\"331.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1950.11\" cy=\"888.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1309.34\" cy=\"618.395\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"943.606\" cy=\"989.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1505.77\" cy=\"371.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1867.55\" cy=\"889.906\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2140.65\" cy=\"434.045\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1295.56\" cy=\"724.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1119.22\" cy=\"1144.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"905.891\" cy=\"957.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1712.73\" cy=\"750.625\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"903.655\" cy=\"907.753\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1933.71\" cy=\"926.433\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1481.07\" cy=\"488.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1880.03\" cy=\"928.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"388.326\" cy=\"1137.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1330.72\" cy=\"446.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2051.48\" cy=\"595.541\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1183.86\" cy=\"1042.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1045.55\" cy=\"1185.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1314.87\" cy=\"662.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2237.71\" cy=\"182.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1488.48\" cy=\"322.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1497.17\" cy=\"407.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"283.607\" cy=\"1359.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"971.215\" cy=\"1090.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1299\" cy=\"590.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"968.102\" cy=\"1137.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1557.39\" cy=\"415.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"641.188\" cy=\"618.064\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1760.25\" cy=\"912.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1337.66\" cy=\"541.023\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2089.11\" cy=\"501.396\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1341.77\" cy=\"446.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2286.24\" cy=\"151.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"531.116\" cy=\"745.709\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2156.45\" cy=\"417.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"508.333\" cy=\"810.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1427.1\" cy=\"396.854\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1075.52\" cy=\"1119.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1118.42\" cy=\"1115.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2076.34\" cy=\"539.663\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2083.34\" cy=\"454.415\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1601.09\" cy=\"434.661\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1649.57\" cy=\"560.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1891.09\" cy=\"917.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1379.65\" cy=\"494.026\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2003.2\" cy=\"720.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2100.06\" cy=\"466.401\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1631.05\" cy=\"562.791\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"862.14\" cy=\"834.249\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1441.74\" cy=\"317.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1496.39\" cy=\"330.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"708.187\" cy=\"577.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1162.39\" cy=\"1145.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1589.65\" cy=\"415.856\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1600.28\" cy=\"493.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1608.7\" cy=\"489.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1174.13\" cy=\"1025.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"865.713\" cy=\"820.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"789.523\" cy=\"660.026\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2221.81\" cy=\"208.202\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"997.611\" cy=\"1174.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"289.314\" cy=\"1378.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1973.91\" cy=\"773.437\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1300.03\" cy=\"739.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1863.18\" cy=\"952.732\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"450.862\" cy=\"931.097\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"424.486\" cy=\"1010.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1593.98\" cy=\"493.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1636.31\" cy=\"560.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"972.206\" cy=\"1092.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1029.81\" cy=\"1221.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1497.5\" cy=\"348.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"822.791\" cy=\"828.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1780.81\" cy=\"830.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"447.338\" cy=\"931.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1415.7\" cy=\"376.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"367.839\" cy=\"1023.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2225.95\" cy=\"167.327\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"741.669\" cy=\"633.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"708.884\" cy=\"506.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"680.269\" cy=\"510.639\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1478.47\" cy=\"331.038\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"681.205\" cy=\"563.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1821.95\" cy=\"908.971\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"484.197\" cy=\"746.938\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1547.16\" cy=\"277.171\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"590.52\" cy=\"628.357\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1055.06\" cy=\"1205.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2137.41\" cy=\"522.449\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"379.55\" cy=\"1141.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1573.48\" cy=\"470.775\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1319.86\" cy=\"612.696\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"520.961\" cy=\"772.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1163.87\" cy=\"1034.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1392.9\" cy=\"489.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"441.361\" cy=\"962.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"453.322\" cy=\"948.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"679.332\" cy=\"610.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1405.31\" cy=\"373.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1157.27\" cy=\"961.696\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"713.989\" cy=\"543.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1700.79\" cy=\"636.658\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2092.39\" cy=\"647.319\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1835.76\" cy=\"917.203\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2232.48\" cy=\"211.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"953.924\" cy=\"1086.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"509.264\" cy=\"759.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1870.85\" cy=\"908.356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2153.48\" cy=\"421.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"326.398\" cy=\"1298.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"294.774\" cy=\"1399.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"974.386\" cy=\"1179.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2149.65\" cy=\"316.555\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1847.36\" cy=\"930.287\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2071.7\" cy=\"538.954\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"265.442\" cy=\"1377.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1771.59\" cy=\"880.589\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2262.33\" cy=\"173.691\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1215.5\" cy=\"943.794\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1025.9\" cy=\"1174.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"496.721\" cy=\"811.642\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1591.03\" cy=\"444.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1212.15\" cy=\"1017.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1746.73\" cy=\"811.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1212.93\" cy=\"782.586\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1372.45\" cy=\"521.369\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1246.04\" cy=\"881.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1948.83\" cy=\"902.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1425.65\" cy=\"520.193\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"960.612\" cy=\"1071.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"540.274\" cy=\"718.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1659.96\" cy=\"695.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"737.081\" cy=\"629.781\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"891.669\" cy=\"1025.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1176.35\" cy=\"1037.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2015.52\" cy=\"749.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"656.058\" cy=\"579.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1813.05\" cy=\"907.917\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2016.84\" cy=\"896.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"652.6\" cy=\"614.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2182.51\" cy=\"279.945\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2062.42\" cy=\"574.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1666.32\" cy=\"508.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"240.392\" cy=\"1369.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1304.15\" cy=\"664.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1903.72\" cy=\"943.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1413.1\" cy=\"360.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1804.39\" cy=\"918.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"511.032\" cy=\"720.612\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1829.65\" cy=\"1007.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2097.78\" cy=\"513.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1380.3\" cy=\"448.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1250.52\" cy=\"756.099\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1910.63\" cy=\"939.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1386.05\" cy=\"476.765\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"460.591\" cy=\"943.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1665.64\" cy=\"622.221\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1314.44\" cy=\"625.672\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1555.49\" cy=\"318.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"617.426\" cy=\"556.117\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1093.33\" cy=\"1254.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2112.26\" cy=\"540.339\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"504.024\" cy=\"768.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2041.72\" cy=\"724.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"923.947\" cy=\"1003.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2086.25\" cy=\"603.466\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2147.94\" cy=\"302.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1737.23\" cy=\"822.621\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1629.05\" cy=\"510.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1098.04\" cy=\"1207.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2123.86\" cy=\"387.623\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1374.02\" cy=\"427.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1934.04\" cy=\"935.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1533.36\" cy=\"422.732\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2004.44\" cy=\"837.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"759.418\" cy=\"640.397\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"298.218\" cy=\"1349.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"468.177\" cy=\"827.324\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"999.864\" cy=\"1119.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2041.12\" cy=\"727.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"648.427\" cy=\"660.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1068.27\" cy=\"1104.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1286.11\" cy=\"748.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1199.48\" cy=\"980.444\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2081.49\" cy=\"522.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"589.765\" cy=\"606.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"608.663\" cy=\"598.409\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2177.92\" cy=\"267.823\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"488.78\" cy=\"758.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1834.61\" cy=\"991.011\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"830.519\" cy=\"880.341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"725.593\" cy=\"565.056\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"605.397\" cy=\"568.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"630.251\" cy=\"622.776\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2291.23\" cy=\"165.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"342.672\" cy=\"1195.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1752.33\" cy=\"790.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1007.93\" cy=\"1239.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1624.82\" cy=\"525.357\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"674.601\" cy=\"546.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"752.738\" cy=\"655.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2265.92\" cy=\"197.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1683.66\" cy=\"633.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"563.784\" cy=\"668.599\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"887.481\" cy=\"1004.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"379.757\" cy=\"1091.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"300.83\" cy=\"1273.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1704.66\" cy=\"820.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2278.3\" cy=\"211.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1871.16\" cy=\"976.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"479.581\" cy=\"848.933\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1584.55\" cy=\"411.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1878.27\" cy=\"877.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"624.701\" cy=\"599.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1926.7\" cy=\"919.853\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"951.591\" cy=\"1032.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"648.863\" cy=\"580.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"686.366\" cy=\"508.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"932.133\" cy=\"1119.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"980.198\" cy=\"1067.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1840.08\" cy=\"963.831\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1176.44\" cy=\"977.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1822.95\" cy=\"955.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2053.67\" cy=\"734.125\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"820.688\" cy=\"754.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1086.75\" cy=\"1188.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"982.577\" cy=\"1110.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1516.57\" cy=\"354.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"490.611\" cy=\"820.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1313.57\" cy=\"543.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"423.488\" cy=\"981.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2032.3\" cy=\"698.902\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"664.026\" cy=\"528.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1031.42\" cy=\"1141.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1477.18\" cy=\"365.302\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"726.206\" cy=\"619.109\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2275.43\" cy=\"87.9763\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"531.247\" cy=\"713.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1294.52\" cy=\"723.641\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"383.819\" cy=\"1070.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"325.839\" cy=\"1363.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1067.73\" cy=\"1129.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1176\" cy=\"1008.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1447.27\" cy=\"355.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1351.88\" cy=\"519.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"603.692\" cy=\"558.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1644.77\" cy=\"495.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1849.2\" cy=\"922.496\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"366.275\" cy=\"1177.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"557.356\" cy=\"701.864\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1558.7\" cy=\"400.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1600.55\" cy=\"536.177\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2228.8\" cy=\"222.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1420.05\" cy=\"294.289\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"678.985\" cy=\"650.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1057.07\" cy=\"1246.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1260.93\" cy=\"890.342\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1961.28\" cy=\"897.501\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1020.66\" cy=\"1183.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"760.879\" cy=\"577.755\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"888.283\" cy=\"981.585\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1742.67\" cy=\"878.066\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1370.77\" cy=\"402.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1986.11\" cy=\"889.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1695.88\" cy=\"710.511\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1794\" cy=\"890.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"840.868\" cy=\"816.759\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1017.24\" cy=\"1165.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"868.833\" cy=\"889.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"770.551\" cy=\"692.714\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1705.19\" cy=\"730.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"760.082\" cy=\"654.971\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1179.9\" cy=\"1037.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1443.74\" cy=\"330.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1715.57\" cy=\"798.876\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"397.708\" cy=\"1102.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1208.57\" cy=\"890.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"420.174\" cy=\"1038.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"719.126\" cy=\"568.102\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"706.601\" cy=\"634.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"836.146\" cy=\"870.019\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"332.954\" cy=\"1292.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"581.195\" cy=\"569.875\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1492.4\" cy=\"349.851\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"582.397\" cy=\"649.731\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2162.88\" cy=\"272.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"362.474\" cy=\"1235.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"272.767\" cy=\"1445.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"260.719\" cy=\"1401.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"980.701\" cy=\"1163.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1994.06\" cy=\"863.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2223.39\" cy=\"172.166\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"776.462\" cy=\"689.478\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1404.33\" cy=\"415.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"829.528\" cy=\"808.824\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1676.67\" cy=\"671.723\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1962.92\" cy=\"837.815\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"575.576\" cy=\"682.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1851.65\" cy=\"910.486\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1717.88\" cy=\"761.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"902.736\" cy=\"972.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2100.12\" cy=\"523.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2195.55\" cy=\"311.353\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1761.29\" cy=\"823.391\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1299.27\" cy=\"642.747\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2238.03\" cy=\"203.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1150.28\" cy=\"1057.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1503.47\" cy=\"353.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2001.53\" cy=\"750.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"325.155\" cy=\"1219.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1201.53\" cy=\"887.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"853.86\" cy=\"767.794\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1232.63\" cy=\"878.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"371.368\" cy=\"1173.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"826.088\" cy=\"763.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1446.65\" cy=\"482.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"800.041\" cy=\"769.905\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"658.208\" cy=\"498.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1450.9\" cy=\"339.384\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1105.47\" cy=\"1146.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1849.72\" cy=\"935.825\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"983.506\" cy=\"1081.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1639.48\" cy=\"628.202\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"910.086\" cy=\"1013.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1684.96\" cy=\"581.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"438.663\" cy=\"981.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"835.19\" cy=\"849.252\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2153.83\" cy=\"384.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1708.64\" cy=\"675.141\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"982.562\" cy=\"1083.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2218.92\" cy=\"276.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2062.57\" cy=\"556.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"929.922\" cy=\"1001.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1145.8\" cy=\"1062.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1717\" cy=\"742.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2194.01\" cy=\"272.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1507.11\" cy=\"327.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"943.098\" cy=\"1125.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1782.66\" cy=\"987.249\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1277.29\" cy=\"798.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1549.07\" cy=\"347.668\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1471.2\" cy=\"367.229\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1184.64\" cy=\"970.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2089.47\" cy=\"563.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"296.217\" cy=\"1355.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1415.9\" cy=\"441.891\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"596.422\" cy=\"535.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"587.047\" cy=\"638.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1827.18\" cy=\"981.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1004.02\" cy=\"1104.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1487.67\" cy=\"435.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"329.693\" cy=\"1205.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1681.76\" cy=\"779.921\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1086.37\" cy=\"1189.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1179.75\" cy=\"944.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1213.85\" cy=\"908.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"505.755\" cy=\"821.919\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2086.35\" cy=\"558.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"928.93\" cy=\"1100.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"951.036\" cy=\"1087.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1823.35\" cy=\"994.655\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1393.67\" cy=\"407.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1123.02\" cy=\"1125.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"649.012\" cy=\"527.616\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1971.24\" cy=\"781.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1188.16\" cy=\"969.535\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1381.52\" cy=\"499.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"621.126\" cy=\"643.207\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1189.16\" cy=\"1078.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"457.006\" cy=\"895.281\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"542.813\" cy=\"729.792\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1292.2\" cy=\"716.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1795.41\" cy=\"936.364\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"914.844\" cy=\"962.645\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1577.83\" cy=\"553.934\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1849.72\" cy=\"939.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1972.31\" cy=\"849.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2212.88\" cy=\"295.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"561.321\" cy=\"618.608\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"279.114\" cy=\"1341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1770.68\" cy=\"970.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"310.899\" cy=\"1295.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1173.43\" cy=\"1027.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2164.93\" cy=\"376.105\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"267.529\" cy=\"1341.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1050.29\" cy=\"1163.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1792.45\" cy=\"803.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"745.025\" cy=\"653.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"673.624\" cy=\"549.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"911.361\" cy=\"1058.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1286.85\" cy=\"700.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"538.884\" cy=\"743.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"648.733\" cy=\"609.576\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1645.91\" cy=\"532.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1165.13\" cy=\"1087.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1813.05\" cy=\"900.575\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1916.1\" cy=\"1036.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1072.08\" cy=\"1133.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"823.388\" cy=\"796.196\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"780.758\" cy=\"687.531\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"299.001\" cy=\"1352.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"613.134\" cy=\"631.795\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"835.15\" cy=\"815.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1309.89\" cy=\"638.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1720.89\" cy=\"789.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"884.697\" cy=\"948.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"474.422\" cy=\"857.855\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"893.027\" cy=\"1006.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1532.79\" cy=\"423.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1895.6\" cy=\"994.718\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"654.243\" cy=\"516.685\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1398.18\" cy=\"410.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"772.564\" cy=\"655.927\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2171.4\" cy=\"341.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"463.988\" cy=\"855.419\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"609.128\" cy=\"563.129\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1556.27\" cy=\"376.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1191.92\" cy=\"991.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1720.69\" cy=\"849.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"426.134\" cy=\"1063.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"811.724\" cy=\"775.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1656.74\" cy=\"706.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"670.963\" cy=\"601.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"274.177\" cy=\"1371.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"667.625\" cy=\"551.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2179.62\" cy=\"302.017\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"898.292\" cy=\"903.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"469.722\" cy=\"953.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1908.32\" cy=\"947.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1374.92\" cy=\"459.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2019.99\" cy=\"693.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1634.06\" cy=\"651.602\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"240.845\" cy=\"1339.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1871.51\" cy=\"959.947\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1140.29\" cy=\"1055.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"648.027\" cy=\"610.812\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2040.62\" cy=\"656.096\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2042.63\" cy=\"644.966\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1778.87\" cy=\"848.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"702.487\" cy=\"581.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1207.57\" cy=\"934.006\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"824.705\" cy=\"840.898\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"853.029\" cy=\"895.703\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"301.687\" cy=\"1320.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1818.15\" cy=\"943.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"613.444\" cy=\"624.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1468.62\" cy=\"329.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"348.473\" cy=\"1238.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1022\" cy=\"1158.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2107.03\" cy=\"516.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"674.989\" cy=\"570.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1737.68\" cy=\"783.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1795.95\" cy=\"965.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"458.234\" cy=\"968.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1887.82\" cy=\"988.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1156.79\" cy=\"978.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2234.39\" cy=\"238.871\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2282.57\" cy=\"159.325\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1689.52\" cy=\"691.305\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1639.43\" cy=\"513.945\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1051.09\" cy=\"1151.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"270.196\" cy=\"1383.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"903.644\" cy=\"873.139\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"439.668\" cy=\"1037.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2054.65\" cy=\"584.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1793.16\" cy=\"858.139\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"461.07\" cy=\"887.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2058.66\" cy=\"667.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1893.4\" cy=\"1007.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1591.88\" cy=\"360.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"965.784\" cy=\"1111.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1370.06\" cy=\"453.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"875.013\" cy=\"900.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"308.778\" cy=\"1272.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"274.621\" cy=\"1383.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"284.904\" cy=\"1304.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1647.46\" cy=\"520.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1331.07\" cy=\"637.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1516.9\" cy=\"375.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1158.26\" cy=\"1067.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1337.04\" cy=\"393.136\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1495.34\" cy=\"371.764\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1706.08\" cy=\"656.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1853.02\" cy=\"887.585\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2155.99\" cy=\"361.456\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"967.376\" cy=\"1123.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1020.84\" cy=\"1160.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1270.32\" cy=\"845.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1074.28\" cy=\"1145.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1291.18\" cy=\"744.773\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1010.5\" cy=\"1242.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1448.47\" cy=\"408.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2036.53\" cy=\"674.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2135.06\" cy=\"426.788\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2018.54\" cy=\"682.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1997.94\" cy=\"806.315\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1044.4\" cy=\"1101.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"832.445\" cy=\"834.513\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2275.66\" cy=\"172.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"523.56\" cy=\"688.573\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"406.244\" cy=\"1136.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"908.105\" cy=\"946.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1655.29\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2013.16\" cy=\"762.535\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"302.659\" cy=\"1270.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"528.014\" cy=\"710.101\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1509.13\" cy=\"425.123\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1466.58\" cy=\"317.168\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1535.49\" cy=\"390.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1884.06\" cy=\"1009.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1003.86\" cy=\"1184.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1355.31\" cy=\"392.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"695.781\" cy=\"584.786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"627.004\" cy=\"632.141\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1774.89\" cy=\"873.723\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1422.45\" cy=\"385.177\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2214.31\" cy=\"350.837\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"923.317\" cy=\"981.488\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2256.77\" cy=\"292.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"936.161\" cy=\"1032.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"453.699\" cy=\"962.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1319.23\" cy=\"571.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"456.977\" cy=\"943.777\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1141.69\" cy=\"1105.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1062.67\" cy=\"1114.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1707.94\" cy=\"705.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"769.118\" cy=\"724.523\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"469.628\" cy=\"886.259\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1445.02\" cy=\"423.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1385\" cy=\"400.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1980.63\" cy=\"837.717\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1472.44\" cy=\"332.269\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2113.87\" cy=\"465.216\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1342.49\" cy=\"593.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"302.734\" cy=\"1308.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1543.82\" cy=\"459.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"374.034\" cy=\"1184.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1965.18\" cy=\"865.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"425.687\" cy=\"1036.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"499.393\" cy=\"791.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1902.39\" cy=\"976.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"615.351\" cy=\"544.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"663.377\" cy=\"535.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"730.003\" cy=\"571.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2289.1\" cy=\"175.674\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1760.49\" cy=\"973.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2276.14\" cy=\"150.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"620.845\" cy=\"581.685\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2055.18\" cy=\"651.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1009.95\" cy=\"1171.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"439.525\" cy=\"1033.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"670.77\" cy=\"551.989\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"816.806\" cy=\"863.863\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1904.11\" cy=\"875.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"401.305\" cy=\"1079.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1854.66\" cy=\"877.655\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1181.34\" cy=\"1034.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1469.27\" cy=\"240.442\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2261.42\" cy=\"125.527\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"970.236\" cy=\"1059.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1694.59\" cy=\"631.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2037.61\" cy=\"705.558\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1360.31\" cy=\"548.804\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"997.334\" cy=\"1172.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1798.45\" cy=\"881.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1071.99\" cy=\"1085.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"900.457\" cy=\"926.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1032.89\" cy=\"1210.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2249.37\" cy=\"223.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"446.796\" cy=\"886.931\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"729.971\" cy=\"655.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"653.778\" cy=\"577.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2194.72\" cy=\"301.686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1689.72\" cy=\"581.068\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1455.97\" cy=\"435.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2077.38\" cy=\"552.366\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"575.506\" cy=\"598.555\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1039.39\" cy=\"1113.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"864.81\" cy=\"900.021\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1240.8\" cy=\"850.275\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"437.629\" cy=\"1039.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1596\" cy=\"465.186\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"302.673\" cy=\"1266.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"349.549\" cy=\"1215.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"606.444\" cy=\"614.392\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1527.63\" cy=\"443.537\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1744.62\" cy=\"746.626\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1815.58\" cy=\"1025.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2255.49\" cy=\"181.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1518.55\" cy=\"265.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"536.704\" cy=\"749.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"917.453\" cy=\"1105.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1212.66\" cy=\"1001\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1485.47\" cy=\"305.082\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"544.013\" cy=\"729.979\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2225.55\" cy=\"181.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"517.874\" cy=\"781.903\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"781.444\" cy=\"612.155\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"907.316\" cy=\"983.618\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1235.6\" cy=\"817.201\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"591.874\" cy=\"608.974\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"305.088\" cy=\"1242.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1283.9\" cy=\"774.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1873.38\" cy=\"958.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1356.76\" cy=\"536.818\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"384.445\" cy=\"1122.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2212.52\" cy=\"208.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"544.663\" cy=\"681.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1762.54\" cy=\"882.109\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1745.28\" cy=\"837.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"622.597\" cy=\"581.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2166.81\" cy=\"356.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1558.89\" cy=\"340.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1093.48\" cy=\"1247.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"876.504\" cy=\"979.307\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1667.38\" cy=\"667.461\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1589.41\" cy=\"438.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1800.19\" cy=\"863\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"752.706\" cy=\"647.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1390.1\" cy=\"511.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1146.18\" cy=\"1001.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2220.51\" cy=\"167.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1658.38\" cy=\"626.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2209.24\" cy=\"228.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1824.1\" cy=\"880.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"416.318\" cy=\"1063.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1679.3\" cy=\"686.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1043.11\" cy=\"1041.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1067.91\" cy=\"1165.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1819.09\" cy=\"928.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"317.971\" cy=\"1262.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1284.26\" cy=\"749.042\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1621.35\" cy=\"504.667\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"699.783\" cy=\"547.632\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"532.806\" cy=\"680.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1732.06\" cy=\"805.422\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1250.43\" cy=\"733.759\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"475.268\" cy=\"861.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"957.742\" cy=\"1043.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"763.487\" cy=\"687.292\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1911.73\" cy=\"974.524\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1397.23\" cy=\"411.725\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"945.689\" cy=\"1060.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"608.671\" cy=\"715.068\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1242.49\" cy=\"870.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"685.602\" cy=\"519.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1550.8\" cy=\"410.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1396.7\" cy=\"490.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1422.94\" cy=\"357.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1277.83\" cy=\"638.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"962.415\" cy=\"1115.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1599.34\" cy=\"524.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2249.95\" cy=\"146.444\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2020.77\" cy=\"875.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2038.93\" cy=\"650.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"287.195\" cy=\"1309.47\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"289.155\" cy=\"1306.29\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"291.115\" cy=\"1303.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"293.076\" cy=\"1299.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"295.036\" cy=\"1296.5\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"296.996\" cy=\"1293.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"298.957\" cy=\"1289.78\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"300.917\" cy=\"1286.36\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"302.878\" cy=\"1282.91\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"304.838\" cy=\"1279.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"306.798\" cy=\"1275.87\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"308.759\" cy=\"1272.3\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"310.719\" cy=\"1268.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"312.679\" cy=\"1265.03\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"314.64\" cy=\"1261.33\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"316.6\" cy=\"1257.6\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"318.56\" cy=\"1253.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"320.521\" cy=\"1250.01\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"322.481\" cy=\"1246.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"324.441\" cy=\"1242.27\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"326.402\" cy=\"1238.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"328.362\" cy=\"1234.37\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"330.323\" cy=\"1230.36\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"332.283\" cy=\"1226.31\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"334.243\" cy=\"1222.23\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"336.204\" cy=\"1218.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"338.164\" cy=\"1213.94\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"340.124\" cy=\"1209.74\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"342.085\" cy=\"1205.5\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"344.045\" cy=\"1201.22\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"346.005\" cy=\"1196.91\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"347.966\" cy=\"1192.56\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"349.926\" cy=\"1188.17\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"351.886\" cy=\"1183.75\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"353.847\" cy=\"1179.29\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"355.807\" cy=\"1174.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"357.767\" cy=\"1170.27\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"359.728\" cy=\"1165.7\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"361.688\" cy=\"1161.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"363.649\" cy=\"1156.47\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"365.609\" cy=\"1151.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"367.569\" cy=\"1147.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"369.53\" cy=\"1142.37\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"371.49\" cy=\"1137.61\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"373.45\" cy=\"1132.81\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"375.411\" cy=\"1127.99\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"377.371\" cy=\"1123.13\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"379.331\" cy=\"1118.24\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"381.292\" cy=\"1113.33\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"383.252\" cy=\"1108.38\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"385.212\" cy=\"1103.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"387.173\" cy=\"1098.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"389.133\" cy=\"1093.39\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"391.093\" cy=\"1088.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"393.054\" cy=\"1083.26\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"395.014\" cy=\"1078.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"396.975\" cy=\"1073.04\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"398.935\" cy=\"1067.89\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"400.895\" cy=\"1062.72\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"402.856\" cy=\"1057.53\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"404.816\" cy=\"1052.32\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"406.776\" cy=\"1047.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"408.737\" cy=\"1041.85\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"410.697\" cy=\"1036.58\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"412.657\" cy=\"1031.3\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"414.618\" cy=\"1026\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"416.578\" cy=\"1020.69\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"418.538\" cy=\"1015.36\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"420.499\" cy=\"1010.02\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"422.459\" cy=\"1004.67\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"424.419\" cy=\"999.301\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"426.38\" cy=\"993.926\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"428.34\" cy=\"988.541\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"430.301\" cy=\"983.148\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"432.261\" cy=\"977.747\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"434.221\" cy=\"972.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"436.182\" cy=\"966.927\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"438.142\" cy=\"961.51\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"440.102\" cy=\"956.089\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"442.063\" cy=\"950.666\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"444.023\" cy=\"945.241\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"445.983\" cy=\"939.816\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"447.944\" cy=\"934.391\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"449.904\" cy=\"928.968\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"451.864\" cy=\"923.547\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"453.825\" cy=\"918.13\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"455.785\" cy=\"912.718\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"457.746\" cy=\"907.312\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"459.706\" cy=\"901.912\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"461.666\" cy=\"896.52\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"463.627\" cy=\"891.136\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"465.587\" cy=\"885.763\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"467.547\" cy=\"880.4\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"469.508\" cy=\"875.049\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"471.468\" cy=\"869.711\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"473.428\" cy=\"864.387\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"475.389\" cy=\"859.078\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"477.349\" cy=\"853.785\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"479.309\" cy=\"848.508\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"481.27\" cy=\"843.249\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"483.23\" cy=\"838.01\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"485.19\" cy=\"832.79\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"487.151\" cy=\"827.59\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"489.111\" cy=\"822.413\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"491.072\" cy=\"817.258\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"493.032\" cy=\"812.126\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"494.992\" cy=\"807.02\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"496.953\" cy=\"801.938\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"498.913\" cy=\"796.883\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"500.873\" cy=\"791.856\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"502.834\" cy=\"786.856\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"504.794\" cy=\"781.886\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"506.754\" cy=\"776.945\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"508.715\" cy=\"772.035\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"510.675\" cy=\"767.157\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"512.635\" cy=\"762.312\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"514.596\" cy=\"757.499\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"516.556\" cy=\"752.721\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"518.516\" cy=\"747.978\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"520.477\" cy=\"743.27\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"522.437\" cy=\"738.599\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"524.398\" cy=\"733.965\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"526.358\" cy=\"729.37\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"528.318\" cy=\"724.813\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"530.279\" cy=\"720.296\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"532.239\" cy=\"715.819\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"534.199\" cy=\"711.383\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"536.16\" cy=\"706.989\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"538.12\" cy=\"702.637\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"540.08\" cy=\"698.329\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"542.041\" cy=\"694.064\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"544.001\" cy=\"689.845\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"545.961\" cy=\"685.67\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"547.922\" cy=\"681.541\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"549.882\" cy=\"677.459\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"551.842\" cy=\"673.424\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"553.803\" cy=\"669.437\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"555.763\" cy=\"665.499\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"557.724\" cy=\"661.61\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"559.684\" cy=\"657.771\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"561.644\" cy=\"653.982\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"563.605\" cy=\"650.244\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"565.565\" cy=\"646.559\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"567.525\" cy=\"642.925\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"569.486\" cy=\"639.345\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"571.446\" cy=\"635.818\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"573.406\" cy=\"632.346\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"575.367\" cy=\"628.928\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"577.327\" cy=\"625.566\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"579.287\" cy=\"622.261\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"581.248\" cy=\"619.012\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"583.208\" cy=\"615.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"585.169\" cy=\"612.687\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"587.129\" cy=\"609.613\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"589.089\" cy=\"606.597\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"591.05\" cy=\"603.642\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"593.01\" cy=\"600.748\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"594.97\" cy=\"597.915\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"596.931\" cy=\"595.144\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"598.891\" cy=\"592.436\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"600.851\" cy=\"589.792\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"602.812\" cy=\"587.211\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"604.772\" cy=\"584.695\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"606.732\" cy=\"582.245\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"608.693\" cy=\"579.861\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"610.653\" cy=\"577.545\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"612.613\" cy=\"575.296\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"614.574\" cy=\"573.115\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"616.534\" cy=\"571.004\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"618.495\" cy=\"568.963\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"620.455\" cy=\"566.992\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"622.415\" cy=\"565.093\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"624.376\" cy=\"563.267\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"626.336\" cy=\"561.514\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"628.296\" cy=\"559.835\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"630.257\" cy=\"558.231\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"632.217\" cy=\"556.702\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"634.177\" cy=\"555.25\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"636.138\" cy=\"553.876\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"638.098\" cy=\"552.58\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"640.058\" cy=\"551.363\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"642.019\" cy=\"550.226\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"643.979\" cy=\"549.169\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"645.939\" cy=\"548.195\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"647.9\" cy=\"547.303\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"649.86\" cy=\"546.494\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"651.821\" cy=\"545.77\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"653.781\" cy=\"545.131\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"655.741\" cy=\"544.578\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"657.702\" cy=\"544.111\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"659.662\" cy=\"543.732\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"661.622\" cy=\"543.442\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"663.583\" cy=\"543.241\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"665.543\" cy=\"543.13\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"667.503\" cy=\"543.109\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"669.464\" cy=\"543.18\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"671.424\" cy=\"543.343\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"673.384\" cy=\"543.599\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"675.345\" cy=\"543.948\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"677.305\" cy=\"544.391\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"679.265\" cy=\"544.929\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"681.226\" cy=\"545.561\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"683.186\" cy=\"546.289\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"685.147\" cy=\"547.112\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"687.107\" cy=\"548.032\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"689.067\" cy=\"549.048\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"691.028\" cy=\"550.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"692.988\" cy=\"551.368\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"694.948\" cy=\"552.674\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"696.909\" cy=\"554.076\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"698.869\" cy=\"555.574\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"700.829\" cy=\"557.169\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"702.79\" cy=\"558.859\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"704.75\" cy=\"560.645\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"706.71\" cy=\"562.526\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"708.671\" cy=\"564.502\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"710.631\" cy=\"566.571\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"712.592\" cy=\"568.734\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"714.552\" cy=\"570.989\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"716.512\" cy=\"573.335\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"718.473\" cy=\"575.771\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"720.433\" cy=\"578.296\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"722.393\" cy=\"580.909\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"724.354\" cy=\"583.608\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"726.314\" cy=\"586.393\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"728.274\" cy=\"589.26\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"730.235\" cy=\"592.209\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"732.195\" cy=\"595.238\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"734.155\" cy=\"598.346\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"736.116\" cy=\"601.529\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"738.076\" cy=\"604.786\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"740.036\" cy=\"608.116\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"741.997\" cy=\"611.515\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"743.957\" cy=\"614.982\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"745.918\" cy=\"618.515\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"747.878\" cy=\"622.111\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"749.838\" cy=\"625.767\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"751.799\" cy=\"629.482\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"753.759\" cy=\"633.252\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"755.719\" cy=\"637.076\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"757.68\" cy=\"640.951\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"759.64\" cy=\"644.874\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"761.6\" cy=\"648.844\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"763.561\" cy=\"652.857\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"765.521\" cy=\"656.911\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"767.481\" cy=\"661.004\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"769.442\" cy=\"665.133\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"771.402\" cy=\"669.296\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"773.362\" cy=\"673.491\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"775.323\" cy=\"677.716\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"777.283\" cy=\"681.968\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"779.244\" cy=\"686.245\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"781.204\" cy=\"690.546\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"783.164\" cy=\"694.868\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"785.125\" cy=\"699.21\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"787.085\" cy=\"703.569\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"789.045\" cy=\"707.945\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"791.006\" cy=\"712.336\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"792.966\" cy=\"716.74\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"794.926\" cy=\"721.156\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"796.887\" cy=\"725.583\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"798.847\" cy=\"730.02\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"800.807\" cy=\"734.466\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"802.768\" cy=\"738.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"804.728\" cy=\"743.38\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"806.689\" cy=\"747.848\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"808.649\" cy=\"752.321\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"810.609\" cy=\"756.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"812.57\" cy=\"761.284\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"814.53\" cy=\"765.773\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"816.49\" cy=\"770.266\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"818.451\" cy=\"774.765\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"820.411\" cy=\"779.267\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"822.371\" cy=\"783.775\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"824.332\" cy=\"788.287\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"826.292\" cy=\"792.804\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"828.252\" cy=\"797.326\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"830.213\" cy=\"801.853\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"832.173\" cy=\"806.386\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"834.133\" cy=\"810.925\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"836.094\" cy=\"815.471\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"838.054\" cy=\"820.022\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"840.015\" cy=\"824.581\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"841.975\" cy=\"829.147\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"843.935\" cy=\"833.72\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"845.896\" cy=\"838.301\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"847.856\" cy=\"842.89\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"849.816\" cy=\"847.487\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"851.777\" cy=\"852.092\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"853.737\" cy=\"856.706\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"855.697\" cy=\"861.329\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"857.658\" cy=\"865.96\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"859.618\" cy=\"870.599\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"861.578\" cy=\"875.246\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"863.539\" cy=\"879.901\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"865.499\" cy=\"884.564\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"867.459\" cy=\"889.234\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"869.42\" cy=\"893.911\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"871.38\" cy=\"898.593\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"873.341\" cy=\"903.281\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"875.301\" cy=\"907.973\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"877.261\" cy=\"912.669\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"879.222\" cy=\"917.367\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"881.182\" cy=\"922.066\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"883.142\" cy=\"926.766\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"885.103\" cy=\"931.464\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"887.063\" cy=\"936.159\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"889.023\" cy=\"940.851\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"890.984\" cy=\"945.536\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"892.944\" cy=\"950.215\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"894.904\" cy=\"954.884\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"896.865\" cy=\"959.542\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"898.825\" cy=\"964.187\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"900.785\" cy=\"968.817\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"902.746\" cy=\"973.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"904.706\" cy=\"978.025\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"906.667\" cy=\"982.598\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"908.627\" cy=\"987.148\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"910.587\" cy=\"991.673\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"912.548\" cy=\"996.171\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"914.508\" cy=\"1000.64\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"916.468\" cy=\"1005.07\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"918.429\" cy=\"1009.48\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"920.389\" cy=\"1013.84\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"922.349\" cy=\"1018.17\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"924.31\" cy=\"1022.46\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"926.27\" cy=\"1026.7\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"928.23\" cy=\"1030.91\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"930.191\" cy=\"1035.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"932.151\" cy=\"1039.17\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"934.112\" cy=\"1043.22\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"936.072\" cy=\"1047.23\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"938.032\" cy=\"1051.18\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"939.993\" cy=\"1055.08\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"941.953\" cy=\"1058.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"943.913\" cy=\"1062.7\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"945.874\" cy=\"1066.42\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"947.834\" cy=\"1070.08\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"949.794\" cy=\"1073.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"951.755\" cy=\"1077.22\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"953.715\" cy=\"1080.69\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"955.675\" cy=\"1084.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"957.636\" cy=\"1087.44\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"959.596\" cy=\"1090.71\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"961.556\" cy=\"1093.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"963.517\" cy=\"1097.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"965.477\" cy=\"1100.13\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"967.438\" cy=\"1103.14\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"969.398\" cy=\"1106.07\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"971.358\" cy=\"1108.94\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"973.319\" cy=\"1111.74\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"975.279\" cy=\"1114.46\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"977.239\" cy=\"1117.12\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"979.2\" cy=\"1119.71\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"981.16\" cy=\"1122.23\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"983.12\" cy=\"1124.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"985.081\" cy=\"1127.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"987.041\" cy=\"1129.38\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"989.001\" cy=\"1131.62\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"990.962\" cy=\"1133.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"992.922\" cy=\"1135.91\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"994.882\" cy=\"1137.96\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"996.843\" cy=\"1139.93\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"998.803\" cy=\"1141.85\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1000.76\" cy=\"1143.69\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1002.72\" cy=\"1145.47\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1004.68\" cy=\"1147.19\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1006.64\" cy=\"1148.84\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1008.6\" cy=\"1150.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1010.57\" cy=\"1151.96\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1012.53\" cy=\"1153.42\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1014.49\" cy=\"1154.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1016.45\" cy=\"1156.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1018.41\" cy=\"1157.44\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1020.37\" cy=\"1158.66\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1022.33\" cy=\"1159.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1024.29\" cy=\"1160.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1026.25\" cy=\"1161.96\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1028.21\" cy=\"1162.94\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1030.17\" cy=\"1163.87\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1032.13\" cy=\"1164.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1034.09\" cy=\"1165.54\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1036.05\" cy=\"1166.29\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1038.01\" cy=\"1166.98\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1039.97\" cy=\"1167.62\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1041.93\" cy=\"1168.2\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1043.89\" cy=\"1168.72\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1045.85\" cy=\"1169.19\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1047.81\" cy=\"1169.59\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1049.77\" cy=\"1169.95\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1051.73\" cy=\"1170.24\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1053.69\" cy=\"1170.48\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1055.65\" cy=\"1170.67\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1057.61\" cy=\"1170.79\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1059.57\" cy=\"1170.86\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1061.53\" cy=\"1170.87\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1063.49\" cy=\"1170.83\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1065.46\" cy=\"1170.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1067.42\" cy=\"1170.57\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1069.38\" cy=\"1170.36\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1071.34\" cy=\"1170.09\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1073.3\" cy=\"1169.76\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1075.26\" cy=\"1169.37\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1077.22\" cy=\"1168.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1079.18\" cy=\"1168.42\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1081.14\" cy=\"1167.86\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1083.1\" cy=\"1167.23\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1085.06\" cy=\"1166.55\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1087.02\" cy=\"1165.8\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1088.98\" cy=\"1164.99\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1090.94\" cy=\"1164.11\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1092.9\" cy=\"1163.17\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1094.86\" cy=\"1162.15\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1096.82\" cy=\"1161.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1098.78\" cy=\"1159.89\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1100.74\" cy=\"1158.63\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1102.7\" cy=\"1157.28\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1104.66\" cy=\"1155.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1106.62\" cy=\"1154.24\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1108.58\" cy=\"1152.53\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1110.54\" cy=\"1150.67\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1112.5\" cy=\"1148.62\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1114.46\" cy=\"1146.38\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1116.42\" cy=\"1143.91\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1118.38\" cy=\"1141.16\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1120.35\" cy=\"1138.12\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1122.31\" cy=\"1134.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1124.27\" cy=\"1130.96\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1126.23\" cy=\"1126.79\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1128.19\" cy=\"1122.18\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1130.15\" cy=\"1117.14\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1132.11\" cy=\"1111.69\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1134.07\" cy=\"1105.87\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1136.03\" cy=\"1099.74\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1137.99\" cy=\"1093.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1139.95\" cy=\"1086.99\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1141.91\" cy=\"1080.59\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1143.87\" cy=\"1074.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1145.83\" cy=\"1068.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1147.79\" cy=\"1062.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1149.75\" cy=\"1057.4\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1151.71\" cy=\"1052.54\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1153.67\" cy=\"1048.1\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1155.63\" cy=\"1044.07\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1157.59\" cy=\"1040.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1159.55\" cy=\"1037.09\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1161.51\" cy=\"1034.06\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1163.47\" cy=\"1031.27\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1165.43\" cy=\"1028.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1167.39\" cy=\"1026.25\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1169.35\" cy=\"1023.93\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1171.31\" cy=\"1021.67\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1173.27\" cy=\"1019.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1175.24\" cy=\"1017.18\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1177.2\" cy=\"1014.85\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1179.16\" cy=\"1012.4\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1181.12\" cy=\"1009.77\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1183.08\" cy=\"1006.89\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1185.04\" cy=\"1003.69\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1187\" cy=\"1000.09\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1188.96\" cy=\"996.011\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1190.92\" cy=\"991.365\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1192.88\" cy=\"986.079\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1194.84\" cy=\"980.095\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1196.8\" cy=\"973.387\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1198.76\" cy=\"965.974\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1200.72\" cy=\"957.929\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1202.68\" cy=\"949.383\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1204.64\" cy=\"940.518\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1206.6\" cy=\"931.551\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1208.56\" cy=\"922.706\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1210.52\" cy=\"914.187\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1212.48\" cy=\"906.157\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1214.44\" cy=\"898.721\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1216.4\" cy=\"891.929\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1218.36\" cy=\"885.778\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1220.32\" cy=\"880.229\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1222.28\" cy=\"875.215\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1224.24\" cy=\"870.656\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1226.2\" cy=\"866.471\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1228.16\" cy=\"862.579\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1230.12\" cy=\"858.907\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1232.09\" cy=\"855.392\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1234.05\" cy=\"851.979\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1236.01\" cy=\"848.622\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1237.97\" cy=\"845.284\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1239.93\" cy=\"841.935\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1241.89\" cy=\"838.55\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1243.85\" cy=\"835.113\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1245.81\" cy=\"831.61\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1247.77\" cy=\"828.031\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1249.73\" cy=\"824.372\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1251.69\" cy=\"820.628\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1253.65\" cy=\"816.801\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1255.61\" cy=\"812.891\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1257.57\" cy=\"808.902\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1259.53\" cy=\"804.839\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1261.49\" cy=\"800.707\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1263.45\" cy=\"796.511\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1265.41\" cy=\"792.258\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1267.37\" cy=\"787.953\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1269.33\" cy=\"783.6\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1271.29\" cy=\"779.202\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1273.25\" cy=\"774.756\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1275.21\" cy=\"770.258\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1277.17\" cy=\"765.693\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1279.13\" cy=\"761.032\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1281.09\" cy=\"756.231\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1283.05\" cy=\"751.213\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1285.01\" cy=\"745.858\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1286.98\" cy=\"739.991\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1288.94\" cy=\"733.37\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1290.9\" cy=\"725.705\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1292.86\" cy=\"716.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1294.82\" cy=\"706.352\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1296.78\" cy=\"694.825\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1298.74\" cy=\"682.806\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1300.7\" cy=\"671.155\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1302.66\" cy=\"660.57\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1304.62\" cy=\"651.351\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1306.58\" cy=\"643.424\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1308.54\" cy=\"636.513\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1310.5\" cy=\"630.293\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1312.46\" cy=\"624.474\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1314.42\" cy=\"618.82\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1316.38\" cy=\"613.146\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1318.34\" cy=\"607.301\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1320.3\" cy=\"601.167\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1322.26\" cy=\"594.647\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1324.22\" cy=\"587.678\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1326.18\" cy=\"580.233\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1328.14\" cy=\"572.335\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1330.1\" cy=\"564.069\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1332.06\" cy=\"555.576\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1334.02\" cy=\"547.043\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1335.98\" cy=\"538.679\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1337.94\" cy=\"530.682\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1339.9\" cy=\"523.215\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1341.87\" cy=\"516.386\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1343.83\" cy=\"510.243\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1345.79\" cy=\"504.785\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1347.75\" cy=\"499.969\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1349.71\" cy=\"495.732\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1351.67\" cy=\"491.998\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1353.63\" cy=\"488.688\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1355.59\" cy=\"485.732\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1357.55\" cy=\"483.064\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1359.51\" cy=\"480.626\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1361.47\" cy=\"478.372\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1363.43\" cy=\"476.259\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1365.39\" cy=\"474.253\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1367.35\" cy=\"472.325\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1369.31\" cy=\"470.448\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1371.27\" cy=\"468.602\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1373.23\" cy=\"466.766\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1375.19\" cy=\"464.922\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1377.15\" cy=\"463.054\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1379.11\" cy=\"461.145\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1381.07\" cy=\"459.182\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1383.03\" cy=\"457.149\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1384.99\" cy=\"455.035\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1386.95\" cy=\"452.825\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1388.91\" cy=\"450.509\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1390.87\" cy=\"448.076\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1392.83\" cy=\"445.518\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1394.79\" cy=\"442.829\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1396.76\" cy=\"440.005\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1398.72\" cy=\"437.044\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1400.68\" cy=\"433.951\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1402.64\" cy=\"430.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1404.6\" cy=\"427.393\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1406.56\" cy=\"423.953\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1408.52\" cy=\"420.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1410.48\" cy=\"416.845\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1412.44\" cy=\"413.222\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1414.4\" cy=\"409.59\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1416.36\" cy=\"405.976\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1418.32\" cy=\"402.41\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1420.28\" cy=\"398.917\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1422.24\" cy=\"395.526\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1424.2\" cy=\"392.258\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1426.16\" cy=\"389.134\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1428.12\" cy=\"386.171\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1430.08\" cy=\"383.381\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1432.04\" cy=\"380.773\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1434\" cy=\"378.351\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1435.96\" cy=\"376.118\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1437.92\" cy=\"374.072\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1439.88\" cy=\"372.208\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1441.84\" cy=\"370.522\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1443.8\" cy=\"369.006\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1445.76\" cy=\"367.651\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1447.72\" cy=\"366.449\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1449.68\" cy=\"365.39\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1451.64\" cy=\"364.465\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1453.61\" cy=\"363.665\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1455.57\" cy=\"362.981\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1457.53\" cy=\"362.404\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1459.49\" cy=\"361.927\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1461.45\" cy=\"361.542\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1463.41\" cy=\"361.244\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1465.37\" cy=\"361.025\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1467.33\" cy=\"360.881\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1469.29\" cy=\"360.806\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1471.25\" cy=\"360.797\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1473.21\" cy=\"360.85\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1475.17\" cy=\"360.961\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1477.13\" cy=\"361.128\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1479.09\" cy=\"361.348\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1481.05\" cy=\"361.619\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1483.01\" cy=\"361.94\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1484.97\" cy=\"362.308\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1486.93\" cy=\"362.724\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1488.89\" cy=\"363.186\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1490.85\" cy=\"363.693\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1492.81\" cy=\"364.244\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1494.77\" cy=\"364.841\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1496.73\" cy=\"365.482\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1498.69\" cy=\"366.168\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1500.65\" cy=\"366.898\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1502.61\" cy=\"367.673\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1504.57\" cy=\"368.494\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1506.53\" cy=\"369.361\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1508.5\" cy=\"370.274\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1510.46\" cy=\"371.234\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1512.42\" cy=\"372.242\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1514.38\" cy=\"373.298\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1516.34\" cy=\"374.404\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1518.3\" cy=\"375.56\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1520.26\" cy=\"376.768\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1522.22\" cy=\"378.027\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1524.18\" cy=\"379.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1526.14\" cy=\"380.707\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1528.1\" cy=\"382.129\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1530.06\" cy=\"383.608\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1532.02\" cy=\"385.143\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1533.98\" cy=\"386.738\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1535.94\" cy=\"388.392\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1537.9\" cy=\"390.106\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1539.86\" cy=\"391.883\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1541.82\" cy=\"393.722\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1543.78\" cy=\"395.625\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1545.74\" cy=\"397.594\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1547.7\" cy=\"399.628\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1549.66\" cy=\"401.729\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1551.62\" cy=\"403.899\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1553.58\" cy=\"406.137\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1555.54\" cy=\"408.446\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1557.5\" cy=\"410.825\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1559.46\" cy=\"413.276\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1561.42\" cy=\"415.799\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1563.39\" cy=\"418.395\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1565.35\" cy=\"421.065\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1567.31\" cy=\"423.809\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1569.27\" cy=\"426.628\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1571.23\" cy=\"429.522\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1573.19\" cy=\"432.492\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1575.15\" cy=\"435.537\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1577.11\" cy=\"438.658\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1579.07\" cy=\"441.854\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1581.03\" cy=\"445.127\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1582.99\" cy=\"448.475\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1584.95\" cy=\"451.898\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1586.91\" cy=\"455.396\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1588.87\" cy=\"458.969\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1590.83\" cy=\"462.615\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1592.79\" cy=\"466.334\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1594.75\" cy=\"470.125\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1596.71\" cy=\"473.987\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1598.67\" cy=\"477.919\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1600.63\" cy=\"481.92\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1602.59\" cy=\"485.988\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1604.55\" cy=\"490.121\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1606.51\" cy=\"494.319\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1608.47\" cy=\"498.579\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1610.43\" cy=\"502.9\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1612.39\" cy=\"507.28\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1614.35\" cy=\"511.715\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1616.31\" cy=\"516.206\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1618.28\" cy=\"520.748\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1620.24\" cy=\"525.341\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1622.2\" cy=\"529.981\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1624.16\" cy=\"534.666\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1626.12\" cy=\"539.393\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1628.08\" cy=\"544.161\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1630.04\" cy=\"548.965\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1632\" cy=\"553.805\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1633.96\" cy=\"558.676\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1635.92\" cy=\"563.577\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1637.88\" cy=\"568.505\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1639.84\" cy=\"573.456\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1641.8\" cy=\"578.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1643.76\" cy=\"583.421\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1645.72\" cy=\"588.43\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1647.68\" cy=\"593.451\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1649.64\" cy=\"598.484\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1651.6\" cy=\"603.526\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1653.56\" cy=\"608.574\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1655.52\" cy=\"613.626\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1657.48\" cy=\"618.68\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1659.44\" cy=\"623.734\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1661.4\" cy=\"628.786\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1663.36\" cy=\"633.834\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1665.32\" cy=\"638.875\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1667.28\" cy=\"643.909\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1669.24\" cy=\"648.934\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1671.2\" cy=\"653.948\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1673.16\" cy=\"658.95\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1675.13\" cy=\"663.938\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1677.09\" cy=\"668.911\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1679.05\" cy=\"673.869\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1681.01\" cy=\"678.81\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1682.97\" cy=\"683.733\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1684.93\" cy=\"688.638\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1686.89\" cy=\"693.523\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1688.85\" cy=\"698.389\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1690.81\" cy=\"703.234\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1692.77\" cy=\"708.058\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1694.73\" cy=\"712.861\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1696.69\" cy=\"717.643\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1698.65\" cy=\"722.402\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1700.61\" cy=\"727.138\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1702.57\" cy=\"731.853\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1704.53\" cy=\"736.544\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1706.49\" cy=\"741.212\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1708.45\" cy=\"745.858\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1710.41\" cy=\"750.48\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1712.37\" cy=\"755.078\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1714.33\" cy=\"759.653\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1716.29\" cy=\"764.204\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1718.25\" cy=\"768.73\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1720.21\" cy=\"773.233\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1722.17\" cy=\"777.71\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1724.13\" cy=\"782.163\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1726.09\" cy=\"786.591\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1728.05\" cy=\"790.993\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1730.02\" cy=\"795.368\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1731.98\" cy=\"799.718\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1733.94\" cy=\"804.039\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1735.9\" cy=\"808.334\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1737.86\" cy=\"812.599\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1739.82\" cy=\"816.835\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1741.78\" cy=\"821.042\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1743.74\" cy=\"825.217\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1745.7\" cy=\"829.36\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1747.66\" cy=\"833.471\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1749.62\" cy=\"837.548\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1751.58\" cy=\"841.589\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1753.54\" cy=\"845.595\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1755.5\" cy=\"849.563\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1757.46\" cy=\"853.492\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1759.42\" cy=\"857.381\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1761.38\" cy=\"861.229\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1763.34\" cy=\"865.034\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1765.3\" cy=\"868.795\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1767.26\" cy=\"872.51\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1769.22\" cy=\"876.178\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1771.18\" cy=\"879.797\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1773.14\" cy=\"883.366\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1775.1\" cy=\"886.883\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1777.06\" cy=\"890.347\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1779.02\" cy=\"893.756\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1780.98\" cy=\"897.109\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1782.94\" cy=\"900.404\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1784.91\" cy=\"903.639\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1786.87\" cy=\"906.814\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1788.83\" cy=\"909.926\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1790.79\" cy=\"912.975\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1792.75\" cy=\"915.958\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1794.71\" cy=\"918.875\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1796.67\" cy=\"921.725\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1798.63\" cy=\"924.505\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1800.59\" cy=\"927.215\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1802.55\" cy=\"929.854\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1804.51\" cy=\"932.42\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1806.47\" cy=\"934.913\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1808.43\" cy=\"937.332\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1810.39\" cy=\"939.675\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1812.35\" cy=\"941.941\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1814.31\" cy=\"944.131\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1816.27\" cy=\"946.244\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1818.23\" cy=\"948.277\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1820.19\" cy=\"950.232\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1822.15\" cy=\"952.107\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1824.11\" cy=\"953.903\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1826.07\" cy=\"955.618\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1828.03\" cy=\"957.252\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1829.99\" cy=\"958.805\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1831.95\" cy=\"960.276\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1833.91\" cy=\"961.667\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1835.87\" cy=\"962.975\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1837.83\" cy=\"964.202\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1839.79\" cy=\"965.348\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1841.76\" cy=\"966.411\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1843.72\" cy=\"967.393\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1845.68\" cy=\"968.294\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1847.64\" cy=\"969.113\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1849.6\" cy=\"969.851\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1851.56\" cy=\"970.508\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1853.52\" cy=\"971.084\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1855.48\" cy=\"971.58\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1857.44\" cy=\"971.996\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1859.4\" cy=\"972.332\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1861.36\" cy=\"972.588\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1863.32\" cy=\"972.766\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1865.28\" cy=\"972.865\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1867.24\" cy=\"972.885\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1869.2\" cy=\"972.828\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1871.16\" cy=\"972.694\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1873.12\" cy=\"972.483\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1875.08\" cy=\"972.195\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1877.04\" cy=\"971.831\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1879\" cy=\"971.392\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1880.96\" cy=\"970.878\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1882.92\" cy=\"970.289\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1884.88\" cy=\"969.627\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1886.84\" cy=\"968.891\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1888.8\" cy=\"968.081\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1890.76\" cy=\"967.199\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1892.72\" cy=\"966.245\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1894.68\" cy=\"965.219\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1896.65\" cy=\"964.122\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1898.61\" cy=\"962.954\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1900.57\" cy=\"961.716\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1902.53\" cy=\"960.408\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1904.49\" cy=\"959.03\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1906.45\" cy=\"957.584\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1908.41\" cy=\"956.068\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1910.37\" cy=\"954.485\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1912.33\" cy=\"952.833\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1914.29\" cy=\"951.114\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1916.25\" cy=\"949.328\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1918.21\" cy=\"947.476\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1920.17\" cy=\"945.556\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1922.13\" cy=\"943.571\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1924.09\" cy=\"941.521\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1926.05\" cy=\"939.404\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1928.01\" cy=\"937.223\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1929.97\" cy=\"934.977\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1931.93\" cy=\"932.667\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1933.89\" cy=\"930.293\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1935.85\" cy=\"927.855\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1937.81\" cy=\"925.353\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1939.77\" cy=\"922.789\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1941.73\" cy=\"920.161\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1943.69\" cy=\"917.471\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1945.65\" cy=\"914.718\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1947.61\" cy=\"911.904\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1949.57\" cy=\"909.028\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1951.54\" cy=\"906.09\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1953.5\" cy=\"903.091\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1955.46\" cy=\"900.032\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1957.42\" cy=\"896.912\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1959.38\" cy=\"893.731\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1961.34\" cy=\"890.491\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1963.3\" cy=\"887.191\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1965.26\" cy=\"883.831\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1967.22\" cy=\"880.413\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1969.18\" cy=\"876.936\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1971.14\" cy=\"873.401\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1973.1\" cy=\"869.807\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1975.06\" cy=\"866.156\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1977.02\" cy=\"862.448\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1978.98\" cy=\"858.683\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1980.94\" cy=\"854.862\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1982.9\" cy=\"850.984\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1984.86\" cy=\"847.051\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1986.82\" cy=\"843.063\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1988.78\" cy=\"839.02\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1990.74\" cy=\"834.923\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1992.7\" cy=\"830.772\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1994.66\" cy=\"826.568\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1996.62\" cy=\"822.311\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"1998.58\" cy=\"818.003\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2000.54\" cy=\"813.643\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2002.5\" cy=\"809.232\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2004.46\" cy=\"804.771\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2006.43\" cy=\"800.26\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2008.39\" cy=\"795.7\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2010.35\" cy=\"791.092\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2012.31\" cy=\"786.437\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2014.27\" cy=\"781.735\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2016.23\" cy=\"776.987\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2018.19\" cy=\"772.194\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2020.15\" cy=\"767.357\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2022.11\" cy=\"762.476\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2024.07\" cy=\"757.553\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2026.03\" cy=\"752.588\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2027.99\" cy=\"747.582\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2029.95\" cy=\"742.537\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2031.91\" cy=\"737.452\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2033.87\" cy=\"732.33\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2035.83\" cy=\"727.171\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2037.79\" cy=\"721.977\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2039.75\" cy=\"716.748\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2041.71\" cy=\"711.485\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2043.67\" cy=\"706.19\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2045.63\" cy=\"700.864\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2047.59\" cy=\"695.508\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2049.55\" cy=\"690.123\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2051.51\" cy=\"684.711\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2053.47\" cy=\"679.272\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2055.43\" cy=\"673.808\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2057.39\" cy=\"668.32\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2059.35\" cy=\"662.809\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2061.31\" cy=\"657.278\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2063.28\" cy=\"651.726\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2065.24\" cy=\"646.157\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2067.2\" cy=\"640.569\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2069.16\" cy=\"634.967\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2071.12\" cy=\"629.349\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2073.08\" cy=\"623.719\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2075.04\" cy=\"618.077\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2077\" cy=\"612.425\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2078.96\" cy=\"606.764\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2080.92\" cy=\"601.096\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2082.88\" cy=\"595.422\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2084.84\" cy=\"589.744\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2086.8\" cy=\"584.062\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2088.76\" cy=\"578.379\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2090.72\" cy=\"572.696\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2092.68\" cy=\"567.014\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2094.64\" cy=\"561.335\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2096.6\" cy=\"555.659\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2098.56\" cy=\"549.99\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2100.52\" cy=\"544.327\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2102.48\" cy=\"538.673\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2104.44\" cy=\"533.028\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2106.4\" cy=\"527.394\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2108.36\" cy=\"521.773\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2110.32\" cy=\"516.165\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2112.28\" cy=\"510.573\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2114.24\" cy=\"504.997\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2116.2\" cy=\"499.439\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2118.17\" cy=\"493.9\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2120.13\" cy=\"488.381\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2122.09\" cy=\"482.883\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2124.05\" cy=\"477.408\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2126.01\" cy=\"471.957\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2127.97\" cy=\"466.531\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2129.93\" cy=\"461.131\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2131.89\" cy=\"455.758\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2133.85\" cy=\"450.414\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2135.81\" cy=\"445.099\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2137.77\" cy=\"439.814\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2139.73\" cy=\"434.561\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2141.69\" cy=\"429.34\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2143.65\" cy=\"424.152\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2145.61\" cy=\"418.999\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2147.57\" cy=\"413.88\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2149.53\" cy=\"408.798\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2151.49\" cy=\"403.752\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2153.45\" cy=\"398.744\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2155.41\" cy=\"393.774\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2157.37\" cy=\"388.843\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2159.33\" cy=\"383.952\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2161.29\" cy=\"379.101\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2163.25\" cy=\"374.291\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2165.21\" cy=\"369.522\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2167.17\" cy=\"364.795\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2169.13\" cy=\"360.111\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2171.09\" cy=\"355.471\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2173.06\" cy=\"350.873\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2175.02\" cy=\"346.32\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2176.98\" cy=\"341.811\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2178.94\" cy=\"337.347\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2180.9\" cy=\"332.928\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2182.86\" cy=\"328.554\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2184.82\" cy=\"324.226\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2186.78\" cy=\"319.944\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2188.74\" cy=\"315.708\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2190.7\" cy=\"311.518\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2192.66\" cy=\"307.375\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2194.62\" cy=\"303.279\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2196.58\" cy=\"299.229\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2198.54\" cy=\"295.227\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2200.5\" cy=\"291.271\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2202.46\" cy=\"287.362\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2204.42\" cy=\"283.5\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2206.38\" cy=\"279.686\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2208.34\" cy=\"275.918\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2210.3\" cy=\"272.197\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2212.26\" cy=\"268.523\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2214.22\" cy=\"264.896\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2216.18\" cy=\"261.315\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2218.14\" cy=\"257.781\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2220.1\" cy=\"254.294\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2222.06\" cy=\"250.852\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2224.02\" cy=\"247.457\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2225.98\" cy=\"244.107\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2227.95\" cy=\"240.804\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2229.91\" cy=\"237.545\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2231.87\" cy=\"234.332\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2233.83\" cy=\"231.164\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2235.79\" cy=\"228.04\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2237.75\" cy=\"224.961\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2239.71\" cy=\"221.925\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2241.67\" cy=\"218.934\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2243.63\" cy=\"215.986\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip782)\" cx=\"2245.59\" cy=\"213.081\" r=\"14\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<path clip-path=\"url(#clip780)\" d=\"\n",
"M1986.32 250.738 L2280.29 250.738 L2280.29 95.2176 L1986.32 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1986.32,250.738 2280.29,250.738 2280.29,95.2176 1986.32,95.2176 1986.32,250.738 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip780)\" cx=\"2082.94\" cy=\"147.058\" r=\"23\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"5.12\"/>\n",
"<path clip-path=\"url(#clip780)\" d=\"M2193.4 166.745 Q2191.59 171.375 2189.88 172.787 Q2188.17 174.199 2185.29 174.199 L2181.89 174.199 L2181.89 170.634 L2184.39 170.634 Q2186.15 170.634 2187.12 169.8 Q2188.1 168.967 2189.28 165.865 L2190.04 163.921 L2179.55 138.412 L2184.07 138.412 L2192.17 158.689 L2200.27 138.412 L2204.79 138.412 L2193.4 166.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2212.08 160.402 L2219.72 160.402 L2219.72 134.037 L2211.41 135.703 L2211.41 131.444 L2219.67 129.778 L2224.35 129.778 L2224.35 160.402 L2231.98 160.402 L2231.98 164.338 L2212.08 164.338 L2212.08 160.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip780)\" cx=\"2082.94\" cy=\"198.898\" r=\"23\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"5.12\"/>\n",
"<path clip-path=\"url(#clip780)\" d=\"M2193.4 218.585 Q2191.59 223.215 2189.88 224.627 Q2188.17 226.039 2185.29 226.039 L2181.89 226.039 L2181.89 222.474 L2184.39 222.474 Q2186.15 222.474 2187.12 221.64 Q2188.1 220.807 2189.28 217.705 L2190.04 215.761 L2179.55 190.252 L2184.07 190.252 L2192.17 210.529 L2200.27 190.252 L2204.79 190.252 L2193.4 218.585 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2215.29 212.242 L2231.61 212.242 L2231.61 216.178 L2209.67 216.178 L2209.67 212.242 Q2212.33 209.488 2216.91 204.858 Q2221.52 200.205 2222.7 198.863 Q2224.95 196.34 2225.83 194.604 Q2226.73 192.844 2226.73 191.155 Q2226.73 188.4 2224.79 186.664 Q2222.86 184.928 2219.76 184.928 Q2217.56 184.928 2215.11 185.692 Q2212.68 186.455 2209.9 188.006 L2209.9 183.284 Q2212.73 182.15 2215.18 181.571 Q2217.63 180.993 2219.67 180.993 Q2225.04 180.993 2228.23 183.678 Q2231.43 186.363 2231.43 190.854 Q2231.43 192.983 2230.62 194.905 Q2229.83 196.803 2227.73 199.395 Q2227.15 200.067 2224.04 203.284 Q2220.94 206.479 2215.29 212.242 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x_test = range(-10, stop=10, length=n_samples)\n",
"y_test = model(transpose(x_test))\n",
"\n",
"scatter(transpose(x), transpose(y), alpha=0.2)\n",
"scatter!(collect(x_test), transpose(y_test), msc=nothing)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "qCw_gLxwDmAa"
},
"source": [
"As we can see the network can fit this sinusoidal data quite well as expected. However, this type of fitting works well only if we are modelling a one-to-one or a many-to-one function. Suppose we inverted the training data so that the prediction task would become $x(y)$:"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"id": "2y_Hy1R0DmAa",
"outputId": "ef6347eb-d64b-4bbf-a444-7135fa33072e"
},
"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=\"clip820\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip820)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip821\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip820)\" d=\"\n",
"M178.867 1486.45 L2352.76 1486.45 L2352.76 47.2441 L178.867 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip822\">\n",
" <rect x=\"178\" y=\"47\" width=\"2175\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 507.887,1486.45 507.887,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 888.313,1486.45 888.313,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1268.74,1486.45 1268.74,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1649.17,1486.45 1649.17,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2029.59,1486.45 2029.59,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 507.887,1486.45 507.887,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 888.313,1486.45 888.313,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1268.74,1486.45 1268.74,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1649.17,1486.45 1649.17,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2029.59,1486.45 2029.59,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip820)\" d=\"M461.949 1532.02 L491.625 1532.02 L491.625 1535.95 L461.949 1535.95 L461.949 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M502.528 1544.91 L510.167 1544.91 L510.167 1518.55 L501.856 1520.21 L501.856 1515.95 L510.12 1514.29 L514.796 1514.29 L514.796 1544.91 L522.435 1544.91 L522.435 1548.85 L502.528 1548.85 L502.528 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M541.879 1517.37 Q538.268 1517.37 536.44 1520.93 Q534.634 1524.47 534.634 1531.6 Q534.634 1538.71 536.44 1542.27 Q538.268 1545.82 541.879 1545.82 Q545.514 1545.82 547.319 1542.27 Q549.148 1538.71 549.148 1531.6 Q549.148 1524.47 547.319 1520.93 Q545.514 1517.37 541.879 1517.37 M541.879 1513.66 Q547.69 1513.66 550.745 1518.27 Q553.824 1522.85 553.824 1531.6 Q553.824 1540.33 550.745 1544.94 Q547.69 1549.52 541.879 1549.52 Q536.069 1549.52 532.991 1544.94 Q529.935 1540.33 529.935 1531.6 Q529.935 1522.85 532.991 1518.27 Q536.069 1513.66 541.879 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M857.955 1532.02 L887.63 1532.02 L887.63 1535.95 L857.955 1535.95 L857.955 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M897.769 1514.29 L916.126 1514.29 L916.126 1518.22 L902.052 1518.22 L902.052 1526.7 Q903.07 1526.35 904.089 1526.19 Q905.107 1526 906.126 1526 Q911.913 1526 915.292 1529.17 Q918.672 1532.34 918.672 1537.76 Q918.672 1543.34 915.2 1546.44 Q911.727 1549.52 905.408 1549.52 Q903.232 1549.52 900.964 1549.15 Q898.718 1548.78 896.311 1548.04 L896.311 1543.34 Q898.394 1544.47 900.616 1545.03 Q902.839 1545.58 905.315 1545.58 Q909.32 1545.58 911.658 1543.48 Q913.996 1541.37 913.996 1537.76 Q913.996 1534.15 911.658 1532.04 Q909.32 1529.94 905.315 1529.94 Q903.44 1529.94 901.565 1530.35 Q899.714 1530.77 897.769 1531.65 L897.769 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1268.74 1517.37 Q1265.13 1517.37 1263.3 1520.93 Q1261.49 1524.47 1261.49 1531.6 Q1261.49 1538.71 1263.3 1542.27 Q1265.13 1545.82 1268.74 1545.82 Q1272.37 1545.82 1274.18 1542.27 Q1276.01 1538.71 1276.01 1531.6 Q1276.01 1524.47 1274.18 1520.93 Q1272.37 1517.37 1268.74 1517.37 M1268.74 1513.66 Q1274.55 1513.66 1277.61 1518.27 Q1280.68 1522.85 1280.68 1531.6 Q1280.68 1540.33 1277.61 1544.94 Q1274.55 1549.52 1268.74 1549.52 Q1262.93 1549.52 1259.85 1544.94 Q1256.8 1540.33 1256.8 1531.6 Q1256.8 1522.85 1259.85 1518.27 Q1262.93 1513.66 1268.74 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1639.44 1514.29 L1657.8 1514.29 L1657.8 1518.22 L1643.73 1518.22 L1643.73 1526.7 Q1644.75 1526.35 1645.76 1526.19 Q1646.78 1526 1647.8 1526 Q1653.59 1526 1656.97 1529.17 Q1660.35 1532.34 1660.35 1537.76 Q1660.35 1543.34 1656.87 1546.44 Q1653.4 1549.52 1647.08 1549.52 Q1644.91 1549.52 1642.64 1549.15 Q1640.39 1548.78 1637.99 1548.04 L1637.99 1543.34 Q1640.07 1544.47 1642.29 1545.03 Q1644.51 1545.58 1646.99 1545.58 Q1651 1545.58 1653.33 1543.48 Q1655.67 1541.37 1655.67 1537.76 Q1655.67 1534.15 1653.33 1532.04 Q1651 1529.94 1646.99 1529.94 Q1645.12 1529.94 1643.24 1530.35 Q1641.39 1530.77 1639.44 1531.65 L1639.44 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2004.28 1544.91 L2011.92 1544.91 L2011.92 1518.55 L2003.61 1520.21 L2003.61 1515.95 L2011.87 1514.29 L2016.55 1514.29 L2016.55 1544.91 L2024.19 1544.91 L2024.19 1548.85 L2004.28 1548.85 L2004.28 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2043.63 1517.37 Q2040.02 1517.37 2038.19 1520.93 Q2036.39 1524.47 2036.39 1531.6 Q2036.39 1538.71 2038.19 1542.27 Q2040.02 1545.82 2043.63 1545.82 Q2047.27 1545.82 2049.07 1542.27 Q2050.9 1538.71 2050.9 1531.6 Q2050.9 1524.47 2049.07 1520.93 Q2047.27 1517.37 2043.63 1517.37 M2043.63 1513.66 Q2049.44 1513.66 2052.5 1518.27 Q2055.58 1522.85 2055.58 1531.6 Q2055.58 1540.33 2052.5 1544.94 Q2049.44 1549.52 2043.63 1549.52 Q2037.82 1549.52 2034.74 1544.94 Q2031.69 1540.33 2031.69 1531.6 Q2031.69 1522.85 2034.74 1518.27 Q2037.82 1513.66 2043.63 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1414.73 2352.76,1414.73 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1090.6 2352.76,1090.6 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,766.462 2352.76,766.462 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,442.328 2352.76,442.328 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,118.193 2352.76,118.193 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 178.867,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1414.73 197.764,1414.73 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1090.6 197.764,1090.6 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,766.462 197.764,766.462 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,442.328 197.764,442.328 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,118.193 197.764,118.193 \n",
" \"/>\n",
"<path clip-path=\"url(#clip820)\" d=\"M50.9921 1415.18 L80.6679 1415.18 L80.6679 1419.12 L50.9921 1419.12 L50.9921 1415.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M91.5706 1428.08 L99.2095 1428.08 L99.2095 1401.71 L90.8993 1403.38 L90.8993 1399.12 L99.1632 1397.45 L103.839 1397.45 L103.839 1428.08 L111.478 1428.08 L111.478 1432.01 L91.5706 1432.01 L91.5706 1428.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M130.922 1400.53 Q127.311 1400.53 125.482 1404.09 Q123.677 1407.64 123.677 1414.76 Q123.677 1421.87 125.482 1425.44 Q127.311 1428.98 130.922 1428.98 Q134.556 1428.98 136.362 1425.44 Q138.191 1421.87 138.191 1414.76 Q138.191 1407.64 136.362 1404.09 Q134.556 1400.53 130.922 1400.53 M130.922 1396.83 Q136.732 1396.83 139.788 1401.43 Q142.867 1406.02 142.867 1414.76 Q142.867 1423.49 139.788 1428.1 Q136.732 1432.68 130.922 1432.68 Q125.112 1432.68 122.033 1428.1 Q118.978 1423.49 118.978 1414.76 Q118.978 1406.02 122.033 1401.43 Q125.112 1396.83 130.922 1396.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M82.1494 1091.05 L111.825 1091.05 L111.825 1094.98 L82.1494 1094.98 L82.1494 1091.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M121.964 1073.32 L140.32 1073.32 L140.32 1077.25 L126.246 1077.25 L126.246 1085.72 Q127.265 1085.38 128.283 1085.21 Q129.302 1085.03 130.32 1085.03 Q136.107 1085.03 139.487 1088.2 Q142.867 1091.37 142.867 1096.79 Q142.867 1102.37 139.394 1105.47 Q135.922 1108.55 129.603 1108.55 Q127.427 1108.55 125.158 1108.18 Q122.913 1107.81 120.506 1107.07 L120.506 1102.37 Q122.589 1103.5 124.811 1104.06 Q127.033 1104.61 129.51 1104.61 Q133.515 1104.61 135.853 1102.51 Q138.191 1100.4 138.191 1096.79 Q138.191 1093.18 135.853 1091.07 Q133.515 1088.96 129.51 1088.96 Q127.635 1088.96 125.76 1089.38 Q123.908 1089.8 121.964 1090.68 L121.964 1073.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M130.922 752.261 Q127.311 752.261 125.482 755.825 Q123.677 759.367 123.677 766.497 Q123.677 773.603 125.482 777.168 Q127.311 780.709 130.922 780.709 Q134.556 780.709 136.362 777.168 Q138.191 773.603 138.191 766.497 Q138.191 759.367 136.362 755.825 Q134.556 752.261 130.922 752.261 M130.922 748.557 Q136.732 748.557 139.788 753.163 Q142.867 757.747 142.867 766.497 Q142.867 775.223 139.788 779.83 Q136.732 784.413 130.922 784.413 Q125.112 784.413 122.033 779.83 Q118.978 775.223 118.978 766.497 Q118.978 757.747 122.033 753.163 Q125.112 748.557 130.922 748.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M121.964 425.048 L140.32 425.048 L140.32 428.983 L126.246 428.983 L126.246 437.455 Q127.265 437.108 128.283 436.946 Q129.302 436.761 130.32 436.761 Q136.107 436.761 139.487 439.932 Q142.867 443.103 142.867 448.52 Q142.867 454.098 139.394 457.2 Q135.922 460.279 129.603 460.279 Q127.427 460.279 125.158 459.909 Q122.913 459.538 120.506 458.797 L120.506 454.098 Q122.589 455.233 124.811 455.788 Q127.033 456.344 129.51 456.344 Q133.515 456.344 135.853 454.237 Q138.191 452.131 138.191 448.52 Q138.191 444.909 135.853 442.802 Q133.515 440.696 129.51 440.696 Q127.635 440.696 125.76 441.112 Q123.908 441.529 121.964 442.409 L121.964 425.048 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M91.5706 131.538 L99.2095 131.538 L99.2095 105.173 L90.8993 106.839 L90.8993 102.58 L99.1632 100.913 L103.839 100.913 L103.839 131.538 L111.478 131.538 L111.478 135.473 L91.5706 135.473 L91.5706 131.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M130.922 103.992 Q127.311 103.992 125.482 107.557 Q123.677 111.099 123.677 118.228 Q123.677 125.335 125.482 128.899 Q127.311 132.441 130.922 132.441 Q134.556 132.441 136.362 128.899 Q138.191 125.335 138.191 118.228 Q138.191 111.099 136.362 107.557 Q134.556 103.992 130.922 103.992 M130.922 100.288 Q136.732 100.288 139.788 104.895 Q142.867 109.478 142.867 118.228 Q142.867 126.955 139.788 131.561 Q136.732 136.145 130.922 136.145 Q125.112 136.145 122.033 131.561 Q118.978 126.955 118.978 118.228 Q118.978 109.478 122.033 104.895 Q125.112 100.288 130.922 100.288 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip822)\" cx=\"1339.79\" cy=\"1222.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2107.92\" cy=\"121.504\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1058.52\" cy=\"342.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1317.85\" cy=\"1070.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"626.218\" cy=\"947.512\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"689.699\" cy=\"1331.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1318.24\" cy=\"466.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1997.75\" cy=\"132.012\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2029.19\" cy=\"145.392\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1434.14\" cy=\"490.553\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1105.55\" cy=\"419.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"623.751\" cy=\"924.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1050.29\" cy=\"281.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1467.29\" cy=\"1212.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1289.98\" cy=\"1096.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1417.26\" cy=\"504.548\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1607.77\" cy=\"1097.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1331.77\" cy=\"1078.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1537.97\" cy=\"1144.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"882.464\" cy=\"325.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1247.64\" cy=\"1251.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1570.69\" cy=\"1202.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"709.245\" cy=\"914.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1489.4\" cy=\"1118.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1107.16\" cy=\"300.439\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1434.31\" cy=\"727.486\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"683.269\" cy=\"904.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"714.649\" cy=\"963.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"664.856\" cy=\"1341.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"987.222\" cy=\"350.628\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"908.264\" cy=\"345.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1004.76\" cy=\"371.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1013.86\" cy=\"1276.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1223.95\" cy=\"778.751\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1504.17\" cy=\"1125.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1011.08\" cy=\"344.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1408.81\" cy=\"495.776\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1809.18\" cy=\"189.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1446.36\" cy=\"1086.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1140.98\" cy=\"285.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1462.04\" cy=\"514.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2245.56\" cy=\"101.123\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1847.9\" cy=\"638.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"587.289\" cy=\"867.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1435.4\" cy=\"239.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2180.55\" cy=\"125.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1416.68\" cy=\"475.916\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1594.35\" cy=\"1152.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"482.706\" cy=\"1401.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1885.65\" cy=\"567.871\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1450.86\" cy=\"492.265\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2277.11\" cy=\"95.5962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1079.15\" cy=\"1031.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"679.237\" cy=\"871.796\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1767.28\" cy=\"681.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"877.632\" cy=\"1004.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1765.39\" cy=\"709.514\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1329.56\" cy=\"752.034\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1630.24\" cy=\"715.816\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1819.95\" cy=\"599.873\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2197.13\" cy=\"98.0836\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1838.56\" cy=\"171.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1877.28\" cy=\"619.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1496\" cy=\"1207.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"755.198\" cy=\"876.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1094.62\" cy=\"424.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1436.72\" cy=\"1189.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1414.27\" cy=\"222.537\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"686.417\" cy=\"1352.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"807.578\" cy=\"1320.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1348.89\" cy=\"1080.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1882.48\" cy=\"577.237\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1529.69\" cy=\"1174.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"932.851\" cy=\"343.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1364.81\" cy=\"757.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1109.75\" cy=\"309.251\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"914.501\" cy=\"321.158\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"588.429\" cy=\"1380\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1875.17\" cy=\"181.332\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1757.93\" cy=\"584.584\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1066.16\" cy=\"1280.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"919.026\" cy=\"1312.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1054.55\" cy=\"1036.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2046.68\" cy=\"139.676\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1190.93\" cy=\"1287.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1120.91\" cy=\"469.446\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1210.01\" cy=\"1242.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1643.46\" cy=\"687.315\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1685.39\" cy=\"213.916\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1180.16\" cy=\"1273.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1539.62\" cy=\"1132.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2071.78\" cy=\"134.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1534.38\" cy=\"719.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"813.236\" cy=\"863.287\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1606.34\" cy=\"522.085\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1424.65\" cy=\"1140.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1943.19\" cy=\"643.869\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1008.89\" cy=\"1271.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"713.645\" cy=\"1360.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1691.79\" cy=\"716.993\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1865.74\" cy=\"588.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1620.41\" cy=\"539.122\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1487.35\" cy=\"231.559\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1588.94\" cy=\"1139.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1468.04\" cy=\"1112.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1884.93\" cy=\"650.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1446.58\" cy=\"1100.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"974.217\" cy=\"327.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1461.01\" cy=\"500.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1587.81\" cy=\"1117.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"969.249\" cy=\"1313.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"562.308\" cy=\"1372.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"975.002\" cy=\"990.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1350.82\" cy=\"249.446\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1145.61\" cy=\"366.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"617.277\" cy=\"923.452\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1923.58\" cy=\"177.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1093.45\" cy=\"1279.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1858.52\" cy=\"568.358\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1495.55\" cy=\"1244.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"858.178\" cy=\"1317.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1149.22\" cy=\"1278.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1297.65\" cy=\"1102.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"483.648\" cy=\"1439.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1225.13\" cy=\"294.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"609.822\" cy=\"951.521\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1065.58\" cy=\"410.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"945.588\" cy=\"394.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1638.78\" cy=\"562.434\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1702.17\" cy=\"559.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"741.822\" cy=\"937.528\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1584.16\" cy=\"1189.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"421.645\" cy=\"1444.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2005.81\" cy=\"103.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1926.02\" cy=\"651.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1179\" cy=\"1084.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1515.81\" cy=\"1110.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1349.89\" cy=\"749.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1775.66\" cy=\"1170.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1377.92\" cy=\"250.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1011.84\" cy=\"385.903\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1366.36\" cy=\"741.384\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1112.49\" cy=\"376.341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1172.95\" cy=\"453.658\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1522.08\" cy=\"1202.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1229.35\" cy=\"800.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2169.44\" cy=\"107.612\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1013.18\" cy=\"354.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1111.79\" cy=\"793.795\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2169.06\" cy=\"123.824\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"703.344\" cy=\"910.636\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1598.68\" cy=\"530.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1609.58\" cy=\"1124.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1517.86\" cy=\"1128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"474.911\" cy=\"1388.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1145.75\" cy=\"1069.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1652.5\" cy=\"531.706\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1034.49\" cy=\"347.484\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1780.7\" cy=\"572.424\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1646.66\" cy=\"715.837\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"345.555\" cy=\"1435.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"485.587\" cy=\"1399.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"647.422\" cy=\"960.881\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1501.86\" cy=\"1128.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"726.602\" cy=\"929.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1263.54\" cy=\"447.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.894\" cy=\"375.975\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"804.473\" cy=\"1003.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"755.568\" cy=\"968.717\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1095.05\" cy=\"334.733\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.9\" cy=\"351.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1578.52\" cy=\"1130.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"936.057\" cy=\"806.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1130.02\" cy=\"438.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1431.88\" cy=\"736.281\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1204.46\" cy=\"271.845\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1064.85\" cy=\"795.397\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"724.333\" cy=\"973.413\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1495.66\" cy=\"1188.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1050.02\" cy=\"352.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2258.42\" cy=\"90.1979\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1728.38\" cy=\"697.063\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2196.51\" cy=\"104.227\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1103.03\" cy=\"416.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"671.052\" cy=\"858.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2081.25\" cy=\"134.901\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1655.32\" cy=\"1160.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1790.4\" cy=\"699.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"913.82\" cy=\"818.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1401.58\" cy=\"1242.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1057.53\" cy=\"309.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"603.324\" cy=\"916.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1023.87\" cy=\"355.491\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"538.765\" cy=\"896.906\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"562.598\" cy=\"1395.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1684.77\" cy=\"211.615\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1446.39\" cy=\"1235.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"985.574\" cy=\"965.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1112.8\" cy=\"425.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"830.324\" cy=\"840.607\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"677.527\" cy=\"952.981\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1223.15\" cy=\"298.757\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1605.17\" cy=\"227.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"953.03\" cy=\"1327.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1343.81\" cy=\"456.176\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1810.13\" cy=\"539.224\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1272.27\" cy=\"290.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1618.32\" cy=\"1216.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"423.529\" cy=\"1386.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"786.026\" cy=\"849.411\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"761.178\" cy=\"1328.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2096.89\" cy=\"162.558\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"800.543\" cy=\"968.431\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"626.425\" cy=\"1369.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1087.2\" cy=\"270.067\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"715.44\" cy=\"962.711\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"295.785\" cy=\"1436.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"842.111\" cy=\"1326.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1571.31\" cy=\"224.446\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"962.734\" cy=\"1001.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"704.318\" cy=\"950.267\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"664.547\" cy=\"912.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1473.29\" cy=\"526.052\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1736.21\" cy=\"568.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1644.97\" cy=\"529.416\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"873.786\" cy=\"383.828\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"732.71\" cy=\"875.066\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"889.465\" cy=\"833.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"918.445\" cy=\"833.247\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"925.186\" cy=\"370.547\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"944.764\" cy=\"809.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1439.09\" cy=\"1100.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"565.413\" cy=\"1360.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"423.613\" cy=\"1417.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"505.295\" cy=\"1378.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1109.39\" cy=\"415.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1556.4\" cy=\"1190.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1687.72\" cy=\"1194.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"776.262\" cy=\"978.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1955.59\" cy=\"114.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1779.12\" cy=\"191.011\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1199.36\" cy=\"297.468\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"869.983\" cy=\"399.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1388.55\" cy=\"256.781\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1072.98\" cy=\"442.081\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1856.45\" cy=\"622.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1678.98\" cy=\"666.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1313.31\" cy=\"1245.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1895.48\" cy=\"655.049\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2090.28\" cy=\"125.403\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1213.84\" cy=\"278.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1096.95\" cy=\"801.095\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1369.85\" cy=\"466.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1343.07\" cy=\"263.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1007.72\" cy=\"1032.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"663.872\" cy=\"844.264\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2211.42\" cy=\"110.522\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1261.47\" cy=\"772.244\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1160.52\" cy=\"435.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1684.9\" cy=\"522.921\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1793.07\" cy=\"548.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1356.92\" cy=\"749.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1434.29\" cy=\"726.472\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1028.7\" cy=\"810.356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1766.55\" cy=\"573.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1219.22\" cy=\"789.238\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"622.068\" cy=\"930.156\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1309.83\" cy=\"256.603\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1622.99\" cy=\"736.789\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1002.02\" cy=\"420.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1379.42\" cy=\"1095.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"693.124\" cy=\"942.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1124.56\" cy=\"1286.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1744.36\" cy=\"686.959\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"884.62\" cy=\"363.929\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"744.819\" cy=\"966.936\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"610.658\" cy=\"883.503\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1414.18\" cy=\"1249.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1071.36\" cy=\"332.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1758.82\" cy=\"569.112\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1912.55\" cy=\"643.383\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1725.59\" cy=\"549.927\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"863.145\" cy=\"1320.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1454.86\" cy=\"1072.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1484.67\" cy=\"711.541\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"971.492\" cy=\"845.029\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1288.06\" cy=\"471.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"754.468\" cy=\"999.882\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1868.95\" cy=\"171.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1183.33\" cy=\"437.367\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1417.74\" cy=\"1130.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1377.76\" cy=\"490.869\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1683.88\" cy=\"200.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1154.47\" cy=\"309.984\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"916.198\" cy=\"1301.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1065.76\" cy=\"446.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1918.52\" cy=\"650.078\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1825.11\" cy=\"679.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1569.34\" cy=\"1183.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1923.76\" cy=\"641.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1156.6\" cy=\"753.425\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1609.25\" cy=\"514.687\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2167.84\" cy=\"93.4641\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1913.63\" cy=\"187.143\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1751.53\" cy=\"706.349\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1157.17\" cy=\"404.517\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1128.03\" cy=\"780.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1110.14\" cy=\"778.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1794.41\" cy=\"627.083\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"789.228\" cy=\"374.196\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1549.51\" cy=\"533.864\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2035.18\" cy=\"160.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2276.91\" cy=\"102.057\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1145.77\" cy=\"293.559\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"418.998\" cy=\"1437.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1056.81\" cy=\"331.282\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1155.99\" cy=\"780.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1020.79\" cy=\"347.828\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1569.56\" cy=\"254.293\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"946.162\" cy=\"824.111\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1601.63\" cy=\"518.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"956.289\" cy=\"1323.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"574.719\" cy=\"866.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"523.6\" cy=\"1395.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1502.44\" cy=\"1113.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1428.59\" cy=\"480.584\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1013.65\" cy=\"1021.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2259.25\" cy=\"97.8532\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"701.705\" cy=\"851.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1792.26\" cy=\"568.096\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1815.54\" cy=\"691.384\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1713.28\" cy=\"716.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1791.87\" cy=\"666.662\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1357.56\" cy=\"1236.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"659.829\" cy=\"1334.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1108.51\" cy=\"783.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1435.21\" cy=\"1165.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1357.34\" cy=\"1092.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"737.152\" cy=\"846.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"598.565\" cy=\"917.969\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"955.043\" cy=\"376.173\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1864.84\" cy=\"621.941\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1499.3\" cy=\"1219.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1922.72\" cy=\"582.089\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1082.16\" cy=\"313.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1490.04\" cy=\"738.029\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"928.923\" cy=\"980.159\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1862.55\" cy=\"607.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1079.93\" cy=\"368.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1768.5\" cy=\"187.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1330.21\" cy=\"747.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"695.081\" cy=\"863.892\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"978.185\" cy=\"1005.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1290.31\" cy=\"470.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1052.97\" cy=\"1006.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1024.76\" cy=\"324.666\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1686.87\" cy=\"624.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1022.25\" cy=\"360.207\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"706.53\" cy=\"1347.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1750.28\" cy=\"723.874\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1524.56\" cy=\"246.704\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"849.51\" cy=\"821.102\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"633.477\" cy=\"912.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1423.17\" cy=\"734.367\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2148.17\" cy=\"123.412\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1936.85\" cy=\"619.432\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1809.27\" cy=\"613.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"370.474\" cy=\"1417.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"776.683\" cy=\"961.881\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1532.09\" cy=\"744.871\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"706.252\" cy=\"963.941\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1796.89\" cy=\"573.809\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1490.54\" cy=\"1180.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1046.47\" cy=\"439.505\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1606.91\" cy=\"719.282\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1666.77\" cy=\"221.789\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1749.83\" cy=\"716.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2195.26\" cy=\"91.2786\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1297.74\" cy=\"1253.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1793.37\" cy=\"177.207\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1199.51\" cy=\"1268.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1824.68\" cy=\"660.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"733.864\" cy=\"892.827\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"739.162\" cy=\"864.425\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1608.97\" cy=\"230.242\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1737.73\" cy=\"225.608\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1767.57\" cy=\"544.876\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1577.92\" cy=\"512.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1038.14\" cy=\"352.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1677.9\" cy=\"691.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1335.67\" cy=\"278.661\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1719.63\" cy=\"214.539\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1574.03\" cy=\"525.042\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1164\" cy=\"1034.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1944.91\" cy=\"650.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1925.58\" cy=\"614.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1551.56\" cy=\"1136.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"693.542\" cy=\"835.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1795.98\" cy=\"552.452\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1678.58\" cy=\"545.412\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1684.39\" cy=\"539.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"875.076\" cy=\"827.541\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1184.39\" cy=\"1031.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1427.16\" cy=\"1082.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2109.63\" cy=\"133.934\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"650.09\" cy=\"944.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"341.97\" cy=\"1413.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1255.85\" cy=\"298.055\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1307.33\" cy=\"744.193\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"985.034\" cy=\"371.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1017.71\" cy=\"1306.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"897.209\" cy=\"1323.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1678.84\" cy=\"549.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1577.12\" cy=\"521.561\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"773.418\" cy=\"961.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"578.879\" cy=\"923.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1898.06\" cy=\"613.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1172.96\" cy=\"1060.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1169.6\" cy=\"425.893\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1017.55\" cy=\"1308.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1855.03\" cy=\"667.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"877.949\" cy=\"1361.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2171.37\" cy=\"131.198\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1467.61\" cy=\"1113.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1658.65\" cy=\"1135.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1652.81\" cy=\"1154.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1924.09\" cy=\"626.054\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1573.22\" cy=\"1153.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1051.13\" cy=\"398.659\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1295.88\" cy=\"1284.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2005.46\" cy=\"580.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1475\" cy=\"1213.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"603.595\" cy=\"906.371\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1634.97\" cy=\"189.809\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"699.587\" cy=\"1353.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1713.02\" cy=\"563.156\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1498.65\" cy=\"731.061\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1256.82\" cy=\"1259.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"861.011\" cy=\"834.338\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1684.24\" cy=\"682.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"970.038\" cy=\"1312.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"990.731\" cy=\"1304.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1501.68\" cy=\"1155.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1859.5\" cy=\"674.491\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"971.493\" cy=\"838.707\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1603.84\" cy=\"1132.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1462.46\" cy=\"478.873\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1446.35\" cy=\"219.616\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1038.7\" cy=\"389.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2103.97\" cy=\"126.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"782.567\" cy=\"973.328\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1276.43\" cy=\"1267.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1052.06\" cy=\"366.283\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1787.42\" cy=\"179.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"462.246\" cy=\"1388.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"310.885\" cy=\"1409.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"642.426\" cy=\"959.781\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1945.97\" cy=\"181.705\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1018.94\" cy=\"381.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1610.04\" cy=\"233.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"343.12\" cy=\"1429.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1094\" cy=\"432.001\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2161.76\" cy=\"107.108\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.534\" cy=\"800.153\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"649.7\" cy=\"925.677\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1198.15\" cy=\"1276.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1753.41\" cy=\"551.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"886.47\" cy=\"802.372\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1197.76\" cy=\"448.458\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1242.04\" cy=\"801.858\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1636.6\" cy=\"696.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1091.93\" cy=\"779.936\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1061.19\" cy=\"314.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1638.38\" cy=\"661.024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"805.855\" cy=\"968.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1339.07\" cy=\"1247.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1373.24\" cy=\"505.902\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1472.85\" cy=\"1116.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"875.3\" cy=\"1014.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"856.449\" cy=\"826.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1291.29\" cy=\"270.507\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1548.36\" cy=\"1170.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1052.73\" cy=\"404.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1069.77\" cy=\"269.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1495.28\" cy=\"1172.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2001.27\" cy=\"159.954\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1555.84\" cy=\"239.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1655.9\" cy=\"501.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"355.777\" cy=\"1445.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1420.8\" cy=\"741.463\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.678\" cy=\"344.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1880.25\" cy=\"669.332\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1037.36\" cy=\"410.282\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1335.65\" cy=\"1266.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"901.676\" cy=\"393.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1648.56\" cy=\"216.049\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1746.42\" cy=\"691.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1282.04\" cy=\"776.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1005.58\" cy=\"339.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1703.97\" cy=\"687.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"999.409\" cy=\"1299.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1484.26\" cy=\"502.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1479.05\" cy=\"734.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1943.54\" cy=\"575.064\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1584.11\" cy=\"1196.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"529.508\" cy=\"881.034\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1607.95\" cy=\"206.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1263.66\" cy=\"1271.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1329.19\" cy=\"253.162\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"908.143\" cy=\"993.174\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1512.59\" cy=\"223.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1967.38\" cy=\"182.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1181.56\" cy=\"454.749\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1652.45\" cy=\"526.367\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"600.338\" cy=\"877.915\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1838.62\" cy=\"198.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1778.76\" cy=\"695.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1010.86\" cy=\"324.454\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1785.59\" cy=\"589.717\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1159.74\" cy=\"277.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1456.81\" cy=\"1102.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"385.852\" cy=\"1407.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1174.46\" cy=\"1294.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"733.667\" cy=\"942.914\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1325.88\" cy=\"253.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1426.32\" cy=\"1175.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"755.235\" cy=\"897.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1293.73\" cy=\"753.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"943.176\" cy=\"810.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1635.27\" cy=\"226.833\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1507.62\" cy=\"1214.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1520.23\" cy=\"1201.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2019.58\" cy=\"162.993\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1277.72\" cy=\"1281.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"927.215\" cy=\"390.278\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1094.38\" cy=\"1055.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1570.61\" cy=\"1124.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1565.11\" cy=\"1204.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1483.43\" cy=\"1187.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2174.04\" cy=\"87.9763\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"617.669\" cy=\"1378\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1229.63\" cy=\"444.752\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"552.428\" cy=\"937.576\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1630.58\" cy=\"529.169\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1598.93\" cy=\"1158.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1433.29\" cy=\"1106.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2125.94\" cy=\"104.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1466.65\" cy=\"490.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1414.21\" cy=\"1231.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"906.962\" cy=\"1017.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"774.879\" cy=\"1353.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"501.178\" cy=\"1405.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1184.72\" cy=\"476.311\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2104.32\" cy=\"96.5368\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"948.863\" cy=\"366.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1141.82\" cy=\"1287.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1801.89\" cy=\"555.828\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1099.01\" cy=\"361.375\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1519.29\" cy=\"1191.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1034.7\" cy=\"329.311\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"865.093\" cy=\"974.873\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1547.94\" cy=\"1175.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1656.41\" cy=\"1150.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"732.41\" cy=\"987.755\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"812.276\" cy=\"955.933\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"968.269\" cy=\"386.655\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"947.81\" cy=\"826.012\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"980.688\" cy=\"398\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1315.24\" cy=\"245.248\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1284.94\" cy=\"1061.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"628.659\" cy=\"885.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"746.611\" cy=\"954.359\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1888.47\" cy=\"600.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1184.52\" cy=\"1280.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1603.7\" cy=\"735.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"941.241\" cy=\"1324.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1368.44\" cy=\"259.402\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1625.1\" cy=\"1165.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"699.218\" cy=\"922.022\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1872.34\" cy=\"626.914\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1488.97\" cy=\"1124.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2291.23\" cy=\"98.4356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1345.88\" cy=\"1253.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1331.07\" cy=\"747.837\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"806.72\" cy=\"1350.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"365.285\" cy=\"1389.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"717.845\" cy=\"897.982\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"900.387\" cy=\"826.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1886.58\" cy=\"646.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1638.75\" cy=\"709.866\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1579.92\" cy=\"1205.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1675.4\" cy=\"515.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1030.7\" cy=\"380.618\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"646.233\" cy=\"1362.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1363.96\" cy=\"1235.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1818.87\" cy=\"572.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1614.23\" cy=\"545.238\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2088.4\" cy=\"129.308\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1979.6\" cy=\"664.737\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1440.85\" cy=\"1155.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"541.135\" cy=\"905.038\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1079.27\" cy=\"770.077\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1068.46\" cy=\"306.419\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"637.095\" cy=\"929.145\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1551.43\" cy=\"1101.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"941.452\" cy=\"1016.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1097.82\" cy=\"451.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1816.74\" cy=\"697.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1081.26\" cy=\"289.978\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1350.9\" cy=\"482.122\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1079.34\" cy=\"417.162\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1190.42\" cy=\"1048.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"664.048\" cy=\"931.413\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1080.44\" cy=\"1029.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1377.79\" cy=\"1094.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1320.81\" cy=\"475.959\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1434.8\" cy=\"1101.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"857.324\" cy=\"823.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1924.59\" cy=\"649.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1217.43\" cy=\"469.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"759.464\" cy=\"1341.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1078.52\" cy=\"804.741\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"855.495\" cy=\"1326.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1566.01\" cy=\"1128.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1465.01\" cy=\"1137.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1109.97\" cy=\"1051.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"471.234\" cy=\"1384.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1563.33\" cy=\"1220.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1895.67\" cy=\"616.834\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1442.71\" cy=\"1219.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2012.33\" cy=\"172.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"558.239\" cy=\"1364.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"240.392\" cy=\"1424.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"307.139\" cy=\"1432.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"667.091\" cy=\"955.601\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1119.31\" cy=\"284.717\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2164.06\" cy=\"132.889\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1382.67\" cy=\"1090.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1796.81\" cy=\"675.138\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1202.4\" cy=\"1055.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1409.49\" cy=\"494.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1158.61\" cy=\"305.332\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1392.51\" cy=\"1223.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1048.85\" cy=\"378.997\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1274\" cy=\"467.555\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"955.45\" cy=\"1007.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1633.34\" cy=\"214.501\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1953.82\" cy=\"151.323\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1180.4\" cy=\"438.819\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1453.26\" cy=\"744.698\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2116.19\" cy=\"123.198\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"826.116\" cy=\"843.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1890.21\" cy=\"609.506\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1290.3\" cy=\"279.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"582.614\" cy=\"1389.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1083.22\" cy=\"809.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1264.38\" cy=\"1039.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1097.34\" cy=\"788.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"650.865\" cy=\"1359\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1271.47\" cy=\"1057.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1695.85\" cy=\"647.124\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1261.19\" cy=\"1075.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1671.88\" cy=\"1169.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1911.48\" cy=\"644.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"692.928\" cy=\"872.998\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1010.57\" cy=\"380.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"789.95\" cy=\"953.743\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1475.23\" cy=\"519.461\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"892.708\" cy=\"1002.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1545.91\" cy=\"489.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"941.973\" cy=\"1314.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1141.34\" cy=\"1051.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1843.19\" cy=\"178.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1404.33\" cy=\"473.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"787.28\" cy=\"954.369\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2006.95\" cy=\"135.848\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1583.9\" cy=\"239.359\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"910.821\" cy=\"989.218\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"819.364\" cy=\"846.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1302.77\" cy=\"468.143\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2012\" cy=\"152.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1929.26\" cy=\"607.097\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"724.247\" cy=\"980.496\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"932.896\" cy=\"424.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1218.04\" cy=\"759.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1898.97\" cy=\"579.315\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1869.42\" cy=\"630.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"958.858\" cy=\"820.584\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1573.13\" cy=\"221.549\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"376.424\" cy=\"1408.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1756.65\" cy=\"667.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1615.19\" cy=\"1210.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1459.79\" cy=\"1216.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"941.417\" cy=\"395.199\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"755.819\" cy=\"940.163\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1766.14\" cy=\"619.964\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"602.741\" cy=\"1386.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1246.06\" cy=\"491.468\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"627.591\" cy=\"885.643\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"997.551\" cy=\"823.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1052.25\" cy=\"801.244\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1182.63\" cy=\"1270.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1580.49\" cy=\"223.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"762.121\" cy=\"989.875\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"781.107\" cy=\"975.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"921.71\" cy=\"397.732\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1808.37\" cy=\"682.201\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"724.633\" cy=\"861.383\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1627.16\" cy=\"1175.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1243.37\" cy=\"299.825\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"959.653\" cy=\"818.255\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1669.12\" cy=\"690.241\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1452.57\" cy=\"1193.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"795.307\" cy=\"817.592\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1071.81\" cy=\"1302.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1321.78\" cy=\"1245.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1341.88\" cy=\"749.375\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1009.76\" cy=\"416.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"970.061\" cy=\"999.201\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1587.41\" cy=\"560.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1005.55\" cy=\"380.275\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1140.81\" cy=\"299.115\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1977.52\" cy=\"139.848\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1489.72\" cy=\"1233.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"398.563\" cy=\"1420.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"958.065\" cy=\"432.601\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"467.588\" cy=\"1399.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"871.797\" cy=\"828.006\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1856.02\" cy=\"171.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"397.749\" cy=\"1427.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"667.169\" cy=\"909.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1209.97\" cy=\"418.193\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1437.46\" cy=\"1111.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1593.99\" cy=\"1158.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"824.693\" cy=\"1001.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1366.19\" cy=\"752.918\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1300.67\" cy=\"1248.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1503.37\" cy=\"1175.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1619.71\" cy=\"515.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"781.303\" cy=\"833.499\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1063.82\" cy=\"404.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"858.798\" cy=\"336.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"711.857\" cy=\"895.102\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1221.48\" cy=\"1059.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1385.61\" cy=\"1087.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"381.419\" cy=\"1406.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1469.8\" cy=\"1198.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1191.85\" cy=\"1051.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1460.06\" cy=\"737.663\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1232.23\" cy=\"465.566\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"991.872\" cy=\"1019.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1128.34\" cy=\"1290.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"903.764\" cy=\"1013.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1784.3\" cy=\"590.096\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"921.615\" cy=\"349.901\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1643.67\" cy=\"1171.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1804.02\" cy=\"679.214\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1433.35\" cy=\"1093.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1908.91\" cy=\"167.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1132.02\" cy=\"1297.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1573.52\" cy=\"1201.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1855.69\" cy=\"574.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"927.117\" cy=\"815.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1141.57\" cy=\"465.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"818.369\" cy=\"1322.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1253.27\" cy=\"1067.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1356.43\" cy=\"508.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1516.09\" cy=\"1160.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"352.335\" cy=\"1423.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1590.42\" cy=\"1162.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1967.93\" cy=\"161.869\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1058.79\" cy=\"1010.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"983.968\" cy=\"1293.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"992.354\" cy=\"341.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1729.43\" cy=\"694.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1377.2\" cy=\"267.548\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1439.88\" cy=\"523.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"400.468\" cy=\"1445.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"974.137\" cy=\"365.851\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"829.717\" cy=\"849.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1501.5\" cy=\"1175.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1433.1\" cy=\"253.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1449.91\" cy=\"252.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1142.68\" cy=\"427.178\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1545.19\" cy=\"1139.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1013.32\" cy=\"805.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1153.96\" cy=\"1058.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1071.17\" cy=\"1040.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"429.221\" cy=\"1405.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.693\" cy=\"401.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1480.4\" cy=\"1198.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1927.07\" cy=\"632.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"553.82\" cy=\"1374.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"673.918\" cy=\"928.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1643.58\" cy=\"209.922\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1562.09\" cy=\"1157.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1239.98\" cy=\"454.453\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"965.893\" cy=\"415.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"960.914\" cy=\"1301.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"930.445\" cy=\"355.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"946.203\" cy=\"839.024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2063.31\" cy=\"125.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2183.46\" cy=\"93.7076\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1379.91\" cy=\"486.331\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1647.81\" cy=\"519.495\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"684.171\" cy=\"908.999\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"334.826\" cy=\"1425.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1105.26\" cy=\"1006.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"857.207\" cy=\"1313.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1540.79\" cy=\"244.606\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1127.92\" cy=\"417.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1084.24\" cy=\"1299.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1416.41\" cy=\"241.946\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"902.713\" cy=\"351.353\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1880.04\" cy=\"550.973\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"745.773\" cy=\"965.476\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1739.32\" cy=\"697.828\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1063.44\" cy=\"1025.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"502.444\" cy=\"1400.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"334.218\" cy=\"1423.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"453.167\" cy=\"1416.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1637.43\" cy=\"514.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1461.65\" cy=\"723.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1856.73\" cy=\"600.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"811.443\" cy=\"838.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1830.29\" cy=\"719.687\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1862.57\" cy=\"614.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1432.95\" cy=\"475.368\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1083.44\" cy=\"378.09\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1878.14\" cy=\"177.513\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"727.48\" cy=\"964.423\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"671.504\" cy=\"929.029\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1147.65\" cy=\"763.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"693.31\" cy=\"893.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1299.15\" cy=\"750.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"547.069\" cy=\"935.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1806.62\" cy=\"645.915\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1404.72\" cy=\"256.601\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1779.46\" cy=\"191.365\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1393.43\" cy=\"268.506\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1206.19\" cy=\"282.146\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"760.219\" cy=\"913.429\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1163.6\" cy=\"1053.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2163.82\" cy=\"98.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1384.04\" cy=\"1258.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"707.733\" cy=\"1335.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"993.752\" cy=\"1003.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1486.5\" cy=\"508.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1272.32\" cy=\"272.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"504.931\" cy=\"1404.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1351.52\" cy=\"1255.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1781.98\" cy=\"605.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1945.04\" cy=\"633.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1833.58\" cy=\"588.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"898.701\" cy=\"357.538\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"635.278\" cy=\"940.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1830.88\" cy=\"707.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1540.81\" cy=\"1144.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1469.28\" cy=\"1189.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1104.38\" cy=\"429.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1842.31\" cy=\"663.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1894.18\" cy=\"138.901\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"941.599\" cy=\"993.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1983.01\" cy=\"110.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"865.01\" cy=\"985.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"970.94\" cy=\"1304.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1560.43\" cy=\"731.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"998.56\" cy=\"1302.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"755.018\" cy=\"849.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"741.092\" cy=\"901.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1358.47\" cy=\"474.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1329.74\" cy=\"1095.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1085.44\" cy=\"1293.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1784.25\" cy=\"648.203\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1819.23\" cy=\"687.937\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1158.76\" cy=\"293.605\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1922.23\" cy=\"630.052\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1721.42\" cy=\"205.399\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1526.97\" cy=\"716.082\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"448.156\" cy=\"1404.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1729.69\" cy=\"582.795\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"635.668\" cy=\"1357.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1117.46\" cy=\"303.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"859.14\" cy=\"1323.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1228.98\" cy=\"1274.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"948.69\" cy=\"345.403\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1601.48\" cy=\"1197.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1615.6\" cy=\"1165.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1560.29\" cy=\"1121.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2158.76\" cy=\"89.3872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"953.871\" cy=\"439.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2196.3\" cy=\"97.9686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1545.49\" cy=\"1193.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1440.68\" cy=\"244.254\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"654.783\" cy=\"936.236\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"863.628\" cy=\"1313.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1590.35\" cy=\"1160.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1119.27\" cy=\"1064.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1101.15\" cy=\"344.267\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"793.93\" cy=\"1339.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1098.44\" cy=\"377.003\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"861.983\" cy=\"822.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2060.93\" cy=\"632.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2234.51\" cy=\"107.713\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"824.029\" cy=\"962.529\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1470.87\" cy=\"482.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1358.38\" cy=\"255.881\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1595.16\" cy=\"704.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"652.416\" cy=\"944.589\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1092.13\" cy=\"414.218\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"784.664\" cy=\"895.162\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1024.77\" cy=\"1008.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"595.149\" cy=\"921.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2087\" cy=\"115.688\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1084.43\" cy=\"1309.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1434.14\" cy=\"1121.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1552.52\" cy=\"1172.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1968.43\" cy=\"151.872\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1546.43\" cy=\"486.198\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1765.71\" cy=\"640.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1589.78\" cy=\"229.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1520.01\" cy=\"1223.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"742.191\" cy=\"916.743\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1064.65\" cy=\"1032.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1139.79\" cy=\"783.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"853.369\" cy=\"1315.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1721.46\" cy=\"548.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"510.748\" cy=\"1404.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"588.558\" cy=\"1373.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1496.09\" cy=\"1203.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1754.16\" cy=\"593.514\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1296.35\" cy=\"449.852\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"874.526\" cy=\"402.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2150.13\" cy=\"111.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2023.49\" cy=\"599.524\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1292.29\" cy=\"1249.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"753.644\" cy=\"997.473\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"912.131\" cy=\"802.038\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1963.3\" cy=\"621.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1321.5\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2149.67\" cy=\"131.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1243.07\" cy=\"1262.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1499.47\" cy=\"1087.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"938.382\" cy=\"1004.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1189.75\" cy=\"786.848\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1504.27\" cy=\"1213.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"547.116\" cy=\"1402.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1253.94\" cy=\"754.868\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"976.61\" cy=\"364.612\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1613.26\" cy=\"706.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"728.288\" cy=\"1350.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2109.85\" cy=\"140.084\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1395.43\" cy=\"1244.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1091.71\" cy=\"437.989\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1159.82\" cy=\"449.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1545.65\" cy=\"1192.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1885.91\" cy=\"170.347\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1909.99\" cy=\"572.815\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"540.046\" cy=\"880.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"944.893\" cy=\"1024.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1415.93\" cy=\"500.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1761.85\" cy=\"552.607\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1120.57\" cy=\"413.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1446.38\" cy=\"1106.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1651.91\" cy=\"684.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"911.129\" cy=\"846.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2170.98\" cy=\"134.799\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1478.38\" cy=\"506.948\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2079.36\" cy=\"142.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1094.23\" cy=\"397.239\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"817.965\" cy=\"1329.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1386.77\" cy=\"493.103\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"851.398\" cy=\"914.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"664.369\" cy=\"897.862\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1020.94\" cy=\"400.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"516.694\" cy=\"1394.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1292.7\" cy=\"754.631\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1661.83\" cy=\"531.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1596.93\" cy=\"1141.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1395.82\" cy=\"1252.13\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1207.54\" cy=\"458.172\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1315.79\" cy=\"777.027\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1122.91\" cy=\"1290.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"848.143\" cy=\"970.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1385.98\" cy=\"1099.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"952.118\" cy=\"339.218\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1802.22\" cy=\"679.845\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"822.97\" cy=\"978.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1344.02\" cy=\"1201.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1108.94\" cy=\"782.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1639.76\" cy=\"1150.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1803.8\" cy=\"578.171\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1683.91\" cy=\"680.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1883.92\" cy=\"662.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1460.4\" cy=\"758.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"739.443\" cy=\"967.707\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1631.4\" cy=\"546.036\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"2202.92\" cy=\"115.307\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1101.72\" cy=\"267.035\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip822)\" cx=\"1441.37\" cy=\"255.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"3.2\"/>\n",
"<path clip-path=\"url(#clip820)\" d=\"\n",
"M1986.32 198.898 L2280.29 198.898 L2280.29 95.2176 L1986.32 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1986.32,198.898 2280.29,198.898 2280.29,95.2176 1986.32,95.2176 1986.32,198.898 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip820)\" cx=\"2082.94\" cy=\"147.058\" r=\"23\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.2\" stroke=\"#000000\" stroke-opacity=\"0.2\" stroke-width=\"5.12\"/>\n",
"<path clip-path=\"url(#clip820)\" d=\"M2193.4 166.745 Q2191.59 171.375 2189.88 172.787 Q2188.17 174.199 2185.29 174.199 L2181.89 174.199 L2181.89 170.634 L2184.39 170.634 Q2186.15 170.634 2187.12 169.8 Q2188.1 168.967 2189.28 165.865 L2190.04 163.921 L2179.55 138.412 L2184.07 138.412 L2192.17 158.689 L2200.27 138.412 L2204.79 138.412 L2193.4 166.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2212.08 160.402 L2219.72 160.402 L2219.72 134.037 L2211.41 135.703 L2211.41 131.444 L2219.67 129.778 L2224.35 129.778 L2224.35 160.402 L2231.98 160.402 L2231.98 164.338 L2212.08 164.338 L2212.08 160.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"scatter(transpose(y), transpose(x), alpha=0.2)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "iI1AeG2NDmAa"
},
"source": [
"Let's use the same network to try and with this inverted data:"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"id": "vmMjfa8nDmAa",
"outputId": "915b063c-1d56-4a25-e076-4c73ee201391"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"loss(x, y) = 2.6277055209793185\n",
"loss(x, y) = 34.376074514701926\n",
"loss(x, y) = NaN\n"
]
}
],
"source": [
"n_epochs = 3000\n",
"data = Iterators.repeated((y,x), n_epochs)\n",
"Flux.train!(loss, pars, data, opt, cb=Flux.throttle(evalcb, 1))"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"id": "nZpU3a6tDmAb",
"outputId": "477a9749-1239-4804-c1b0-4a2cade7615d"
},
"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=\"clip860\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip860)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip861\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip860)\" d=\"\n",
"M178.867 1486.45 L2352.76 1486.45 L2352.76 47.2441 L178.867 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip862\">\n",
" <rect x=\"178\" y=\"47\" width=\"2175\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 240.392,1486.45 240.392,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 582.198,1486.45 582.198,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 924.005,1486.45 924.005,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1265.81,1486.45 1265.81,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1607.62,1486.45 1607.62,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1949.42,1486.45 1949.42,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2291.23,1486.45 2291.23,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 178.867,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 240.392,1486.45 240.392,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 582.198,1486.45 582.198,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 924.005,1486.45 924.005,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1265.81,1486.45 1265.81,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1607.62,1486.45 1607.62,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1949.42,1486.45 1949.42,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.23,1486.45 2291.23,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip860)\" d=\"M194.952 1532.02 L224.628 1532.02 L224.628 1535.95 L194.952 1535.95 L194.952 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M235.531 1544.91 L243.17 1544.91 L243.17 1518.55 L234.859 1520.21 L234.859 1515.95 L243.123 1514.29 L247.799 1514.29 L247.799 1544.91 L255.438 1544.91 L255.438 1548.85 L235.531 1548.85 L235.531 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M264.929 1514.29 L283.285 1514.29 L283.285 1518.22 L269.211 1518.22 L269.211 1526.7 Q270.23 1526.35 271.248 1526.19 Q272.267 1526 273.285 1526 Q279.072 1526 282.452 1529.17 Q285.831 1532.34 285.831 1537.76 Q285.831 1543.34 282.359 1546.44 Q278.887 1549.52 272.568 1549.52 Q270.392 1549.52 268.123 1549.15 Q265.878 1548.78 263.47 1548.04 L263.47 1543.34 Q265.554 1544.47 267.776 1545.03 Q269.998 1545.58 272.475 1545.58 Q276.48 1545.58 278.818 1543.48 Q281.155 1541.37 281.155 1537.76 Q281.155 1534.15 278.818 1532.04 Q276.48 1529.94 272.475 1529.94 Q270.6 1529.94 268.725 1530.35 Q266.873 1530.77 264.929 1531.65 L264.929 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M536.261 1532.02 L565.937 1532.02 L565.937 1535.95 L536.261 1535.95 L536.261 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M576.84 1544.91 L584.478 1544.91 L584.478 1518.55 L576.168 1520.21 L576.168 1515.95 L584.432 1514.29 L589.108 1514.29 L589.108 1544.91 L596.747 1544.91 L596.747 1548.85 L576.84 1548.85 L576.84 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M616.191 1517.37 Q612.58 1517.37 610.751 1520.93 Q608.946 1524.47 608.946 1531.6 Q608.946 1538.71 610.751 1542.27 Q612.58 1545.82 616.191 1545.82 Q619.825 1545.82 621.631 1542.27 Q623.46 1538.71 623.46 1531.6 Q623.46 1524.47 621.631 1520.93 Q619.825 1517.37 616.191 1517.37 M616.191 1513.66 Q622.001 1513.66 625.057 1518.27 Q628.136 1522.85 628.136 1531.6 Q628.136 1540.33 625.057 1544.94 Q622.001 1549.52 616.191 1549.52 Q610.381 1549.52 607.302 1544.94 Q604.247 1540.33 604.247 1531.6 Q604.247 1522.85 607.302 1518.27 Q610.381 1513.66 616.191 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M893.646 1532.02 L923.322 1532.02 L923.322 1535.95 L893.646 1535.95 L893.646 1532.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M933.461 1514.29 L951.817 1514.29 L951.817 1518.22 L937.743 1518.22 L937.743 1526.7 Q938.762 1526.35 939.78 1526.19 Q940.799 1526 941.817 1526 Q947.604 1526 950.984 1529.17 Q954.363 1532.34 954.363 1537.76 Q954.363 1543.34 950.891 1546.44 Q947.419 1549.52 941.1 1549.52 Q938.924 1549.52 936.655 1549.15 Q934.41 1548.78 932.002 1548.04 L932.002 1543.34 Q934.086 1544.47 936.308 1545.03 Q938.53 1545.58 941.007 1545.58 Q945.012 1545.58 947.35 1543.48 Q949.688 1541.37 949.688 1537.76 Q949.688 1534.15 947.35 1532.04 Q945.012 1529.94 941.007 1529.94 Q939.132 1529.94 937.257 1530.35 Q935.405 1530.77 933.461 1531.65 L933.461 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1265.81 1517.37 Q1262.2 1517.37 1260.37 1520.93 Q1258.57 1524.47 1258.57 1531.6 Q1258.57 1538.71 1260.37 1542.27 Q1262.2 1545.82 1265.81 1545.82 Q1269.45 1545.82 1271.25 1542.27 Q1273.08 1538.71 1273.08 1531.6 Q1273.08 1524.47 1271.25 1520.93 Q1269.45 1517.37 1265.81 1517.37 M1265.81 1513.66 Q1271.62 1513.66 1274.68 1518.27 Q1277.76 1522.85 1277.76 1531.6 Q1277.76 1540.33 1274.68 1544.94 Q1271.62 1549.52 1265.81 1549.52 Q1260 1549.52 1256.92 1544.94 Q1253.87 1540.33 1253.87 1531.6 Q1253.87 1522.85 1256.92 1518.27 Q1260 1513.66 1265.81 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1597.9 1514.29 L1616.25 1514.29 L1616.25 1518.22 L1602.18 1518.22 L1602.18 1526.7 Q1603.2 1526.35 1604.21 1526.19 Q1605.23 1526 1606.25 1526 Q1612.04 1526 1615.42 1529.17 Q1618.8 1532.34 1618.8 1537.76 Q1618.8 1543.34 1615.33 1546.44 Q1611.85 1549.52 1605.53 1549.52 Q1603.36 1549.52 1601.09 1549.15 Q1598.84 1548.78 1596.44 1548.04 L1596.44 1543.34 Q1598.52 1544.47 1600.74 1545.03 Q1602.97 1545.58 1605.44 1545.58 Q1609.45 1545.58 1611.78 1543.48 Q1614.12 1541.37 1614.12 1537.76 Q1614.12 1534.15 1611.78 1532.04 Q1609.45 1529.94 1605.44 1529.94 Q1603.57 1529.94 1601.69 1530.35 Q1599.84 1530.77 1597.9 1531.65 L1597.9 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1924.11 1544.91 L1931.75 1544.91 L1931.75 1518.55 L1923.44 1520.21 L1923.44 1515.95 L1931.7 1514.29 L1936.38 1514.29 L1936.38 1544.91 L1944.02 1544.91 L1944.02 1548.85 L1924.11 1548.85 L1924.11 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1963.46 1517.37 Q1959.85 1517.37 1958.02 1520.93 Q1956.22 1524.47 1956.22 1531.6 Q1956.22 1538.71 1958.02 1542.27 Q1959.85 1545.82 1963.46 1545.82 Q1967.1 1545.82 1968.9 1542.27 Q1970.73 1538.71 1970.73 1531.6 Q1970.73 1524.47 1968.9 1520.93 Q1967.1 1517.37 1963.46 1517.37 M1963.46 1513.66 Q1969.27 1513.66 1972.33 1518.27 Q1975.41 1522.85 1975.41 1531.6 Q1975.41 1540.33 1972.33 1544.94 Q1969.27 1549.52 1963.46 1549.52 Q1957.65 1549.52 1954.57 1544.94 Q1951.52 1540.33 1951.52 1531.6 Q1951.52 1522.85 1954.57 1518.27 Q1957.65 1513.66 1963.46 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2266.42 1544.91 L2274.05 1544.91 L2274.05 1518.55 L2265.74 1520.21 L2265.74 1515.95 L2274.01 1514.29 L2278.68 1514.29 L2278.68 1544.91 L2286.32 1544.91 L2286.32 1548.85 L2266.42 1548.85 L2266.42 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2295.81 1514.29 L2314.17 1514.29 L2314.17 1518.22 L2300.1 1518.22 L2300.1 1526.7 Q2301.11 1526.35 2302.13 1526.19 Q2303.15 1526 2304.17 1526 Q2309.96 1526 2313.34 1529.17 Q2316.72 1532.34 2316.72 1537.76 Q2316.72 1543.34 2313.24 1546.44 Q2309.77 1549.52 2303.45 1549.52 Q2301.28 1549.52 2299.01 1549.15 Q2296.76 1548.78 2294.36 1548.04 L2294.36 1543.34 Q2296.44 1544.47 2298.66 1545.03 Q2300.88 1545.58 2303.36 1545.58 Q2307.36 1545.58 2309.7 1543.48 Q2312.04 1541.37 2312.04 1537.76 Q2312.04 1534.15 2309.7 1532.04 Q2307.36 1529.94 2303.36 1529.94 Q2301.49 1529.94 2299.61 1530.35 Q2297.76 1530.77 2295.81 1531.65 L2295.81 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1414.73 2352.76,1414.73 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,1090.6 2352.76,1090.6 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,766.462 2352.76,766.462 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,442.328 2352.76,442.328 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 178.867,118.193 2352.76,118.193 \n",
" \"/>\n",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment