Skip to content

Instantly share code, notes, and snippets.

@matthewfeickert
Last active October 29, 2020 04:49
Show Gist options
  • Save matthewfeickert/f6e6e0472bddd8fc512e6b09e692320b to your computer and use it in GitHub Desktop.
Save matthewfeickert/f6e6e0472bddd8fc512e6b09e692320b to your computer and use it in GitHub Desktop.
Henry's hist demo
.ipynb_checkpoints/
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# `hist` Demo"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"> This notebook has been shared with the permisson of Henry Schreiner ([@henryiii](https://github.com/henryiii)) — lead dev of `hist` as well as many other Scikit-HEP projects.\n",
"> The contents of the notebook are the results of his live coding in an IRIS-HEP Analysis Systems meeting and demonstrate the flexibility and performance of `hist` and `boost-histogram` as core components of the Scikit-HEP visualization stack."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"My favorite demo notebook config setting:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%config InteractiveShell.ast_node_interactivity=\"last_expr_or_assign\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's import Hist:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"from hist import Hist\n",
"import numpy as np"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can use the classic constructors from boost-histogram, but let's use the new QuickConstruct system instead:"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<html>\n",
"<div style=\"display:flex; align-items:center;\">\n",
"<div style=\"width:290px;\">\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-10 -105 270 120\">\n",
"<line x1=\"-5\" y1=\"0\" x2=\"255\" y2=\"0\" style=\"fill:none;stroke-width:2;stroke:currentColor\"/>\n",
"<text text-anchor=\"middle\" x=\"0\" y=\"15\" style=\"fill:currentColor;\">\n",
"-10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"250\" y=\"15\" style=\"fill:currentColor;\">\n",
"10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"125.0\" y=\"15\" style=\"fill:currentColor;\">\n",
"x\n",
"</text>\n",
"<polyline points=\" 0,0 0,-0 2.5,-0 2.5,-0 5,-0 5,-0 7.5,-0 7.5,-0 10,-0 10,-0 12.5,-0 12.5,-0 15,-0 15,-0 17.5,-0 17.5,-0 20,-0 20,-0 22.5,-0 22.5,-0 25,-0 25,-0 27.5,-0 27.5,-0 30,-0 30,-0 32.5,-0 32.5,-0 35,-0 35,-0 37.5,-0 37.5,-0 40,-0 40,-0 42.5,-0 42.5,-0 45,-0 45,-0 47.5,-0 47.5,-0 50,-0 50,-0 52.5,-0 52.5,-0 55,-0 55,-0 57.5,-0 57.5,-0 60,-0 60,-0 62.5,-0 62.5,-0 65,-0 65,-0 67.5,-0 67.5,-0 70,-0 70,-0 72.5,-0 72.5,-0 75,-0 75,-0 77.5,-0 77.5,-0 80,-0 80,-0 82.5,-0 82.5,-0 85,-0 85,-0 87.5,-0 87.5,-0 90,-0 90,-0 92.5,-0 92.5,-0 95,-0 95,-0 97.5,-0 97.5,-0 100,-0 100,-0 102.5,-0 102.5,-0 105,-0 105,-0 107.5,-0 107.5,-0 110,-0 110,-0 112.5,-0 112.5,-0 115,-0 115,-0 117.5,-0 117.5,-0 120,-0 120,-0 122.5,-0 122.5,-0 125,-0 125,-0 127.5,-0 127.5,-0 130,-0 130,-0 132.5,-0 132.5,-0 135,-0 135,-0 137.5,-0 137.5,-0 140,-0 140,-0 142.5,-0 142.5,-0 145,-0 145,-0 147.5,-0 147.5,-0 150,-0 150,-0 152.5,-0 152.5,-0 155,-0 155,-0 157.5,-0 157.5,-0 160,-0 160,-0 162.5,-0 162.5,-0 165,-0 165,-0 167.5,-0 167.5,-0 170,-0 170,-0 172.5,-0 172.5,-0 175,-0 175,-0 177.5,-0 177.5,-0 180,-0 180,-0 182.5,-0 182.5,-0 185,-0 185,-0 187.5,-0 187.5,-0 190,-0 190,-0 192.5,-0 192.5,-0 195,-0 195,-0 197.5,-0 197.5,-0 200,-0 200,-0 202.5,-0 202.5,-0 205,-0 205,-0 207.5,-0 207.5,-0 210,-0 210,-0 212.5,-0 212.5,-0 215,-0 215,-0 217.5,-0 217.5,-0 220,-0 220,-0 222.5,-0 222.5,-0 225,-0 225,-0 227.5,-0 227.5,-0 230,-0 230,-0 232.5,-0 232.5,-0 235,-0 235,-0 237.5,-0 237.5,-0 240,-0 240,-0 242.5,-0 242.5,-0 245,-0 245,-0 247.5,-0 247.5,-0 250,-0 250,0\" style=\"fill:none; stroke:currentColor;\"/>\n",
"</svg>\n",
"</div>\n",
"<div style=\"flex=grow:1;\">\n",
"Regular(100, -10, 10, name='x', label='x')<br/>\n",
"<hr style=\"margin-top:.2em; margin-bottom:.2em;\"/>\n",
"Double() Σ=0.0\n",
"\n",
"</div>\n",
"</div>\n",
"</html>"
],
"text/plain": [
"Hist(Regular(100, -10, 10, name='x', label='x'), storage=Double())"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"h = Hist.new.Reg(100, -10, 10, name=\"x\").Double()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's fill it with some data:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<html>\n",
"<div style=\"display:flex; align-items:center;\">\n",
"<div style=\"width:290px;\">\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-10 -105 270 120\">\n",
"<line x1=\"-5\" y1=\"0\" x2=\"255\" y2=\"0\" style=\"fill:none;stroke-width:2;stroke:currentColor\"/>\n",
"<text text-anchor=\"middle\" x=\"0\" y=\"15\" style=\"fill:currentColor;\">\n",
"-10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"250\" y=\"15\" style=\"fill:currentColor;\">\n",
"10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"125.0\" y=\"15\" style=\"fill:currentColor;\">\n",
"x\n",
"</text>\n",
"<polyline points=\" 0,0 0,-0.146 2.5,-0.146 2.5,-0.157 5,-0.157 5,-0.262 7.5,-0.262 7.5,-0.322 10,-0.322 10,-0.285 12.5,-0.285 12.5,-0.465 15,-0.465 15,-0.577 17.5,-0.577 17.5,-0.671 20,-0.671 20,-0.739 22.5,-0.739 22.5,-1.07 25,-1.07 25,-1.07 27.5,-1.07 27.5,-1.39 30,-1.39 30,-1.93 32.5,-1.93 32.5,-2.18 35,-2.18 35,-2.71 37.5,-2.71 37.5,-2.99 40,-2.99 40,-3.66 42.5,-3.66 42.5,-4.19 45,-4.19 45,-4.99 47.5,-4.99 47.5,-6.2 50,-6.2 50,-7.16 52.5,-7.16 52.5,-8.54 55,-8.54 55,-9.61 57.5,-9.61 57.5,-11.1 60,-11.1 60,-12.7 62.5,-12.7 62.5,-14.1 65,-14.1 65,-17 67.5,-17 67.5,-18.2 70,-18.2 70,-20.7 72.5,-20.7 72.5,-23 75,-23 75,-26.3 77.5,-26.3 77.5,-29.3 80,-29.3 80,-32.5 82.5,-32.5 82.5,-35.2 85,-35.2 85,-39.5 87.5,-39.5 87.5,-42 90,-42 90,-46.4 92.5,-46.4 92.5,-50.3 95,-50.3 95,-54.8 97.5,-54.8 97.5,-58.5 100,-58.5 100,-62.6 102.5,-62.6 102.5,-67.1 105,-67.1 105,-70.5 107.5,-70.5 107.5,-74.3 110,-74.3 110,-78.9 112.5,-78.9 112.5,-80.9 115,-80.9 115,-84.9 117.5,-84.9 117.5,-87.9 120,-87.9 120,-90.3 122.5,-90.3 122.5,-93.3 125,-93.3 125,-94.8 127.5,-94.8 127.5,-96.6 130,-96.6 130,-98 132.5,-98 132.5,-99.7 135,-99.7 135,-99.7 137.5,-99.7 137.5,-98.7 140,-98.7 140,-100 142.5,-100 142.5,-98.8 145,-98.8 145,-97.8 147.5,-97.8 147.5,-95.7 150,-95.7 150,-93.8 152.5,-93.8 152.5,-90.2 155,-90.2 155,-88.3 157.5,-88.3 157.5,-84 160,-84 160,-80.9 162.5,-80.9 162.5,-78.2 165,-78.2 165,-74.1 167.5,-74.1 167.5,-70.9 170,-70.9 170,-66.9 172.5,-66.9 172.5,-62.9 175,-62.9 175,-58.6 177.5,-58.6 177.5,-54.2 180,-54.2 180,-50.2 182.5,-50.2 182.5,-45.8 185,-45.8 185,-42.9 187.5,-42.9 187.5,-39.4 190,-39.4 190,-35.6 192.5,-35.6 192.5,-32.2 195,-32.2 195,-29.8 197.5,-29.8 197.5,-26.5 200,-26.5 200,-23.7 202.5,-23.7 202.5,-21 205,-21 205,-18.6 207.5,-18.6 207.5,-16.2 210,-16.2 210,-14.3 212.5,-14.3 212.5,-13 215,-13 215,-11.1 217.5,-11.1 217.5,-9.53 220,-9.53 220,-8.36 222.5,-8.36 222.5,-7.26 225,-7.26 225,-5.89 227.5,-5.89 227.5,-5.28 230,-5.28 230,-4.34 232.5,-4.34 232.5,-3.68 235,-3.68 235,-3.22 237.5,-3.22 237.5,-2.29 240,-2.29 240,-2.2 242.5,-2.2 242.5,-1.8 245,-1.8 245,-1.54 247.5,-1.54 247.5,-1.22 250,-1.22 250,0\" style=\"fill:none; stroke:currentColor;\"/>\n",
"</svg>\n",
"</div>\n",
"<div style=\"flex=grow:1;\">\n",
"Regular(100, -10, 10, name='x', label='x')<br/>\n",
"<hr style=\"margin-top:.2em; margin-bottom:.2em;\"/>\n",
"Double() Σ=998537.0 <em>(1000000.0 with flow)</em>\n",
"\n",
"</div>\n",
"</div>\n",
"</html>"
],
"text/plain": [
"Hist(Regular(100, -10, 10, name='x', label='x'), storage=Double()) # Sum: 998537.0 (1000000.0 with flow)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"h.fill(np.random.normal(1, 3, 1_000_000))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"And you can keep filling:"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<html>\n",
"<div style=\"display:flex; align-items:center;\">\n",
"<div style=\"width:290px;\">\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-10 -105 270 120\">\n",
"<line x1=\"-5\" y1=\"0\" x2=\"255\" y2=\"0\" style=\"fill:none;stroke-width:2;stroke:currentColor\"/>\n",
"<text text-anchor=\"middle\" x=\"0\" y=\"15\" style=\"fill:currentColor;\">\n",
"-10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"250\" y=\"15\" style=\"fill:currentColor;\">\n",
"10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"125.0\" y=\"15\" style=\"fill:currentColor;\">\n",
"x\n",
"</text>\n",
"<polyline points=\" 0,0 0,-0.146 2.5,-0.146 2.5,-0.157 5,-0.157 5,-0.262 7.5,-0.262 7.5,-0.322 10,-0.322 10,-0.285 12.5,-0.285 12.5,-0.465 15,-0.465 15,-0.577 17.5,-0.577 17.5,-0.671 20,-0.671 20,-0.738 22.5,-0.738 22.5,-1.07 25,-1.07 25,-1.07 27.5,-1.07 27.5,-1.39 30,-1.39 30,-1.93 32.5,-1.93 32.5,-2.19 35,-2.19 35,-2.72 37.5,-2.72 37.5,-3.01 40,-3.01 40,-3.69 42.5,-3.69 42.5,-4.29 45,-4.29 45,-5.12 47.5,-5.12 47.5,-6.45 50,-6.45 50,-7.59 52.5,-7.59 52.5,-9.23 55,-9.23 55,-11 57.5,-11 57.5,-13.3 60,-13.3 60,-15.9 62.5,-15.9 62.5,-19.2 65,-19.2 65,-23.8 67.5,-23.8 67.5,-27.9 70,-27.9 70,-33.7 72.5,-33.7 72.5,-39.5 75,-39.5 75,-46.2 77.5,-46.2 77.5,-52.7 80,-52.7 80,-58.5 82.5,-58.5 82.5,-63.7 85,-63.7 85,-68.6 87.5,-68.6 87.5,-72 90,-72 90,-75.7 92.5,-75.7 92.5,-76.3 95,-76.3 95,-78.2 97.5,-78.2 97.5,-78.5 100,-78.5 100,-79.1 102.5,-79.1 102.5,-80 105,-80 105,-80 107.5,-80 107.5,-81.3 110,-81.3 110,-83.9 112.5,-83.9 112.5,-84.3 115,-84.3 115,-86.9 117.5,-86.9 117.5,-89.2 120,-89.2 120,-91.1 122.5,-91.1 122.5,-93.8 125,-93.8 125,-95.1 127.5,-95.1 127.5,-96.7 130,-96.7 130,-98.1 132.5,-98.1 132.5,-99.8 135,-99.8 135,-99.7 137.5,-99.7 137.5,-98.7 140,-98.7 140,-100 142.5,-100 142.5,-98.7 145,-98.7 145,-97.8 147.5,-97.8 147.5,-95.7 150,-95.7 150,-93.8 152.5,-93.8 152.5,-90.2 155,-90.2 155,-88.3 157.5,-88.3 157.5,-83.9 160,-83.9 160,-80.9 162.5,-80.9 162.5,-78.2 165,-78.2 165,-74.1 167.5,-74.1 167.5,-70.9 170,-70.9 170,-66.9 172.5,-66.9 172.5,-62.9 175,-62.9 175,-58.6 177.5,-58.6 177.5,-54.2 180,-54.2 180,-50.2 182.5,-50.2 182.5,-45.8 185,-45.8 185,-42.9 187.5,-42.9 187.5,-39.4 190,-39.4 190,-35.6 192.5,-35.6 192.5,-32.2 195,-32.2 195,-29.8 197.5,-29.8 197.5,-26.5 200,-26.5 200,-23.7 202.5,-23.7 202.5,-21 205,-21 205,-18.6 207.5,-18.6 207.5,-16.2 210,-16.2 210,-14.3 212.5,-14.3 212.5,-13 215,-13 215,-11.1 217.5,-11.1 217.5,-9.53 220,-9.53 220,-8.36 222.5,-8.36 222.5,-7.26 225,-7.26 225,-5.89 227.5,-5.89 227.5,-5.28 230,-5.28 230,-4.34 232.5,-4.34 232.5,-3.68 235,-3.68 235,-3.22 237.5,-3.22 237.5,-2.29 240,-2.29 240,-2.2 242.5,-2.2 242.5,-1.8 245,-1.8 245,-1.54 247.5,-1.54 247.5,-1.22 250,-1.22 250,0\" style=\"fill:none; stroke:currentColor;\"/>\n",
"</svg>\n",
"</div>\n",
"<div style=\"flex=grow:1;\">\n",
"Regular(100, -10, 10, name='x', label='x')<br/>\n",
"<hr style=\"margin-top:.2em; margin-bottom:.2em;\"/>\n",
"Double() Σ=1098537.0 <em>(1100000.0 with flow)</em>\n",
"\n",
"</div>\n",
"</div>\n",
"</html>"
],
"text/plain": [
"Hist(Regular(100, -10, 10, name='x', label='x'), storage=Double()) # Sum: 1098537.0 (1100000.0 with flow)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"h.fill(np.random.normal(-3, 1, 100_000))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can plot (uses mplhep in the backend):"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAYMAAAEGCAYAAACHGfl5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAYY0lEQVR4nO3df6ycV3ng8e9ThwQESWPHrmvspDa73mpNpJpwN0627CpLWuNEqBdWbHCyIgYiHEqiBamrxcCqiQhow+5CBRINMcVKUhHsbIG1hcwakwahqsTYTk0SO9Bc8oPYcmyDQ0yFljbss3/MuTdvbmbunbl3fs/3I43uO+d9Z+bMO3PnmXOec85EZiJJGm2/0esKSJJ6z2AgSTIYSJIMBpIkDAaSJOCsXldgrhYvXpwrV67sdTUkaaAcPHjwp5m5ZHr5wAaDlStXcuDAgV5XQ5IGSkQ8Xa/cbiJJksFAkmQwkCRhMJAkYTCQJGEwkCRhMJAkYTCQJDHAk86kQXXvvp+w89CxuvvG1y7nunUXveyYyXKpU2wZSF2289Axjhw/87LyI8fPTAWA6jHVcqlTbBlIPbBm2XnsuPHyl5S9887vceT4mam/k8dUy8FWgjrDYCD1ifG1y6e21yw7b+p6tXyytWAwULvFoP4G8tjYWLpQnQZFNQdQ/dbfqmqrAWwlqHURcTAzx6aXmzOQuqCaA6h+62/V+NrlU4HAXILayW4iqUvm2hqoum7dRVMtgckcgtQOBgOpQ+p1DUn9ym4iqUPa1TUkdYMtA6mD2tE1NJPqkFMwoay5MxhIbdTNrqHpLQ2HnWo+Zu0miogLI+KBiDgSEYcj4oOl/NaIOBYRh8rl6sptPhIRExHxo4h4S6V8QymbiIgtlfJVEbGvlO+IiLPb/USlbuhm19B16y5ix42XT13MSWg+mmkZvAD8SWY+FBHnAgcjYm/Z92eZ+T+rB0fEGmAj8HrgtcC3I+JflN2fB/4QOArsj4hdmXkE+FS5r+0R8QXgBuCO+T45qRc63TUkdcKswSAzjwPHy/YvIuIxYKavO+PA9sz8FfBkREwAl5Z9E5n5BEBEbAfGy/29GbiuHHM3cCsGAw2Ifho15LIVmquWRhNFxErgDcC+UnRzRDwcEdsiYmEpWw48U7nZ0VLWqPwC4OeZ+cK08nqPvzkiDkTEgVOnTrVSdalj+mXUkBPSNB9NJ5Aj4jXAV4EPZeaZiLgDuA3I8vfTwHs7UssiM7cCW6G2HEUnH0tqRT90DTkhTfPRVDCIiFdQCwRfzsyvAWTmicr+LwLfKFePARdWbr6ilNGg/GfA+RFxVmkdVI+XJHVBM6OJAvgS8FhmfqZSvqxy2NuBR8v2LmBjRJwTEauA1cD3gf3A6jJy6GxqSeZdWVsp7wHgHeX2m4Cd83takqRWNNMy+H3gXcAjEXGolH0UuDYi1lLrJnoKuBEgMw9HxH3AEWojkW7KzF8DRMTNwB5gAbAtMw+X+/swsD0iPgH8HbXgI/WtfkoaS+3QzGiivwGizq7dM9zmk8An65Tvrne7MsLo0unlUr+aTBqvWXaeS01oKDgDWZqjfkgaz8RhpmqFwUAaQv46mlplMJCaNEh5AoeZqlUuYS01qV8ml0mdYMtAakG/5wkaMX+g2RgMpCFn/kDNMBhIQ878gZphMJBmMEhJY2k+TCBLMzBprFFhy0CaxaAmjaVW2DKQJBkMJEl2E0kvY9JYo8hgIPHSALDvydMArFu1aCiTxk5AUz0GA4mXLkm9btWiof2QdAKaGjEYSMUojBpyApoaMYEsSTIYSJLsJtIIc9SQ9CKDgUaWv2PsyCK9yGCgkTYKSeNGHFmkKoOBhl61O6hq1LuGHFmkKhPIGnrVlUerRrVrSKrHloGGUr3k8Kh2B0nNMBhoaIzSkhJSuxkMNNAaBYBhXlKiUxxZNNoMBhpoo7KmUKc5skgGAw088wHz58giOZpIkjR7MIiICyPigYg4EhGHI+KDpXxRROyNiMfL34WlPCLicxExEREPR8QllfvaVI5/PCI2VcrfGBGPlNt8LiKiE09Ww+HefT/hnXd+j3fe+b26Q0Ylta6ZbqIXgD/JzIci4lzgYETsBd4N3J+Zt0fEFmAL8GHgKmB1uawD7gDWRcQi4BZgDMhyP7sy87lyzPuAfcBuYAPwzfY9TQ2y6ZPGHCkktd+swSAzjwPHy/YvIuIxYDkwDlxRDrsb+A61YDAO3JOZCTwYEedHxLJy7N7MPA1QAsqGiPgOcF5mPljK7wHehsFARTVJDJgoljqgpQRyRKwE3kDtG/zSEigAngWWlu3lwDOVmx0tZTOVH61TLk0xSSx1VtPBICJeA3wV+FBmnql262dmRkR2oH7T67AZ2Axw0UV+K5Q6xTkHo6ep0UQR8QpqgeDLmfm1UnyidP9Q/p4s5ceACys3X1HKZipfUaf8ZTJza2aOZebYkiVLmqm6pBaNr10+1SV35PiZuov8afg0M5oogC8Bj2XmZyq7dgGTI4I2ATsr5deXUUWXAc+X7qQ9wPqIWFhGHq0H9pR9ZyLisvJY11fuS1KXXbfuInbceDk7brx8pFd1HTXNdBP9PvAu4JGIOFTKPgrcDtwXETcATwPXlH27gauBCeCXwHsAMvN0RNwG7C/HfXwymQx8ALgLeBW1xLHJY0nqomZGE/0N0Gjc/5V1jk/gpgb3tQ3YVqf8AHDxbHWRJHWGy1GoL/n7xFJ3uRyF+lL1B2mcWCZ1ni0D9S3nFvQHh5mOBoOBpIZc2np0GAwkNeTS1qPDnIEkyWAgSbKbSH3E4aRS79gyUN9wOKnUO7YM1FccTir1hsFAUtOcczC8DAaSmuKcg+FmMJDUFOccDDcTyJIkg4EkyWAgScJgIEnCBLJ6zFnHUn8wGKinJmcdr1l2nrOOB4xzDoaLwUA956zjweOcg+FjMJDUMuccDB8TyJIkg4EkyWAgScJgIEnCYCBJwmAgScJgIEnCeQbqAZegGD7ORh58tgzUdf7w/XAZX7t8KqAfOX5mKtBrsMzaMoiIbcBbgZOZeXEpuxV4H3CqHPbRzNxd9n0EuAH4NfCfMnNPKd8AfBZYAPxFZt5eylcB24ELgIPAuzLzH9v1BNWfXIJieDgbeTg00zK4C9hQp/zPMnNtuUwGgjXARuD15TZ/HhELImIB8HngKmANcG05FuBT5b7+OfActUAiSeqiWYNBZn4XON3k/Y0D2zPzV5n5JDABXFouE5n5RPnWvx0Yj4gA3gz8Vbn93cDbWnsKkqT5mk/O4OaIeDgitkXEwlK2HHimcszRUtao/ALg55n5wrTyuiJic0QciIgDp06danSYJKlFcw0GdwD/DFgLHAc+3a4KzSQzt2bmWGaOLVmypBsPKUkjYU5DSzPzxOR2RHwR+Ea5egy4sHLoilJGg/KfAedHxFmldVA9XpLUJXNqGUTEssrVtwOPlu1dwMaIOKeMEloNfB/YD6yOiFURcTa1JPOuzEzgAeAd5fabgJ1zqZMkae6aGVr6FeAKYHFEHAVuAa6IiLVAAk8BNwJk5uGIuA84ArwA3JSZvy73czOwh9rQ0m2Zebg8xIeB7RHxCeDvgC+168lJ6j4noA2mWYNBZl5bp7jhB3ZmfhL4ZJ3y3cDuOuVPUBttJGnA+XOYg8vlKCS1jRPQBpfBQF3hekRSf3NtInWF6xFJ/c2WgbrG9Yik/mXLQJJkMJAk2U0kqYOcczA4DAaSOsI5B4PFYCCpI5xzMFjMGUiSDAaSJIOBJAmDgSQJg4EkCUcTqYNcnE4aHAYDdczk4nRrlp3n4nRyAlqfMxioo1ycTuAEtEFgMJDUcU5A638mkCVJBgNJksFAkoQ5A0k94Mii/mMwkNRVjizqTwYDSV3lyKL+ZM5AkmQwkCQZDCRJGAwkSZhAVpu5Uqla5TDT/mDLQG01uVIp4EqlmtX42uVTXxiOHD8z9UVC3TdryyAitgFvBU5m5sWlbBGwA1gJPAVck5nPRUQAnwWuBn4JvDszHyq32QT813K3n8jMu0v5G4G7gFcBu4EPZma26fmpB1ypVM1ymGn/aKZlcBewYVrZFuD+zFwN3F+uA1wFrC6XzcAdMBU8bgHWAZcCt0TEwnKbO4D3VW43/bEkSR02azDIzO8Cp6cVjwN3l+27gbdVyu/JmgeB8yNiGfAWYG9mns7M54C9wIay77zMfLC0Bu6p3JckqUvmmjNYmpnHy/azwNKyvRx4pnLc0VI2U/nROuV1RcTmiDgQEQdOnTo1x6pLkqabdwK5fKPvSh9/Zm7NzLHMHFuyZEk3HlKSRsJcg8GJ0sVD+XuylB8DLqwct6KUzVS+ok65JKmL5hoMdgGbyvYmYGel/PqouQx4vnQn7QHWR8TCkjheD+wp+85ExGVlJNL1lfuSNGIm5xy8887vce++n/S6OiOlmaGlXwGuABZHxFFqo4JuB+6LiBuAp4FryuG7qQ0rnaA2tPQ9AJl5OiJuA/aX4z6emZNJ6Q/w4tDSb5aLpBHj0ta9NWswyMxrG+y6ss6xCdzU4H62AdvqlB8ALp6tHpKGm3MOessZyJIk1ybS/LkekTT4bBlo3lyPSBp8tgzUFq5HJA02g4GkvuTS1t1lMJDUdxxm2n0GA0l9x2Gm3WcCWZJkMJAk2U0kaQCYTO48g4GkvmYyuTsMBpL6msnk7jBnIEmyZaC5cT0iabjYMtCcuB6RNFxsGWjOXI9IGh4GA0kDxWGmnWEwkDQwHGbaOQYDSQPDYaadYwJZkmQwkCTZTaQWOLdAGl4GAzVtcm7BmmXnObdAfcGRRe1jMFBLnFugfuHIovYyGEgaSI4sai8TyJIkg4EkyW4iSUPCZPL8GAwkDTyTyfNnMJA08Ewmz9+8cgYR8VREPBIRhyLiQClbFBF7I+Lx8ndhKY+I+FxETETEwxFxSeV+NpXjH4+ITfN7SpKkVrWjZfDvMvOnletbgPsz8/aI2FKufxi4ClhdLuuAO4B1EbEIuAUYAxI4GBG7MvO5NtRN8+SsY2k0dKKbaBy4omzfDXyHWjAYB+7JzAQejIjzI2JZOXZvZp4GiIi9wAbgKx2om1rkrGMNomoyGUwoN2O+wSCBb0VEAndm5lZgaWYeL/ufBZaW7eXAM5XbHi1ljcpfJiI2A5sBLrrIF7ZbnHWsQTL9C4sJ5ebMNxi8KTOPRcRvAXsj4ofVnZmZJVC0RQk2WwHGxsbadr+Shkc1mQwmlJs1rwRyZh4rf08CXwcuBU6U7h/K35Pl8GPAhZWbryhljcolSV0y52AQEa+OiHMnt4H1wKPALmByRNAmYGfZ3gVcX0YVXQY8X7qT9gDrI2JhGXm0vpRJkrpkPt1ES4GvR8Tk/dybmf8nIvYD90XEDcDTwDXl+N3A1cAE8EvgPQCZeToibgP2l+M+PplMlqR2cHby7OYcDDLzCeD36pT/DLiyTnkCNzW4r23AtrnWRe3lcFINE2cnN8cZyHoZh5NqmDg7uTkGA9XlcFJptBgMJI0U8wf1GQwkjQzzB40ZDASYNNZoMH/QmMFAgEljjSa7jF5kMNAUk8YaJXYZvZTBQNJIssvopea1NpEkaTjYMhhhJo2lF416/sCWwQibTBoDJo010sbXLp/6MnTk+JmpL0mjxJbBiDNpLJk/AIOBJL3MKHYZGQxGjHkCaWajOuTUYDBinFwmzWx6l9GotBIMBiPIPIHUnFFqJRgMRoBdQ9LcjFJi2WAwAuwaktpjmLuMDAZDql5rwK4hae6GvcvIYDCkbA1I7TXsXUYGgyFma0DqnGHrMjIYDBETxVJ3VFva+548zb4nT0/97w1qYDAYDBG7hqTuqHYZTf8SNrl/0ERm9roOczI2NpYHDhzodTV6zkSx1D8mJ6lNtsr7sZUQEQczc2x6uS2DAVQNAPuePA3AulWLbA1IPTbI3Ue2DAbQIHz7kEZdoy9t0Nv/WVsGA6j6ZqqyO0jqf4OWVzAY9JHpH/7Tv01MsjtIGiwzLX5X1csWg8Ggx2ZqSq5btcguIGnINPoi1+scgzmDHujXvkRJvTPT50LVfD8j+j5nEBEbgM8CC4C/yMzbe1ylpjXq22+k+kL77V8SNM4xVHUy39AXwSAiFgCfB/4QOArsj4hdmXmk3Y/V6gd3M2aK4vUYACTNpBoYqjq5JlJfBAPgUmAiM58AiIjtwDjQ9mCw89Ax9j15uukP7mb44S5p0PVLMFgOPFO5fhRYN/2giNgMbC5X/yEifjTHx1v8NPx0jret6z7gP87/bhbT5nq1ifVqjfVqjfVqzeL73j+vev1OvcJ+CQZNycytwNb53k9EHKiXQOk169Ua69Ua69WaUavXb7T7DufoGHBh5fqKUiZJ6oJ+CQb7gdURsSoizgY2Art6XCdJGhl90U2UmS9ExM3AHmpDS7dl5uEOPuS8u5o6xHq1xnq1xnq1ZqTqNbCTziRJ7dMv3USSpB4yGEiShjcYRMR/iIjDEfH/ImJs2r6PRMRERPwoIt7S4ParImJfOW5HSWy3u447IuJQuTwVEYcaHPdURDxSjuv4gkwRcWtEHKvU7eoGx20o53AiIrZ0oV7/IyJ+GBEPR8TXI+L8Bsd15XzN9vwj4pzyGk+U99LKTtWl8pgXRsQDEXGkvP8/WOeYKyLi+crr+6edrld53Blfl6j5XDlfD0fEJV2o0+9WzsOhiDgTER+adkxXzldEbIuIkxHxaKVsUUTsjYjHy9+FDW67qRzzeERsmlMFMnMoL8C/BH4X+A4wVilfA/wAOAdYBfwYWFDn9vcBG8v2F4A/7nB9Pw38aYN9TwGLu3jubgX+8yzHLCjn7nXA2eWcrulwvdYDZ5XtTwGf6tX5aub5Ax8AvlC2NwI7uvDaLQMuKdvnAn9fp15XAN/o1vup2dcFuBr4JhDAZcC+LtdvAfAs8Du9OF/AvwUuAR6tlP13YEvZ3lLvPQ8sAp4ofxeW7YWtPv7Qtgwy87HMrDdDeRzYnpm/yswngQlqy2FMiYgA3gz8VSm6G3hbp+paHu8a4CudeowOmFpCJDP/EZhcQqRjMvNbmflCufogtfkovdLM8x+n9t6B2nvpyvJad0xmHs/Mh8r2L4DHqM3wHwTjwD1Z8yBwfkQs6+LjXwn8ODOf7uJjTsnM7wKnpxVX30ONPofeAuzNzNOZ+RywF9jQ6uMPbTCYQb2lL6b/s1wA/LzywVPvmHb6N8CJzHy8wf4EvhURB8uSHN1wc2mqb2vQNG3mPHbSe6l9i6ynG+ermec/dUx5Lz1P7b3VFaVb6g3Avjq7L4+IH0TENyPi9V2q0myvS6/fUxtp/IWsF+cLYGlmHi/bzwJL6xzTlvPWF/MM5ioivg38dp1dH8vMnd2uTz1N1vFaZm4VvCkzj0XEbwF7I+KH5VtER+oF3AHcRu2f9zZqXVjvnc/jtaNek+crIj4GvAB8ucHdtP18DZqIeA3wVeBDmXlm2u6HqHWF/EPJB/1vYHUXqtW3r0vJCf4R8JE6u3t1vl4iMzMiOjYXYKCDQWb+wRxu1szSFz+j1kQ9q3yjm/PyGLPVMSLOAv498MYZ7uNY+XsyIr5OrYtiXv9EzZ67iPgi8I06uzqyhEgT5+vdwFuBK7N0mNa5j7afrzqaef6Txxwtr/NvUntvdVREvIJaIPhyZn5t+v5qcMjM3RHx5xGxODM7uihbE69LL5eluQp4KDNPTN/Rq/NVnIiIZZl5vHSZnaxzzDFqeY1JK6jlSlsyit1Eu4CNZaTHKmoR/vvVA8qHzAPAO0rRJqBTLY0/AH6YmUfr7YyIV0fEuZPb1JKoj9Y7tl2m9dO+vcHjdX0Jkaj9ANJ/Af4oM3/Z4Jhuna9mnv8uau8dqL2X/rpRAGuXkpP4EvBYZn6mwTG/PZm7iIhLqX0OdDRINfm67AKuL6OKLgOer3SRdFrD1nkvzldF9T3U6HNoD7A+IhaWLt31paw1nc6Q9+pC7UPsKPAr4ASwp7LvY9RGgvwIuKpSvht4bdl+HbUgMQH8L+CcDtXzLuD908peC+yu1OMH5XKYWndJp8/dXwKPAA+XN+Oy6fUq16+mNlrlx12q1wS1vtFD5fKF6fXq5vmq9/yBj1MLVgCvLO+difJeel0XztGbqHXvPVw5T1cD7598nwE3l3PzA2qJ+H/dhXrVfV2m1Suo/cjVj8v7b6zT9SqP+2pqH+6/WSnr+vmiFoyOA/9UPrtuoJZjuh94HPg2sKgcO0btFyEnb/ve8j6bAN4zl8d3OQpJ0kh2E0mSpjEYSJIMBpIkg4EkCYOBJAmDgSQJg4EkCYOB1BYR8a/Kwn6vLLNtD0fExb2ul9QsJ51JbRIRn6A26/hVwNHM/G89rpLUNIOB1CZljaL9wP+ltmTBr3tcJalpdhNJ7XMB8BpqvzD2yh7XRWqJLQOpTSJiF7VfPFtFbXG/m3tcJalpA/17BlK/iIjrgX/KzHsjYgHwtxHx5sz8617XTWqGLQNJkjkDSZLBQJKEwUCShMFAkoTBQJKEwUCShMFAkgT8f6YajOkIzUEUAAAAAElFTkSuQmCC\n",
"text/plain": [
"<Figure size 432x288 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"h.plot();"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We also have direct access to histoprint:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"import histoprint"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"-1.00e+01 _ 2.67e+04 ╷\n",
"-9.80e+00 _\n",
"-9.60e+00 _\n",
"-9.40e+00 _\n",
"-9.20e+00 _\n",
"-9.00e+00 _\n",
"-8.80e+00 _\n",
"-8.60e+00 _\n",
"-8.40e+00 _\n",
"-8.20e+00 _\n",
"-8.00e+00 _\n",
"-7.80e+00 _\n",
"-7.60e+00 _\n",
"-7.40e+00 _\u001b[90;40m█\u001b[39;49m\n",
"-7.20e+00 _\u001b[90;40m█\u001b[39;49m\n",
"-7.00e+00 _\u001b[90;40m█\u001b[39;49m\n",
"-6.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-6.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-6.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-6.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-6.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-5.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-5.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-5.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-5.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-5.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-3.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-3.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-3.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-3.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-3.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-1.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-1.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-1.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-1.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-1.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-8.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-6.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-4.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
"-2.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 0.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.00e-01 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 1.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 1.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 1.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 1.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 1.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 2.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 3.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 3.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 3.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 3.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 3.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 4.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 5.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 5.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 5.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 5.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 5.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 6.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 7.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 7.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 7.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 7.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 7.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.20e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.40e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.60e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 8.80e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 9.00e+00 _\u001b[90;40m█\u001b[39;49m\u001b[90;40m█\u001b[39;49m\n",
" 9.20e+00 _\u001b[90;40m█\u001b[39;49m\n",
" 9.40e+00 _\u001b[90;40m█\u001b[39;49m\n",
" 9.60e+00 _\u001b[90;40m█\u001b[39;49m\n",
" 9.80e+00 _\u001b[90;40m█\u001b[39;49m\n",
" 1.00e+01 _\n"
]
}
],
"source": [
"h.show(columns=80)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's try 2D:"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<html>\n",
"<div style=\"display:flex; align-items:center;\">\n",
"<div style=\"width:290px;\">\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-20 -270 290 290\">\n",
"<text text-anchor=\"middle\" x=\"0\" y=\"13\" style=\"fill:currentColor;\">\n",
"-10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"250\" y=\"13\" style=\"fill:currentColor;\">\n",
"10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"-10\" y=\"0\" style=\"fill:currentColor;\">\n",
"-10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"-10\" y=\"-250\" style=\"fill:currentColor;\">\n",
"10\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"125.0\" y=\"13\" style=\"fill:currentColor;\">\n",
"x\n",
"</text>\n",
"<text text-anchor=\"middle\" x=\"-10\" y=\"-125.0\" transform=\"rotate(-90,-10,-125.0)\" style=\"fill:currentColor;\">\n",
"y\n",
"</text>\n",
"<rect x=\"0.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-2.499999999999991\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-4.999999999999982\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-7.500000000000018\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-10.000000000000009\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-12.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-15.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-17.500000000000004\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-19.999999999999996\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-22.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-25.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-27.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-29.999999999999993\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-32.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-35.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-37.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-39.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-42.500000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-44.999999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-47.499999999999986\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-50.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-52.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-54.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-57.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-60.000000000000014\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-62.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-64.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-67.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-70.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-72.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-75.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-77.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-80.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-82.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-85.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-87.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-90.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-92.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-95.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-97.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-100.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-102.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-104.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-107.49999999999997\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-110.00000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-112.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-114.99999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-117.49999999999999\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-120.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-122.50000000000001\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-125.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-127.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-130.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-132.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-135.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-137.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"67.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"70.00000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"72.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"75.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"77.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"80.00000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"82.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"85.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"87.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"90.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"92.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"95.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"97.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"100.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"102.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"104.99999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"107.49999999999997\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"110.00000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"112.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"114.99999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"117.49999999999999\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"120.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"122.50000000000001\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"125.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"127.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"130.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"132.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"135.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"137.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"140.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"142.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"145.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"147.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"150.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"152.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"155.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"157.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"160.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"162.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"165.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"167.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"170.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"172.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"175.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"177.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"180.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"182.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"185.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"187.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"190.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"192.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"195.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"197.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"200.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"202.50000000000003\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"205.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"207.49999999999997\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"210.00000000000003\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"212.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"215.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"217.49999999999997\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"220.00000000000003\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"222.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"225.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"227.49999999999997\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"230.00000000000003\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"232.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"234.99999999999997\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"237.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"240.0\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"242.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"245.00000000000003\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"247.5\" y=\"-140.0\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"0.0\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"2.499999999999991\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"4.999999999999982\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"7.500000000000018\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"10.000000000000009\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"12.5\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"15.000000000000014\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"17.500000000000004\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"19.999999999999996\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"22.50000000000001\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"25.0\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"27.49999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"29.999999999999993\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"32.50000000000001\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"35.00000000000001\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"37.5\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"39.99999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"42.500000000000014\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"44.999999999999986\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"47.499999999999986\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"50.0\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"52.49999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"54.99999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"57.49999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"60.000000000000014\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"62.5\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=\"currentColor\" stroke-width=\"0.1\"/>\n",
"<rect x=\"64.99999999999999\" y=\"-142.5\" width=\"2.5\" height=\"2.5\" opacity=\"0.0\" fill=
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment