490 lines
297 KiB
Plaintext
490 lines
297 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "fe606dcf-9205-4eb6-a789-0d66ae7dddec",
|
||
"metadata": {},
|
||
"source": [
|
||
"# Plot quantum states"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "e0242a86-db2b-4cdd-835e-4aa8a5349fb8",
|
||
"metadata": {},
|
||
"source": [
|
||
"In many situations – such as learning or debugging – it's helpful to visualize the state of a quantum computer. Here we assume you already have a particular state from simulation or state tomography. It's only possible to view the states of small quantum systems.\n",
|
||
"\n",
|
||
"<Admonition title=\"Using the output from functions\" type=\"tip\">\n",
|
||
"All functions on this page return rich objects. When the last line of a code cell outputs these objects, Jupyter notebooks display them below the cell. If you call these functions in some other environments or in scripts, you will need to explicitly show or save the outputs.\n",
|
||
"\n",
|
||
"Most functions return images, which are `matplotlib.Figure` objects. Two options are:\n",
|
||
"- Call `.show()` on the returned object to open the image in a new window (assuming your configured matplotlib backend is interactive).\n",
|
||
"- Call `.savefig(\"out.png\")` to save the figure to `out.png` in the current working directory. The `savefig()` method takes a path so you can adjust the location and filename where you're saving the output. For example, `plot_state_city(psi).savefig(\"out.png\")`.\n",
|
||
"\n",
|
||
"The LaTeX outputs are `IPython.display.Latex` objects. The best option in a non-Jupyter environment is to avoid this output by either printing the state for a text representation, or switching to the `latex_source` drawer to return a LaTeX source string.\n",
|
||
"</Admonition>\n",
|
||
"\n",
|
||
"A quantum state is either a density matrix $\\rho$ (Hermitian matrix) or statevector $|\\psi\\rangle$ (complex vector). The density matrix is related to the statevector by\n",
|
||
"\n",
|
||
"$$\\rho = |\\psi\\rangle\\langle \\psi|,$$\n",
|
||
"\n",
|
||
"and is more general, as it can represent mixed states (positive sum of statevectors)\n",
|
||
"\n",
|
||
"$$\\rho = \\sum_k p_k |\\psi_k\\rangle\\langle \\psi_k |.$$\n",
|
||
"\n",
|
||
"Qiskit represents quantum states through the `Statevector` and `DensityMatrix` classes and provides many visualization functions. See the sections after the following the code cell to see how Qiskit's different visualization functions plot the following quantum state."
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 1,
|
||
"id": "da6c51a7-813b-4fb0-bff0-bfc2010f9c49",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"from math import pi\n",
|
||
"from qiskit import QuantumCircuit\n",
|
||
"from qiskit.quantum_info import Statevector\n",
|
||
"\n",
|
||
"# Create a Bell state for demonstration\n",
|
||
"qc = QuantumCircuit(2)\n",
|
||
"qc.h(0)\n",
|
||
"qc.crx(pi/2, 0, 1)\n",
|
||
"psi = Statevector(qc)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "3a89d7cd-7eb2-499e-a9a4-e1921aa57284",
|
||
"metadata": {},
|
||
"source": [
|
||
"<Tabs>\n",
|
||
"<TabItem value=\"LaTeX\" label=\"LaTeX\">\n",
|
||
" While not technically a \"plot\", Qiskit can render LaTeX representations of both `Statevector` and `DensityMatrix` objects that display nicely in Jupyter notebooks. These follow the standard mathematical conventions for writing down quantum states. Read more in [Basics of quantum information: Single systems](https://learning.quantum.ibm.com/course/basics-of-quantum-information/single-systems#quantum-state-vectors).\n",
|
||
"\n",
|
||
" Statevectors default to \"ket notation\", whereas density matrices are displayed as a 2×2 matrix.\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-latex\" />\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-latex-2\" />\n",
|
||
"\n",
|
||
" You can also replace `\"latex\"` with `\"latex_source\"` to get the raw LaTeX string.\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"<TabItem value=\"City\" label=\"City\">\n",
|
||
"\n",
|
||
" This plot displays the real and imaginary parts of each density matrix element in two three-dimensional bar charts. It's called a \"city\" plot because the bars resemble skyscrapers in a city. The state we're plotting has the following density matrix.\n",
|
||
"\n",
|
||
" $$\n",
|
||
" \\begin{bmatrix}\n",
|
||
" \\frac{1}{2} & \\frac{\\sqrt{2}}{4} & 0 & \\frac{\\sqrt{2} i}{4} \\\\\n",
|
||
" \\frac{\\sqrt{2}}{4} & \\frac{1}{4} & 0 & \\frac{i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" - \\frac{\\sqrt{2} i}{4} & - \\frac{i}{4} & 0 & \\frac{1}{4} \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" =\n",
|
||
" \\begin{bmatrix}\n",
|
||
" \\frac{1}{2} & \\frac{\\sqrt{2}}{4} & 0 & 0 \\\\\n",
|
||
" \\frac{\\sqrt{2}}{4} & \\frac{1}{4} & 0 & 0 \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" 0 & 0 & 0 & \\frac{1}{4} \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" + i\n",
|
||
" \\begin{bmatrix}\n",
|
||
" 0 & 0 & 0 & \\frac{\\sqrt{2} i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & \\frac{i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" - \\frac{\\sqrt{2} i}{4} & - \\frac{i}{4} & 0 & 0 \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" $$\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-city\" />\n",
|
||
"\n",
|
||
" See the [API documentation](/api/qiskit/qiskit.visualization.plot_state_city) for more information.\n",
|
||
"\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"<TabItem value=\"Hinton\" label=\"Hinton\">\n",
|
||
"\n",
|
||
" This plot is very similar to the \"city\" plot, but the magnitude of each element is represented by the size of a square rather than the height of a bar. White squares represent elements with positive values, and black squares represent elements with negative values. The state we're plotting has the following density matrix.\n",
|
||
"\n",
|
||
" $$\n",
|
||
" \\begin{bmatrix}\n",
|
||
" \\frac{1}{2} & \\frac{\\sqrt{2}}{4} & 0 & \\frac{\\sqrt{2} i}{4} \\\\\n",
|
||
" \\frac{\\sqrt{2}}{4} & \\frac{1}{4} & 0 & \\frac{i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" - \\frac{\\sqrt{2} i}{4} & - \\frac{i}{4} & 0 & \\frac{1}{4} \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" =\n",
|
||
" \\begin{bmatrix}\n",
|
||
" \\frac{1}{2} & \\frac{\\sqrt{2}}{4} & 0 & 0 \\\\\n",
|
||
" \\frac{\\sqrt{2}}{4} & \\frac{1}{4} & 0 & 0 \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" 0 & 0 & 0 & \\frac{1}{4} \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" + i\n",
|
||
" \\begin{bmatrix}\n",
|
||
" 0 & 0 & 0 & \\frac{\\sqrt{2} i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & \\frac{i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" - \\frac{\\sqrt{2} i}{4} & - \\frac{i}{4} & 0 & 0 \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
" $$\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-hinton\" />\n",
|
||
"\n",
|
||
" See the [API documentation](/api/qiskit/qiskit.visualization.plot_state_hinton) for more information.\n",
|
||
"\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"<TabItem value=\"Pauli vector\" label=\"Pauli vector\">\n",
|
||
"\n",
|
||
" An observable is a way of measuring a quantum state such that the possible measurement outcomes are real numbers. The expected value of the outcome is also known as the expectation value of the observable on that state, and it can be thought of as the average of infinitely many observations of that state.\n",
|
||
"\n",
|
||
" Tensor products of Pauli matrices are all observables that return +1 or -1. This plot displays the expectation values of the state on different Pauli operators as a bar chart. All density matrices can be written as a sum of these Pauli matrices, weighted by their expectation values.\n",
|
||
"\n",
|
||
" For example, this state can be written as the sum of terms:\n",
|
||
"\n",
|
||
" $$\n",
|
||
" |\\psi\\rangle\\langle\\psi|\n",
|
||
" =\n",
|
||
" \\tfrac{1}{4}II\n",
|
||
" + \\tfrac{\\sqrt{2}}{8}IX\n",
|
||
" - \\tfrac{\\sqrt{2}}{8}XY\n",
|
||
" - \\tfrac{1}{8}YI\n",
|
||
" - \\tfrac{\\sqrt{2}}{8}YX\n",
|
||
" + \\tfrac{1}{8}YZ\n",
|
||
" + \\tfrac{1}{8}ZI\n",
|
||
" + \\tfrac{\\sqrt{2}}{8}ZX\n",
|
||
" + \\tfrac{1}{8}ZZ\n",
|
||
" $$\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-paulivec\" />\n",
|
||
"\n",
|
||
" You can also calculate these coefficients using `SparsePauliOp`.\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-paulivec-2\" />\n",
|
||
"\n",
|
||
" See the [API documentation](/api/qiskit/qiskit.visualization.plot_state_paulivec) for more information.\n",
|
||
"\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"<TabItem value=\"Qsphere\" label=\"Qsphere\">\n",
|
||
"\n",
|
||
" The \"QSphere\" is a Qiskit-unique view of a quantum state in which the amplitude and phase of each element in a statevector is plotted on the surface of a sphere. The thickness of each dot represents the amplitude, and the color represents the phase. For mixed states it will show a sphere for each component.\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-qsphere\" />\n",
|
||
"\n",
|
||
" See the [API documentation](/api/qiskit/qiskit.visualization.plot_state_qsphere) for more information.\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"<TabItem value=\"Bloch\" label=\"Bloch\">\n",
|
||
"\n",
|
||
" The Bloch vector of a qubit state is its expectation value in the X, Y, and Z Pauli observables mapped to the X, Y, and Z axes in three-dimensional space. This plot projects multi-qubit quantum states onto the single-qubit space and plots each qubit on a Bloch sphere. This visualization only shows the expectation values of individual qubits. It can't show correlations between qubits and so can't fully describe entangled quantum states.\n",
|
||
"\n",
|
||
" <CodeCellPlaceholder tag=\"id-tabs-bloch\" />\n",
|
||
"\n",
|
||
" See the [API documentation](/api/qiskit/qiskit.visualization.plot_bloch_multivector) for more information.\n",
|
||
"\n",
|
||
"</TabItem>\n",
|
||
"</Tabs>"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 2,
|
||
"id": "f6a47fc5-8b71-416d-8982-7e89a483d2e5",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-latex"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/latex": [
|
||
"$$\\frac{\\sqrt{2}}{2} |00\\rangle+\\frac{1}{2} |01\\rangle- \\frac{i}{2} |11\\rangle$$"
|
||
],
|
||
"text/plain": [
|
||
"<IPython.core.display.Latex object>"
|
||
]
|
||
},
|
||
"execution_count": 2,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"psi.draw(\"latex\") # psi is a Statevector object"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 3,
|
||
"id": "9b6c950a-d2b1-48d0-95ff-4b44fb897697",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-latex-2"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/latex": [
|
||
"$$\n",
|
||
"\n",
|
||
"\\begin{bmatrix}\n",
|
||
"\\frac{1}{2} & \\frac{\\sqrt{2}}{4} & 0 & \\frac{\\sqrt{2} i}{4} \\\\\n",
|
||
" \\frac{\\sqrt{2}}{4} & \\frac{1}{4} & 0 & \\frac{i}{4} \\\\\n",
|
||
" 0 & 0 & 0 & 0 \\\\\n",
|
||
" - \\frac{\\sqrt{2} i}{4} & - \\frac{i}{4} & 0 & \\frac{1}{4} \\\\\n",
|
||
" \\end{bmatrix}\n",
|
||
"$$"
|
||
],
|
||
"text/plain": [
|
||
"<IPython.core.display.Latex object>"
|
||
]
|
||
},
|
||
"execution_count": 3,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.quantum_info import DensityMatrix\n",
|
||
"DensityMatrix(psi).draw(\"latex\") # convert to a DensityMatrix and draw"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 4,
|
||
"id": "752f7232-dfe5-457b-82f1-8a4ab5837aef",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-city"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"image/svg+xml": [
|
||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width=\"1108.8pt\" height=\"554.76pt\" version=\"1.1\" viewBox=\"0 0 1108.8 554.76\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style></defs><path d=\"m0 554.76h1108.8v-554.76h-1108.8z\" fill=\"#ffffff\"/><path d=\"m7.2 547.56h518.4v-518.4h-518.4z\" fill=\"#ffffff\"/><path d=\"m108.47 408.01 123.42-105.91-1.7509-203.84-129.1 96.907\" fill=\"#f2f2f2\" opacity=\".5\" stroke=\"#f2f2f2\"/><path d=\"m231.89 302.11 202.06 59.519 7.0287-208.97-210.84-54.396\" fill=\"#e6e6e6\" opacity=\".5\" stroke=\"#e6e6e6\"/><path d=\"m108.47 408.01 210.84 67.62 114.64-114.01-202.06-59.519\" fill=\"#ececec\" opacity=\".5\" stroke=\"#ececec\"/><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m126.51 413.8 122.71-106.59-1.0236-204.29\"/><path d=\"m183.13 431.96 120.42-108.74 1.2888-205.68\"/><path d=\"m240.94 450.5 118.02-110.96 3.6947-207.08\"/><path d=\"m299.98 469.43 115.49-113.25 6.1985-208.5\"/></g><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m113.18 186.06 6.8647 212.02 210.04 66.838\"/><path d=\"m149.86 158.53 5.2016 209.51 207.59 64.499\"/><path d=\"m185.23 131.98 3.649 207.04 205.18 62.282\"/><path d=\"m219.37 106.35 2.1987 204.62 202.82 60.176\"/></g><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m433.95 361.63-202.06-59.519-123.42 105.91\"/><path d=\"m435.31 321.25-203.76-58.578-124.52 104.26\"/><path d=\"m436.69 280.18-205.48-57.597-125.63 102.53\"/><path d=\"m438.1 238.4-207.24-56.574-126.77 100.74\"/><path d=\"m439.53 195.9-209.02-55.508-127.92 98.862\"/><path d=\"m440.98 152.66-210.84-54.396-129.1 96.907\"/></g><path d=\"m108.47 408.01 210.84 67.62\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m127.55 412.89-3.1376 2.7254\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(99.224 457.52) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-30\" transform=\"scale(.015625)\" d=\"m2034 4250q-487 0-733-480-245-479-245-1442 0-959 245-1439 246-480 733-480 491 0 736 480 246 480 246 1439 0 963-246 1442-245 480-736 480zm0 500q785 0 1199-621 414-620 414-1801 0-1178-414-1799-414-620-1199-620-784 0-1198 620-414 621-414 1799 0 1181 414 1801 414 621 1198 621z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m184.16 431.03-3.0811 2.7823\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(155.85 475.83) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-31\" transform=\"scale(.015625)\" d=\"m794 531h1031v3560l-1122-225v575l1116 225h631v-4135h1031v-531h-2687v531z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m241.95 449.55-3.0215 2.841\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(213.66 494.54) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m300.97 468.47-2.9587 2.9015\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(272.69 513.64) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m433.95 361.63-114.64 114.01\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m328.34 464.37 5.2369 1.6664\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(340.94 476.97) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m360.93 432 5.1723 1.607\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(373.33 444.38) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m392.36 400.78 5.1089 1.5508\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(404.58 412.94) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m422.71 370.64 5.0469 1.4974\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(434.74 382.59) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m433.95 361.63 7.0287-208.97\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m432.28 361.13 5.0271 1.4808\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(447.43 355.34) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-2e\" transform=\"scale(.015625)\" d=\"m684 794h660v-794h-660v794z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m433.62 320.76 5.0708 1.4578\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(448.9 314.99) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m434.99 279.7 5.1153 1.4338\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(450.4 273.95) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-32\" transform=\"scale(.015625)\" d=\"m1228 531h2203v-531h-2962v531q359 372 979 998 621 627 780 809 303 340 423 576 121 236 121 464 0 372-261 606-261 235-680 235-297 0-627-103-329-103-704-313v638q381 153 712 231 332 78 607 78 725 0 1156-363 431-362 431-968 0-288-108-546-107-257-392-607-78-91-497-524-418-433-1181-1211z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-32\"/></g><path d=\"m436.38 237.93 5.1606 1.4088\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(451.92 232.21) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-33\" transform=\"scale(.015625)\" d=\"m2597 2516q453-97 707-404 255-306 255-756 0-690-475-1069-475-378-1350-378-293 0-604 58t-642 174v609q262-153 574-231 313-78 654-78 593 0 904 234t311 681q0 413-289 645-289 233-804 233h-544v519h569q465 0 712 186t247 536q0 359-255 551-254 193-729 193-260 0-557-57-297-56-653-174v562q360 100 674 150t592 50q719 0 1137-327 419-326 419-882 0-388-222-655t-631-370z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-33\"/></g><path d=\"m437.79 195.44 5.2067 1.3827\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(453.47 189.74) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-34\" transform=\"scale(.015625)\" d=\"m2419 4116-1594-2491h1594v2491zm-166 550h794v-3041h666v-525h-666v-1100h-628v1100h-2106v609l1940 2957z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-34\"/></g><path d=\"m439.23 152.21 5.2536 1.3554\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(455.04 146.53) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-35\" transform=\"scale(.015625)\" d=\"m691 4666h2478v-532h-1900v-1143q137 47 274 70 138 23 276 23 781 0 1237-428 457-428 457-1159 0-753-469-1171-469-417-1322-417-294 0-599 50-304 50-629 150v635q281-153 581-228t634-75q541 0 856 284 316 284 316 772 0 487-316 771-315 285-856 285-253 0-505-56-251-56-513-175v2344z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-35\"/></g><path d=\"m233.48 305.25 26.929 7.945z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m217.43 319.06 16.05-13.81z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m217.43 319.06 16.05-13.81 26.929 7.945-15.901 13.945z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m217.43 319.06 27.078 8.0796 15.901-13.945-26.929-7.945z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m244.51 327.14 15.901-13.945-15.901 13.945z\" clip-path=\"url(#8e867290317)\"/><path d=\"m217.43 319.06 27.078 8.0796-27.078-8.0796z\" clip-path=\"url(#8e867290317)\"/><path d=\"m287.6 321.22 27.456 8.1007z\" clip-path=\"url(#8e867290317)\"/><path d=\"m271.85 335.3 15.748-14.081z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m271.85 335.3 27.613 8.2393 15.591-14.22-27.456-8.1007z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m271.85 335.3 15.748-14.081 27.456 8.1007-15.591 14.22z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><g fill=\"#324880\"><path d=\"m299.46 343.54 15.591-14.22-15.591 14.22z\" clip-path=\"url(#8e867290317)\"/><path d=\"m201.11 333.11 27.228 8.2176z\" clip-path=\"url(#8e867290317)\"/><path d=\"m271.85 335.3 27.613 8.2393-27.613-8.2393z\" clip-path=\"url(#8e867290317)\"/><path d=\"m184.5 347.39 16.602-14.285z\" clip-path=\"url(#8e867290317)\"/><path d=\"m342.78 337.5 27.999 8.261z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m184.5 347.39 16.602-14.285 27.228 8.2176-16.45 14.426z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m184.5 347.39 27.38 8.3592 16.45-14.426-27.228-8.2176z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m327.35 351.86 15.431-14.36z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m211.88 355.75 16.45-14.426-16.45 14.426z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m327.35 351.86 28.164 8.4037 15.266-14.503-27.999-8.261z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m327.35 351.86 15.431-14.36 27.999 8.261-15.266 14.503z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><g fill=\"#324880\"><path d=\"m184.5 347.39 27.38 8.3592-27.38-8.3592z\" clip-path=\"url(#8e867290317)\"/><path d=\"m355.51 360.26 15.266-14.503-15.266 14.503z\" clip-path=\"url(#8e867290317)\"/><path d=\"m255.83 349.62 27.771 8.3814z\" clip-path=\"url(#8e867290317)\"/><path d=\"m327.35 351.86 28.164 8.4037-28.164-8.4037z\" clip-path=\"url(#8e867290317)\"/><path d=\"m239.54 364.19 16.295-14.57z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m239.54 364.19 16.295-14.57 27.771 8.3814-16.135 14.716z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m239.54 364.19 27.931 8.5272 16.135-14.716-27.771-8.3814z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m267.47 372.72 16.135-14.716-16.135 14.716z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m383.96 368.75 15.097-14.648 28.559 8.4261-14.925 14.795z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m239.54 364.19 27.931 8.5272-27.931-8.5272z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m311.65 366.47 28.33 8.5501z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m150.43 376.71 17.182-14.784 27.533 8.5044-17.028 14.933z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m295.68 381.33 15.972-14.864z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m399.06 354.1 2.6793-101.94 29.185 8.0877-3.3051 102.28z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m295.68 381.33 15.972-14.864 28.33 8.5501-15.804 15.014z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m295.68 381.33 28.498 8.7004 15.804-15.014-28.33-8.5501z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m383.96 368.75 2.3783-102.53 15.398-14.061-2.6793 101.94z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><g fill=\"#324880\"><path d=\"m324.18 390.03 15.804-15.014-15.804 15.014z\" clip-path=\"url(#8e867290317)\"/><path d=\"m295.68 381.33 28.498 8.7004-28.498-8.7004z\" clip-path=\"url(#8e867290317)\"/><path d=\"m368.6 383.66 28.906 8.724z\" clip-path=\"url(#8e867290317)\"/><path d=\"m412.69 377.32 14.925-14.795 3.3051-102.28-15.218 14.205z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m206.09 394.1 16.87-15.085 28.091 8.6769-16.708 15.238z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m352.96 398.82 15.632-15.167z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m383.96 368.75 28.732 8.5731 3.0117-102.87-29.365-8.2319z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m167.61 361.92-3.234-145.91 28.362 8.0127 2.4047 146.4z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m150.43 376.71-3.793-146.76 17.741-13.931 3.234 145.91z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m352.96 398.82 15.632-15.167 28.906 8.724-15.456 15.322z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m352.96 398.82 29.083 8.879 15.456-15.322-28.906-8.724z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m382.05 407.7 15.456-15.322-15.456 15.322z\" clip-path=\"url(#8e867290317)\"/><path d=\"m279.43 396.46 28.667 8.8547z\" clip-path=\"url(#8e867290317)\"/><path d=\"m222.96 379.02-1.0919-102.94 28.697 8.3337 0.4864 103.28z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m386.34 266.22 29.365 8.2319 15.218-14.205-29.185-8.0877z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m352.96 398.82 29.083 8.879-29.083-8.879z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m115.15 407.06 17.794-15.311 27.842 8.8066-17.638 15.468z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m262.88 411.85 16.542-15.394z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m178.12 385.36 17.028-14.933-2.4047-146.4-17.578 14.076z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m206.09 394.1-1.4702-103.53 17.249-14.489 1.0919 102.94z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m150.43 376.71 27.687 8.6535-2.9543-147.26-28.526-8.1575z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m262.88 411.85 16.542-15.394 28.667 8.8547-16.371 15.553z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m262.88 411.85 28.838 9.0132 16.371-15.553-28.667-8.8547z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m291.72 420.87 16.371-15.553-16.371 15.553z\" clip-path=\"url(#8e867290317)\"/><path d=\"m234.34 402.93 16.708-15.238-0.4864-103.28-17.079 14.64z\" clip-path=\"url(#8e867290317)\"/><path d=\"m262.88 411.85 28.838 9.0132-28.838-9.0132z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m206.09 394.1 28.254 8.8306-0.85758-103.88-28.866-8.4845z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m337.05 414.26 29.26 9.038z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m171.44 425.08 17.477-15.627 28.417 8.9884-17.312 15.789z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m320.86 429.97 16.196-15.714z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m146.64 229.94 28.526 8.1575 17.578-14.076-28.362-8.0127z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m320.86 429.97 16.196-15.714 29.26 9.038-16.016 15.877z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m320.86 429.97 29.44 9.2014 16.016-15.877-29.26-9.038z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m204.62 290.57 28.866 8.4845 17.079-14.64-28.697-8.3337z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m350.3 439.17 16.016-15.877-16.016 15.877z\" clip-path=\"url(#8e867290317)\"/><path d=\"m246.05 427.52 29.01 9.1759z\" clip-path=\"url(#8e867290317)\"/><path d=\"m320.86 429.97 29.44 9.2014-29.44-9.2014z\" clip-path=\"url(#8e867290317)\"/><path d=\"m132.95 391.75-6.263-211.5 29.057 8.0753 5.0483 212.23z\" clip-path=\"url(#8e867290317)\"/><path d=\"m228.9 443.48 17.143-15.954z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m115.15 407.06-7.1218-212.76 18.653-14.042 6.263 211.5z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m228.9 443.48 17.143-15.954 29.01 9.1759-16.969 16.121z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m228.9 443.48 29.184 9.343 16.969-16.121-29.01-9.1759z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m188.92 409.45-2.6573-148.62 29.302 8.4832 1.7729 149.13z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m258.09 452.82 16.969-16.121-16.969 16.121z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m171.44 425.08-3.2366-149.5 18.056-14.751 2.6573 148.62z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><g fill=\"#324880\"><path d=\"m143.15 416.02 17.638-15.468-5.0483-212.23-18.483 14.192z\" clip-path=\"url(#8e867290317)\"/><path d=\"m228.9 443.48 29.184 9.343-29.184-9.343z\" clip-path=\"url(#8e867290317)\"/><path d=\"m304.37 445.97 29.621 9.3693z\" clip-path=\"url(#8e867290317)\"/></g><path d=\"m115.15 407.06 27.999 8.9637-5.8933-213.5-29.227-8.2259z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m287.58 462.26 16.791-16.291z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m200.02 434.23 17.312-15.789-1.7729-149.13-17.881 14.909z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m171.44 425.08 28.582 9.1504-2.3419-150.01-29.477-8.6411z\" clip-path=\"url(#8e867290317)\" fill=\"#648fff\"/><path d=\"m287.58 462.26 16.791-16.291 29.621 9.3693-16.608 16.463z\" clip-path=\"url(#8e867290317)\" fill=\"#3f599f\"/><path d=\"m287.58 462.26 29.805 9.5418 16.608-16.463-29.621-9.3693z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m317.38 471.8 16.608-16.463-16.608 16.463z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m287.58 462.26 29.805 9.5418-29.805-9.5418z\" clip-path=\"url(#8e867290317)\" fill=\"#324880\"/><path d=\"m168.2 275.58 29.477 8.6411 17.881-14.909-29.302-8.4832z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><path d=\"m108.03 194.3 29.227 8.2259 18.483-14.192-29.057-8.0753z\" clip-path=\"url(#8e867290317)\" fill=\"#577ddf\"/><g transform=\"translate(168.42 23.157) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-52\" transform=\"scale(.015625)\" d=\"m2841 2188q203-69 395-294t386-619l641-1275h-679l-596 1197q-232 469-449 622t-592 153h-688v-1972h-631v4666h1425q800 0 1194-335 394-334 394-1009 0-441-205-732-205-290-595-402zm-1582 1959v-1656h794q456 0 689 211t233 620-233 617-689 208h-794z\"/><path id=\"DejaVuSans-65\" transform=\"scale(.015625)\" d=\"m3597 1894v-281h-2644q38-594 358-905t892-311q331 0 642 81t618 244v-544q-310-131-635-200t-659-69q-838 0-1327 487-489 488-489 1320 0 859 464 1363 464 505 1252 505 706 0 1117-455 411-454 411-1235zm-575 169q-6 471-264 752-258 282-683 282-481 0-770-272t-333-766l2050 4z\"/><path id=\"DejaVuSans-61\" transform=\"scale(.015625)\" d=\"m2194 1759q-697 0-966-159t-269-544q0-306 202-486 202-179 548-179 479 0 768 339t289 901v128h-572zm1147 238v-1997h-575v531q-197-318-491-470t-719-152q-537 0-855 302-317 302-317 808 0 590 395 890 396 300 1180 300h807v57q0 397-261 614t-733 217q-300 0-585-72-284-72-546-216v532q315 122 612 182 297 61 578 61 760 0 1135-394 375-393 375-1193z\"/><path id=\"DejaVuSans-6c\" transform=\"scale(.015625)\" d=\"m603 4863h575v-4863h-575v4863z\"/><path id=\"DejaVuSans-41\" transform=\"scale(.015625)\" d=\"m2188 4044-857-2322h1716l-859 2322zm-357 622h716l1778-4666h-656l-425 1197h-2103l-425-1197h-666l1781 4666z\"/><path id=\"DejaVuSans-6d\" transform=\"scale(.015625)\" d=\"m3328 2828q216 388 516 572t706 184q547 0 844-383 297-382 297-1088v-2113h-578v2094q0 503-179 746-178 244-543 244-447 0-707-297-259-296-259-809v-1978h-578v2094q0 506-178 748t-550 242q-441 0-701-298-259-298-259-808v-1978h-578v3500h578v-544q197 322 472 475t653 153q382 0 649-194 267-193 395-562z\"/><path id=\"DejaVuSans-70\" transform=\"scale(.015625)\" d=\"m1159 525v-1856h-578v4831h578v-531q182 312 458 463 277 152 661 152 638 0 1036-506 399-506 399-1331t-399-1332q-398-506-1036-506-384 0-661 152-276 152-458 464zm1957 1222q0 634-261 995t-717 361q-457 0-718-361t-261-995 261-995 718-361q456 0 717 361t261 995z\"/><path id=\"DejaVuSans-69\" transform=\"scale(.015625)\" d=\"m603 3500h575v-3500h-575v3500zm0 1363h575v-729h-575v729z\"/><path id=\"DejaVuSans-74\" transform=\"scale(.015625)\" d=\"m1172 4494v-994h1184v-447h-1184v-1900q0-428 117-550t477-122h590v-481h-590q-666 0-919 248-253 249-253 905v1900h-422v447h422v994h578z\"/><path id=\"DejaVuSans-75\" transform=\"scale(.015625)\" d=\"m544 1381v2119h575v-2097q0-497 193-746 194-248 582-248 465 0 735 297 271 297 271 810v1984h575v-3500h-575v538q-209-319-486-474-276-155-642-155-603 0-916 375-312 375-312 1097zm1447 2203z\"/><path id=\"DejaVuSans-64\" transform=\"scale(.015625)\" d=\"m2906 2969v1894h575v-4863h-575v525q-181-312-458-464-276-152-664-152-634 0-1033 506-398 507-398 1332t398 1331q399 506 1033 506 388 0 664-152 277-151 458-463zm-1959-1222q0-634 261-995t717-361 718 361q263 361 263 995t-263 995q-262 361-718 361t-717-361-261-995z\"/><path id=\"DejaVuSans-28\" transform=\"scale(.015625)\" d=\"m1984 4856q-418-718-622-1422-203-703-203-1425 0-721 205-1429t620-1424h-500q-468 735-701 1444t-233 1409q0 697 231 1403 232 707 703 1444h500z\"/><path id=\"DejaVuSans-3c1\" transform=\"scale(.015625)\" d=\"m863 2875q190 319 662 600 184 109 753 109 638 0 1036-506 399-506 399-1331t-399-1332q-398-506-1036-506-384 0-661 152-276 152-458 464v-1856h-578v3047q0 722 282 1159zm2253-1128q0 634-261 995t-717 361q-457 0-718-361t-261-995 261-995 718-361q456 0 717 361t261 995z\"/><path id=\"DejaVuSans-29\" transform=\"scale(.015625)\" d=\"m513 4856h500q468-737 701-1444 233-706 233-1403 0-700-233-1409t-701-1444h-500q415 716 620 1424t205 1429q0 722-205 1425-205 704-620 1422z\"/></defs><use xlink:href=\"#DejaVuSans-52\"/><use x=\"64.982422\" xlink:href=\"#DejaVuSans-65\"/><use x=\"126.505859\" xlink:href=\"#DejaVuSans-61\"/><use x=\"187.785156\" xlink:href=\"#DejaVuSans-6c\"/><use x=\"215.568359\" xlink:href=\"#DejaVuSans-20\"/><use x=\"247.355469\" xlink:href=\"#DejaVuSans-41\"/><use x=\"315.763672\" xlink:href=\"#DejaVuSans-6d\"/><use x=\"413.175781\" xlink:href=\"#DejaVuSans-70\"/><use x=\"476.652344\" xlink:href=\"#DejaVuSans-6c\"/><use x=\"504.435547\" xlink:href=\"#DejaVuSans-69\"/><use x=\"532.21875\" xlink:href=\"#DejaVuSans-74\"/><use x=\"571.427734\" xlink:href=\"#DejaVuSans-75\"/><use x=\"634.806641\" xlink:href=\"#DejaVuSans-64\"/><use x=\"698.283203\" xlink:href=\"#DejaVuSans-65\"/><use x=\"759.806641\" xlink:href=\"#DejaVuSans-20\"/><use x=\"791.59375\" xlink:href=\"#DejaVuSans-28\"/><use x=\"830.607422\" xlink:href=\"#DejaVuSans-3c1\"/><use x=\"894.083984\" xlink:href=\"#DejaVuSans-29\"/></g><path d=\"m583.2 547.56h518.4v-518.4h-518.4z\" fill=\"#ffffff\"/><path d=\"m684.47 408.01 123.42-105.91-1.7509-203.84-129.1 96.907\" fill=\"#f2f2f2\" opacity=\".5\" stroke=\"#f2f2f2\"/><path d=\"m807.89 302.11 202.06 59.519 7.0287-208.97-210.84-54.396\" fill=\"#e6e6e6\" opacity=\".5\" stroke=\"#e6e6e6\"/><path d=\"m684.47 408.01 210.84 67.62 114.64-114.01-202.06-59.519\" fill=\"#ececec\" opacity=\".5\" stroke=\"#ececec\"/><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m713.04 417.17 122.29-106.99-0.59693-204.55\"/><path d=\"m762.71 433.11 120.28-108.88 1.4364-205.77\"/><path d=\"m813.3 449.33 118.17-110.82 3.5415-207\"/><path d=\"m864.82 465.85 115.97-112.82 5.7214-208.24\"/></g><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m696.16 180.82 6.544 211.55 209.58 66.39\"/><path d=\"m728.1 156.84 5.1014 209.35 207.44 64.357\"/><path d=\"m759.06 133.61 3.743 207.19 205.33 62.417\"/><path d=\"m789.06 111.09 2.4632 205.07 203.26 60.563\"/></g><g fill=\"none\" stroke=\"#dde1e6\" stroke-width=\".8\"><path d=\"m1010.4 349.03-202.59-59.228-123.77 105.4\"/><path d=\"m1011.2 325.34-203.59-58.674-124.41 104.42\"/><path d=\"m1012 301.4-204.59-58.107-125.06 103.43\"/><path d=\"m1012.8 277.23-205.61-57.526-125.71 102.41\"/><path d=\"m1013.6 252.82-206.63-56.93-126.38 101.36\"/><path d=\"m1014.4 228.16-207.67-56.319-127.05 100.29\"/><path d=\"m1015.3 203.25-208.72-55.694-127.72 99.19\"/><path d=\"m1016.1 178.08-209.77-55.053-128.41 98.062\"/><path d=\"m1017 152.66-210.84-54.396-129.1 96.907\"/></g><path d=\"m684.47 408.01 210.84 67.62\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m714.08 416.26-3.1273 2.736\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(685.75 460.92) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m763.73 432.18-3.0775 2.7859\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(735.42 476.99) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m814.3 448.38-3.0254 2.8372\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(786.01 493.36) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m865.81 464.89-2.9708 2.89\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(837.53 510.02) rotate(-45) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m1010 361.63-114.64 114.01\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m910.54 458.21 5.2247 1.6551\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(923.1 470.76) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m938.92 430.02 5.1683 1.6034\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(951.31 442.38) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m966.43 402.7 5.1129 1.5542\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(978.65 414.87) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m993.1 376.21 5.0584 1.5072\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1005.2 388.2) rotate(22.5) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m1010 361.63 7.0287-208.97\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m1008.7 348.54 5.0407 1.4737\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1023.9 342.75) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-2212\" transform=\"scale(.015625)\" d=\"m678 2272h4006v-531h-4006v531z\"/></defs><use xlink:href=\"#DejaVuSans-2212\"/><use x=\"83.789062\" xlink:href=\"#DejaVuSans-30\"/><use x=\"147.412109\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"179.199219\" xlink:href=\"#DejaVuSans-33\"/></g><path d=\"m1009.5 324.85 5.0664 1.4602\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1024.8 319.07) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-2212\"/><use x=\"83.789062\" xlink:href=\"#DejaVuSans-30\"/><use x=\"147.412109\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"179.199219\" xlink:href=\"#DejaVuSans-32\"/></g><path d=\"m1010.3 300.92 5.0923 1.4463\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1025.6 295.16) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-2212\"/><use x=\"83.789062\" xlink:href=\"#DejaVuSans-30\"/><use x=\"147.412109\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"179.199219\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m1011.1 276.76 5.1185 1.4321\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1026.5 271.01) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m1011.9 252.35 5.145 1.4175\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1027.4 246.61) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-31\"/></g><path d=\"m1012.7 227.69 5.1717 1.4026\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1028.3 221.97) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-32\"/></g><path d=\"m1013.6 202.79 5.1987 1.3872\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1029.2 197.08) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-33\"/></g><path d=\"m1014.4 177.63 5.226 1.3715\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1030.1 171.94) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-34\"/></g><path d=\"m1015.2 152.21 5.2536 1.3554\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(1031 146.53) scale(.21 -.21)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-35\"/></g><path d=\"m800.19 326.97 23.821 7.1331 13.96-12.316-23.706-7.0286z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m813.66 231.93 0.60382 82.828 23.706 7.0286-0.19732-83.066z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m799.34 243.73 0.85206 83.24 14.076-12.212-0.60382-82.828z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m823.57 250.62 14.204-11.903 0.19732 83.066-13.96 12.316z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m799.34 243.73 24.232 6.894 0.44156 83.479-23.821-7.1331z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m848.03 317.07 24.357 7.1883 13.789-12.411-24.235-7.0815z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m862.1 245.57-0.15367 59.2 24.235 7.0815 0.45268-59.372z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m799.34 243.73 14.324-11.8 24.112 6.7912-14.204 11.903z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m848.01 257.58 0.016964 59.498 13.911-12.304 0.15367-59.2z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m872.67 264.59 13.957-12.113-0.45268 59.372-13.789 12.411z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m848.01 257.58 24.659 7.0156-0.28509 59.67-24.357-7.1883z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m848.01 257.58 14.082-12.007 24.534 6.9101-13.957 12.113z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m688.28 321.19 205.93 62.715 112.13-105.8-197.55-55.362z\" clip-path=\"url(#db21b92db1b)\" fill-opacity=\".25\"/><g fill=\"#324880\"><path d=\"m784.8 255.71 24.352 6.9992z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m770.03 267.87 14.763-12.162z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m911.38 259.45 24.968 7.0322z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m770.03 267.87 14.763-12.162 24.352 6.9992-14.642 12.27z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m770.03 267.87 24.474 7.1067 14.642-12.27-24.352-6.9992z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m897.55 271.67 13.829-12.22z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m794.51 274.98 14.642-12.27-14.642 12.27z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m897.55 271.67 13.829-12.22 24.968 7.0322-13.698 12.328z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m897.55 271.67 25.098 7.1405 13.698-12.328-24.968-7.0322z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m770.03 267.87 24.474 7.1067-24.474-7.1067z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m922.65 278.81 13.698-12.328-13.698 12.328z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m833.72 269.77 24.785 7.1236z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m897.55 271.67 25.098 7.1405-25.098-7.1405z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m819.2 282.15 14.518-12.379z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m961.54 273.58 25.413 7.1575z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m819.2 282.15 24.912 7.2341 14.391-12.489-24.785-7.1236z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m819.2 282.15 14.518-12.379 24.785 7.1236-14.391 12.489z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m947.97 286.01 13.565-12.438z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m844.11 289.38 14.391-12.489-14.391 12.489z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m947.97 286.01 13.565-12.438 25.413 7.1575-13.428 12.549z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m947.97 286.01 25.549 7.2688 13.428-12.549-25.413-7.1575z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m755.04 280.22 24.596 7.2168z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m819.2 282.15 24.912 7.2341-24.912-7.2341z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m739.82 292.76 15.223-12.541z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m973.52 293.28 13.428-12.549-13.428 12.549z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m883.51 284.08 25.23 7.2514z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m947.97 286.01 25.549 7.2688-25.549-7.2688z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m739.82 292.76 15.223-12.541 24.596 7.2168-15.1 12.654z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m739.82 292.76 24.719 7.3295 15.1-12.654-24.596-7.2168z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m869.25 296.68 14.261-12.601z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m764.54 300.09 15.1-12.654-15.1 12.654z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m869.25 296.68 14.261-12.601 25.23 7.2514-14.128 12.715z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m869.25 296.68 25.363 7.3649 14.128-12.715-25.23-7.2514z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m739.82 292.76 24.719 7.3295-24.719-7.3295z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m894.61 304.04 14.128-12.715-14.128 12.715z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m804.46 294.72 25.04 7.3471z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m869.25 296.68 25.363 7.3649-25.363-7.3649z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m789.48 307.48 14.974-12.768z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m934.2 298.65 25.687 7.3826z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m789.48 307.48 14.974-12.768 25.04 7.3471-14.845 12.883z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m789.48 307.48 25.169 7.4629 14.845-12.883-25.04-7.3471z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m920.2 311.48 13.992-12.83z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m814.65 314.95 14.845-12.883-14.845 12.883z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m920.2 311.48 13.992-12.83 25.687 7.3826-13.854 12.946z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m920.2 311.48 25.825 7.4992 13.854-12.946-25.687-7.3826z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m724.36 305.5 24.843 7.4448z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m789.48 307.48 25.169 7.4629-25.169-7.4629z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m708.66 318.43 15.705-12.938z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m946.03 318.97 13.854-12.946-13.854 12.946z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m854.76 309.48 25.496 7.481z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m920.2 311.48 25.825 7.4992-25.825-7.4992z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m708.66 318.43 24.968 7.5628 15.58-13.056-24.843-7.4448z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m708.66 318.43 15.705-12.938 24.843 7.4448-15.58 13.056z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m840.05 322.48 14.713-13.001z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m733.62 326 15.58-13.056-15.58 13.056z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m840.05 322.48 14.713-13.001 25.496 7.481-14.578 13.12z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m840.05 322.48 25.631 7.5999 14.578-13.12-25.496-7.481z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g fill=\"#324880\"><path d=\"m708.66 318.43 24.968 7.5628-24.968-7.5628z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m865.68 330.08 14.578-13.12-14.578 13.12z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m774.27 320.45 25.299 7.5813z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m840.05 322.48 25.631 7.5999-25.631-7.5999z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m758.82 333.63 15.452-13.175z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m758.82 333.63 15.452-13.175 25.299 7.5813-15.321 13.297z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m758.82 333.63 25.43 7.7027 15.321-13.297-25.299-7.5813z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m784.25 341.33 15.321-13.297-15.321 13.297z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m891.55 337.75 14.44-13.24 25.965 7.6186-14.299 13.362z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><g fill=\"#324880\"><path d=\"m758.82 333.63 25.43 7.7027-25.43-7.7027z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m905.99 324.51 0.73763-62.707 26.309 7.427-1.0811 62.899z\" clip-path=\"url(#db21b92db1b)\"/><path d=\"m825.1 335.69 25.767 7.7217z\" clip-path=\"url(#db21b92db1b)\"/></g><path d=\"m891.55 337.75 0.55383-63.04 14.624-12.908-0.73763 62.707z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m809.92 349.11 15.187-13.42z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m809.92 349.11 25.904 7.8464 15.05-13.544-25.767-7.7217z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m809.92 349.11 15.187-13.42 25.767 7.7217-15.05 13.544z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m917.66 345.49 14.299-13.362 1.0811-62.899-14.479 13.029z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m835.82 356.95 15.05-13.544-15.05 13.544z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m891.55 337.75 26.107 7.7408 0.9011-63.233-26.454-7.5477z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m809.92 349.11 25.904 7.8464-25.904-7.8464z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m892.1 274.71 26.454 7.5477 14.479-13.029-26.309-7.427z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><path d=\"m861.97 364.87 14.91-13.671 26.249 7.866-14.766 13.799z\" clip-path=\"url(#db21b92db1b)\" fill=\"#3f599f\"/><path d=\"m876.88 351.2 0.51755-90.12 26.748 7.5869-1.0169 90.399z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m861.97 364.87 0.23861-90.604 15.189-13.187-0.51755 90.12z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m888.36 372.87 14.766-13.799 1.0169-90.399-15.04 13.313z\" clip-path=\"url(#db21b92db1b)\" fill=\"#324880\"/><path d=\"m861.97 364.87 26.392 7.9942 0.74347-90.885-26.897-7.713z\" clip-path=\"url(#db21b92db1b)\" fill=\"#648fff\"/><path d=\"m862.21 274.27 26.897 7.713 15.04-13.313-26.748-7.5869z\" clip-path=\"url(#db21b92db1b)\" fill=\"#577ddf\"/><g transform=\"translate(714.1 23.157) scale(.21 -.21)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-49\" transform=\"scale(.015625)\" d=\"m628 4666h631v-4666h-631v4666z\"/><path id=\"DejaVuSans-67\" transform=\"scale(.015625)\" d=\"m2906 1791q0 625-258 968-257 344-723 344-462 0-720-344-258-343-258-968 0-622 258-966t720-344q466 0 723 344 258 344 258 966zm575-1357q0-893-397-1329-396-436-1215-436-303 0-572 45t-522 139v559q253-137 500-202 247-66 503-66 566 0 847 295t281 892v285q-178-310-456-463t-666-153q-643 0-1037 490-394 491-394 1301 0 812 394 1302 394 491 1037 491 388 0 666-153t456-462v531h575v-3066z\"/><path id=\"DejaVuSans-6e\" transform=\"scale(.015625)\" d=\"m3513 2113v-2113h-575v2094q0 497-194 743-194 247-581 247-466 0-735-297-269-296-269-809v-1978h-578v3500h578v-544q207 316 486 472 280 156 646 156 603 0 912-373 310-373 310-1098z\"/><path id=\"DejaVuSans-72\" transform=\"scale(.015625)\" d=\"m2631 2963q-97 56-211 82-114 27-251 27-488 0-749-317t-261-911v-1844h-578v3500h578v-544q182 319 472 473 291 155 707 155 59 0 131-8 72-7 159-23l3-590z\"/><path id=\"DejaVuSans-79\" transform=\"scale(.015625)\" d=\"m2059-325q-243-625-475-815-231-191-618-191h-460v481h338q237 0 368 113 132 112 291 531l103 262-1415 3444h609l1094-2737 1094 2737h609l-1538-3825z\"/></defs><use xlink:href=\"#DejaVuSans-49\"/><use x=\"29.492188\" xlink:href=\"#DejaVuSans-6d\"/><use x=\"126.904297\" xlink:href=\"#DejaVuSans-61\"/><use x=\"188.183594\" xlink:href=\"#DejaVuSans-67\"/><use x=\"251.660156\" xlink:href=\"#DejaVuSans-69\"/><use x=\"279.443359\" xlink:href=\"#DejaVuSans-6e\"/><use x=\"342.822266\" xlink:href=\"#DejaVuSans-61\"/><use x=\"404.101562\" xlink:href=\"#DejaVuSans-72\"/><use x=\"445.214844\" xlink:href=\"#DejaVuSans-79\"/><use x=\"504.394531\" xlink:href=\"#DejaVuSans-20\"/><use x=\"536.181641\" xlink:href=\"#DejaVuSans-41\"/><use x=\"604.589844\" xlink:href=\"#DejaVuSans-6d\"/><use x=\"702.001953\" xlink:href=\"#DejaVuSans-70\"/><use x=\"765.478516\" xlink:href=\"#DejaVuSans-6c\"/><use x=\"793.261719\" xlink:href=\"#DejaVuSans-69\"/><use x=\"821.044922\" xlink:href=\"#DejaVuSans-74\"/><use x=\"860.253906\" xlink:href=\"#DejaVuSans-75\"/><use x=\"923.632812\" xlink:href=\"#DejaVuSans-64\"/><use x=\"987.109375\" xlink:href=\"#DejaVuSans-65\"/><use x=\"1048.632812\" xlink:href=\"#DejaVuSans-20\"/><use x=\"1080.419922\" xlink:href=\"#DejaVuSans-28\"/><use x=\"1119.433594\" xlink:href=\"#DejaVuSans-3c1\"/><use x=\"1182.910156\" xlink:href=\"#DejaVuSans-29\"/></g><defs><clipPath id=\"8e867290317\"><rect x=\"7.2\" y=\"29.157\" width=\"518.4\" height=\"518.4\"/></clipPath><clipPath id=\"db21b92db1b\"><rect x=\"583.2\" y=\"29.157\" width=\"518.4\" height=\"518.4\"/></clipPath></defs></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<Figure size 1600x800 with 2 Axes>"
|
||
]
|
||
},
|
||
"execution_count": 4,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.visualization import plot_state_city\n",
|
||
"plot_state_city(psi)\n",
|
||
"# Alternative: psi.draw(\"city\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 5,
|
||
"id": "31c6b641-9447-46c9-aecc-5a5602bbd538",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-hinton"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"image/svg+xml": [
|
||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width=\"568.8pt\" height=\"302.84pt\" version=\"1.1\" viewBox=\"0 0 568.8 302.84\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style></defs><path d=\"m0 302.84h568.8v-302.84h-568.8z\" fill=\"#ffffff\"/><path d=\"m32.015 270.82h246.98v-246.98h-246.98z\" fill=\"#808080\"/><path d=\"m32.015 85.585h61.745v-61.745h-61.745z\" clip-path=\"url(#2ead3345175)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m98.672 80.673h51.921v-51.921h-51.921z\" clip-path=\"url(#2ead3345175)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m186.38 54.712z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m248.12 54.712z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m36.927 142.42h51.921v-51.921h-51.921z\" clip-path=\"url(#2ead3345175)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m102.8 138.29h43.66v-43.66h-43.66z\" clip-path=\"url(#2ead3345175)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m186.38 116.46z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m248.12 116.46z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m62.888 178.2z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m124.63 178.2z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m186.38 178.2z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m248.12 178.2z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m62.888 239.95z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m124.63 239.95z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m186.38 239.95z\" clip-path=\"url(#2ead3345175)\" stroke=\"#000000\"/><path d=\"m226.29 261.78h43.66v-43.66h-43.66z\" clip-path=\"url(#2ead3345175)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><defs><path id=\"8b47e9f17b7\" d=\"m0 0v3.5\" stroke=\"#343a3f\" stroke-width=\".8\"/></defs><use x=\"62.8875\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(66.751 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-30\" transform=\"scale(.015625)\" d=\"m2034 4250q-487 0-733-480-245-479-245-1442 0-959 245-1439 246-480 733-480 491 0 736 480 246 480 246 1439 0 963-246 1442-245 480-736 480zm0 500q785 0 1199-621 414-620 414-1801 0-1178-414-1799-414-620-1199-620-784 0-1198 620-414 621-414 1799 0 1181 414 1801 414 621 1198 621z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"124.6325\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(128.5 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-31\" transform=\"scale(.015625)\" d=\"m794 531h1031v3560l-1122-225v575l1116 225h631v-4135h1031v-531h-2687v531z\"/></defs><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"186.3775\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(190.24 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"248.1225\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(251.99 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><defs><path id=\"eccb1493ffd\" d=\"m0 0h-3.5\" stroke=\"#343a3f\" stroke-width=\".8\"/></defs><use x=\"32.015\" y=\"239.9475\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(7.2 245.27) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"32.015\" y=\"178.2025\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(7.2 183.52) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"32.015\" y=\"116.4575\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(7.2 121.78) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"32.015\" y=\"54.7125\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(7.2 60.031) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m32.015 270.82v-246.98\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m32.015 270.82h246.98\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(136.4 17.84) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-52\" transform=\"scale(.015625)\" d=\"m2841 2188q203-69 395-294t386-619l641-1275h-679l-596 1197q-232 469-449 622t-592 153h-688v-1972h-631v4666h1425q800 0 1194-335 394-334 394-1009 0-441-205-732-205-290-595-402zm-1582 1959v-1656h794q456 0 689 211t233 620-233 617-689 208h-794z\"/><path id=\"DejaVuSans-65\" transform=\"scale(.015625)\" d=\"m3597 1894v-281h-2644q38-594 358-905t892-311q331 0 642 81t618 244v-544q-310-131-635-200t-659-69q-838 0-1327 487-489 488-489 1320 0 859 464 1363 464 505 1252 505 706 0 1117-455 411-454 411-1235zm-575 169q-6 471-264 752-258 282-683 282-481 0-770-272t-333-766l2050 4z\"/><path id=\"DejaVuSans-5b\" transform=\"scale(.015625)\" d=\"m550 4863h1325v-447h-750v-4813h750v-447h-1325v5707z\"/><path id=\"DejaVuSans-Oblique-3c1\" transform=\"scale(.015625)\" d=\"m1203 2875q250 319 778 600 207 109 775 109 638 0 938-506t140-1331q-162-825-659-1332-497-506-1134-506-385 0-632 154-246 150-365 462l-363-1856h-578l594 3047q141 722 506 1159zm2035-1128q121 634-69 997-191 359-647 359t-788-359q-331-363-453-997-125-634 66-997 191-359 647-359t787 359q332 363 457 997z\"/><path id=\"DejaVuSans-5d\" transform=\"scale(.015625)\" d=\"m1947 4863v-5707h-1325v447h747v4813h-747v447h1325z\"/></defs><use transform=\"translate(0 .015625)\" xlink:href=\"#DejaVuSans-52\"/><use transform=\"translate(69.482 .015625)\" xlink:href=\"#DejaVuSans-65\"/><use transform=\"translate(131.01 .015625)\" xlink:href=\"#DejaVuSans-5b\"/><use transform=\"translate(170.02 .015625)\" xlink:href=\"#DejaVuSans-Oblique-3c1\"/><use transform=\"translate(233.5 .015625)\" xlink:href=\"#DejaVuSans-5d\"/></g><path d=\"m314.62 270.82h246.98v-246.98h-246.98z\" fill=\"#808080\"/><path d=\"m345.49 54.712z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m407.23 54.712z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m468.98 54.712z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m504.76 80.673h51.921v-51.921h-51.921z\" clip-path=\"url(#9fd96233ac3)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m345.49 116.46z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m407.23 116.46z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m468.98 116.46z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m508.89 138.29h43.66v-43.66h-43.66z\" clip-path=\"url(#9fd96233ac3)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><path d=\"m345.49 178.2z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m407.23 178.2z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m468.98 178.2z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m530.72 178.2z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m319.53 265.91h51.921v-51.921h-51.921z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m385.4 261.78h43.66v-43.66h-43.66z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m468.98 239.95z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><path d=\"m530.72 239.95z\" clip-path=\"url(#9fd96233ac3)\" stroke=\"#000000\"/><use x=\"345.4875\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(349.35 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"407.2325\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(411.1 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"468.9775\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(472.84 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"530.7225\" y=\"270.82\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#8b47e9f17b7\"/><g transform=\"translate(534.59 295.64) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"314.615\" y=\"239.9475\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(289.8 245.27) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"314.615\" y=\"178.2025\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(289.8 183.52) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><use x=\"314.615\" y=\"116.4575\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(289.8 121.78) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-31\"/></g><use x=\"314.615\" y=\"54.7125\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#eccb1493ffd\"/><g transform=\"translate(289.8 60.031) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m314.62 270.82v-246.98\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m314.62 270.82h246.98\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><g transform=\"translate(419.56 17.84) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-49\" transform=\"scale(.015625)\" d=\"m628 4666h631v-4666h-631v4666z\"/><path id=\"DejaVuSans-6d\" transform=\"scale(.015625)\" d=\"m3328 2828q216 388 516 572t706 184q547 0 844-383 297-382 297-1088v-2113h-578v2094q0 503-179 746-178 244-543 244-447 0-707-297-259-296-259-809v-1978h-578v2094q0 506-178 748t-550 242q-441 0-701-298-259-298-259-808v-1978h-578v3500h578v-544q197 322 472 475t653 153q382 0 649-194 267-193 395-562z\"/></defs><use transform=\"translate(0 .015625)\" xlink:href=\"#DejaVuSans-49\"/><use transform=\"translate(25.867 .015625)\" xlink:href=\"#DejaVuSans-6d\"/><use transform=\"translate(123.28 .015625)\" xlink:href=\"#DejaVuSans-5b\"/><use transform=\"translate(162.29 .015625)\" xlink:href=\"#DejaVuSans-Oblique-3c1\"/><use transform=\"translate(225.77 .015625)\" xlink:href=\"#DejaVuSans-5d\"/></g><defs><clipPath id=\"2ead3345175\"><rect x=\"32.015\" y=\"23.84\" width=\"246.98\" height=\"246.98\"/></clipPath><clipPath id=\"9fd96233ac3\"><rect x=\"314.62\" y=\"23.84\" width=\"246.98\" height=\"246.98\"/></clipPath></defs></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<Figure size 800x500 with 2 Axes>"
|
||
]
|
||
},
|
||
"execution_count": 5,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.visualization import plot_state_hinton\n",
|
||
"plot_state_hinton(psi)\n",
|
||
"# Alternative: psi.draw(\"hinton\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 6,
|
||
"id": "b7729b72-3597-4360-a731-180314abc849",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-paulivec"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"image/svg+xml": [
|
||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width=\"463.55pt\" height=\"344.13pt\" version=\"1.1\" viewBox=\"0 0 463.55 344.13\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style></defs><path d=\"m0 344.13h463.55v-344.13h-463.55z\" fill=\"#ffffff\"/><path d=\"m65.745 289.72h390.6v-277.2h-390.6z\" fill=\"#eeeeee\"/><path d=\"m93.944 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><defs><path id=\"c0044c49279\" d=\"m0 0v3.5\" stroke=\"#343a3f\" stroke-width=\".8\"/></defs><use x=\"93.943708\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(96.161 308.12) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-49\" transform=\"scale(.015625)\" d=\"m628 4666h631v-4666h-631v4666z\"/></defs><use xlink:href=\"#DejaVuSans-49\"/><use x=\"29.492188\" xlink:href=\"#DejaVuSans-49\"/></g><path d=\"m135.72 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"135.719109\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(137 313.25) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-58\" transform=\"scale(.015625)\" d=\"m403 4666h678l1160-1735 1165 1735h678l-1500-2241 1600-2425h-678l-1312 1984-1322-1984h-681l1665 2491-1453 2175z\"/></defs><use xlink:href=\"#DejaVuSans-49\"/><use x=\"29.492188\" xlink:href=\"#DejaVuSans-58\"/></g><path d=\"m177.49 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"177.49451\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(178.02 317.4) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-59\" transform=\"scale(.015625)\" d=\"m-13 4666h679l1293-1919 1285 1919h678l-1650-2444v-2222h-634v2222l-1651 2444z\"/></defs><use xlink:href=\"#DejaVuSans-58\"/><use x=\"68.505859\" xlink:href=\"#DejaVuSans-59\"/></g><path d=\"m219.27 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"219.269911\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(220.73 312.27) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-59\"/><use x=\"61.083984\" xlink:href=\"#DejaVuSans-49\"/></g><path d=\"m261.05 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"261.045313\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(261.57 317.4) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-59\"/><use x=\"61.083984\" xlink:href=\"#DejaVuSans-58\"/></g><path d=\"m302.82 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"302.820714\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(303.35 317.4) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-5a\" transform=\"scale(.015625)\" d=\"m359 4666h3666v-482l-2950-3653h3022v-531h-3809v481l2950 3653h-2879v532z\"/></defs><use xlink:href=\"#DejaVuSans-59\"/><use x=\"61.083984\" xlink:href=\"#DejaVuSans-5a\"/></g><path d=\"m344.6 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"344.596115\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(345.88 313.25) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-5a\"/><use x=\"68.505859\" xlink:href=\"#DejaVuSans-49\"/></g><path d=\"m386.37 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"386.371516\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(386.72 318.38) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-5a\"/><use x=\"68.505859\" xlink:href=\"#DejaVuSans-58\"/></g><path d=\"m428.15 289.72v-277.2\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"428.146917\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#c0044c49279\"/><g transform=\"translate(428.5 318.38) rotate(-70) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-5a\"/><use x=\"68.505859\" xlink:href=\"#DejaVuSans-5a\"/></g><g transform=\"translate(244.52 334.01) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-50\" transform=\"scale(.015625)\" d=\"m1259 4147v-1753h794q441 0 681 228 241 228 241 650 0 419-241 647-240 228-681 228h-794zm-631 519h1425q785 0 1186-355 402-355 402-1039 0-691-402-1044-401-353-1186-353h-794v-1875h-631v4666z\"/><path id=\"DejaVuSans-61\" transform=\"scale(.015625)\" d=\"m2194 1759q-697 0-966-159t-269-544q0-306 202-486 202-179 548-179 479 0 768 339t289 901v128h-572zm1147 238v-1997h-575v531q-197-318-491-470t-719-152q-537 0-855 302-317 302-317 808 0 590 395 890 396 300 1180 300h807v57q0 397-261 614t-733 217q-300 0-585-72-284-72-546-216v532q315 122 612 182 297 61 578 61 760 0 1135-394 375-393 375-1193z\"/><path id=\"DejaVuSans-75\" transform=\"scale(.015625)\" d=\"m544 1381v2119h575v-2097q0-497 193-746 194-248 582-248 465 0 735 297 271 297 271 810v1984h575v-3500h-575v538q-209-319-486-474-276-155-642-155-603 0-916 375-312 375-312 1097zm1447 2203z\"/><path id=\"DejaVuSans-6c\" transform=\"scale(.015625)\" d=\"m603 4863h575v-4863h-575v4863z\"/><path id=\"DejaVuSans-69\" transform=\"scale(.015625)\" d=\"m603 3500h575v-3500h-575v3500zm0 1363h575v-729h-575v729z\"/></defs><use xlink:href=\"#DejaVuSans-50\"/><use x=\"55.802734\" xlink:href=\"#DejaVuSans-61\"/><use x=\"117.082031\" xlink:href=\"#DejaVuSans-75\"/><use x=\"180.460938\" xlink:href=\"#DejaVuSans-6c\"/><use x=\"208.244141\" xlink:href=\"#DejaVuSans-69\"/></g><path d=\"m65.745 289.72h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><defs><path id=\"e380eaaa9d5\" d=\"m0 0h-3.5\" stroke=\"#343a3f\" stroke-width=\".8\"/></defs><use x=\"65.745313\" y=\"289.718906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#e380eaaa9d5\"/><g transform=\"translate(24.749 295.04) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-2212\" transform=\"scale(.015625)\" d=\"m678 2272h4006v-531h-4006v531z\"/><path id=\"DejaVuSans-31\" transform=\"scale(.015625)\" d=\"m794 531h1031v3560l-1122-225v575l1116 225h631v-4135h1031v-531h-2687v531z\"/><path id=\"DejaVuSans-2e\" transform=\"scale(.015625)\" d=\"m684 794h660v-794h-660v794z\"/><path id=\"DejaVuSans-30\" transform=\"scale(.015625)\" d=\"m2034 4250q-487 0-733-480-245-479-245-1442 0-959 245-1439 246-480 733-480 491 0 736 480 246 480 246 1439 0 963-246 1442-245 480-736 480zm0 500q785 0 1199-621 414-620 414-1801 0-1178-414-1799-414-620-1199-620-784 0-1198 620-414 621-414 1799 0 1181 414 1801 414 621 1198 621z\"/></defs><use xlink:href=\"#DejaVuSans-2212\"/><use x=\"83.789062\" xlink:href=\"#DejaVuSans-31\"/><use x=\"147.412109\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"179.199219\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m65.745 220.42h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"65.745313\" y=\"220.418906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#e380eaaa9d5\"/><g transform=\"translate(24.749 225.74) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-35\" transform=\"scale(.015625)\" d=\"m691 4666h2478v-532h-1900v-1143q137 47 274 70 138 23 276 23 781 0 1237-428 457-428 457-1159 0-753-469-1171-469-417-1322-417-294 0-599 50-304 50-629 150v635q281-153 581-228t634-75q541 0 856 284 316 284 316 772 0 487-316 771-315 285-856 285-253 0-505-56-251-56-513-175v2344z\"/></defs><use xlink:href=\"#DejaVuSans-2212\"/><use x=\"83.789062\" xlink:href=\"#DejaVuSans-30\"/><use x=\"147.412109\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"179.199219\" xlink:href=\"#DejaVuSans-35\"/></g><path d=\"m65.745 151.12h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"65.745313\" y=\"151.118906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#e380eaaa9d5\"/><g transform=\"translate(36.481 156.44) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/></g><path d=\"m65.745 81.819h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"65.745313\" y=\"81.818906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#e380eaaa9d5\"/><g transform=\"translate(36.481 87.138) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-30\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-35\"/></g><path d=\"m65.745 12.519h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#dde1e6\" stroke-dasharray=\"3.7,1.6\"/><use x=\"65.745313\" y=\"12.518906\" fill=\"#343a3f\" stroke=\"#343a3f\" stroke-width=\".8\" xlink:href=\"#e380eaaa9d5\"/><g transform=\"translate(36.481 17.838) scale(.14 -.14)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-31\"/><use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/><use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/></g><g transform=\"translate(17.838 192.4) rotate(-90) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-43\" transform=\"scale(.015625)\" d=\"m4122 4306v-665q-319 297-680 443-361 147-767 147-800 0-1225-489t-425-1414q0-922 425-1411t1225-489q406 0 767 147t680 444v-660q-331-225-702-338-370-112-782-112-1060 0-1670 648-609 649-609 1771 0 1125 609 1773 610 649 1670 649 418 0 788-111 371-111 696-333z\"/><path id=\"DejaVuSans-6f\" transform=\"scale(.015625)\" d=\"m1959 3097q-462 0-731-361t-269-989 267-989q268-361 733-361 460 0 728 362 269 363 269 988 0 622-269 986-268 364-728 364zm0 487q750 0 1178-488 429-487 429-1349 0-859-429-1349-428-489-1178-489-753 0-1180 489-426 490-426 1349 0 862 426 1349 427 488 1180 488z\"/><path id=\"DejaVuSans-65\" transform=\"scale(.015625)\" d=\"m3597 1894v-281h-2644q38-594 358-905t892-311q331 0 642 81t618 244v-544q-310-131-635-200t-659-69q-838 0-1327 487-489 488-489 1320 0 859 464 1363 464 505 1252 505 706 0 1117-455 411-454 411-1235zm-575 169q-6 471-264 752-258 282-683 282-481 0-770-272t-333-766l2050 4z\"/><path id=\"DejaVuSans-66\" transform=\"scale(.015625)\" d=\"m2375 4863v-479h-550q-309 0-430-125-120-125-120-450v-309h947v-447h-947v-3053h-578v3053h-550v447h550v244q0 584 272 851 272 268 862 268h544z\"/><path id=\"DejaVuSans-63\" transform=\"scale(.015625)\" d=\"m3122 3366v-538q-244 135-489 202t-495 67q-560 0-870-355-309-354-309-995t309-996q310-354 870-354 250 0 495 67t489 202v-532q-241-112-499-168-257-57-548-57-791 0-1257 497-465 497-465 1341 0 856 470 1346 471 491 1290 491 265 0 518-55 253-54 491-163z\"/><path id=\"DejaVuSans-6e\" transform=\"scale(.015625)\" d=\"m3513 2113v-2113h-575v2094q0 497-194 743-194 247-581 247-466 0-735-297-269-296-269-809v-1978h-578v3500h578v-544q207 316 486 472 280 156 646 156 603 0 912-373 310-373 310-1098z\"/><path id=\"DejaVuSans-74\" transform=\"scale(.015625)\" d=\"m1172 4494v-994h1184v-447h-1184v-1900q0-428 117-550t477-122h590v-481h-590q-666 0-919 248-253 249-253 905v1900h-422v447h422v994h578z\"/><path id=\"DejaVuSans-73\" transform=\"scale(.015625)\" d=\"m2834 3397v-544q-243 125-506 187-262 63-544 63-428 0-642-131t-214-394q0-200 153-314t616-217l197-44q612-131 870-370t258-667q0-488-386-773-386-284-1061-284-281 0-586 55t-642 164v594q319-166 628-249 309-82 613-82 406 0 624 139 219 139 219 392 0 234-158 359-157 125-692 241l-200 47q-534 112-772 345-237 233-237 639 0 494 350 762 350 269 994 269 318 0 599-47 282-46 519-140z\"/></defs><use xlink:href=\"#DejaVuSans-43\"/><use x=\"69.824219\" xlink:href=\"#DejaVuSans-6f\"/><use x=\"131.005859\" xlink:href=\"#DejaVuSans-65\"/><use x=\"192.529297\" xlink:href=\"#DejaVuSans-66\"/><use x=\"227.734375\" xlink:href=\"#DejaVuSans-66\"/><use x=\"262.939453\" xlink:href=\"#DejaVuSans-69\"/><use x=\"290.722656\" xlink:href=\"#DejaVuSans-63\"/><use x=\"345.703125\" xlink:href=\"#DejaVuSans-69\"/><use x=\"373.486328\" xlink:href=\"#DejaVuSans-65\"/><use x=\"435.009766\" xlink:href=\"#DejaVuSans-6e\"/><use x=\"498.388672\" xlink:href=\"#DejaVuSans-74\"/><use x=\"537.597656\" xlink:href=\"#DejaVuSans-73\"/></g><path d=\"m83.5 151.12h20.888v-138.6h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m125.28 151.12h20.888v-98.005h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m167.05 151.12h20.888v98.005h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m208.83 151.12h20.888v69.3h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m250.6 151.12h20.888v98.005h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m292.38 151.12h20.888v-69.3h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m334.15 151.12h20.888v-69.3h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m375.93 151.12h20.888v-98.005h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m417.7 151.12h20.888v-69.3h-20.888z\" clip-path=\"url(#6e68871e1a3)\" fill=\"#648fff\"/><path d=\"m65.745 151.12h390.6\" clip-path=\"url(#6e68871e1a3)\" fill=\"none\" stroke=\"#000000\" stroke-linecap=\"square\"/><path d=\"m65.745 289.72v-277.2\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><path d=\"m65.745 289.72h390.6\" fill=\"none\" stroke=\"#343a3f\" stroke-linecap=\"square\" stroke-width=\".8\"/><defs><clipPath id=\"6e68871e1a3\"><rect x=\"65.745\" y=\"12.519\" width=\"390.6\" height=\"277.2\"/></clipPath></defs></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<Figure size 700x500 with 1 Axes>"
|
||
]
|
||
},
|
||
"execution_count": 6,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.visualization import plot_state_paulivec\n",
|
||
"plot_state_paulivec(psi)\n",
|
||
"# Alternative: psi.draw(\"paulivec\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 7,
|
||
"id": "4a3da3f4-4ee6-4b2a-8d3c-215fc14eb3f9",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-paulivec-2"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/plain": [
|
||
"SparsePauliOp(['II', 'IX', 'XY', 'YI', 'YX', 'YZ', 'ZI', 'ZX', 'ZZ'],\n",
|
||
" coeffs=[ 0.25 +0.j, 0.1767767+0.j, -0.1767767+0.j, -0.125 +0.j,\n",
|
||
" -0.1767767+0.j, 0.125 +0.j, 0.125 +0.j, 0.1767767+0.j,\n",
|
||
" 0.125 +0.j])"
|
||
]
|
||
},
|
||
"execution_count": 7,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.quantum_info import SparsePauliOp\n",
|
||
"SparsePauliOp.from_operator(psi)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 8,
|
||
"id": "aa034130-f9b6-4a2b-9dbf-20615bb15c6f",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-qsphere"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"image/svg+xml": [
|
||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width=\"403.37pt\" height=\"402.48pt\" version=\"1.1\" viewBox=\"0 0 403.37 402.48\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style></defs><path d=\"m0 402.48h403.37v-402.48h-403.37z\" fill=\"#ffffff\"/><path d=\"m7.2 395.28h388.08v-388.08h-388.08z\" fill=\"#ffffff\"/><path d=\"m75.57 325.95 32.335-32.165-0.89639-217.14-32.767 7.4129\" opacity=\"0\"/><path d=\"m107.91 293.79 217.13 2.5482 1.0878-219.1-219.11-0.58671\" opacity=\"0\"/><path d=\"m75.57 325.95 241.87 3.1675 7.5858-32.785-217.13-2.5482\" opacity=\"0\"/><path d=\"m75.57 325.95 241.87 3.1675\" fill=\"none\" stroke-opacity=\"0\"/><path d=\"m325.03 296.34-7.5858 32.785\" fill=\"none\" stroke-opacity=\"0\"/><path d=\"m325.03 296.34 1.0878-219.1\" fill=\"none\" stroke-opacity=\"0\"/><path d=\"m206.48 80.479\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#1192e8\" stroke-linecap=\"square\"/><defs><path id=\"c5db1a98f87\" d=\"m0 10.607c2.8129 0 5.511-1.1176 7.5-3.1066s3.1066-4.6871 3.1066-7.5-1.1176-5.511-3.1066-7.5-4.6871-3.1066-7.5-3.1066-5.511 1.1176-7.5 3.1066-3.1066 4.6871-3.1066 7.5 1.1176 5.511 3.1066 7.5 4.6871 3.1066 7.5 3.1066z\" stroke=\"#4060bf\"/></defs><g clip-path=\"url(#0f2f6f3f14d)\"><use x=\"206.484324\" y=\"80.479423\" fill=\"#4060bf\" stroke=\"#4060bf\" xlink:href=\"#c5db1a98f87\"/></g><path d=\"m92.068 195.12\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#6929c4\" stroke-linecap=\"square\"/><defs><path id=\"d191c4066e7\" d=\"m0 7.5c1.989 0 3.8968-0.79025 5.3033-2.1967s2.1967-3.3143 2.1967-5.3033-0.79025-3.8968-2.1967-5.3033-3.3143-2.1967-5.3033-2.1967-3.8968 0.79025-5.3033 2.1967-2.1967 3.3143-2.1967 5.3033 0.79025 3.8968 2.1967 5.3033 3.3143 2.1967 5.3033 2.1967z\" stroke=\"#4060bf\"/></defs><g clip-path=\"url(#0f2f6f3f14d)\"><use x=\"92.068431\" y=\"195.123239\" fill=\"#4060bf\" stroke=\"#4060bf\" xlink:href=\"#d191c4066e7\"/></g><path d=\"m322 196.88\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#005d5d\" stroke-linecap=\"square\"/><path d=\"m206.48 310.41\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#9f1853\" stroke-linecap=\"square\"/><defs><path id=\"072b1382419\" d=\"m0 7.5c1.989 0 3.8968-0.79025 5.3033-2.1967s2.1967-3.3143 2.1967-5.3033-0.79025-3.8968-2.1967-5.3033-3.3143-2.1967-5.3033-2.1967-3.8968 0.79025-5.3033 2.1967-2.1967 3.3143-2.1967 5.3033 0.79025 3.8968 2.1967 5.3033 3.3143 2.1967 5.3033 2.1967z\" stroke=\"#40bf60\"/></defs><g clip-path=\"url(#0f2f6f3f14d)\"><use x=\"206.484324\" y=\"310.409491\" fill=\"#40bf60\" stroke=\"#40bf60\" xlink:href=\"#072b1382419\"/></g><path d=\"m206.48 80.479\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#808080\" stroke-dasharray=\"1,1.65\" stroke-opacity=\".5\"/><path d=\"m322 196.88-0.45344-1.2788-2.2819-1.2549-4.0375-1.2118-5.6965-1.151-7.2383-1.074-8.646-0.98249-9.9052-0.87824-11.004-0.76299-11.935-0.63847-12.689-0.50641-13.261-0.36852-13.649-0.22645-13.849-0.081843-13.861 0.06367-13.684 0.20848-13.32 0.35095-12.77 0.48946-12.039 0.62234-11.13 0.74789-10.052 0.8644-8.8118 0.97012-7.422 1.0633-5.896 1.1422-4.2506 1.2051-2.5059 1.2505-0.68509 1.2769 1.185 1.2831 3.0746 1.268 4.9508 1.2312 6.7786 1.1723 8.5214 1.0918 10.142 0.99029 11.604 0.86929 12.873 0.73068 13.918 0.57695 14.712 0.41106 15.234 0.23638 15.471 0.056613 15.416-0.12438 15.071-0.30268 14.445-0.47448 13.554-0.63619 12.422-0.78458 11.077-0.91684 9.551-1.0307 7.8801-1.1245 6.1011-1.197 4.2509-1.2476 2.3657-1.2762 0.47977-1.2832-1.3752-1.2693-3.1704-1.2357-4.8804-1.1835-6.4832-1.1144-7.9599-1.0299-9.2949-0.93185-10.475-0.82188-11.491-0.70178-12.334-0.57328-12.998-0.43809-13.479-0.2979-13.773-0.15436-13.879-0.009099-13.796 0.13626-13.526 0.28011-13.068 0.42081-12.427 0.55671-11.606 0.68614-10.612 0.80739-9.4512 0.91872-8.1348 1.0184-6.675 1.1046-5.087 1.1758-3.3893 1.2301-1.6034 1.2662 0.24559 1.2826 2.1293 1.2782 4.0165 1.2523 5.873 1.2045 7.6629 1.1347 9.3493 1.0436 10.895 0.93212 12.265 0.80204 13.425 0.65553 14.348 0.49532 15.008 0.32459 15.389 0.14689 15.48-0.033975 15.28-0.21411 14.792-0.38963 14.031-0.55681 13.017-0.71224 11.774-0.85288 10.334-0.9762 8.7314-1.0802 7.0018-1.1634 5.1826-1.225 3.3105-1.2646 1.4208-1.2824\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#808080\" stroke-dasharray=\"1,1.65\" stroke-opacity=\".5\"/><path d=\"m206.48 310.41\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#808080\" stroke-dasharray=\"1,1.65\" stroke-opacity=\".5\"/><path d=\"m206.48 196\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" stroke=\"#1192e8\" stroke-linecap=\"square\"/><defs><path id=\"28a3a40c413\" d=\"m0 1.5c0.3978 0 0.77937-0.15805 1.0607-0.43934 0.28129-0.28129 0.43934-0.66286 0.43934-1.0607s-0.15805-0.77937-0.43934-1.0607c-0.28129-0.28129-0.66286-0.43934-1.0607-0.43934s-0.77937 0.15805-1.0607 0.43934c-0.28129 0.28129-0.43934 0.66286-0.43934 1.0607s0.15805 0.77937 0.43934 1.0607c0.28129 0.28129 0.66286 0.43934 1.0607 0.43934z\" stroke=\"#808080\"/></defs><g clip-path=\"url(#0f2f6f3f14d)\"><use x=\"206.484324\" y=\"195.995676\" fill=\"#808080\" stroke=\"#808080\" xlink:href=\"#28a3a40c413\"/></g><g fill-opacity=\".2\"><path d=\"m216.02 186.49-0.083015 14.309-28.302 0.11054-0.1656-14.317z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#626366\"/><path d=\"m215.94 200.8-0.23654 14.24-27.593 0.11592-0.47184-14.245z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m215.95 172.32 0.071783 14.172-28.55 0.10304 0.14319-14.181z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656769\"/><path d=\"m244.02 187.01-0.32769 14.347-27.755-0.54978 0.083015-14.309z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#545658\"/><path d=\"m243.69 201.35-0.93362 14.266-27.058-0.57651 0.23654-14.24z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#525355\"/><path d=\"m215.7 215.04-0.38698 13.964-26.434 0.11871-0.77189-13.966z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5d5f61\"/><path d=\"m243.74 172.79 0.28335 14.217-27.999-0.51248-0.071783-14.172z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#58595b\"/><path d=\"m215.72 158.49 0.22602 13.829-28.335 0.093935 0.45084-13.839z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m187.47 186.6 0.1656 14.317-27.209 0.76559-0.40631-14.369z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#727477\"/><path d=\"m242.76 215.62-1.5271 13.977-25.918-0.5903 0.38698-13.964z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#515254\"/><path d=\"m187.64 200.91 0.47184 14.245-26.523 0.80277-1.1576-14.282z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6f7174\"/><path d=\"m187.61 172.42-0.14319 14.181-27.45 0.71367 0.35134-14.244z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75787a\"/><path d=\"m242.85 158.91 0.89209 13.879-27.788-0.46719-0.22602-13.829z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m215.32 229.01-0.53251 13.483-24.84 0.11849-1.0621-13.482z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m188.11 215.16 0.77189 13.966-25.402 0.8219-1.8932-13.985z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6d6f71\"/><path d=\"m188.07 158.58-0.45084 13.839-27.242 0.65059 1.1061-13.909z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m215.35 145.21 0.37784 13.281-27.659 0.083759 0.75364-13.292z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m241.23 229.6-2.1008 13.481-24.349-0.58915 0.53251-13.483z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#505254\"/><path d=\"m241.35 145.58 1.491 13.335-27.122-0.41656-0.37784-13.281z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m188.88 229.13 1.0621 13.482-23.86 0.82018-2.604-13.481z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d70\"/><path d=\"m269.83 188.11-0.55648 14.427-25.582-1.1837 0.32769-14.347z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4b4c4e\"/><path d=\"m269.28 202.54-1.5851 14.324-24.931-1.2409 0.93362-14.266z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494a4c\"/><path d=\"m214.78 242.49-0.6713 12.8-22.83 0.11496-1.3388-12.797z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m269.35 173.8 0.48119 14.315-25.811-1.1035-0.28335-14.217z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4e5051\"/><path d=\"m188.82 145.29-0.75364 13.292-26.587 0.58004 1.8485-13.366z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d8083\"/><path d=\"m267.69 216.86-2.5917 14.007-23.866-1.2702 1.5271-13.977z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494a\"/><path d=\"m239.13 243.08-2.6473 12.782-22.373-0.5715 0.6713-12.8z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#515354\"/><path d=\"m214.82 132.68 0.52534 12.534-26.527 0.073026 1.0478-12.545z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m267.84 159.81 1.5147 13.988-25.613-1.0059-0.89209-13.879z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535456\"/><path d=\"m160.02 187.31 0.40631 14.369-24.506 1.3836-0.6271-14.462z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#84878a\"/><path d=\"m160.43 201.68 1.1576 14.282-23.878 1.4503-1.7861-14.349z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#818487\"/><path d=\"m189.94 242.61 1.3388 12.797-21.918 0.79549-3.2807-12.772z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m239.28 132.99 2.0725 12.588-26.009-0.36314-0.52534-12.534z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#67696b\"/><path d=\"m160.37 173.07-0.35134 14.244-24.727 1.2898 0.54226-14.358z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#888a8d\"/><path d=\"m265.1 230.87-3.5631 13.478-22.404-1.267 2.1008-13.481z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494b\"/><path d=\"m161.59 215.96 1.8932 13.985-22.851 1.4842-2.9198-14.019z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7e8184\"/><path d=\"m189.87 132.74-1.0478 12.545-25.492 0.50562 2.569-12.62z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#828487\"/><path d=\"m265.31 146.36 2.5306 13.45-24.991-0.89667-1.491-13.335z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#585a5c\"/><path d=\"m161.48 159.16-1.1061 13.909-24.536 1.1757 1.7067-14.037z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8b8e91\"/><path d=\"m214.11 255.29-0.80149 11.921-20.43 0.10792-1.5983-11.914z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5d5f61\"/><path d=\"m163.48 229.95 2.604 13.481-21.442 1.4802-4.0131-13.477z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7c7e81\"/><path d=\"m236.48 255.86-3.1593 11.886-20.015-0.53642 0.80149-11.921z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535556\"/><path d=\"m261.54 244.35-4.4865 12.744-20.565-1.2283 2.6473-12.782z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494b4c\"/><path d=\"m214.15 121.09 0.66658 11.591-24.954 0.062208 1.3294-11.602z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m191.28 255.4 1.5983 11.914-19.603 0.74651-3.9141-11.865z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m163.33 145.79-1.8485 13.366-23.935 1.048 2.851-13.501z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9195\"/><path d=\"m236.65 121.34 2.6288 11.644-24.461-0.30931-0.66658-11.591z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m261.79 133.65 3.5154 12.704-23.951-0.7814-2.0725-12.588z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5e6062\"/><path d=\"m166.08 243.43 3.2807 12.772-19.671 1.4344-5.0513-12.726z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797c7e\"/><path d=\"m191.2 121.14-1.3294 11.602-23.971 0.43061 3.2577-11.675z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#87898c\"/><path d=\"m291.88 189.75-0.75709 14.546-21.846-1.7588 0.55648-14.427z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#464749\"/><path d=\"m291.12 204.3-2.1559 14.408-21.275-1.8432 1.5851-14.324z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#444546\"/><path d=\"m291.22 175.29 0.65466 14.46-22.047-1.6399-0.48119-14.315z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494a4c\"/><path d=\"m288.97 218.7-3.5227 14.049-20.344-1.8854 2.5917-14.007z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#434446\"/><path d=\"m213.31 267.21-0.9212 10.851-17.672 0.097329-1.8368-10.841z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m257.05 257.09-5.3489 11.809-18.375-1.152 3.1593-11.886z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4c4d4f\"/><path d=\"m165.9 133.17-2.569 12.62-22.933 0.91309 3.9594-12.756z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m233.33 267.75-3.6292 10.799-17.307-0.48365 0.9212-10.851z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#56585a\"/><path d=\"m289.16 161.14 2.0601 14.151-21.873-1.4947-1.5147-13.988z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4e4f51\"/><path d=\"m285.44 232.75-4.8387 13.472-19.069-1.8791 3.5631-13.478z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#434546\"/><path d=\"m192.88 267.32 1.8368 10.841-16.945 0.67292-4.4949-10.767z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m213.35 110.63 0.79957 10.462-22.958 0.051712 1.5945-10.471z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8184\"/><path d=\"m169.36 256.2 3.9141 11.865-17.566 1.3448-6.0197-11.775z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7c\"/><path d=\"m257.34 121.9 4.4553 11.756-22.508-0.66523-2.6288-11.644z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#66686a\"/><path d=\"m135.29 188.6 0.6271 14.462-20.272 1.9318-0.81551-14.593z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#979a9e\"/><path d=\"m135.92 203.06 1.7861 14.349-19.736 2.0241-2.322-14.441z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#94979a\"/><path d=\"m233.5 110.83 3.1518 10.511-22.499-0.25708-0.79957-10.462z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m285.72 147.52 3.4398 13.622-21.328-1.3319-2.5306-13.45z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535557\"/><path d=\"m135.84 174.24-0.54226 14.358-20.46 1.8012 0.70519-14.518z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9ea1\"/><path d=\"m137.71 217.41 2.9198 14.019-18.863 2.0699-3.7932-14.065z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#909396\"/><path d=\"m280.6 246.23-6.0855 12.684-17.47-1.8196 4.4865-12.744z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#454648\"/><path d=\"m192.79 110.67-1.5945 10.471-22.042 0.35784 3.9049-10.54z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8e91\"/><path d=\"m169.15 121.5-3.2577 11.675-21.542 0.77714 5.0163-11.806z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#96999c\"/><path d=\"m251.7 268.9-6.1376 10.684-15.867-1.0377 3.6292-10.799z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#505153\"/><path d=\"m137.54 160.21-1.7067 14.037-20.298 1.6416 2.2188-14.216z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9ea1a4\"/><path d=\"m140.63 231.43 4.0131 13.477-17.668 2.0622-5.2083-13.469z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d8f93\"/><path d=\"m212.39 278.06-1.0286 9.6011-14.593 0.083274-2.0507-9.587z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m173.28 268.07 4.4949 10.767-15.157 1.2109-6.9038-10.633z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#76787b\"/><path d=\"m280.95 134.64 4.7742 12.877-20.419-1.16-3.5154-12.704z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5a5c5e\"/><path d=\"m229.7 278.55-4.0498 9.5311-14.286-0.4137 1.0286-9.6011z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5a5c5e\"/><path d=\"m274.52 258.91-7.2448 11.694-15.574-1.7043 5.3489-11.809z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494b\"/><path d=\"m140.39 146.7-2.851 13.501-19.785 1.4626 3.704-13.69z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a1a4a7\"/><path d=\"m144.64 244.91 5.0513 12.726-16.172 1.996-6.5472-12.66z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#898c8f\"/><path d=\"m252 111.28 5.3366 10.616-20.682-0.55255-3.1518-10.511z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m194.72 278.16 2.0507 9.587-13.981 0.57545-5.0139-9.4895z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d6f\"/><path d=\"m212.43 101.47 0.92228 9.154-20.564 0.041858 1.839-9.163z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m229.87 101.64 3.6336 9.1988-20.147-0.20805-0.92228-9.154z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m173.06 110.96-3.9049 10.54-19.784 0.6453 6.006-10.663z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999ca0\"/><path d=\"m144.35 133.95-3.9594 12.756-18.932 1.2735 5.139-12.946z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a4a6aa\"/><path d=\"m245.56 279.58-6.84 9.3801-13.076-0.88675 4.0498-9.5311z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#555658\"/><path d=\"m149.69 257.63 6.0197 11.775-14.401 1.8685-7.79-11.648z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m274.91 122.72 6.0437 11.924-19.16-0.98664-4.4553-11.756z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#626366\"/><path d=\"m194.63 101.51-1.839 9.163-19.732 0.28954 4.5003-9.2253z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#909396\"/><path d=\"m267.27 270.6-8.299 10.513-13.413-1.533 6.1376-10.684z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4c4e50\"/><path d=\"m307.79 206.54-2.6098 14.514-16.214-2.3482 2.1559-14.408z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#444546\"/><path d=\"m177.77 278.83 5.0139 9.4895-12.481 1.0342-7.6894-9.3129z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m308.71 191.84-0.91687 14.697-16.667-2.2419 0.75709-14.546z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#464749\"/><path d=\"m305.18 221.05-4.2611 14.1-15.475-2.3999 3.5227-14.049z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#434446\"/><path d=\"m307.91 177.2 0.79284 14.646-16.827-2.0907-0.65466-14.46z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494a4c\"/><path d=\"m211.36 287.66-1.1217 8.181-11.235 0.066017-2.236-8.1638z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656769\"/><path d=\"m300.92 235.15-5.8462 13.461-14.468-2.389 4.8387-13.472z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#434546\"/><path d=\"m245.85 101.99 6.1453 9.2952-18.497-0.44682-3.6336-9.1988z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#76787b\"/><path d=\"m149.37 122.14-5.0163 11.806-17.753 1.0828 6.5025-11.991z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m155.71 269.41 6.9038 10.633-12.387 1.6796-8.9176-10.444z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#838588\"/><path d=\"m225.65 288.08-4.4135 8.0952-10.994-0.32788 1.1217-8.181z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m305.42 162.84 2.494 14.36-16.689-1.9052-2.0601-14.151z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4e4f51\"/><path d=\"m196.77 287.75 2.236 8.1638-10.755 0.45595-5.4621-8.0443z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6c6e71\"/><path d=\"m267.68 111.94 7.2287 10.774-17.571-0.81862-5.3366-10.616z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m295.07 248.61-7.3415 12.605-13.212-2.3099 6.0855-12.684z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#454648\"/><path d=\"m177.56 101.73-4.5003 9.2253-17.683 0.52162 6.9126-9.3381z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9d9fa3\"/><path d=\"m258.98 281.12-9.2311 9.1549-11.021-1.3077 6.84-9.3801z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#525355\"/><path d=\"m211.4 93.791 1.0326 7.6812-17.803 0.032857 2.0588-7.6893z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8f92\"/><path d=\"m301.26 148.99 4.1611 13.842-16.255-1.6969-3.4398-13.622z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535557\"/><path d=\"m238.72 288.96-7.4437 7.9105-10.046-0.70204 4.4135-8.0952z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5b5c5e\"/><path d=\"m115.65 205 2.322 14.441-14.246 2.4888-2.729-14.554z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m225.8 93.914 4.0658 7.7212-17.436-0.16328-1.0326-7.6812z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m114.83 190.4 0.81551 14.593-14.653 2.3766-0.95886-14.753z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m117.97 219.44 3.7932 14.065-13.585 2.5427-4.4543-14.119z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a2a5a8\"/><path d=\"m287.73 261.22-8.724 11.544-11.732-2.1597 7.2448-11.694z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494b\"/><path d=\"m196.69 93.816-2.0588 7.6893-17.07 0.22718 5.0339-7.745z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#95989c\"/><path d=\"m115.54 175.88-0.70519 14.518-14.796 2.2164 0.82916-14.715z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#adb0b4\"/><path d=\"m121.76 233.5 5.2083 13.469-12.684 2.53-6.1087-13.456z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9da0a4\"/><path d=\"m182.79 288.32 5.4621 8.0443-9.5805 0.81836-8.3628-7.8284z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m155.38 111.48-6.006 10.663-16.267 0.898 7.773-10.837z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a8abaf\"/><path d=\"m162.62 280.04 7.6894 9.3129-10.165 1.4318-9.9117-9.0651z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#808285\"/><path d=\"m295.49 135.89 5.7687 13.099-15.534-1.4766-4.7742-12.877z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5a5c5e\"/><path d=\"m117.76 161.67-2.2188 14.216-14.672 2.0198 2.6079-14.437z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b0b3b7\"/><path d=\"m126.97 246.97 6.5472 12.66-11.565 2.4449-7.6668-12.575z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999b9f\"/><path d=\"m279.01 272.76-9.9721 10.292-10.059-1.9386 8.299-10.513z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4c4e50\"/><path d=\"m259.37 102.5 8.3101 9.4387-15.679-0.6611-6.1453-9.2952z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m238.99 94.178 6.8675 7.8074-15.985-0.35034-4.0658-7.7212z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8285\"/><path d=\"m121.46 147.98-3.704 13.69-14.283 1.7985 4.3499-13.924z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b6ba\"/><path d=\"m249.74 290.27-10.025 7.6362-8.4404-1.0334 7.4437-7.9105z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#585a5c\"/><path d=\"m133.52 259.63 7.79 11.648-10.25 2.2843-9.1044-11.487z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#94969a\"/><path d=\"m210.24 295.84-1.1987 6.606-7.6471 0.045981-2.3892-6.5859z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m288.2 123.76 7.2918 12.139-14.539-1.2545-6.0437-11.924z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#626366\"/><path d=\"m221.23 296.17-4.7131 6.5064-7.48-0.2283 1.1987-6.606z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656669\"/><path d=\"m182.59 93.987-5.0339 7.745-15.271 0.40882 7.7206-7.8457z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a6\"/><path d=\"m199 295.91 2.3892 6.5859-7.314 0.31738-5.8305-6.4474z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7073\"/><path d=\"m162.29 102.14-6.9126 9.3381-14.5 0.72482 8.9299-9.4958z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m170.3 289.36 8.3628 7.8284-7.773 1.1306-10.755-7.5272z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m126.6 135.03-5.139 12.946-13.637 1.5645 6.0279-13.182z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b4b7bb\"/><path d=\"m269.03 283.06-11.065 8.8663-8.2249-1.65 9.2311-9.1549z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#525355\"/><path d=\"m141.31 271.28 8.9176 10.444-8.7694 2.0489-10.399-10.209z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9195\"/><path d=\"m231.28 296.87-7.9369 6.2926-6.8224-0.48826 4.7131-6.5064z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m210.27 87.732 1.1285 6.0588-14.711 0.024808 2.2497-6.0659z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#939699\"/><path d=\"m188.25 296.37 5.8305 6.4474-6.5 0.56883-8.911-6.1978z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m221.36 87.82 4.4405 6.0942-14.402-0.12325-1.1285-6.0588z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d9093\"/><path d=\"m279.49 112.78 8.7057 10.975-13.291-1.0393-7.2287-10.774z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m198.94 87.75-2.2497 6.0659-14.095 0.17144 5.4957-6.1152z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9da1\"/><path d=\"m250.1 94.568 9.269 7.9354-13.514-0.51758-6.8675-7.8074z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m133.1 123.04-6.5025 11.991-12.748 1.3286 7.6152-12.22z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b8bd\"/><path d=\"m150.23 281.72 9.9117 9.0651-7.1526 1.7424-11.528-8.7586z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8a8c8f\"/><path d=\"m239.72 297.91-10.665 5.9765-5.7123-0.71734 7.9369-6.2926z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#606264\"/><path d=\"m257.97 291.92-11.985 7.2869-6.2645-1.3007 10.025-7.6362z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#585a5c\"/><path d=\"m231.5 88.008 7.4897 6.1703-13.184-0.26418-4.4405-6.0942z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#898b8e\"/><path d=\"m315.13 223.77-4.7491 14.157-9.4593-2.7776 4.2611-14.1z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494a\"/><path d=\"m318.04 209.14-2.9113 14.636-9.9473-2.7206 2.6098-14.514z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494a4c\"/><path d=\"m310.38 237.93-6.507 13.445-8.7985-2.761 5.8462-13.461z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#48494b\"/><path d=\"m319.06 194.27-1.0233 14.872-10.249-2.5992 0.91687-14.697z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4b4c4e\"/><path d=\"m170.01 94.295-7.7206 7.8457-12.482 0.56711 9.9528-7.9862z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m178.67 297.18 8.911 6.1978-5.2522 0.78418-11.432-5.8514z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7d7f\"/><path d=\"m303.87 251.38-8.1571 12.509-7.9829-2.6648 7.3415-12.605z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#494b4c\"/><path d=\"m188.09 87.872-5.4957 6.1152-12.584 0.30813 8.4147-6.2041z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a2a5a9\"/><path d=\"m318.18 179.4 0.88486 14.861-10.355-2.4244-0.79284-14.646z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4e5051\"/><path d=\"m140.88 112.2-7.773 10.837-11.636 1.1001 9.0856-11.05z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6b9bd\"/><path d=\"m269.51 103.16 9.9866 9.622-11.814-0.83783-8.3101-9.4387z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m295.71 263.88-9.6727 11.365-7.0342-2.4862 8.724-11.544z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#4c4d4f\"/><path d=\"m160.14 290.79 10.755 7.5272-5.4331 1.3722-12.475-7.1571z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m209.04 302.45-1.2578 4.8936-3.8826 0.023739-2.5067-4.8714z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m315.39 164.8 2.7822 14.602-10.263-2.2089-2.494-14.36z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535456\"/><path d=\"m216.52 302.68-4.9419 4.7832-3.796-0.11783 1.2578-4.8936z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d6f\"/><path d=\"m201.39 302.5 2.5067 4.8714-3.71 0.16376-6.1107-4.7178z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717375\"/><path d=\"m286.04 275.25-11.029 10.032-5.977-2.2262 9.9721-10.292z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#505153\"/><path d=\"m223.34 303.17-8.3087 4.5466-3.4556-0.25169 4.9419-4.7832z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m245.98 299.21-12.714 5.5763-4.2151-0.9005 10.665-5.9765z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#606264\"/><path d=\"m310.76 150.7 4.638 14.099-9.9749-1.9661-4.1611-13.842z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#585a5c\"/><path d=\"m194.08 302.81 6.1107 4.7178-3.2891 0.29305-9.3217-4.442z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747779\"/><path d=\"m240.01 88.285 10.087 6.283-11.113-0.38964-7.4897-6.1703z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#87898c\"/><path d=\"m275.01 285.28-12.205 8.5298-4.8376-1.8896 11.065-8.8663z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#555658\"/><path d=\"m149.81 102.71-8.9299 9.4958-10.323 0.88621 10.414-9.6902z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b9bd\"/><path d=\"m209.06 83.427 1.208 4.3057-11.333 0.017687 2.4077-4.312z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9ca0\"/><path d=\"m103.73 221.93 4.4543 14.119-7.2474 2.8672-4.8469-14.177z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m108.18 236.04 6.1087 13.456-6.7182 2.8486-6.6379-13.438z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m170.89 298.32 11.432 5.8514-3.6451 0.94906-13.22-5.4282z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#808386\"/><path d=\"m229.05 303.88-11.138 4.1983-2.883-0.36902 8.3087-4.5466z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#686a6c\"/><path d=\"m216.61 83.483 4.7497 4.3372-11.09-0.087844-1.208-4.3057z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#95989b\"/><path d=\"m304.33 137.34 6.4214 13.358-9.4981-1.7091-5.7687-13.099z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5e6062\"/><path d=\"m101 207.37 2.729 14.554-7.6399 2.8094-2.9722-14.678z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6babe\"/><path d=\"m114.29 249.5 7.6668 12.575-6.069 2.7475-8.316-12.474z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m258.39 95.06 11.112 8.0983-10.138-0.6546-9.269-7.9354z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m201.35 83.438-2.4077 4.312-10.849 0.12216 5.8758-4.3558z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9fa2a5\"/><path d=\"m100.04 192.62 0.95886 14.753-7.8832 2.6846-1.0448-14.934z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#babec2\"/><path d=\"m121.96 262.08 9.1044 11.487-5.3196 2.5614-9.8538-11.301z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a7\"/><path d=\"m178.42 88.091-8.4147 6.2041-10.25 0.42662 10.823-6.3277z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m187.58 303.38 9.3217 4.442-2.6463 0.40307-11.928-4.0609z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7d\"/><path d=\"m262.81 293.81-13.179 6.8825-3.6436-1.4852 11.985-7.2869z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5b5c5e\"/><path d=\"m100.87 177.9-0.82916 14.715-7.9691 2.5043 0.90353-14.937z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c5\"/><path d=\"m131.06 273.56 10.399 10.209-4.4921 2.2915-11.226-9.9391z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9da0\"/><path d=\"m223.5 83.603 7.9988 4.4047-10.134-0.18809-4.7497-4.3372z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m296.23 124.95 8.1028 12.39-8.8454-1.45-7.2918-12.139z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#66686a\"/><path d=\"m103.47 163.47-2.6079 14.437-7.8948 2.2816 2.8405-14.689z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c0c4c8\"/><path d=\"m141.46 283.77 11.528 8.7586-3.6102 1.9432-12.41-8.4103z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#939699\"/><path d=\"m233.27 304.78-13.239 3.7598-2.1143-0.46198 11.138-4.1983z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#686a6c\"/><path d=\"m193.96 83.516-5.8758 4.3558-9.6648 0.21926 8.9805-4.4346z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ac\"/><path d=\"m159.76 94.722-9.9528 7.9862-8.8388 0.69186 11.577-8.1589z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b8bc\"/><path d=\"m249.63 300.69-13.936 5.1161-2.4221-1.025 12.714-5.5763z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m182.33 304.17 11.928 4.0609-1.8228 0.48639-13.75-3.5982z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7c7e81\"/><path d=\"m107.82 149.54-4.3499 13.924-7.6622 2.0303 4.7336-14.191z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c2c5ca\"/><path d=\"m152.99 292.53 12.475 7.1571-2.6976 1.5257-13.387-6.7396z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8f92\"/><path d=\"m286.58 113.74 9.6536 11.21-8.0343-1.1991-8.7057-10.975z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m246.33 88.634 12.061 6.4261-8.2948-0.49166-10.087-6.283z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#87898c\"/><path d=\"m113.85 136.36-6.0279 13.182-7.2784 1.7643 6.5508-13.45z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c6cb\"/><path d=\"m229.26 83.781 10.749 4.5044-8.5153-0.2769-7.9988-4.4047z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#919397\"/><path d=\"m207.78 307.34-1.2974 3.0656-2.5851-3.0418z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m165.46 299.69 13.22 5.4282-1.7777 1.0518-14.14-4.9543z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m211.58 307.46-5.0934 2.9477 1.2974-3.0656z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#727477\"/><path d=\"m203.9 307.37 2.5851 3.0418-6.2951-2.8781z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m215.03 307.71-8.549 2.696 5.0934-2.9477z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717476\"/><path d=\"m235.69 305.81-14.461 3.2589-1.1994-0.52415 13.239-3.7598z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m200.19 307.53 6.2951 2.8781-9.5842-2.585z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m217.92 308.08-11.432 2.327 8.549-2.696z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717376\"/><path d=\"m187.4 83.657-8.9805 4.4346-7.8423 0.30295 11.522-4.5439z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m196.9 307.82 9.5842 2.585-12.231-2.1819z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#77797b\"/><path d=\"m275.53 103.91 11.047 9.8348-7.0864-0.96459-9.9866-9.622z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#76787b\"/><path d=\"m121.47 124.14-7.6152 12.22-6.7556 1.496 8.261-12.479z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c6cb\"/><path d=\"m178.68 305.12 13.75 3.5982-0.87202 0.5372-14.656-3.0836z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8184\"/><path d=\"m170.58 88.394-10.823 6.3277-7.2141 0.51919 12.554-6.4792z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b3b6ba\"/><path d=\"m220.03 308.54-13.546 1.865 11.432-2.327z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717376\"/><path d=\"m194.25 308.23 12.231 2.1819-14.053-1.6955z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7d\"/><path d=\"m207.79 80.982 1.269 2.4447-7.7172 0.011354 2.5289-2.4505z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a7\"/><path d=\"m221.23 309.07-14.746 1.3409 13.546-1.865z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717476\"/><path d=\"m130.55 113.09-9.0856 11.05-6.1098 1.2364 9.8347-11.293z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c2c6ca\"/><path d=\"m211.63 81.009 4.9857 2.4734-7.5487-0.056378-1.269-2.4447z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9ea0a4\"/><path d=\"m192.43 308.71 14.053 1.6955-14.925-1.1583z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m203.87 80.987-2.5289 2.4505-7.3813 0.078377 6.165-2.4905z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6aa\"/><path d=\"m263.86 295.82-13.5 6.4478-0.73693-1.5724 13.179-6.8825z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m250.36 302.27-14.226 4.6252-0.44664-1.0815 13.936-5.1161z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656669\"/><path d=\"m276.41 287.65-12.542 8.1653-1.0577-2.0071 12.205-8.5298z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5a5c5e\"/><path d=\"m236.14 306.89-14.71 2.7285-0.19821-0.55106 14.461-3.2589z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d6f\"/><path d=\"m287.77 277.91-11.368 9.7478-1.395-2.3716 11.029-10.032z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#56585a\"/><path d=\"m263.27 95.623 12.258 8.287-6.0263-0.75179-11.112-8.0983z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8285\"/><path d=\"m221.43 309.62-14.944 0.78981 14.746-1.3409z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#727477\"/><path d=\"m297.77 266.74-9.9956 11.168-1.7332-2.6558 9.6727-11.365z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#535556\"/><path d=\"m233.52 84.003 12.815 4.6306-6.3211-0.34854-10.749-4.5044z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#919397\"/><path d=\"m215.11 81.069 8.3826 2.535-6.8854-0.12058-4.9857-2.4734z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9c9ea2\"/><path d=\"m191.56 309.25 14.925 1.1583-14.782-0.60661z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7c7f\"/><path d=\"m306.22 254.34-8.4485 12.4-2.0561-2.8534 8.1571-12.509z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#515354\"/><path d=\"m176.9 306.17 14.656 3.0836 0.14317 0.55174-14.569-2.5513z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#828487\"/><path d=\"m200.13 81.026-6.165 2.4905-6.5601 0.14048 9.4047-2.5622z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a7aaae\"/><path d=\"m312.97 240.92-6.7521 13.422-2.3476-2.9623 6.507-13.445z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#505254\"/><path d=\"m140.97 103.4-10.414 9.6902-5.3606 0.9938 11.244-9.9101z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c0c4c8\"/><path d=\"m220.61 310.16-14.122 0.24932 14.944-0.78981z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m162.76 301.21 14.14 4.9543 0.23018 1.0841-14.106-4.4603z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8a8c90\"/><path d=\"m317.91 226.7-4.935 14.215-2.5926-2.9849 4.7491-14.157z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#515254\"/><path d=\"m191.7 309.8 14.782 0.60661-13.628-0.077985z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7d7f\"/><path d=\"m182.1 83.85-11.522 4.5439-5.4827 0.36771 13.325-4.6772z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b1b4b8\"/><path d=\"m149.38 294.47 13.387 6.7396 0.26353 1.5781-13.402-6.3011z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m320.93 211.94-3.0283 14.765-2.7786-2.9271 2.9113-14.636z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#525355\"/><path d=\"m218.82 310.65-12.331-0.24345 14.122-0.24932z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m218.02 81.155 11.237 2.6256-5.7654-0.17716-8.3826-2.535z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9ea1\"/><path d=\"m250.01 89.032 13.264 6.5912-4.8807-0.56311-12.061-6.4261z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#898b8e\"/><path d=\"m192.86 310.33 13.628 0.077985-11.537 0.39106z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7b7d80\"/><path d=\"m136.97 286.06 12.41 8.4103 0.24907 2.0166-12.464-8.0416z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9da1\"/><path d=\"m322 196.88-1.0649 15.059-2.8955-2.7984 1.0233-14.872z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#545658\"/><path d=\"m152.54 95.241-11.577 8.1589-4.5305 0.77387 12.465-8.3536z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c6\"/><path d=\"m196.81 81.095-9.4047 2.5622-5.3012 0.19366 12.034-2.6613z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m234.56 307.96-13.951 2.2044 0.82194-0.54049 14.71-2.7285z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m216.17 311.06-9.6893-0.65428 12.331 0.24345z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m194.95 310.8 11.537-0.39106-8.6493 0.76784z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7b7d80\"/><path d=\"m125.74 276.12 11.226 9.9391 0.19547 2.3853-11.308-9.6508z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6a9\"/><path d=\"m321.08 181.78 0.92088 15.094-2.9372-2.6109-0.88486-14.861z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#58595b\"/><path d=\"m212.86 311.36-6.3769-0.9544 9.6893 0.65428z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#77797b\"/><path d=\"m197.84 311.18 8.6493-0.76784-5.162 1.0259z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7d7f\"/><path d=\"m177.13 307.25 14.569 2.5513 1.1541 0.52862-13.479-2.0375z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#848689\"/><path d=\"m209.11 311.53-2.6217-1.1226 6.3769 0.9544z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7d\"/><path d=\"m115.89 264.82 9.8538 11.301 0.11352 2.6736-9.9521-11.1z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m318.18 166.92 2.8942 14.865-2.9011-2.3783-2.7822-14.602z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m201.32 311.44 5.162-1.0259-1.3159 1.147z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7c7f\"/><path d=\"m205.17 311.56 1.3159-1.147 2.6217 1.1226z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m220.16 81.263 13.358 2.7396-4.2547-0.2224-11.237-2.6256z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9ea1\"/><path d=\"m165.1 88.762-12.554 6.4792-3.6433 0.57908 13.474-6.6494z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bbbec2\"/><path d=\"m248.1 303.82-13.54 4.1365 1.5808-1.0646 14.226-4.6252z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m235.96 84.256 14.047 4.7754-3.6777-0.39801-12.815-4.6306z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m107.57 252.35 8.316 12.474 0.015273 2.8748-8.4181-12.362z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m313.36 152.54 4.82 14.378-2.7892-2.1155-4.638-14.099z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m194.14 81.189-12.034 2.6613-3.6796 0.2344 13.873-2.7816z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb2b6\"/><path d=\"m306.7 138.9 6.664 13.639-2.6072-1.8369-6.4214-13.358z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#67696b\"/><path d=\"m100.93 238.91 6.6379 13.438-0.086849 2.9867-6.7321-13.413z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b8bcc0\"/><path d=\"m231.04 308.93-12.222 1.7232 1.7911-0.49277 13.951-2.2044z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#717375\"/><path d=\"m163.03 302.79 14.106 4.4603 2.2441 1.0424-13.096-3.9801z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d9093\"/><path d=\"m298.31 126.24 8.3934 12.662-2.3647-1.5559-8.1028-12.39z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m96.086 224.74 4.8469 14.177-0.18102 3.0111-4.9227-14.234z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec2c6\"/><path d=\"m178.42 84.085-13.325 4.6772-2.7236 0.40886 14.253-4.8263z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6babe\"/><path d=\"m260.99 297.81-12.892 6.0118 2.2669-1.5533 13.5-6.4478z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656769\"/><path d=\"m179.38 308.29 13.479 2.0375 2.091 0.46904-11.446-1.5785z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m206.48 80.479 1.3097 0.50241-3.9194 0.005568 2.6097-0.50798z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m206.48 80.479 5.1417 0.53005-3.832-0.027638-1.3097-0.50241z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ac\"/><path d=\"m206.48 80.479-2.6097 0.50798-3.7452 0.03841 6.3549-0.54639z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a8abae\"/><path d=\"m288.33 114.78 9.9772 11.463-2.0741-1.2841-9.6536-11.21z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m93.113 210.06 2.9722 14.678-0.2569 2.954-3.0218-14.808z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c7cb\"/><path d=\"m221.37 81.386 14.592 2.8698-2.4454-0.25317-13.358-2.7396z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9c9ea2\"/><path d=\"m206.48 80.479 8.6302 0.58909-3.4885-0.059035-5.1417-0.53005z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ac\"/><path d=\"m206.48 80.479-6.3549 0.54639-3.3204 0.068736 9.6752-0.61513z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m276.94 104.71 11.387 10.064-1.7505-1.0305-11.047-9.8348z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m92.068 195.12 1.0448 14.934-0.30641 2.8248-1.0628-15.123z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c8cbd0\"/><path d=\"m206.48 80.479 11.541 0.67564-2.9105-0.086558-8.6302-0.58909z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ab\"/><path d=\"m206.48 80.479-9.6752 0.61513-2.6716 0.094545 12.347-0.70967z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m192.3 81.303-13.873 2.7816-1.7951 0.25978 14.788-2.9154z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m225.8 309.74-9.63 1.3197 2.6415-0.41083 12.222-1.7232z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747779\"/><path d=\"m273.01 290.01-12.016 7.7967 2.8745-1.9892 12.542-8.1653z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#616365\"/><path d=\"m264.34 96.221 12.598 8.4898-1.4102-0.80101-12.258-8.287z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m92.972 180.19-0.90353 14.937-0.32435 2.6358 0.91906-15.172z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cbcfd3\"/><path d=\"m206.48 80.479 13.675 0.78401-2.1346-0.10836-11.541-0.67564z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ab\"/><path d=\"m149.63 296.49 13.402 6.3011 3.2543 1.5227-12.483-5.8716z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#97999d\"/><path d=\"m183.5 309.22 11.446 1.5785 2.8878 0.37679-8.6029-1.2077z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m206.48 80.479-12.347 0.70967-1.8404 0.11409 14.187-0.82376z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m250.76 89.453 13.588 6.768-1.0699-0.59817-13.264-6.5912z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d9093\"/><path d=\"m95.812 165.5-2.8405 14.689-0.30882 2.4008 2.888-14.954z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd1d6\"/><path d=\"m242.94 305.25-11.9 3.6847 3.5205-0.97392 13.54-4.1365z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7073\"/><path d=\"m206.48 80.479 14.886 0.90696-1.211-0.12295-13.675-0.78401z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ac\"/><path d=\"m236.41 84.523 14.341 4.9297-0.74561-0.42141-14.047-4.7754z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#95989b\"/><path d=\"m100.55 151.31-4.7336 14.191-0.26135 2.135 4.8081-14.472z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cfd2d7\"/><path d=\"m206.48 80.479-14.187 0.82376-0.88059 0.12602 15.068-0.94978z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m283.93 280.55-10.923 9.4579 3.4007-2.3578 11.368-9.7478z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m221.57 81.516 14.843 3.0077-0.45181-0.26713-14.592-2.8698z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9ea0a4\"/><path d=\"m219.21 310.34-6.3506 1.0234 3.3124-0.30011 9.63-1.3197z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7d\"/><path d=\"m107.1 137.86-6.5508 13.45-0.18685 1.853 6.6444-13.735z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cfd3d7\"/><path d=\"m206.48 80.479 15.087 1.0362-0.20037-0.12927-14.886-0.90696z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ac\"/><path d=\"m115.36 125.38-8.261 12.479-0.093193 1.5687 8.3635-12.754z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ced2d7\"/><path d=\"m189.23 309.97 8.6029 1.2077 3.4873 0.25807-5.1431-0.95266z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#848689\"/><path d=\"m166.28 304.31 13.096 3.9801 4.1232 0.928-11.156-3.5482z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9194\"/><path d=\"m206.48 80.479-15.068 0.94978 0.14428 0.12943 14.924-1.0792z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#adb0b4\"/><path d=\"m125.19 114.08-9.8347 11.293 0.009308 1.2939 9.9341-11.549z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ccd0d5\"/><path d=\"m137.16 288.45 12.464 8.0416 4.1726 1.9522-11.646-7.6775z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a6\"/><path d=\"m191.42 81.429-14.788 2.9154 0.2313 0.26779 14.701-3.0537z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b4b8bc\"/><path d=\"m136.44 104.17-11.244 9.9101 0.1087 1.0375 11.328-10.142z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c9cdd1\"/><path d=\"m176.63 84.345-14.253 4.8263 0.26374 0.42295 14.221-4.9814z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bbbec2\"/><path d=\"m148.9 95.82-12.465 8.3536 0.19232 0.80566 12.52-8.5583z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c9cd\"/><path d=\"m162.38 89.171-13.474 6.6494 0.24773 0.60103 13.49-6.8275z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c1c4c8\"/><path d=\"m211.72 310.68-2.6138 0.85686 3.7552-0.16822 6.3506-1.0234z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7c7e81\"/><path d=\"m206.48 80.479 14.257 1.163 0.82955-0.12679-15.087-1.0362z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m196.18 310.48 5.1431 0.95266 3.846 0.12112-1.3122-0.83265z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#828487\"/><path d=\"m293.56 269.59-9.6295 10.964 3.8457-2.6477 9.9956-11.168z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5d5f61\"/><path d=\"m206.48 80.479-14.924 1.0792 1.1649 0.12401 13.759-1.2032z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb1b5\"/><path d=\"m203.86 310.72 1.3122 0.83265 3.9376-0.024418 2.6138-0.85686z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8184\"/><path d=\"m206.48 80.479 12.449 1.2786 1.8081-0.1156-14.257-1.163z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a8abae\"/><path d=\"m206.48 80.479-13.759 1.2032 2.1108 0.11004 11.648-1.3133z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb1b5\"/><path d=\"m254.3 299.64-11.366 5.6059 5.1605-1.4257 12.892-6.0118z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6c6e71\"/><path d=\"m220.74 81.642 14.078 3.1439 1.5945-0.26298-14.843-3.0077z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a7\"/><path d=\"m301.72 257.3-8.1576 12.285 4.2118-2.8517 8.4485-12.4z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m125.85 278.8 11.308 9.6508 4.9904 2.3162-10.597-9.3636z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m206.48 80.479 9.7824 1.375 2.6667-0.096383-12.449-1.2786z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m235.21 306.44-9.4019 3.3034 5.2333-0.81441 11.9-3.6847z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m206.48 80.479-11.648 1.3133 2.9154 0.088396 8.7324-1.4017z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb1b5\"/><path d=\"m206.48 80.479 6.4382 1.4454 3.3442-0.070409-9.7824-1.375z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m191.56 81.559-14.701 3.0537 2.2641 0.25751 13.602-3.1872z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6b9be\"/><path d=\"m206.48 80.479-8.7324 1.4017 3.5208 0.060547 5.2116-1.4622z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb1b5\"/><path d=\"m206.48 80.479 2.6469 1.4849 3.7913-0.039468-6.4382-1.4454z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m206.48 80.479-5.2116 1.4622 3.883 0.028417 1.3286-1.4906z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#adb0b4\"/><path d=\"m234.82 84.786 13.651 5.083 2.2851-0.41632-14.341-4.9297z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9ca0\"/><path d=\"m172.35 305.67 11.156 3.5482 5.7312 0.74758-8.4054-3.1973z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9194\"/><path d=\"m206.48 80.479-1.3286 1.4906 3.9755-0.005729-2.6469-1.4849z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m308.25 243.91-6.5318 13.394 4.5028-2.9667 6.7521-13.422z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5c5e60\"/><path d=\"m153.8 298.44 12.483 5.8716 6.0636 1.3599-10.665-5.4827z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999c9f\"/><path d=\"m115.9 267.7 9.9521 11.1 5.7018 2.6034-9.35-10.897z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m248.47 89.869 12.978 6.9446 2.8953-0.59292-13.588-6.768z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#939699\"/><path d=\"m218.93 81.758 12.334 3.2689 3.5526-0.2406-14.078-3.1439z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6aa\"/><path d=\"m313.03 229.64-4.7808 14.27 4.7231-2.9943 4.935-14.215z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5d5f61\"/><path d=\"m176.86 84.612-14.221 4.9814 3.2814 0.40814 13.203-5.1321z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c6\"/><path d=\"m264.93 292.19-10.624 7.4509 6.6868-1.8317 12.016-7.7967z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d6f\"/><path d=\"m225.42 307.32-6.2124 3.0222 6.5918-0.59634 9.4019-3.3034z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7a7d7f\"/><path d=\"m192.73 81.683-13.602 3.1872 4.1612 0.22926 11.551-3.3065z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b7babf\"/><path d=\"m261.45 96.814 12.071 8.6933 3.4224-0.79644-12.598-8.4898z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8f92\"/><path d=\"m315.96 214.75-2.9366 14.892 4.8773-2.9399 3.0283-14.765z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#5f6163\"/><path d=\"m107.48 255.34 8.4181 12.362 6.3039 2.8062-7.9265-12.247z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#babdc1\"/><path d=\"m180.83 306.77 8.4054 3.1973 6.9471 0.51312-5.0336-2.9548z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d9093\"/><path d=\"m273.52 105.51 10.943 10.295 3.8667-1.0275-11.387-10.064z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m317 199.5-1.0332 15.247 4.969-2.8127 1.0649-15.059z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#626366\"/><path d=\"m162.64 89.594-13.49 6.8275 4.2045 0.5819 12.567-7.0013z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c8cd\"/><path d=\"m216.27 81.854 9.7187 3.3737 5.2819-0.2012-12.334-3.2689z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a7aaae\"/><path d=\"m244.21 301.18-9.0034 5.2611 7.7315-1.1957 11.366-5.6059z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#747679\"/><path d=\"m284.46 115.8 9.613 11.719 4.2308-1.2835-9.9772-11.463z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7f8184\"/><path d=\"m316.1 184.17 0.89346 15.328 5.0007-2.6249-0.92088-15.094z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#656769\"/><path d=\"m214.28 307.81-2.5597 2.8636 7.4921-0.33479 6.2124-3.0222z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#808386\"/><path d=\"m142.15 290.76 11.646 7.6775 7.8815 1.7488-9.9781-7.3455z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6a9\"/><path d=\"m294.08 127.52 8.1053 12.937 4.5188-1.5584-8.3934-12.662z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m313.3 169.04 2.8066 15.131 4.9733-2.3906-2.8942-14.865z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#696b6d\"/><path d=\"m191.15 307.53 5.0336 2.9548 7.677 0.24113-1.2853-2.8405z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8a8c90\"/><path d=\"m194.84 81.793-11.551 3.3065 5.7846 0.18469 8.6822-3.4028z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b7babf\"/><path d=\"m100.75 241.92 6.7321 13.413 6.7955 2.9214-6.3506-13.384z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c1c4c9\"/><path d=\"m231.27 85.027 11.998 5.2246 5.2051-0.38217-13.651-5.083z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9fa2a5\"/><path d=\"m302.18 140.46 6.4472 13.924 4.7356-1.8428-6.664-13.639z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#737578\"/><path d=\"m308.63 154.38 4.6698 14.66 4.8858-2.1249-4.82-14.378z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6e7072\"/><path d=\"m202.57 307.88 1.2853 2.8405 7.8636-0.048626 2.5597-2.8636z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m274.61 283-9.684 9.1836 8.0782-2.1775 10.923-9.4579z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m149.15 96.421-12.52 8.5583 5.0245 0.78242 11.7-8.7588z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cbced3\"/><path d=\"m161.68 300.19 10.665 5.4827 8.4817 1.0985-8.055-5.1648z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999c9f\"/><path d=\"m212.92 81.925 6.4093 3.4506 6.6536-0.14733-9.7187-3.3737z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m179.12 84.87-13.203 5.1321 6.1166 0.36454 11.248-5.2674z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bfc3c7\"/><path d=\"m95.829 227.69 4.9227 14.234 7.177 2.9502-4.6504-14.286z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c7cbcf\"/><path d=\"m197.75 81.881-8.6822 3.4028 7.0123 0.12678 5.1907-3.469z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6b9be\"/><path d=\"m136.63 104.98-11.328 10.142 5.7358 1.0104 10.617-10.37z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d0d3d8\"/><path d=\"m209.13 81.964 2.638 3.4939 7.5626-0.082718-6.4093-3.4506z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aeb2b6\"/><path d=\"m201.27 81.942-5.1907 3.469 7.7494 0.059576 1.3243-3.5001z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b4b8bc\"/><path d=\"m92.807 212.88 3.0218 14.808 7.4494 2.8977-2.8573-14.932z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd0d5\"/><path d=\"m205.16 81.97-1.3243 3.5001 7.9378-0.012014-2.638-3.4939z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m243.27 90.252 11.443 7.1085 6.7405-0.54602-12.978-6.9446z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9da1\"/><path d=\"m125.3 115.12-9.9341 11.549 6.3356 1.2631 9.3344-11.802z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d3d7dc\"/><path d=\"m131.56 281.4 10.597 9.3636 9.5497 2.0809-9.1023-9.0995z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m283.17 272.24-8.5583 10.769 9.3168-2.4518 9.6295-10.964z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m231.38 302.31-5.9605 5.0056 9.7813-0.87756 9.0034-5.2611z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d7f82\"/><path d=\"m91.744 197.76 1.0628 15.123 7.6138 2.7731-1.0055-15.308z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d1d5da\"/><path d=\"m115.37 126.67-8.3635 12.754 6.8231 1.5346 7.8761-13.026z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d6dadf\"/><path d=\"m225.99 85.228 9.4799 5.344 7.8-0.32054-11.998-5.2246z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a5a8ac\"/><path d=\"m252.65 294.02-8.4367 7.1553 10.094-1.5405 10.624-7.4509z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75777a\"/><path d=\"m92.663 182.59-0.91906 15.172 7.6711 2.5881 0.8695-15.403z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d5d8dd\"/><path d=\"m107 139.43-6.6444 13.735 7.1989 1.8157 6.2686-14.016z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d8dbe0\"/><path d=\"m95.551 167.63-2.888 14.954 7.6216 2.3569 2.7309-15.217z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d7dbdf\"/><path d=\"m172.77 301.61 8.055 5.1648 10.319 0.75555-4.8317-4.9443z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#97999d\"/><path d=\"m100.36 153.16-4.8081 14.472 7.4646 2.0944 4.5424-14.751z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d8dce1\"/><path d=\"m165.92 90.002-12.567 7.0013 7.9457 0.52135 10.738-7.1581z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c7cbcf\"/><path d=\"m183.29 85.099-11.248 5.2674 8.5573 0.29449 8.4752-5.3772z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bfc3c7\"/><path d=\"m254.71 97.36 10.674 8.8829 8.137-0.73562-12.071-8.6933z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#95989c\"/><path d=\"m290.44 260.06-7.2653 12.172 10.388-2.6469 8.1576-12.285z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6a6c6e\"/><path d=\"m151.7 292.85 9.9781 7.3455 11.092 1.4164-7.5531-7.0724z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6a9\"/><path d=\"m216.74 302.95-2.4586 4.861 11.145-0.49342 5.9605-5.0056z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#85878a\"/><path d=\"m122.21 270.5 9.35 10.897 11.044 2.345-8.0501-10.708z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b9bd\"/><path d=\"m186.31 302.58 4.8317 4.9443 11.425 0.35549-1.2347-4.8399z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m219.33 85.375 6.2642 5.4319 9.8692-0.23527-9.4799-5.344z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m201.34 303.04 1.2347 4.8399 11.709-0.071711 2.4586-4.861z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8f92\"/><path d=\"m189.07 85.284-8.4752 5.3772 10.412 0.20256 5.0757-5.4529z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c6\"/><path d=\"m265.38 106.24 9.703 10.511 9.3768-0.95162-10.943-10.295z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#909396\"/><path d=\"m153.35 97.003-11.7 8.7588 9.6205 0.70302 10.025-8.9405z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd1d6\"/><path d=\"m296.26 246.7-5.8275 13.364 11.28-2.7592 6.5318-13.394z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6b6d70\"/><path d=\"m235.47 90.572 9.065 7.2472 10.178-0.45926-11.443-7.1085z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a2a5a9\"/><path d=\"m260.35 285.08-7.7075 8.9474 12.282-1.8361 9.684-9.1836z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#76787b\"/><path d=\"m211.77 85.458 2.5812 5.4815 11.246-0.13229-6.2642-5.4319z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b1b4b8\"/><path d=\"m236.98 295.38-5.5955 6.9351 12.824-1.1331 8.4367-7.1553z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#808285\"/><path d=\"m196.08 85.411-5.0757 5.4529 11.529 0.09531 1.296-5.4887z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bbbec2\"/><path d=\"m114.28 258.26 7.9265 12.247 12.344 2.5335-6.8383-12.137z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c5\"/><path d=\"m203.83 85.47-1.296 5.4887 11.815-0.019227-2.5812-5.4815z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6babe\"/><path d=\"m172.04 90.366-10.738 7.1581 11.185 0.42228 8.1103-7.2859z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c7cbcf\"/><path d=\"m275.09 116.75 8.5447 11.959 10.445-1.1915-9.613-11.719z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8c8e91\"/><path d=\"m300.53 232.38-4.2711 14.317 11.985-2.7893 4.7808-14.27z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6d6f71\"/><path d=\"m165.22 294.54 7.5531 7.0724 13.542 0.97611-4.5378-6.882z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a6\"/><path d=\"m142.6 283.75 9.1023 9.0995 13.517 1.6895-6.9047-8.8809z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m141.65 105.76-10.617 10.37 11.117 0.91021 9.1205-10.577z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d3d7db\"/><path d=\"m283.63 128.71 7.2196 13.195 11.331-1.4495-8.1053-12.937z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#87898c\"/><path d=\"m303.16 217.37-2.6258 15.008 12.494-2.7419 2.9366-14.892z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#6f7174\"/><path d=\"m107.93 244.87 6.3506 13.384 13.432 2.6427-5.4878-13.354z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c9cd\"/><path d=\"m244.53 97.819 8.4771 9.044 12.375-0.62036-10.674-8.8829z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a6\"/><path d=\"m267.18 274.48-6.8255 10.599 14.258-2.0723 8.5583-10.769z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#787a7c\"/><path d=\"m225.6 90.807 6.0017 7.3498 12.933-0.33784-9.065-7.2472z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#abaeb2\"/><path d=\"m290.85 141.91 5.7526 14.191 12.025-1.7168-6.4472-13.924z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#828487\"/><path d=\"m304.08 201.95-0.92428 15.422 12.805-2.6252 1.0332-15.247z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#727477\"/><path d=\"m219.05 296.14-2.3104 6.81 14.647-0.63803 5.5955-6.9351z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8a8c8f\"/><path d=\"m131.04 116.13-9.3344 11.802 12.413 1.1405 8.0376-12.032z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d7dbe0\"/><path d=\"m296.6 156.1 4.1721 14.925 12.523-1.9819-4.6698-14.66z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7d8083\"/><path d=\"m303.28 186.4 0.79931 15.547 12.914-2.4505-0.89346-15.328z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#75787a\"/><path d=\"m181.78 295.7 4.5378 6.882 15.022 0.45981-1.1604-6.7918z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9da1\"/><path d=\"m300.77 171.02 2.5098 15.38 12.82-2.2312-2.8066-15.131z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797b7e\"/><path d=\"m180.59 90.661-8.1103 7.2859 13.657 0.29104 4.8651-7.3743z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c8cd\"/><path d=\"m103.28 230.59 4.6504 14.286 14.295 2.6728-4.0238-14.331z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ccd0d4\"/><path d=\"m200.18 296.25 1.1604 6.7918 15.402-0.092784 2.3104-6.81z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#939699\"/><path d=\"m161.3 97.525-10.025 8.9405 13.62 0.57084 7.5895-9.089z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd1d6\"/><path d=\"m242.1 286.61-5.1204 8.7704 15.665-1.3533 7.7075-8.9474z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#838588\"/><path d=\"m121.7 127.93-7.8761 13.026 13.494 1.3884 6.7955-13.274z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dadee3\"/><path d=\"m134.55 273.04 8.0501 10.708 15.715 1.9081-6.1181-10.551z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b9bd\"/><path d=\"m214.35 90.94 2.4756 7.4077 14.772-0.19024-6.0017-7.3498z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b3b6ba\"/><path d=\"m100.42 215.65 2.8573 14.932 14.921 2.6283-2.4745-15.044z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d2d5da\"/><path d=\"m191.01 90.864-4.8651 7.3743 15.151 0.1371 1.2433-7.4161z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c1c4c8\"/><path d=\"m253.01 106.86 7.7234 10.695 14.355-0.80442-9.703-10.511z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9d9fa3\"/><path d=\"m272.98 262.4-5.8047 12.073 15.991-2.2419 7.2653-12.172z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#797c7e\"/><path d=\"m158.31 285.65 6.9047 8.8809 16.557 1.1665-4.1542-8.7276z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m202.54 90.959-1.2433 7.4161 15.534-0.027666-2.4756-7.4077z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bbbec2\"/><path d=\"m113.83 140.96-6.2686 14.016 14.345 1.6452 5.4175-14.273z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m99.415 200.35 1.0055 15.308 15.304 2.517-0.87114-15.475z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d6dadf\"/><path d=\"m107.56 154.98-4.5424 14.751 14.957 1.8998 3.9307-15.006z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m231.6 98.157 5.6227 9.1635 15.787-0.45729-8.4771-9.044z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m100.28 184.94-0.8695 15.403 15.439 2.3497 0.75335-15.614z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d9dde2\"/><path d=\"m103.02 169.73-2.7309 15.217 15.322 2.1393 2.3652-15.456z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m151.27 106.47-9.1205 10.577 15.822 0.74073 6.9192-10.747z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d3d7db\"/><path d=\"m221.16 287.47-2.1162 8.6695 17.932-0.76309 5.1204-8.7704z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9195\"/><path d=\"m127.71 260.9 6.8383 12.137 17.647 2.0656-5.2056-12.045z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c5\"/><path d=\"m172.48 97.947-7.5895 9.089 16.687 0.39416 4.5599-9.1922z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cbced3\"/><path d=\"m260.73 117.56 6.8154 12.164 16.084-1.0093-8.5447-11.959z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999ca0\"/><path d=\"m277.65 249.07-4.6628 13.335 17.452-2.3412 5.8275-13.364z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7c7e81\"/><path d=\"m246.64 276.14-4.5414 10.471 18.252-1.5303 6.8255-10.599z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#86888b\"/><path d=\"m177.62 286.97 4.1542 8.7276 18.4 0.55009-1.0631-8.6547z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a3a6a9\"/><path d=\"m199.11 287.6 1.0631 8.6547 18.873-0.11103 2.1162-8.6695z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9a9da0\"/><path d=\"m216.83 98.347 2.3217 9.2311 18.073-0.25786-5.6227-9.1635z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b8bc\"/><path d=\"m152.2 275.1 6.1181 10.551 19.308 1.3197-3.6858-10.44z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m267.55 129.72 5.7687 13.416 17.535-1.2301-7.2196-13.195z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#96999c\"/><path d=\"m281.07 234.71-3.4213 14.355 18.616-2.3702 4.2711-14.317z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#7e8184\"/><path d=\"m142.15 117.04-8.0376 12.032 17.75 0.92998 6.1092-12.222z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d7dbe0\"/><path d=\"m186.14 98.238-4.5599 9.1922 18.545 0.18589 1.1661-9.2409z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c9cd\"/><path d=\"m122.22 247.55 5.4878 13.354 19.279 2.1582-4.1833-13.327z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c5c9cd\"/><path d=\"m237.22 107.32 5.1314 10.832 18.379-0.59409-7.7234-10.695z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a9acb0\"/><path d=\"m201.29 98.375-1.1661 9.2409 19.022-0.037521-2.3217-9.2311z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c6\"/><path d=\"m273.31 143.14 4.6033 14.42 18.684-1.4589-5.7526-14.191z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#929598\"/><path d=\"m283.17 219.61-2.105 15.106 19.466-2.3323 2.6258-15.008z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#818487\"/><path d=\"m164.89 107.04-6.9192 10.747 19.443 0.51234 4.1632-10.865z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d0d3d8\"/><path d=\"m250.51 264.14-3.8672 11.997 20.537-1.6584 5.8047-12.073z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#898c8f\"/><path d=\"m223.04 277.07-1.8785 10.398 20.936-0.86398 4.5414-10.471z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#94969a\"/><path d=\"m134.12 129.07-6.7955 13.274 19.372 1.134 5.1735-13.478z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dadee3\"/><path d=\"m277.92 157.56 3.3423 15.152 19.514-1.6859-4.1721-14.925z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8f9195\"/><path d=\"m283.91 204.04-0.74126 15.57 19.987-2.2344 0.92428-15.422z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#84878a\"/><path d=\"m118.2 233.22 4.0238 14.331 20.584 2.1858-3.0705-14.365z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ccd0d4\"/><path d=\"m173.94 276.53 3.6858 10.44 21.491 0.62298-0.94377-10.387z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m281.26 172.71 2.0121 15.594 20.012-1.8992-2.5098-15.38z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8b8e91\"/><path d=\"m283.27 188.3 0.64104 15.734 20.17-2.0862-0.79931-15.547z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#888a8d\"/><path d=\"m146.99 263.06 5.2056 12.045 21.74 1.4307-3.1396-11.979z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#babdc1\"/><path d=\"m242.35 118.15 4.535 12.317 20.659-0.74667-6.8154-12.164z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a8abaf\"/><path d=\"m198.17 277.21 0.94377 10.387 22.052-0.12578 1.8785-10.398z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a0a3a7\"/><path d=\"m219.15 107.58 2.1209 10.91 21.083-0.33543-5.1314-10.832z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b9bd\"/><path d=\"m127.32 142.35-5.4175 14.273 20.66 1.3455 4.13-14.484z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m115.72 218.17 2.4745 15.044 21.537 2.1515-1.8896-15.133z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d2d5da\"/><path d=\"m181.58 107.43-4.1632 10.865 21.642 0.24187 1.0654-10.921z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c9cdd1\"/><path d=\"m253.62 250.83-3.1099 13.312 22.474-1.7343 4.6628-13.335z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#8d8f93\"/><path d=\"m200.13 107.62-1.0654 10.921 22.208-0.048834-2.1209-10.91z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c0c4c8\"/><path d=\"m157.98 117.78-6.1092 12.222 21.871 0.6442 3.6806-12.353z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d3d7dc\"/><path d=\"m121.9 156.62-3.9307 15.006 21.591 1.5553 2.9996-15.216z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m114.85 202.7 0.87114 15.475 22.122 2.0617-0.66547-15.611z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d6dadf\"/><path d=\"m117.97 171.63-2.3652 15.456 22.15 1.7524 1.8062-15.654z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#dce0e5\"/><path d=\"m115.61 187.08-0.75335 15.614 22.328 1.925 0.5755-15.787z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d9dde2\"/><path d=\"m224.64 265.12-1.6009 11.953 23.599-0.93731 3.8672-11.997z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#999b9f\"/><path d=\"m246.89 130.47 3.8436 13.58 22.585-0.91126-5.7687-13.416z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m142.81 249.73 4.1833 13.327 23.806 1.4968-2.5254-13.306z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c1c4c9\"/><path d=\"m170.8 264.56 3.1396 11.979 24.233 0.67602-0.80436-11.947z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m255.9 236.45-2.2838 14.382 24.027-1.7577 3.4213-14.355z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#909396\"/><path d=\"m221.27 118.49 1.876 12.403 23.742-0.42205-4.535-12.317z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6b9bd\"/><path d=\"m197.36 265.26 0.80436 11.947 24.874-0.13652 1.6009-11.953z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m151.87 130-5.1735 13.478 23.924 0.78649 3.1205-13.62z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d6dadf\"/><path d=\"m177.42 118.3-3.6806 12.353 24.381 0.3044 0.94249-12.416z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ccd0d5\"/><path d=\"m250.73 144.05 3.0704 14.591 24.117-1.082-4.6033-14.42z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a4a6aa\"/><path d=\"m199.06 118.54-0.94249 12.416 25.026-0.061472-1.876-12.403z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c2c6ca\"/><path d=\"m257.31 221.27-1.406 15.178 25.164-1.7311 2.105-15.106z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#94979a\"/><path d=\"m139.74 235.37 3.0705 14.365 25.464 1.5175-1.855-14.388z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c7cbcf\"/><path d=\"m225.93 251.82-1.2881 13.298 25.865-0.98115 3.1099-13.312z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9da0a4\"/><path d=\"m253.8 158.64 2.2312 15.321 25.229-1.2514-3.3423-15.152z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a1a4a7\"/><path d=\"m146.69 143.48-4.13 14.484 25.561 0.93416 2.4934-14.632z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d8dbe0\"/><path d=\"m257.8 205.59-0.49524 15.68 25.863-1.6593 0.74126-15.57z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#979a9e\"/><path d=\"m168.27 251.25 2.5254 13.306 26.568 0.70778-0.64729-13.296z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b8bcc0\"/><path d=\"m223.14 130.89 1.5911 13.674 25.995-0.51556-3.8436-13.58z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b5b8bd\"/><path d=\"m256.03 173.96 1.3439 15.753 25.897-1.4104-2.0121-15.594z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9ea1a4\"/><path d=\"m257.38 189.71 0.42829 15.873 26.11-1.5495-0.64104-15.734z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#9b9ea1\"/><path d=\"m137.85 220.23 1.8896 15.133 26.68 1.4948-1.1421-15.195z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd0d5\"/><path d=\"m196.72 251.97 0.64729 13.296 27.279-0.14296 1.2881-13.298z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#acafb3\"/><path d=\"m173.74 130.65-3.1205 13.62 26.702 0.37192 0.79948-13.687z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#ced2d7\"/><path d=\"m142.56 157.97-2.9996 15.216 26.748 1.0806 1.8122-15.362z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d8dce1\"/><path d=\"m226.88 237.43-0.94642 14.396 27.687-0.99517 2.2838-14.382z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a2a5a8\"/><path d=\"m137.18 204.62 0.66547 15.611 27.427 1.433-0.40233-15.706z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d1d5da\"/><path d=\"m198.12 130.95-0.79948 13.687 27.417-0.075122-1.5911-13.674z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c6cb\"/><path d=\"m139.56 173.18-1.8062 15.654 27.463 1.2181 1.0917-15.791z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d7dbdf\"/><path d=\"m137.76 188.84-0.5755 15.787 27.69 1.3383 0.34794-15.907z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#d5d8dd\"/><path d=\"m224.74 144.57 1.2718 14.688 27.793-0.61264-3.0704-14.591z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b4b7bb\"/><path d=\"m166.42 236.86 1.855 14.388 28.446 0.718-0.47561-14.398z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec2c6\"/><path d=\"m170.62 144.27-2.4934 14.632 28.556 0.44202 0.63909-14.702z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cfd3d7\"/><path d=\"m196.24 237.57 0.47561 14.398 29.215-0.14505 0.94642-14.396z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b5b9\"/><path d=\"m227.46 222.21-0.58284 15.218 29.024-0.98064 1.406-15.178z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#a6a9ad\"/><path d=\"m226.01 159.25 0.92464 15.418 29.1-0.70892-2.2312-15.321z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b2b6ba\"/><path d=\"m197.32 144.64-0.63909 14.702 29.328-0.089295-1.2718-14.688z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c6cb\"/><path d=\"m165.27 221.67 1.1421 15.195 29.826 0.70759-0.29291-15.224z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c3c7cb\"/><path d=\"m227.67 206.47-0.20534 15.742 29.847-0.94031 0.49524-15.68z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#aaadb1\"/><path d=\"m226.93 174.67 0.55713 15.843 29.887-0.79927-1.3439-15.753z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b0b3b7\"/><path d=\"m168.12 158.9-1.8122 15.362 29.903 0.51154 0.46466-15.432z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cfd2d7\"/><path d=\"m227.49 190.51 0.17758 15.952 30.137-0.87821-0.42829-15.873z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#adb0b4\"/><path d=\"m195.95 222.34 0.29291 15.224 30.637-0.14296 0.58284-15.218z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#b6babe\"/><path d=\"m164.87 205.96 0.40233 15.706 30.675 0.67854-0.1032-15.751z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c8cbd0\"/><path d=\"m196.68 159.34-0.46466 15.432 30.717-0.10335-0.92464-15.418z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c2c5ca\"/><path d=\"m166.31 174.26-1.0917 15.791 30.715 0.57677 0.27999-15.856z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cdd1d6\"/><path d=\"m165.22 190.05-0.34794 15.907 30.974 0.63375 0.089245-15.964z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#cbcfd3\"/><path d=\"m195.85 206.59 0.1032 15.751 31.513-0.1371 0.20534-15.742z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#babec2\"/><path d=\"m196.21 174.77-0.27999 15.856 31.554-0.11654-0.55713-15.843z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#c0c4c8\"/><path d=\"m195.93 190.63-0.089245 15.964 31.821-0.12805-0.17758-15.952z\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"#bec1c5\"/></g><path d=\"m204.48 195.98q-55.208-0.42096-110.42-0.84193\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" opacity=\".25\" stroke=\"#4060bf\" stroke-linecap=\"round\" stroke-width=\"2\"/><g transform=\"translate(194.48 48.787) scale(.12 -.12)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-7c\" transform=\"scale(.015625)\" d=\"m1344 4891v-6400h-531v6400h531z\"/><path id=\"DejaVuSans-30\" transform=\"scale(.015625)\" d=\"m2034 4250q-487 0-733-480-245-479-245-1442 0-959 245-1439 246-480 733-480 491 0 736 480 246 480 246 1439 0 963-246 1442-245 480-736 480zm0 500q785 0 1199-621 414-620 414-1801 0-1178-414-1799-414-620-1199-620-784 0-1198 620-414 621-414 1799 0 1181 414 1801 414 621 1198 621z\"/><path id=\"DejaVuSans-27e9\" transform=\"scale(.015625)\" d=\"m1925 2006-881-2850h-531l881 2850-881 2850h531l881-2850z\"/></defs><use transform=\"translate(0 .57812)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(33.691 .57812)\" xlink:href=\"#DejaVuSans-30\"/><use transform=\"translate(97.314 .57812)\" xlink:href=\"#DejaVuSans-30\"/><use transform=\"translate(160.94 .57812)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(45.955 198.04) scale(.12 -.12)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-31\" transform=\"scale(.015625)\" d=\"m794 531h1031v3560l-1122-225v575l1116 225h631v-4135h1031v-531h-2687v531z\"/></defs><use transform=\"translate(0 .57812)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(33.691 .57812)\" xlink:href=\"#DejaVuSans-30\"/><use transform=\"translate(97.314 .57812)\" xlink:href=\"#DejaVuSans-31\"/><use transform=\"translate(160.94 .57812)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(194.48 347.7) scale(.12 -.12)\" fill=\"#343a3f\"><use transform=\"translate(0 .57812)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(33.691 .57812)\" xlink:href=\"#DejaVuSans-31\"/><use transform=\"translate(97.314 .57812)\" xlink:href=\"#DejaVuSans-31\"/><use transform=\"translate(160.94 .57812)\" xlink:href=\"#DejaVuSans-27e9\"/></g><path d=\"m206.48 198q0 55.207 0 110.41\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" opacity=\".25\" stroke=\"#40bf60\" stroke-linecap=\"round\" stroke-width=\"2\"/><path d=\"m208.48 196.01q55.758 0.42516 111.52 0.85033\" clip-path=\"url(#0f2f6f3f14d)\" opacity=\"0\"/><path d=\"m206.48 194q0-55.759 0-111.52\" clip-path=\"url(#0f2f6f3f14d)\" fill=\"none\" opacity=\".5\" stroke=\"#4060bf\" stroke-linecap=\"round\" stroke-width=\"2\"/><path d=\"m373.34 338.21c0-0.56032-0.013752-1.1206-0.041246-1.6802-0.027493-0.55964-0.068719-1.1185-0.12364-1.6761l-34.077 3.3563z\" fill=\"#5770db\"/><path d=\"m373.18 334.85c-0.054921-0.55762-0.12352-1.1138-0.20574-1.6681-0.082216-0.55425-0.17802-1.1064-0.28734-1.656l-33.584 6.6804z\" fill=\"#5763db\"/><path d=\"m372.68 331.53c-0.10931-0.54955-0.2321-1.0963-0.36824-1.6399s-0.28561-1.0836-0.44826-1.6198l-32.768 9.94z\" fill=\"#5757db\"/><path d=\"m371.87 328.27c-0.16265-0.53619-0.33844-1.0683-0.52721-1.5959-0.18876-0.52756-0.39045-1.0504-0.60488-1.5681l-31.636 13.104z\" fill=\"#6357db\"/><path d=\"m370.73 325.11c-0.21442-0.51767-0.44152-1.03-0.68109-1.5365s-0.49153-1.0071-0.75566-1.5012l-30.199 16.142z\" fill=\"#6f57db\"/><path d=\"m369.3 322.07c-0.26413-0.49416-0.54035-0.98175-0.82842-1.4624s-0.58787-0.95406-0.89917-1.4199l-28.471 19.024z\" fill=\"#7c57db\"/><path d=\"m367.57 319.19c-0.3113-0.46589-0.63398-0.92406-0.96776-1.3741-0.33378-0.45005-0.67856-0.89184-1.034-1.325l-26.47 21.723z\" fill=\"#8857db\"/><path d=\"m365.57 316.49c-0.35546-0.43313-0.7215-0.85747-1.0978-1.2726-0.37628-0.41517-0.76271-0.82104-1.1589-1.2172l-24.213 24.213z\" fill=\"#9557db\"/><path d=\"m363.31 314c-0.3962-0.3962-0.80207-0.78262-1.2172-1.1589-0.41517-0.37629-0.83951-0.74232-1.2726-1.0978l-21.723 26.47z\" fill=\"#a157db\"/><path d=\"m360.82 311.74c-0.43313-0.35546-0.87492-0.70024-1.325-1.034-0.45005-0.33378-0.90822-0.65646-1.3741-0.96776l-19.024 28.471z\" fill=\"#ad57db\"/><path d=\"m358.12 309.74c-0.46589-0.3113-0.93934-0.61111-1.4199-0.89917-0.4806-0.28806-0.9682-0.56428-1.4624-0.82841l-16.142 30.199z\" fill=\"#ba57db\"/><path d=\"m355.24 308.01c-0.49416-0.26413-0.99472-0.5161-1.5012-0.75566-0.50652-0.23957-1.0188-0.46667-1.5365-0.68109l-13.104 31.636z\" fill=\"#c657db\"/><path d=\"m352.2 306.57c-0.51766-0.21442-1.0405-0.41611-1.5681-0.60488s-1.0597-0.36455-1.5959-0.52721l-9.94 32.768z\" fill=\"#d357db\"/><path d=\"m349.04 305.44c-0.53619-0.16265-1.0763-0.31212-1.6198-0.44826s-1.0903-0.25893-1.6399-0.36824l-6.6804 33.584z\" fill=\"#db57d7\"/><path d=\"m345.78 304.63c-0.54955-0.10931-1.1017-0.20512-1.656-0.28734-0.55425-0.082216-1.1104-0.15081-1.6681-0.20574l-3.3563 34.077z\" fill=\"#db57cb\"/><path d=\"m342.46 304.13c-0.55762-0.054921-1.1165-0.096145-1.6761-0.12364-0.55964-0.027494-1.1199-0.041246-1.6802-0.041246l2e-6 34.242z\" fill=\"#db57bf\"/><path d=\"m339.1 303.97c-0.56032 0-1.1206 0.013752-1.6802 0.041246-0.55964 0.027495-1.1185 0.068719-1.6761 0.12364l3.3563 34.077z\" fill=\"#db57b2\"/><path d=\"m335.74 304.13c-0.55762 0.054922-1.1138 0.12352-1.6681 0.20574-0.55425 0.082215-1.1064 0.17802-1.656 0.28734l6.6804 33.584z\" fill=\"#db57a6\"/><path d=\"m332.42 304.63c-0.54955 0.10931-1.0963 0.2321-1.6399 0.36824-0.54352 0.13614-1.0836 0.28561-1.6198 0.44826l9.94 32.768z\" fill=\"#db5799\"/><path d=\"m329.16 305.44c-0.53619 0.16265-1.0683 0.33844-1.5959 0.5272s-1.0504 0.39045-1.5681 0.60488l13.104 31.636z\" fill=\"#db578d\"/><path d=\"m325.99 306.57c-0.51767 0.21442-1.03 0.44152-1.5365 0.68109-0.50652 0.23957-1.0071 0.49153-1.5012 0.75566l16.142 30.199z\" fill=\"#db5780\"/><path d=\"m322.96 308.01c-0.49416 0.26413-0.98175 0.54035-1.4624 0.82841-0.4806 0.28806-0.95406 0.58788-1.4199 0.89917l19.024 28.471z\" fill=\"#db5774\"/><path d=\"m320.07 309.74c-0.46589 0.3113-0.92407 0.63398-1.3741 0.96776-0.45005 0.33378-0.89184 0.67856-1.325 1.034l21.723 26.47z\" fill=\"#db5768\"/><path d=\"m317.38 311.74c-0.43313 0.35546-0.85747 0.7215-1.2726 1.0978-0.41517 0.37628-0.82104 0.76271-1.2172 1.1589l24.213 24.213z\" fill=\"#db575b\"/><path d=\"m314.89 314c-0.3962 0.3962-0.78263 0.80208-1.1589 1.2172-0.37629 0.41517-0.74232 0.83951-1.0978 1.2726l26.47 21.723z\" fill=\"#db5f57\"/><path d=\"m312.63 316.49c-0.35546 0.43313-0.70024 0.87492-1.034 1.325-0.33378 0.45005-0.65647 0.90823-0.96776 1.3741l28.471 19.024z\" fill=\"#db6b57\"/><path d=\"m310.63 319.19c-0.3113 0.46589-0.61111 0.93934-0.89917 1.4199s-0.56428 0.9682-0.82841 1.4624l30.199 16.142z\" fill=\"#db7857\"/><path d=\"m308.9 322.07c-0.26413 0.49416-0.5161 0.99472-0.75566 1.5012-0.23957 0.50652-0.46666 1.0188-0.68109 1.5365l31.636 13.104z\" fill=\"#db8457\"/><path d=\"m307.46 325.11c-0.21442 0.51767-0.41611 1.0405-0.60487 1.5681-0.18877 0.52756-0.36456 1.0597-0.52721 1.5959l32.768 9.94z\" fill=\"#db9057\"/><path d=\"m306.33 328.27c-0.16265 0.53619-0.31212 1.0763-0.44826 1.6198-0.13614 0.54352-0.25893 1.0903-0.36824 1.6399l33.584 6.6804z\" fill=\"#db9d57\"/><path d=\"m305.51 331.53c-0.10931 0.54955-0.20512 1.1017-0.28734 1.656-0.082215 0.55425-0.15081 1.1104-0.20574 1.6681l34.077 3.3563z\" fill=\"#dba957\"/><path d=\"m305.02 334.85c-0.054921 0.55762-0.096145 1.1165-0.12364 1.6761-0.027494 0.55964-0.041246 1.1199-0.041246 1.6802l34.242-3e-6z\" fill=\"#dbb657\"/><path d=\"m304.86 338.21c0 0.56032 0.013752 1.1205 0.041246 1.6802 0.027495 0.55964 0.068719 1.1185 0.12364 1.6761l34.077-3.3563z\" fill=\"#dbc257\"/><path d=\"m305.02 341.57c0.054921 0.55762 0.12352 1.1138 0.20574 1.6681 0.082216 0.55425 0.17802 1.1064 0.28734 1.656l33.584-6.6803z\" fill=\"#dbcf57\"/><path d=\"m305.51 344.89c0.10931 0.54955 0.2321 1.0963 0.36824 1.6399s0.28561 1.0836 0.44826 1.6198l32.768-9.94z\" fill=\"#dbdb57\"/><path d=\"m306.33 348.15c0.16265 0.53619 0.33844 1.0683 0.5272 1.5959 0.18876 0.52756 0.39045 1.0504 0.60488 1.5681l31.636-13.104z\" fill=\"#cfdb57\"/><path d=\"m307.46 351.31c0.21442 0.51767 0.44152 1.03 0.68109 1.5365 0.23957 0.50652 0.49153 1.0071 0.75566 1.5012l30.199-16.142z\" fill=\"#c3db57\"/><path d=\"m308.9 354.35c0.26413 0.49416 0.54035 0.98175 0.82841 1.4624s0.58788 0.95406 0.89917 1.4199l28.471-19.024z\" fill=\"#b6db57\"/><path d=\"m310.63 357.23c0.3113 0.46589 0.63398 0.92406 0.96776 1.3741 0.33378 0.45005 0.67856 0.89184 1.034 1.325l26.47-21.723z\" fill=\"#aadb57\"/><path d=\"m312.63 359.93c0.35546 0.43313 0.7215 0.85748 1.0978 1.2726 0.37628 0.41517 0.7627 0.82104 1.1589 1.2172l24.213-24.213z\" fill=\"#9ddb57\"/><path d=\"m314.89 362.42c0.3962 0.3962 0.80207 0.78262 1.2172 1.1589 0.41517 0.37629 0.83951 0.74233 1.2726 1.0978l21.723-26.47z\" fill=\"#91db57\"/><path d=\"m317.38 364.68c0.43313 0.35546 0.87493 0.70024 1.325 1.034 0.45005 0.33378 0.90822 0.65646 1.3741 0.96775l19.024-28.471z\" fill=\"#85db57\"/><path d=\"m320.07 366.68c0.46589 0.3113 0.93935 0.61111 1.4199 0.89917 0.4806 0.28806 0.9682 0.56428 1.4624 0.82842l16.142-30.199z\" fill=\"#78db57\"/><path d=\"m322.96 368.41c0.49415 0.26413 0.99471 0.51609 1.5012 0.75566s1.0189 0.46666 1.5365 0.68109l13.104-31.636z\" fill=\"#6cdb57\"/><path d=\"m325.99 369.85c0.51767 0.21443 1.0405 0.41611 1.5681 0.60488 0.52756 0.18877 1.0597 0.36455 1.5959 0.5272l9.94-32.768z\" fill=\"#5fdb57\"/><path d=\"m329.16 370.98c0.53619 0.16265 1.0763 0.31212 1.6198 0.44827 0.54352 0.13614 1.0903 0.25893 1.6398 0.36824l6.6804-33.584z\" fill=\"#57db5b\"/><path d=\"m332.42 371.79c0.54955 0.10931 1.1017 0.20512 1.6559 0.28734 0.55425 0.082216 1.1104 0.15082 1.6681 0.20574l3.3563-34.077z\" fill=\"#57db67\"/><path d=\"m335.74 372.29c0.55762 0.054922 1.1165 0.096146 1.6762 0.12364 0.55964 0.027494 1.1199 0.041247 1.6802 0.041247v-34.242z\" fill=\"#57db73\"/><path d=\"m339.1 372.45c0.56032 0 1.1206-0.013753 1.6802-0.041247s1.1185-0.068718 1.6761-0.12364l-3.3563-34.077z\" fill=\"#57db80\"/><path d=\"m342.46 372.29c0.55762-0.054921 1.1138-0.12352 1.6681-0.20574s1.1064-0.17802 1.656-0.28734l-6.6804-33.584z\" fill=\"#57db8c\"/><path d=\"m345.78 371.79c0.54955-0.10931 1.0963-0.23209 1.6399-0.36824 0.54352-0.13614 1.0836-0.28561 1.6198-0.44827l-9.94-32.768z\" fill=\"#57db99\"/><path d=\"m349.04 370.98c0.53619-0.16265 1.0683-0.33844 1.5959-0.5272 0.52756-0.18877 1.0504-0.39045 1.5681-0.60488l-13.104-31.636z\" fill=\"#57dba5\"/><path d=\"m352.2 369.85c0.51766-0.21442 1.03-0.44152 1.5365-0.68109s1.0071-0.49153 1.5012-0.75566l-16.142-30.199z\" fill=\"#57dbb2\"/><path d=\"m355.24 368.41c0.49416-0.26413 0.98174-0.54035 1.4623-0.82841s0.95406-0.58788 1.4199-0.89917l-19.024-28.471z\" fill=\"#57dbbe\"/><path d=\"m358.12 366.68c0.46589-0.3113 0.92407-0.63398 1.3741-0.96776 0.45005-0.33378 0.89184-0.67856 1.325-1.034l-21.723-26.47z\" fill=\"#57dbca\"/><path d=\"m360.82 364.68c0.43313-0.35546 0.85748-0.7215 1.2726-1.0978 0.41517-0.37628 0.82103-0.7627 1.2172-1.1589l-24.213-24.213z\" fill=\"#57dbd7\"/><path d=\"m363.31 362.42c0.39621-0.3962 0.78263-0.80208 1.1589-1.2172 0.37629-0.41517 0.74233-0.83951 1.0978-1.2726l-26.47-21.723z\" fill=\"#57d3db\"/><path d=\"m365.57 359.93c0.35546-0.43313 0.70023-0.87491 1.034-1.325 0.33378-0.45005 0.65647-0.90823 0.96776-1.3741l-28.471-19.024z\" fill=\"#57c7db\"/><path d=\"m367.57 357.23c0.3113-0.46588 0.61111-0.93935 0.89917-1.4199s0.56428-0.96819 0.82841-1.4623l-30.199-16.142z\" fill=\"#57badb\"/><path d=\"m369.3 354.35c0.26413-0.49416 0.5161-0.99472 0.75566-1.5012s0.46666-1.0188 0.68109-1.5365l-31.636-13.104z\" fill=\"#57aedb\"/><path d=\"m370.73 351.31c0.21442-0.51766 0.4161-1.0405 0.60487-1.5681 0.18876-0.52756 0.36456-1.0597 0.52721-1.5959l-32.768-9.94z\" fill=\"#57a2db\"/><path d=\"m371.87 348.15c0.16265-0.53619 0.31212-1.0763 0.44826-1.6198 0.13615-0.54353 0.25893-1.0903 0.36824-1.6399l-33.584-6.6803z\" fill=\"#5795db\"/><path d=\"m372.68 344.89c0.10931-0.54955 0.20512-1.1017 0.28734-1.656 0.082216-0.55425 0.15081-1.1104 0.20573-1.668l-34.077-3.3563z\" fill=\"#5789db\"/><path d=\"m373.18 341.57c0.054921-0.55762 0.096145-1.1165 0.12364-1.6762 0.027494-0.55964 0.041246-1.1199 0.041246-1.6802l-34.242 6e-6z\" fill=\"#577cdb\"/><path d=\"m339.1 361.04c6.0541 0 11.861-2.4053 16.142-6.6862 4.2809-4.2809 6.6862-10.088 6.6862-16.142s-2.4053-11.861-6.6862-16.142c-4.2809-4.2809-10.088-6.6862-16.142-6.6862-6.0541 0-11.861 2.4053-16.142 6.6862-4.2809 4.2809-6.6862 10.088-6.6862 16.142s2.4053 11.861 6.6862 16.142c4.2809 4.2809 10.088 6.6862 16.142 6.6862z\" clip-path=\"url(#b1802e3e5d1)\" fill=\"#ffffff\" stroke=\"#ffffff\"/><g transform=\"translate(318.2 342.07) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-50\" transform=\"scale(.015625)\" d=\"m1259 4147v-1753h794q441 0 681 228 241 228 241 650 0 419-241 647-240 228-681 228h-794zm-631 519h1425q785 0 1186-355 402-355 402-1039 0-691-402-1044-401-353-1186-353h-794v-1875h-631v4666z\"/><path id=\"DejaVuSans-68\" transform=\"scale(.015625)\" d=\"m3513 2113v-2113h-575v2094q0 497-194 743-194 247-581 247-466 0-735-297-269-296-269-809v-1978h-578v4863h578v-1907q207 316 486 472 280 156 646 156 603 0 912-373 310-373 310-1098z\"/><path id=\"DejaVuSans-61\" transform=\"scale(.015625)\" d=\"m2194 1759q-697 0-966-159t-269-544q0-306 202-486 202-179 548-179 479 0 768 339t289 901v128h-572zm1147 238v-1997h-575v531q-197-318-491-470t-719-152q-537 0-855 302-317 302-317 808 0 590 395 890 396 300 1180 300h807v57q0 397-261 614t-733 217q-300 0-585-72-284-72-546-216v532q315 122 612 182 297 61 578 61 760 0 1135-394 375-393 375-1193z\"/><path id=\"DejaVuSans-73\" transform=\"scale(.015625)\" d=\"m2834 3397v-544q-243 125-506 187-262 63-544 63-428 0-642-131t-214-394q0-200 153-314t616-217l197-44q612-131 870-370t258-667q0-488-386-773-386-284-1061-284-281 0-586 55t-642 164v594q319-166 628-249 309-82 613-82 406 0 624 139 219 139 219 392 0 234-158 359-157 125-692 241l-200 47q-534 112-772 345-237 233-237 639 0 494 350 762 350 269 994 269 318 0 599-47 282-46 519-140z\"/><path id=\"DejaVuSans-65\" transform=\"scale(.015625)\" d=\"m3597 1894v-281h-2644q38-594 358-905t892-311q331 0 642 81t618 244v-544q-310-131-635-200t-659-69q-838 0-1327 487-489 488-489 1320 0 859 464 1363 464 505 1252 505 706 0 1117-455 411-454 411-1235zm-575 169q-6 471-264 752-258 282-683 282-481 0-770-272t-333-766l2050 4z\"/></defs><use xlink:href=\"#DejaVuSans-50\"/><use x=\"60.302734\" xlink:href=\"#DejaVuSans-68\"/><use x=\"123.681641\" xlink:href=\"#DejaVuSans-61\"/><use x=\"184.960938\" xlink:href=\"#DejaVuSans-73\"/><use x=\"237.060547\" xlink:href=\"#DejaVuSans-65\"/></g><g transform=\"translate(377.99 342.07) scale(.14 -.14)\" fill=\"#343a3f\"><use transform=\"translate(0 .78125)\" xlink:href=\"#DejaVuSans-30\"/></g><g transform=\"translate(328.32 298.7) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-Oblique-3c0\" transform=\"scale(.015625)\" d=\"m584 3500h3354l-113-575h-441l-418-2150q-44-225 15-325 57-97 228-97 47 0 116 10 72 6 94 9l-81-416q-116-40-235-59-122-19-237-19-375 0-478 203-104 207 3 757l406 2087h-1291l-568-2925h-588l569 2925h-447l112 575z\"/><path id=\"DejaVuSans-2f\" transform=\"scale(.015625)\" d=\"m1625 4666h531l-1625-5260h-531l1625 5260z\"/><path id=\"DejaVuSans-32\" transform=\"scale(.015625)\" d=\"m1228 531h2203v-531h-2962v531q359 372 979 998 621 627 780 809 303 340 423 576 121 236 121 464 0 372-261 606-261 235-680 235-297 0-627-103-329-103-704-313v638q381 153 712 231 332 78 607 78 725 0 1156-363 431-362 431-968 0-288-108-546-107-257-392-607-78-91-497-524-418-433-1181-1211z\"/></defs><use transform=\"translate(0 .78125)\" xlink:href=\"#DejaVuSans-Oblique-3c0\"/><use transform=\"translate(60.205 .78125)\" xlink:href=\"#DejaVuSans-2f\"/><use transform=\"translate(90.271 .78125)\" xlink:href=\"#DejaVuSans-32\"/></g><g transform=\"translate(291.46 342.07) scale(.14 -.14)\" fill=\"#343a3f\"><use transform=\"translate(0 .3125)\" xlink:href=\"#DejaVuSans-Oblique-3c0\"/></g><g transform=\"translate(323.84 385.45) scale(.14 -.14)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-33\" transform=\"scale(.015625)\" d=\"m2597 2516q453-97 707-404 255-306 255-756 0-690-475-1069-475-378-1350-378-293 0-604 58t-642 174v609q262-153 574-231 313-78 654-78 593 0 904 234t311 681q0 413-289 645-289 233-804 233h-544v519h569q465 0 712 186t247 536q0 359-255 551-254 193-729 193-260 0-557-57-297-56-653-174v562q360 100 674 150t592 50q719 0 1137-327 419-326 419-882 0-388-222-655t-631-370z\"/></defs><use transform=\"translate(0 .78125)\" xlink:href=\"#DejaVuSans-33\"/><use transform=\"translate(63.623 .78125)\" xlink:href=\"#DejaVuSans-Oblique-3c0\"/><use transform=\"translate(123.83 .78125)\" xlink:href=\"#DejaVuSans-2f\"/><use transform=\"translate(153.89 .78125)\" xlink:href=\"#DejaVuSans-32\"/></g><defs><clipPath id=\"0f2f6f3f14d\"><rect x=\"7.2\" y=\"7.2\" width=\"388.08\" height=\"388.08\"/></clipPath><clipPath id=\"b1802e3e5d1\"><rect x=\"282.03\" y=\"281.14\" width=\"114.14\" height=\"114.14\"/></clipPath></defs></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<Figure size 700x700 with 2 Axes>"
|
||
]
|
||
},
|
||
"execution_count": 8,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.visualization import plot_state_qsphere\n",
|
||
"plot_state_qsphere(psi)\n",
|
||
"# Alternative: psi.draw(\"qsphere\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 9,
|
||
"id": "0a097bb3-d6b7-488b-8951-fc53aa7eae57",
|
||
"metadata": {
|
||
"tags": [
|
||
"id-tabs-bloch"
|
||
]
|
||
},
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"image/svg+xml": [
|
||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg width=\"550.08pt\" height=\"269.93pt\" version=\"1.1\" viewBox=\"0 0 550.08 269.93\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style></defs><path d=\"m0 269.93h550.08v-269.93h-550.08z\" fill=\"#ffffff\"/><path d=\"m7.2 262.73h243.49v-243.49h-243.49z\" fill=\"#ffffff\"/><path d=\"m45.605 112.69 179.37 51.778\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m77.278 185.29 103.8-89.891\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m132.24 223.89v-179.43\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m224.97 164.47 5.384-6.4491 3.5851-6.6953 1.7673-6.8146-0.034286-6.8111-1.7879-6.6912-3.4661-6.4628-5.0454-6.1354-6.5065-5.7188-7.8337-5.2234-9.0146-4.6597-10.04-4.0377-10.903-3.3675-11.598-2.6584-12.122-1.9197-12.472-1.1601-12.648-0.38808-12.648 0.38808-12.472 1.1601-12.122 1.9197-11.598 2.6584-10.903 3.3675-10.04 4.0377-9.0147 4.6597-7.8337 5.2234\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m181.08 95.399-0.15886-10.963-0.95644-10.22-1.7548-9.3116-2.5436-8.2428-3.3112-7.0208-4.0454-5.6561-4.7327-4.1622-5.359-2.5571-5.91-0.8626-6.371 0.89479-6.7282 2.6843-6.9685 4.4709-7.0809 6.2166-7.0571 7.8807-6.8916 9.4218-6.5831 10.799-6.1345 11.975-5.5533 12.915-4.8514 13.592-4.0449 13.986-3.1534 14.087-2.1995 13.893-1.2071 13.412-0.20108 12.66\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m45.605 112.69-6.5065 5.7188-5.0454 6.1354-3.4661 6.4628-1.7879 6.6912-0.034287 6.8111 1.7673 6.8146 3.5851 6.6953 5.384 6.4491 7.1257 6.0748 8.7701 5.5744 10.276 4.9535 11.605 4.2219 12.718 3.3929 13.584 2.4838 14.177 1.5149 14.478 0.50913 14.478-0.50913 14.177-1.5149 13.584-2.4838 12.718-3.3929 11.605-4.2219 10.276-4.9535 8.7701-5.5744 7.1257-6.0748\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m77.278 185.29 0.7944 11.663 1.7565 10.45 2.6646 9.0574 3.501 7.5223 4.2513 5.8838 4.9044 4.1801 5.4526 2.4475 5.8912 0.71974 6.2185-0.97306 6.4348-2.6045 6.5426-4.1521 6.5459-5.5969 6.4497-6.9237 6.2597-8.12 5.9822-9.1761 5.6236-10.084 5.1905-10.839 4.6895-11.435 4.1271-11.87 3.51-12.14 2.8446-12.243 2.1378-12.178 1.3966-11.943 0.62838-11.538\" clip-path=\"url(#05635793433)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><g fill-opacity=\".2\"><path d=\"m153.77 139.11-1.7979 12.428-2.1161 12.235-8.7449-0.89751-8.8766-0.30043v-12.357-12.525l10.846 0.35543z\" clip-path=\"url(#05635793433)\" fill=\"#776767\"/><path d=\"m132.24 137.7v12.525 12.357l-8.8766 0.30043-8.7449 0.89751-2.1161-12.235-1.7979-12.428 10.69-1.0622z\" clip-path=\"url(#05635793433)\" fill=\"#887575\"/><path d=\"m132.24 112.81v12.357 12.525l-10.846 0.35543-10.69 1.0622-1.4559-12.454-1.0934-12.312 11.957-1.1491z\" clip-path=\"url(#05635793433)\" fill=\"#8d7a7a\"/><path d=\"m156.32 114.35-1.0934 12.312-1.4559 12.454-10.69-1.0622-10.846-0.35543v-12.525-12.357l12.127 0.38442z\" clip-path=\"url(#05635793433)\" fill=\"#7a6a6a\"/><path d=\"m174.07 143.3-3.51 12.14-4.1271 11.87-8.0913-2.0501-8.4824-1.4833 2.1161-12.235 1.7979-12.428 10.38 1.7566z\" clip-path=\"url(#05635793433)\" fill=\"#685a5a\"/><path d=\"m110.7 139.11 1.7979 12.428 2.1161 12.235-8.4824 1.4833-8.0913 2.0501-4.1271-11.87-3.51-12.14 9.9169-2.4303z\" clip-path=\"url(#05635793433)\" fill=\"#998585\"/><path d=\"m179.05 118.88-2.1378 12.178-2.8446 12.243-9.9169-2.4303-10.38-1.7566 1.4559-12.454 1.0934-12.312 11.618 1.9011z\" clip-path=\"url(#05635793433)\" fill=\"#695b5b\"/><path d=\"m108.15 114.35 1.0934 12.312 1.4559 12.454-10.38 1.7566-9.9169 2.4303-2.8446-12.243-2.1378-12.178 11.112-2.632z\" clip-path=\"url(#05635793433)\" fill=\"#a28c8c\"/><path d=\"m149.86 163.78-2.4072 11.874-2.6679 11.347-6.2242-0.65812-6.3222-0.22039v-11.519-12.022l8.8766 0.30043z\" clip-path=\"url(#05635793433)\" fill=\"#766767\"/><path d=\"m132.24 162.58v12.022 11.519l-6.3222 0.22039-6.2242 0.65812-2.6679-11.347-2.4072-11.874 8.7449-0.89751z\" clip-path=\"url(#05635793433)\" fill=\"#837272\"/><path d=\"m132.24 89.272v11.519 12.022l-12.127 0.38442-11.957 1.1491-0.71399-12.002-0.32116-11.524 12.472-1.1601z\" clip-path=\"url(#05635793433)\" fill=\"#948080\"/><path d=\"m157.36 90.821-0.32116 11.524-0.71399 12.002-11.957-1.1491-12.127-0.38442v-12.022-11.519l12.648 0.38808z\" clip-path=\"url(#05635793433)\" fill=\"#7f6e6e\"/><path d=\"m166.43 167.31-4.6895 11.435-5.1905 10.839-5.7395-1.5-6.0293-1.0867 2.6679-11.347 2.4072-11.874 8.4824 1.4833z\" clip-path=\"url(#05635793433)\" fill=\"#6b5d5d\"/><path d=\"m114.61 163.78 2.4072 11.874 2.6679 11.347-6.0293 1.0867-5.7395 1.5-5.1905-10.839-4.6895-11.435 8.0913-2.0501z\" clip-path=\"url(#05635793433)\" fill=\"#907d7d\"/><path d=\"m107.12 90.821 0.32116 11.524 0.71399 12.002-11.618 1.9011-11.112 2.632-1.3966-11.943-0.62838-11.538 11.598-2.6584z\" clip-path=\"url(#05635793433)\" fill=\"#aa9393\"/><path d=\"m181.08 95.399-0.62838 11.538-1.3966 11.943-11.112-2.632-11.618-1.9011 0.71399-12.002 0.32116-11.524 12.122 1.9197z\" clip-path=\"url(#05635793433)\" fill=\"#6d5e5e\"/><path d=\"m191.92 150.06-5.0481 11.666-5.9262 11.274-6.9376-3.0963-7.5748-2.5903 4.1271-11.87 3.51-12.14 9.304 3.0748z\" clip-path=\"url(#05635793433)\" fill=\"#5d5050\"/><path d=\"m90.404 143.3 3.51 12.14 4.1271 11.87-7.5748 2.5903-6.9376 3.0963-5.9262-11.274-5.0481-11.666 8.5456-3.6813z\" clip-path=\"url(#05635793433)\" fill=\"#aa9393\"/><path d=\"m85.421 118.88 2.1378 12.178 2.8446 12.243-9.304 3.0748-8.5456 3.6813-4.0967-11.895-3.082-11.955 9.6063-3.9944z\" clip-path=\"url(#05635793433)\" fill=\"#b59d9d\"/><path d=\"m199.1 126.21-3.0821 11.955-4.0967 11.895-8.5456-3.6813-9.304-3.0748 2.8446-12.243 2.1378-12.178 10.44 3.3328z\" clip-path=\"url(#05635793433)\" fill=\"#5b4f4f\"/><path d=\"m180.94 173-6.7212 10.721-7.4238 10.015-4.8893-2.257-5.3581-1.8921 5.1905-10.839 4.6895-11.435 7.5748 2.5903z\" clip-path=\"url(#05635793433)\" fill=\"#635656\"/><path d=\"m98.041 167.31 4.6895 11.435 5.1905 10.839-5.3581 1.8921-4.8893 2.257-7.4238-10.015-6.7212-10.721 6.9376-3.0963z\" clip-path=\"url(#05635793433)\" fill=\"#9e8989\"/><path d=\"m144.78 187-2.8946 10.656-3.0839 9.8045-3.257-0.35337-3.3109-0.1184v-10.018-10.85l6.3222 0.22039z\" clip-path=\"url(#05635793433)\" fill=\"#786868\"/><path d=\"m132.24 186.12v10.85 10.018l-3.3109 0.1184-3.257 0.35337-3.0839-9.8045-2.8946-10.656 6.2242-0.65812z\" clip-path=\"url(#05635793433)\" fill=\"#7f6e6e\"/><path d=\"m156.79 69.873 0.48888 10.069 0.08119 10.879-12.472-1.1601-12.648-0.38808v-10.85-10.018l12.361 0.36816z\" clip-path=\"url(#05635793433)\" fill=\"#877575\"/><path d=\"m132.24 68.405v10.018 10.85l-12.648 0.38808-12.472 1.1601 0.081189-10.879 0.48888-10.069 12.189-1.1005z\" clip-path=\"url(#05635793433)\" fill=\"#9c8787\"/><path d=\"m156.55 189.58-5.6236 10.084-5.9822 9.1761-2.9915-0.80336-3.1501-0.58288 3.0839-9.8045 2.8946-10.656 6.0293 1.0867z\" clip-path=\"url(#05635793433)\" fill=\"#716262\"/><path d=\"m119.69 187 2.8946 10.656 3.0839 9.8045-3.1501 0.58288-2.9915 0.80336-5.9822-9.1761-5.6236-10.084 5.7395-1.5z\" clip-path=\"url(#05635793433)\" fill=\"#877575\"/><path d=\"m202.02 102.8-0.90698 11.559-2.015 11.844-9.6063-3.9944-10.44-3.3328 1.3966-11.943 0.62838-11.538 10.903 3.3675z\" clip-path=\"url(#05635793433)\" fill=\"#5e5252\"/><path d=\"m83.396 95.399 0.62838 11.538 1.3966 11.943-10.44 3.3328-9.6063 3.9944-2.015-11.844-0.90698-11.559 10.04-4.0377z\" clip-path=\"url(#05635793433)\" fill=\"#bfa6a6\"/><path d=\"m166.8 193.73-8.0249 9.1605-8.5159 8.1655-2.5289-1.2034-2.7834-1.0113 5.9822-9.1761 5.6236-10.084 5.3581 1.8921z\" clip-path=\"url(#05635793433)\" fill=\"#6d5e5e\"/><path d=\"m107.92 189.58 5.6236 10.084 5.9822 9.1761-2.7834 1.0113-2.5289 1.2034-8.5159-8.1655-8.0249-9.1605 4.8893-2.257z\" clip-path=\"url(#05635793433)\" fill=\"#907d7d\"/><path d=\"m179.96 74.216 0.95644 10.22 0.15886 10.963-11.598-2.6584-12.122-1.9197-0.08119-10.879-0.48888-10.069 11.844 1.8209z\" clip-path=\"url(#05635793433)\" fill=\"#756565\"/><path d=\"m107.69 69.873-0.48888 10.069-0.081189 10.879-12.122 1.9197-11.598 2.6584 0.15886-10.963 0.95644-10.22 11.33-2.5212z\" clip-path=\"url(#05635793433)\" fill=\"#b29a9a\"/><path d=\"m206.18 159.04-6.3212 11.022-7.4048 10.467-5.3265-3.9748-6.1856-3.5604 5.9262-11.274 5.0481-11.666 7.6472 4.241z\" clip-path=\"url(#05635793433)\" fill=\"#554949\"/><path d=\"m72.554 150.06 5.0481 11.666 5.9262 11.274-6.1856 3.5604-5.3265 3.9748-7.4048-10.467-6.3212-11.022 6.6165-4.7447z\" clip-path=\"url(#05635793433)\" fill=\"#baa1a1\"/><path d=\"m192.46 180.53-8.3775 9.7607-9.2279 8.9119-3.7129-2.8823-4.3387-2.5889 7.4238-10.015 6.7212-10.721 6.1856 3.5604z\" clip-path=\"url(#05635793433)\" fill=\"#5d5151\"/><path d=\"m83.528 173 6.7212 10.721 7.4238 10.015-4.3387 2.5889-3.7129 2.8823-9.2279-8.9119-8.3775-9.7607 5.3265-3.9748z\" clip-path=\"url(#05635793433)\" fill=\"#aa9393\"/><path d=\"m215.19 135.98-3.8716 11.647-5.139 11.418-6.6165-4.7447-7.6472-4.241 4.0967-11.895 3.0821-11.955 8.6169 4.6074z\" clip-path=\"url(#05635793433)\" fill=\"#514747\"/><path d=\"m65.375 126.21 3.082 11.955 4.0967 11.895-7.6472 4.241-6.6165 4.7447-5.139-11.418-3.8716-11.647 7.4786-5.1619z\" clip-path=\"url(#05635793433)\" fill=\"#c7adad\"/><path d=\"m174.85 199.2-9.9453 7.9308-10.52 6.8282-1.8957-1.5276-2.2315-1.3765 8.5159-8.1655 8.0249-9.1605 4.3387 2.5889z\" clip-path=\"url(#05635793433)\" fill=\"#6a5c5c\"/><path d=\"m97.673 193.73 8.0249 9.1605 8.5159 8.1655-2.2315 1.3765-1.8957 1.5276-10.52-6.8282-9.9453-7.9308 3.7129-2.8823z\" clip-path=\"url(#05635793433)\" fill=\"#988484\"/><path d=\"m200.41 81.236 1.3803 10.467 0.22932 11.1-10.04-4.0377-10.903-3.3675-0.15886-10.963-0.95644-10.22 10.648 3.1931z\" clip-path=\"url(#05635793433)\" fill=\"#665858\"/><path d=\"m84.511 74.216-0.95644 10.22-0.15886 10.963-10.903 3.3675-10.04 4.0377 0.22932-11.1 1.3803-10.467 9.8009-3.8277z\" clip-path=\"url(#05635793433)\" fill=\"#c7acac\"/><path d=\"m138.8 207.46-3.2321 8.7953-3.3358 7.6346v-7.8768-9.0248l3.3109 0.1184z\" clip-path=\"url(#05635793433)\" fill=\"#736464\"/><path d=\"m132.24 206.99v9.0248 7.8768l-3.3358-7.6346-3.2321-8.7953 3.257-0.35337z\" clip-path=\"url(#05635793433)\" fill=\"#746464\"/><path d=\"m144.95 208.84-6.2597 8.12-6.4497 6.9237 3.3358-7.6346 3.2321-8.7953 3.1501 0.58288z\" clip-path=\"url(#05635793433)\" fill=\"#746464\"/><path d=\"m125.67 207.46 3.2321 8.7953 3.3358 7.6346-6.4497-6.9237-6.2597-8.12 2.9915-0.80336z\" clip-path=\"url(#05635793433)\" fill=\"#766666\"/><path d=\"m200.15 189.49-9.5388 8.5963-10.473 7.5841-2.2697-3.3327-3.0201-3.1319 9.2279-8.9119 8.3775-9.7607 4.3696 4.332z\" clip-path=\"url(#05635793433)\" fill=\"#5b4f4f\"/><path d=\"m154.59 52.808 1.3013 7.9689 0.89728 9.097-12.189-1.1005-12.361-0.36816v-9.0248-7.8768l11.256 0.32703z\" clip-path=\"url(#05635793433)\" fill=\"#917d7d\"/><path d=\"m132.24 51.503v7.8768 9.0248l-12.361 0.36816-12.189 1.1005 0.89728-9.097 1.3013-7.9689 11.096-0.97739z\" clip-path=\"url(#05635793433)\" fill=\"#a48e8e\"/><path d=\"m180.14 205.67-11.247 6.4607-11.852 5.2411-1.1293-1.7535-1.5264-1.654 10.52-6.8282 9.9453-7.9308 3.0201 3.1319z\" clip-path=\"url(#05635793433)\" fill=\"#6a5c5c\"/><path d=\"m150.26 211.06-8.8881 7.0387-9.1336 5.7903 6.4497-6.9237 6.2597-8.12 2.7834 1.0113z\" clip-path=\"url(#05635793433)\" fill=\"#766666\"/><path d=\"m119.53 208.84 6.2597 8.12 6.4497 6.9237-9.1336-5.7903-8.8881-7.0387 2.5289-1.2034z\" clip-path=\"url(#05635793433)\" fill=\"#796969\"/><path d=\"m218.87 112.69-1.1411 11.584-2.5336 11.704-7.4786-5.1619-8.6169-4.6074 2.015-11.844 0.90698-11.559 9.0146 4.6597z\" clip-path=\"url(#05635793433)\" fill=\"#544949\"/><path d=\"m62.453 102.8 0.90698 11.559 2.015 11.844-8.6169 4.6074-7.4786 5.1619-2.5336-11.704-1.1411-11.584 7.8337-5.2234z\" clip-path=\"url(#05635793433)\" fill=\"#d2b6b6\"/><path d=\"m215.84 169.77-7.2369 10.232-8.4559 9.4833-3.3265-4.6248-4.3696-4.332 7.4048-10.467 6.3212-11.022 5.4633 5.1834z\" clip-path=\"url(#05635793433)\" fill=\"#514646\"/><path d=\"m154.38 213.96-10.943 5.6163-11.206 4.3085 9.1336-5.7903 8.8881-7.0387 2.2315 1.3765z\" clip-path=\"url(#05635793433)\" fill=\"#7a6969\"/><path d=\"m114.21 211.06 8.8881 7.0387 9.1336 5.7903-11.206-4.3085-10.943-5.6163 1.8957-1.5276z\" clip-path=\"url(#05635793433)\" fill=\"#7e6d6d\"/><path d=\"m175.66 56.661 2.5436 8.2428 1.7548 9.3116-11.33-2.5212-11.844-1.8209-0.89728-9.097-1.3013-7.9689 10.776 1.6166z\" clip-path=\"url(#05635793433)\" fill=\"#7f6e6e\"/><path d=\"m109.88 52.808-1.3013 7.9689-0.89728 9.097-11.844 1.8209-11.33 2.5212 1.7548-9.3116 2.5436-8.2428 10.299-2.2371z\" clip-path=\"url(#05635793433)\" fill=\"#b8a0a0\"/><path d=\"m157.04 217.37-12.28 3.9408-12.524 2.5764 11.206-4.3085 10.943-5.6163 1.5264 1.654z\" clip-path=\"url(#05635793433)\" fill=\"#7e6e6e\"/><path d=\"m158.03 221.06-12.797 2.1198-12.995 0.70973 12.524-2.5764 12.28-3.9408 0.71063 1.8239z\" clip-path=\"url(#05635793433)\" fill=\"#847272\"/><path d=\"m182.25 212.72-11.819 4.8364-12.404 3.5016-0.27718-1.8638-0.71063-1.8239 11.852-5.2411 11.247-6.4607 1.4723 3.4804z\" clip-path=\"url(#05635793433)\" fill=\"#6c5e5e\"/><path d=\"m226.19 147.68-4.4493 11.265-5.8959 10.829-4.1996-5.5479-5.4633-5.1834 5.139-11.418 3.8716-11.647 6.2011 5.6479z\" clip-path=\"url(#05635793433)\" fill=\"#4d4343\"/><path d=\"m157.26 224.78-12.444 0.27449-12.58-1.1653 12.995-0.70973 12.797-2.1198-0.16389 1.8721z\" clip-path=\"url(#05635793433)\" fill=\"#897777\"/><path d=\"m203.4 199.32-10.099 7.2898-11.048 6.1053-0.64-3.5712-1.4723-3.4804 10.473-7.5841 9.5388-8.5963 2.2105 4.8464z\" clip-path=\"url(#05635793433)\" fill=\"#5c5050\"/><path d=\"m216.84 90.601 1.7363 10.802 0.28855 11.284-7.8337-5.2234-9.0146-4.6597-0.22932-11.1-1.3803-10.467 8.7953 4.4161z\" clip-path=\"url(#05635793433)\" fill=\"#5c4f4f\"/><path d=\"m64.063 81.236-1.3803 10.467-0.22932 11.1-9.0147 4.6597-7.8337 5.2234 0.28856-11.284 1.7363-10.802 7.6378-4.9488z\" clip-path=\"url(#05635793433)\" fill=\"#dabdbd\"/><path d=\"m154.76 228.27-11.226-1.4672-11.302-2.92 12.58 1.1653 12.444-0.27449-1.0386 1.7921z\" clip-path=\"url(#05635793433)\" fill=\"#8f7c7c\"/><path d=\"m194.21 62.883 3.6654 8.6908 2.5311 9.6627-9.8009-3.8277-10.648-3.1931-1.7548-9.3116-2.5436-8.2428 9.6666 2.8311z\" clip-path=\"url(#05635793433)\" fill=\"#726262\"/><path d=\"m88.81 56.661-2.5436 8.2428-1.7548 9.3116-10.648 3.1931-9.8009 3.8277 2.5311-9.6627 3.6654-8.6908 8.8838-3.3907z\" clip-path=\"url(#05635793433)\" fill=\"#ccb1b1\"/><path d=\"m180.96 219.89-11.59 3.1619-12.113 1.7236 0.60506-1.8482 0.16389-1.8721 12.404-3.5016 11.819-4.8364-0.21396 3.602z\" clip-path=\"url(#05635793433)\" fill=\"#706161\"/><path d=\"m220.09 181.62-7.708 9.3318-8.9812 8.3713-1.0374-4.9905-2.2105-4.8464 8.4559-9.4833 7.2369-10.232 2.8405 5.8294z\" clip-path=\"url(#05635793433)\" fill=\"#524747\"/><path d=\"m230.42 124.54-1.3139 11.61-2.9152 11.528-4.7966-6.0552-6.2011-5.6479 2.5336-11.704 1.1411-11.584 6.5065 5.7188z\" clip-path=\"url(#05635793433)\" fill=\"#4f4444\"/><path d=\"m150.82 40.84 2.0732 5.2756 1.6954 6.6917-11.096-0.97739-11.256-0.32703v-6.581-5.1475l9.3603 0.26722z\" clip-path=\"url(#05635793433)\" fill=\"#9b8686\"/><path d=\"m132.24 39.775v5.1475 6.581l-11.256 0.32703-11.096 0.97739 1.6954-6.6917 2.0732-5.2756 9.2225-0.79838z\" clip-path=\"url(#05635793433)\" fill=\"#ac9595\"/><path d=\"m176.28 226.69-10.54 1.555-10.972 0.031241 1.4568-1.7044 1.0386-1.7921 12.113-1.7236 11.59-3.1619-1.9287 3.4765z\" clip-path=\"url(#05635793433)\" fill=\"#766666\"/><path d=\"m201.82 209.4-9.9782 5.9211-10.877 4.5684 1.0753-3.5708 0.21396-3.602 11.048-6.1053 10.099-7.2898-0.17494 5.0519z\" clip-path=\"url(#05635793433)\" fill=\"#615454\"/><path d=\"m168.31 43.984 4.0454 5.6561 3.3112 7.0208-10.299-2.2371-10.776-1.6166-1.6954-6.6917-2.0732-5.2756 8.9479 1.3197z\" clip-path=\"url(#05635793433)\" fill=\"#8c7a7a\"/><path d=\"m113.65 40.84-2.0732 5.2756-1.6954 6.6917-10.776 1.6166-10.299 2.2371 3.3112-7.0208 4.0454-5.6561 8.5387-1.8244z\" clip-path=\"url(#05635793433)\" fill=\"#bda4a4\"/><path d=\"m231.14 160.65-4.759 10.821-6.2946 10.154-1.4039-6.0196-2.8405-5.8294 5.8959-10.829 4.4493-11.265 3.2806 6.3737z\" clip-path=\"url(#05635793433)\" fill=\"#4e4343\"/><path d=\"m209.06 71.165 4.6016 9.2982 3.1814 10.139-7.6378-4.9488-8.7953-4.4161-2.5311-9.6627-3.6654-8.6908 7.956 3.9077z\" clip-path=\"url(#05635793433)\" fill=\"#685a5a\"/><path d=\"m70.259 62.883-3.6654 8.6908-2.5311 9.6627-8.7953 4.4161-7.6378 4.9488 3.1814-10.139 4.6016-9.2982 6.8905-4.3739z\" clip-path=\"url(#05635793433)\" fill=\"#dec0c0\"/><path d=\"m228.09 101.83 1.9987 11.209 0.33229 11.505-5.0454-6.1354-6.5065-5.7188-0.28855-11.284-1.7363-10.802 6.3379 5.4163z\" clip-path=\"url(#05635793433)\" fill=\"#574b4b\"/><path d=\"m183.63 49.048 5.8133 6.2766 4.7657 7.5587-8.8838-3.3907-9.6666-2.8311-3.3112-7.0208-4.0454-5.6561 7.9979 2.3059z\" clip-path=\"url(#05635793433)\" fill=\"#817070\"/><path d=\"m96.167 43.984-4.0454 5.6561-3.3112 7.0208-9.6666 2.8311-8.8838 3.3907 4.7657-7.5587 5.8133-6.2766 7.3302-2.7575z\" clip-path=\"url(#05635793433)\" fill=\"#ceb3b3\"/><path d=\"m218.38 193.83-7.6631 8.3749-8.9031 7.1976 1.4066-5.0264 0.17494-5.0519 8.9812-8.3713 7.708-9.3318-0.089397 6.1111z\" clip-path=\"url(#05635793433)\" fill=\"#574c4c\"/><path d=\"m195.34 219.02-9.1392 4.587-9.9277 3.0817 2.7584-3.3193 1.9287-3.4765 10.877-4.5684 9.9782-5.9211-2.6358 4.9112z\" clip-path=\"url(#05635793433)\" fill=\"#685a5a\"/><path d=\"m235.67 137.7-1.4082 11.633-3.1222 11.319-1.6721-6.5939-3.2806-6.3737 2.9152-11.528 1.3139-11.61 3.4661 6.4628z\" clip-path=\"url(#05635793433)\" fill=\"#504545\"/><path d=\"m145.64 35.02 2.7533 2.0855 2.4282 3.7343-9.2225-0.79838-9.3603-0.26722v-3.5901-1.9262l6.7526 0.19117z\" clip-path=\"url(#05635793433)\" fill=\"#a69090\"/><path d=\"m132.24 34.258v1.9262 3.5901l-9.3603 0.26722-9.2225 0.79838 2.4282-3.7343 2.7533-2.0855 6.6487-0.5709z\" clip-path=\"url(#05635793433)\" fill=\"#b29a9a\"/><path d=\"m219.14 81.065 5.2846 10.041 3.6589 10.721-4.9079-5.8086-6.3379-5.4163-3.1814-10.139-4.6016-9.2982 5.6972 4.7806z\" clip-path=\"url(#05635793433)\" fill=\"#645656\"/><path d=\"m195.81 55.763 7.2712 7.1146 5.9732 8.2869-6.8905-4.3739-7.956-3.9077-4.7657-7.5587-5.8133-6.2766 6.5415 3.1722z\" clip-path=\"url(#05635793433)\" fill=\"#796969\"/><path d=\"m80.838 49.048-5.8133 6.2766-4.7657 7.5587-7.956 3.9077-6.8905 4.3739 5.9732-8.2869 7.2712-7.1146 5.6396-3.5432z\" clip-path=\"url(#05635793433)\" fill=\"#dec0c0\"/><path d=\"m229.41 174.06-4.7518 10.342-6.273 9.4303 1.6152-6.0978 0.089397-6.1111 6.2946-10.154 4.759-10.821-0.006042 6.7069z\" clip-path=\"url(#05635793433)\" fill=\"#544949\"/><path d=\"m158.21 37.265 5.359 2.5571 4.7327 4.1622-8.5387-1.8244-8.9479-1.3197-2.4282-3.7343-2.7533-2.0855 6.4419 0.94281z\" clip-path=\"url(#05635793433)\" fill=\"#9b8686\"/><path d=\"m118.83 35.02-2.7533 2.0855-2.4282 3.7343-8.9479 1.3197-8.5387 1.8244 4.7327-4.1622 5.359-2.5571 6.1345-1.3017z\" clip-path=\"url(#05635793433)\" fill=\"#c0a6a6\"/><path d=\"m233.17 114.27 2.1417 11.67 0.35622 11.753-1.7879-6.6912-3.4661-6.4628-0.33229-11.505-1.9987-11.209 3.3634 6.1162z\" clip-path=\"url(#05635793433)\" fill=\"#574c4c\"/><path d=\"m210.58 205.55-7.0602 7.4286-8.1801 6.045 3.8392-4.7054 2.6358-4.9112 8.9031-7.1976 7.6631-8.3749-3.1467 5.975z\" clip-path=\"url(#05635793433)\" fill=\"#615454\"/><path d=\"m169.17 40.867 7.6705 3.322 6.7884 4.8585-7.3302-2.7575-7.9979-2.3059-4.7327-4.1622-5.359-2.5571 5.7295 1.6424z\" clip-path=\"url(#05635793433)\" fill=\"#927f7f\"/><path d=\"m106.26 37.265-5.359 2.5571-4.7327 4.1622-7.9979 2.3059-7.3302 2.7575 6.7884-4.8585 7.6705-3.322 5.2315-1.9599z\" clip-path=\"url(#05635793433)\" fill=\"#cdb1b1\"/><path d=\"m203.98 63.755 8.3135 8.1342 6.8462 9.1757-4.3882-5.1195-5.6972-4.7806-5.9732-8.2869-7.2712-7.1146 4.6339 3.8639z\" clip-path=\"url(#05635793433)\" fill=\"#756666\"/><path d=\"m233.94 151.32-1.4091 11.65-3.1217 11.088 1.7273-6.7051 0.006042-6.7069 3.1222-11.319 1.4082-11.633 0.034286 6.8111z\" clip-path=\"url(#05635793433)\" fill=\"#564a4a\"/><path d=\"m95.297 40.867-7.6705 3.322-6.7884 4.8585-6.5415 3.1722-5.6396 3.5432 8.47-5.7952 9.5438-4.3466 3.9801-2.5051z\" clip-path=\"url(#05635793433)\" fill=\"#d9bcbc\"/><path d=\"m177.8 45.621 9.5438 4.3466 8.47 5.7952-5.6396-3.5432-6.5415-3.1722-6.7884-4.8585-7.6705-3.322 4.646 2.249z\" clip-path=\"url(#05635793433)\" fill=\"#8c7a7a\"/><path d=\"m223.61 92.008 5.6479 10.883 3.9167 11.381-1.7237-6.3297-3.3634-6.1162-3.6589-10.721-5.2846-10.041 2.9788 5.3823z\" clip-path=\"url(#05635793433)\" fill=\"#645757\"/><path d=\"m220.77 186.98-4.3962 9.8597-5.793 8.7095 4.6543-5.7404 3.1467-5.975 6.273-9.4303 4.7518-10.342-3.4615 6.5826z\" clip-path=\"url(#05635793433)\" fill=\"#5f5252\"/><path d=\"m139.31 36.112 3.2833-1.4424 3.0408 0.35104-6.6487-0.5709-6.7526-0.19117v-0.17796 1.628l3.5675 0.10122z\" clip-path=\"url(#05635793433)\" fill=\"#af9797\"/><path d=\"m132.24 35.708v-1.628 0.17796l-6.7526 0.19117-6.6487 0.5709 3.0408-0.35104 3.2833 1.4424 3.5097-0.30212z\" clip-path=\"url(#05635793433)\" fill=\"#b69e9e\"/><path d=\"m145.93 37.297 6.371-0.89479 5.91 0.8626-6.1345-1.3017-6.4419-0.94281-3.0408-0.35104-3.2833 1.4424 3.3949 0.49839z\" clip-path=\"url(#05635793433)\" fill=\"#a89292\"/><path d=\"m125.16 36.112-3.2833-1.4424-3.0408 0.35104-6.4419 0.94281-6.1345 1.3017 5.91-0.8626 6.371 0.89479 3.2246-0.687z\" clip-path=\"url(#05635793433)\" fill=\"#bea5a5\"/><path d=\"m231.44 127.15 2.1426 12.157 0.35651 12.01 1.7673-6.8146-0.034286-6.8111-0.35622-11.753-2.1417-11.67 0.011607 6.4404z\" clip-path=\"url(#05635793433)\" fill=\"#5e5151\"/><path d=\"m183.48 51.244 10.844 5.5807 9.6559 6.9299-3.5361-4.1277-4.6339-3.8639-8.47-5.7952-9.5438-4.3466 3.2421 2.7233z\" clip-path=\"url(#05635793433)\" fill=\"#8a7878\"/><path d=\"m151.66 39.192 9.074-0.013621 8.439 1.6892-5.2315-1.9599-5.7295-1.6424-5.91-0.8626-6.371 0.89479 3.0012 0.86498z\" clip-path=\"url(#05635793433)\" fill=\"#a48e8e\"/><path d=\"m118.54 37.297-6.371-0.89479-5.91 0.8626-5.7295 1.6424-5.2315 1.9599 8.439-1.6892 9.074 0.013621 2.7278-1.0295z\" clip-path=\"url(#05635793433)\" fill=\"#c7acac\"/><path d=\"m207.47 72.543 8.8418 9.2835 7.3011 10.182-1.4871-5.5612-2.9788-5.3823-6.8462-9.1757-8.3135-8.1342 2.3602 4.3283z\" clip-path=\"url(#05635793433)\" fill=\"#766666\"/><path d=\"m156.12 41.677 11.217 1.1537 10.467 2.7907-3.9801-2.5051-4.646-2.249-8.439-1.6892-9.074 0.013621 2.4082 1.1779z\" clip-path=\"url(#05635793433)\" fill=\"#a18c8c\"/><path d=\"m112.81 39.192-9.074-0.013621-8.439 1.6892-4.646 2.249-3.9801 2.5051 10.467-2.7907 11.217-1.1537 2.047-1.3075z\" clip-path=\"url(#05635793433)\" fill=\"#cfb3b3\"/><path d=\"m224.97 164.47-1.3064 11.66-2.8919 10.852 5.1751-6.3357 3.4615-6.5826 3.1217-11.088 1.4091-11.65-3.5851 6.6953z\" clip-path=\"url(#05635793433)\" fill=\"#615454\"/><path d=\"m221.89 103.3 5.6348 11.776 3.9141 12.08 1.7457-6.4409-0.011607-6.4404-3.9167-11.381-5.6479-10.883-0.065156 5.6492z\" clip-path=\"url(#05635793433)\" fill=\"#6a5c5c\"/><path d=\"m185.78 57.385 11.454 6.9561 10.237 8.2024-1.1224-4.46-2.3602-4.3283-9.6559-6.9299-10.844-5.5807 1.5906 3.0298z\" clip-path=\"url(#05635793433)\" fill=\"#8b7979\"/><path d=\"m158.99 44.595 12.647 2.5405 11.849 4.1088-2.4419-2.8995-3.2421-2.7233-10.467-2.7907-11.217-1.1537 1.6497 1.4161z\" clip-path=\"url(#05635793433)\" fill=\"#a18c8c\"/><path d=\"m132.24 44.452 3.6038-5.077 3.4733-3.2636-3.5097-0.30212-3.5675-0.10122v3.4604 5.2835z\" clip-path=\"url(#05635793433)\" fill=\"#ac9595\"/><path d=\"m132.24 44.452v-5.2835-3.4604l-3.5675 0.10122-3.5097 0.30212 3.4733 3.2636 3.6038 5.077z\" clip-path=\"url(#05635793433)\" fill=\"#ad9696\"/><path d=\"m222.65 139.57 1.9859 12.636 0.33057 12.261 5.384-6.4491 3.5851-6.6953-0.35651-12.01-2.1426-12.157-3.5174 6.3254z\" clip-path=\"url(#05635793433)\" fill=\"#695b5b\"/><path d=\"m132.24 44.452 6.9685-4.4709 6.7282-2.6843-3.2246-0.687-3.3949-0.49839-3.4733 3.2636-3.6038 5.077z\" clip-path=\"url(#05635793433)\" fill=\"#ad9696\"/><path d=\"m132.24 44.452-3.6038-5.077-3.4733-3.2636-3.3949 0.49839-3.2246 0.687 6.7282 2.6843 6.9685 4.4709z\" clip-path=\"url(#05635793433)\" fill=\"#af9898\"/><path d=\"m205.85 81.559 8.7771 10.493 7.2679 11.245 1.6532-5.6403 0.065156-5.6492-7.3011-10.182-8.8418-9.2835-0.15855 4.518z\" clip-path=\"url(#05635793433)\" fill=\"#7b6b6b\"/><path d=\"m132.24 44.452-6.9685-4.4709-6.7282-2.6843-3.0012 0.86498-2.7278 1.0295 9.5563 1.7562 9.8693 3.5045z\" clip-path=\"url(#05635793433)\" fill=\"#b39b9b\"/><path d=\"m132.24 44.452 9.8693-3.5045 9.5563-1.7562-2.7278-1.0295-3.0012-0.86498-6.7282 2.6843-6.9685 4.4709z\" clip-path=\"url(#05635793433)\" fill=\"#b09898\"/><path d=\"m160.06 47.755 13.247 4.0625 12.466 5.5672-0.70102-3.1106-1.5906-3.0298-11.849-4.1088-12.647-2.5405 0.77114 1.5626z\" clip-path=\"url(#05635793433)\" fill=\"#a38d8d\"/><path d=\"m132.24 44.452-9.8693-3.5045-9.5563-1.7562-2.4082 1.1779-2.047 1.3075 11.77 0.53455 12.11 2.2408z\" clip-path=\"url(#05635793433)\" fill=\"#b79f9f\"/><path d=\"m132.24 44.452 12.11-2.2408 11.77-0.53455-2.047-1.3075-2.4082-1.1779-9.5563 1.7562-9.8693 3.5045z\" clip-path=\"url(#05635793433)\" fill=\"#b39b9b\"/><path d=\"m132.24 44.452 13.537-0.76306 13.215 0.90563-1.2222-1.5018-1.6497-1.4161-11.77 0.53455-12.11 2.2408z\" clip-path=\"url(#05635793433)\" fill=\"#b89f9f\"/><path d=\"m184.43 63.638 11.291 8.3867 10.128 9.5348 1.4618-4.4984 0.15855-4.518-10.237-8.2024-11.454-6.9561-0.21283 3.1394z\" clip-path=\"url(#05635793433)\" fill=\"#907d7d\"/><path d=\"m132.24 44.452 14.049 0.83004 13.779 2.4725-0.30385-1.5973-0.77114-1.5626-13.215-0.90563-13.537 0.76306z\" clip-path=\"url(#05635793433)\" fill=\"#bda4a4\"/><path d=\"m213.82 114.14 5.2091 12.656 3.6242 12.77 5.2691-6.0903 3.5174-6.3254-3.9141-12.08-5.6348-11.776-3.249 5.5301z\" clip-path=\"url(#05635793433)\" fill=\"#756666\"/><path d=\"m159.24 50.945 12.947 5.6204 12.237 7.0726 1.1356-3.114 0.21283-3.1394-12.466-5.5672-13.247-4.0625-0.17197 1.605z\" clip-path=\"url(#05635793433)\" fill=\"#a79191\"/><path d=\"m132.24 44.452 13.602 2.4308 13.405 4.0618 0.64824-1.585 0.17197-1.605-13.779-2.4725-14.049-0.83004z\" clip-path=\"url(#05635793433)\" fill=\"#c3a9a9\"/><path d=\"m132.24 44.452 12.223 3.9294 12.099 5.5633 1.5687-1.4627 1.1166-1.5374-13.405-4.0618-13.602-2.4308z\" clip-path=\"url(#05635793433)\" fill=\"#c9aeae\"/><path d=\"m199.04 90.175 8.0749 11.679 6.7044 12.29 4.8219-5.316 3.249-5.5301-7.2679-11.245-8.7771-10.493-2.7642 4.3984z\" clip-path=\"url(#05635793433)\" fill=\"#857373\"/><path d=\"m156.56 53.945 11.737 7.1053 11.14 8.5193 2.9421-2.8981 2.0511-3.0336-12.237-7.0726-12.947-5.6204-1.1166 1.5374z\" clip-path=\"url(#05635793433)\" fill=\"#ad9696\"/><path d=\"m179.43 69.57 10.318 9.7718 9.2888 10.833 4.041-4.2168 2.7642-4.3984-10.128-9.5348-11.291-8.3867-2.0511 3.0336z\" clip-path=\"url(#05635793433)\" fill=\"#988383\"/></g><g stroke=\"#dc267f\" stroke-linecap=\"round\" stroke-width=\"5\"><path d=\"m130.72 139q-17.57 15.216-30.914 26.772\" clip-path=\"url(#05635793433)\" fill=\"none\"/><path d=\"m108.48 163.56-8.666 2.2135 3.4288-8.2609z\" clip-path=\"url(#05635793433)\" fill=\"#dc267f\"/></g><g transform=\"translate(62.45 198.29) scale(.1 -.1)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-Oblique-78\" transform=\"scale(.015625)\" d=\"m3841 3500-1607-1716 985-1784h-660l-740 1388-1288-1388h-697l1722 1844-915 1656h659l672-1266 1172 1266h697z\"/></defs><use transform=\"translate(0 .3125)\" xlink:href=\"#DejaVuSans-Oblique-78\"/></g><g transform=\"translate(241.31 172.79) scale(.1 -.1)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-Oblique-79\" transform=\"scale(.015625)\" d=\"m1588-325q-400-672-652-839t-642-167h-453l96 481h332q240 0 409 131t378 513l178 334-775 3372h610l581-2681 1606 2681h603l-2271-3825z\"/></defs><use transform=\"translate(0 .3125)\" xlink:href=\"#DejaVuSans-Oblique-79\"/></g><g transform=\"translate(125.79 27.64) scale(.1 -.1)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-7c\" transform=\"scale(.015625)\" d=\"m1344 4891v-6400h-531v6400h531z\"/><path id=\"DejaVuSans-30\" transform=\"scale(.015625)\" d=\"m2034 4250q-487 0-733-480-245-479-245-1442 0-959 245-1439 246-480 733-480 491 0 736 480 246 480 246 1439 0 963-246 1442-245 480-736 480zm0 500q785 0 1199-621 414-620 414-1801 0-1178-414-1799-414-620-1199-620-784 0-1198 620-414 621-414 1799 0 1181 414 1801 414 621 1198 621z\"/><path id=\"DejaVuSans-27e9\" transform=\"scale(.015625)\" d=\"m1925 2006-881-2850h-531l881 2850-881 2850h531l881-2850z\"/></defs><use transform=\"translate(0 16.625) scale(.75641)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(25.479 .125)\" xlink:href=\"#DejaVuSans-30\"/><use transform=\"translate(89.102 .125)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(125.84 243.11) scale(.1 -.1)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-31\" transform=\"scale(.015625)\" d=\"m794 531h1031v3560l-1122-225v575l1116 225h631v-4135h1031v-531h-2687v531z\"/></defs><use transform=\"translate(0 17.344) scale(.72906)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(24.553 .125)\" xlink:href=\"#DejaVuSans-31\"/><use transform=\"translate(88.176 .125)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(111.31 14.798) scale(.1 -.1)\" fill=\"#343a3f\"><defs><path id=\"DejaVuSans-71\" transform=\"scale(.015625)\" d=\"m947 1747q0-634 261-995t717-361 718 361q263 361 263 995t-263 995q-262 361-718 361t-717-361-261-995zm1959-1222q-181-312-458-464-276-152-664-152-634 0-1033 506-398 507-398 1332t398 1331q399 506 1033 506 388 0 664-152 277-151 458-463v531h575v-4831h-575v1856z\"/><path id=\"DejaVuSans-75\" transform=\"scale(.015625)\" d=\"m544 1381v2119h575v-2097q0-497 193-746 194-248 582-248 465 0 735 297 271 297 271 810v1984h575v-3500h-575v538q-209-319-486-474-276-155-642-155-603 0-916 375-312 375-312 1097zm1447 2203z\"/><path id=\"DejaVuSans-62\" transform=\"scale(.015625)\" d=\"m3116 1747q0 634-261 995t-717 361q-457 0-718-361t-261-995 261-995 718-361q456 0 717 361t261 995zm-1957 1222q182 312 458 463 277 152 661 152 638 0 1036-506 399-506 399-1331t-399-1332q-398-506-1036-506-384 0-661 152-276 152-458 464v-525h-578v4863h578v-1894z\"/><path id=\"DejaVuSans-69\" transform=\"scale(.015625)\" d=\"m603 3500h575v-3500h-575v3500zm0 1363h575v-729h-575v729z\"/><path id=\"DejaVuSans-74\" transform=\"scale(.015625)\" d=\"m1172 4494v-994h1184v-447h-1184v-1900q0-428 117-550t477-122h590v-481h-590q-666 0-919 248-253 249-253 905v1900h-422v447h422v994h578z\"/></defs><use xlink:href=\"#DejaVuSans-71\"/><use x=\"63.476562\" xlink:href=\"#DejaVuSans-75\"/><use x=\"126.855469\" xlink:href=\"#DejaVuSans-62\"/><use x=\"190.332031\" xlink:href=\"#DejaVuSans-69\"/><use x=\"218.115234\" xlink:href=\"#DejaVuSans-74\"/><use x=\"257.324219\" xlink:href=\"#DejaVuSans-20\"/><use x=\"289.111328\" xlink:href=\"#DejaVuSans-30\"/></g><g fill=\"none\" stroke=\"#808080\" stroke-opacity=\".2\"><path d=\"m132.24 44.452 12.223 3.9294 12.099 5.5633 11.737 7.1053 11.14 8.5193 10.318 9.7718 9.2888 10.833 8.0749 11.679 6.7044 12.29 5.2091 12.656 3.6242 12.77 1.9859 12.636 0.33057 12.261-1.3064 11.66-2.8919 10.852-4.3962 9.8597-5.793 8.7095-7.0602 7.4286-8.1801 6.045-9.1392 4.587-9.9277 3.0817-10.54 1.555-10.972 0.031241-11.226-1.4672-11.302-2.92\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452 13.912 0.025665 13.612 1.6795 13.056 3.2905 12.259 4.8259 11.241 6.2557 10.028 7.5533 8.6475 8.6965 7.1308 9.6674 5.5101 10.453 3.818 11.043 2.0867 11.435 0.34699 11.627-1.3719 11.622-3.0428 11.427-4.641 11.049-6.1443 10.5-7.533 9.7925-8.7898 8.9396-9.8997 7.9562-10.85 6.8582-11.63 5.6617-12.231 4.3836-12.646 3.0412-12.869 1.6522\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452 9.8693-3.5045 9.5563-1.7562 9.074-0.013621 8.439 1.6892 7.6705 3.322 6.7884 4.8585 5.8133 6.2766 4.7657 7.5587 3.6654 8.6908 2.5311 9.6627 1.3803 10.467 0.22932 11.1-0.90698 11.559-2.015 11.844-3.0821 11.955-4.0967 11.895-5.0481 11.666-5.9262 11.274-6.7212 10.721-7.4238 10.015-8.0249 9.1605-8.5159 8.1655-8.8881 7.0387-9.1336 5.7903\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452 1.817-5.2316 1.7504-3.411 1.6539-1.5815 1.5312 0.22135 1.3858 1.9661 1.2218 3.6262 1.0429 5.1796 0.85261 6.6087 0.65432 7.8999 0.4511 9.0429 0.24576 10.03 0.040812 10.857-0.16144 11.52-0.35894 12.017-0.54976 12.346-0.73211 12.508-0.90429 12.501-1.0646 12.327-1.2114 11.984-1.343 11.476-1.4577 10.801-1.5536 9.9641-1.629 8.9672-1.6819 7.816\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452-6.9685-4.4709-6.7282-2.6843-6.371-0.89479-5.91 0.8626-5.359 2.5571-4.7327 4.1622-4.0454 5.6561-3.3112 7.0208-2.5436 8.2428-1.7548 9.3116-0.95644 10.22-0.15886 10.963 0.62838 11.538 1.3966 11.943 2.1378 12.178 2.8446 12.243 3.51 12.14 4.1271 11.87 4.6895 11.435 5.1905 10.839 5.6236 10.084 5.9822 9.1761 6.2597 8.12 6.4497 6.9237\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452-12.11-2.2408-11.77-0.53455-11.217 1.1537-10.467 2.7907-9.5438 4.3466-8.47 5.7952-7.2712 7.1146-5.9732 8.2869-4.6016 9.2982-3.1814 10.139-1.7363 10.802-0.28856 11.284 1.1411 11.584 2.5336 11.704 3.8716 11.647 5.139 11.418 6.3212 11.022 7.4048 10.467 8.3775 9.7607 9.2279 8.9119 9.9453 7.9308 10.52 6.8282 10.943 5.6163 11.206 4.3085\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452\" clip-path=\"url(#05635793433)\"/><path d=\"m189.75 79.341 3.5294-3.5783 2.4364-3.7386 1.3177-3.8302 0.19432-3.8538-0.91374-3.811-1.9882-3.7048-3.0124-3.539-3.9717-3.318-4.8533-3.0471-5.6462-2.7316-6.3413-2.3772-6.9311-1.9899-7.4097-1.5757-7.7725-1.1405-8.0161-0.69026-8.1384-0.23108-8.1384 0.23108-8.0161 0.69026-7.7725 1.1405-7.4097 1.5757-6.9311 1.9899-6.3413 2.3772-5.6462 2.7316-4.8533 3.0471\" clip-path=\"url(#05635793433)\"/><path d=\"m222.65 139.57 5.2691-6.0903 3.5174-6.3254 1.7457-6.4409-0.011607-6.4404-1.7237-6.3297-3.3634-6.1162-4.9079-5.8086-6.3379-5.4163-7.6378-4.9488-8.7953-4.4161-9.8009-3.8277-10.648-3.1931-11.33-2.5212-11.844-1.8209-12.189-1.1005-12.361-0.36816-12.361 0.36816-12.189 1.1005-11.844 1.8209-11.33 2.5212-10.648 3.1931-9.8009 3.8277-8.7953 4.4161-7.6378 4.9488\" clip-path=\"url(#05635793433)\"/><path d=\"m216.38 196.84 4.9527-6.0969 3.3283-6.3394 1.6816-6.4627 0.044542-6.4697-1.5541-6.366-3.0889-6.1583-4.5378-5.855-5.8821-5.4651-7.1067-4.9982-8.1992-4.464-9.15-3.8721-9.9516-3.2322-10.599-2.5535-11.087-1.8449-11.414-1.1153-11.578-0.37316-11.578 0.37316-11.414 1.1153-11.087 1.8449-10.599 2.5535-9.9516 3.2322-9.15 3.8721-8.1992 4.464-7.1067 4.9982\" clip-path=\"url(#05635793433)\"/><path d=\"m176.28 226.69 2.7584-3.3193 1.9287-3.4765 1.0753-3.5708 0.21396-3.602-0.64-3.5712-1.4723-3.4804-2.2697-3.3327-3.0201-3.1319-3.7129-2.8823-4.3387-2.5889-4.8893-2.257-5.3581-1.8921-5.7395-1.5-6.0293-1.0867-6.2242-0.65812-6.3222-0.22039-6.3222 0.22039-6.2242 0.65812-6.0293 1.0867-5.7395 1.5-5.3581 1.8921-4.8893 2.257-4.3387 2.5889-3.7129 2.8823\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 223.89\" clip-path=\"url(#05635793433)\"/></g><g fill=\"none\" stroke=\"#808080\" stroke-opacity=\".2\"><path d=\"m132.24 44.452-12.11-2.2408-11.77-0.53455-11.217 1.1537-10.467 2.7907-9.5438 4.3466-8.47 5.7952-7.2712 7.1146-5.9732 8.2869-4.6016 9.2982-3.1814 10.139-1.7363 10.802-0.28856 11.284 1.1411 11.584 2.5336 11.704 3.8716 11.647 5.139 11.418 6.3212 11.022 7.4048 10.467 8.3775 9.7607 9.2279 8.9119 9.9453 7.9308 10.52 6.8282 10.943 5.6163 11.206 4.3085\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452-13.945 1.6364-13.71 3.2712-13.212 4.8437-12.46 6.3204-11.473 7.6705-10.272 8.8666-8.8874 9.8859-7.349 10.71-5.6913 11.327-3.9501 11.728-2.1611 11.912-0.35952 11.881 1.4211 11.642 3.1496 11.205 4.7975 10.584 6.3394 9.7952 7.7536 8.8566 9.0213 7.7873 10.127 6.6075 11.059 5.3376 11.808 3.9983 12.366 2.6098 12.73 1.1922 12.898-0.23482\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452-9.9992 5.2216-9.9361 6.8688-9.6749 8.4066-9.2159 9.7966-8.5652 11.003-7.7349 11.994-6.7427 12.744-5.6114 13.233-4.3682 13.451-3.0434 13.394-1.6691 13.067-0.27795 12.484 1.0982 11.663 2.4296 10.631 3.689 9.4167 4.8532 8.0522 5.9028 6.5712 6.8226 5.0075 7.6015 3.3939 8.2324 1.7613 8.7116 0.13804 9.0384-1.45 9.2148-2.9802 9.2447-4.4326\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452-1.8507 7.0039-1.8487 8.6856-1.8095 10.233-1.7324 11.605-1.6178 12.759-1.4673 13.66-1.2841 14.281-1.0722 14.6-0.8369 14.606-0.58425 14.3-0.32083 13.693-0.053455 12.803 0.21117 11.66 0.4667 10.3 0.70746 8.7613 0.92859 7.0878 1.1261 5.3224 1.2972 3.507 1.4397 1.681 1.5526-0.12009 1.6355-1.8649 1.6889-3.5268 1.7135-5.0838 1.7107-6.5181\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452 7.0809 6.2166 7.0571 7.8807 6.8916 9.4218 6.5831 10.799 6.1345 11.975 5.5533 12.915 4.8514 13.592 4.0449 13.986 3.1534 14.087 2.1995 13.893 1.2071 13.412 0.20108 12.66-0.7944 11.663-1.7565 10.45-2.6646 9.0574-3.501 7.5223-4.2513 5.8838-4.9044 4.1801-5.4526 2.4475-5.8912 0.71974-6.2185-0.97306-6.4348-2.6045-6.5426-4.1521-6.5459-5.5969\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452 12.223 3.9294 12.099 5.5633 11.737 7.1053 11.14 8.5193 10.318 9.7718 9.2888 10.833 8.0749 11.679 6.7044 12.29 5.2091 12.656 3.6242 12.77 1.9859 12.636 0.33057 12.261-1.3064 11.66-2.8919 10.852-4.3962 9.8597-5.793 8.7095-7.0602 7.4286-8.1801 6.045-9.1392 4.587-9.9277 3.0817-10.54 1.555-10.972 0.031241-11.226-1.4672-11.302-2.92\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 44.452\" clip-path=\"url(#05635793433)\"/><path d=\"m77.127 49.968-3.9717 3.318-3.0124 3.539-1.9882 3.7048-0.91374 3.811 0.19432 3.8538 1.3177 3.8302 2.4364 3.7386 3.5294 3.5783 4.5749 3.3502 5.5507 3.0571 6.4355 2.7029 7.2086 2.2935 7.8517 1.8365 8.3488 1.3406 8.6875 0.81613 8.8591 0.27402 8.8591-0.27402 8.6875-0.81613 8.3488-1.3406 7.8517-1.8365 7.2086-2.2935 6.4355-2.7029 5.5507-3.0571 4.5749-3.3502\" clip-path=\"url(#05635793433)\"/><path d=\"m47.63 90.601-6.3379 5.4163-4.9079 5.8086-3.3634 6.1162-1.7237 6.3297-0.011607 6.4404 1.7457 6.4409 3.5174 6.3254 5.2691 6.0903 6.9639 5.7345 8.5627 5.2602 10.026 4.6727 11.316 3.9814 12.397 3.1989 13.237 2.3413 13.812 1.4278 14.104 0.47983 14.104-0.47983 13.812-1.4278 13.237-2.3413 12.397-3.1989 11.316-3.9814 10.026-4.6727 8.5627-5.2602 6.9639-5.7345\" clip-path=\"url(#05635793433)\"/><path d=\"m53.151 147.62-5.8821 5.4651-4.5378 5.855-3.0889 6.1583-1.5541 6.366 0.044543 6.4697 1.6816 6.4627 3.3283 6.3394 4.9527 6.0969 6.5209 5.7345 7.9973 5.2549 9.3463 4.6639 10.533 3.9707 11.526 3.1882 12.298 2.3323 12.825 1.4218 13.093 0.47774 13.093-0.47774 12.825-1.4218 12.298-2.3323 11.526-3.1882 10.533-3.9707 9.3463-4.6639 7.9973-5.2549 6.5209-5.7345\" clip-path=\"url(#05635793433)\"/><path d=\"m89.622 199.2-3.0201 3.1319-2.2697 3.3327-1.4723 3.4804-0.64 3.5712 0.21396 3.602 1.0753 3.5708 1.9287 3.4765 2.7584 3.3193 3.5482 3.1006 4.2823 2.8232 4.9452 2.4913 5.5225 2.1105 6.0012 1.6876 6.3704 1.2307 6.6216 0.74864 6.7486 0.25127 6.7486-0.25127 6.6216-0.74864 6.3704-1.2307 6.0012-1.6876 5.5225-2.1105 4.9452-2.4913 4.2823-2.8232 3.5482-3.1006\" clip-path=\"url(#05635793433)\"/><path d=\"m132.24 223.89\" clip-path=\"url(#05635793433)\"/></g><g fill-opacity=\".2\"><path d=\"m72.016 180.53 8.3775 9.7607 9.2279 8.9119-3.0201 3.1319-2.2697 3.3327-10.473-7.5841-9.5388-8.5963 3.3265-4.6248z\" clip-path=\"url(#05635793433)\" fill=\"#b49c9c\"/><path d=\"m89.622 199.2 9.9453 7.9308 10.52 6.8282-1.5264 1.654-1.1293 1.7535-11.852-5.2411-11.247-6.4607 2.2697-3.3327z\" clip-path=\"url(#05635793433)\" fill=\"#9f8a8a\"/><path d=\"m58.29 159.04 6.3212 11.022 7.4048 10.467-4.3696 4.332-3.3265 4.6248-8.4559-9.4833-7.2369-10.232 4.1996-5.5479z\" clip-path=\"url(#05635793433)\" fill=\"#c7acac\"/><path d=\"m110.09 213.96 10.943 5.6163 11.206 4.3085-12.524-2.5764-12.28-3.9408 1.1293-1.7535z\" clip-path=\"url(#05635793433)\" fill=\"#837171\"/><path d=\"m107.43 217.37 12.28 3.9408 12.524 2.5764-12.995-0.70973-12.797-2.1198 0.27718-1.8638z\" clip-path=\"url(#05635793433)\" fill=\"#897676\"/><path d=\"m84.332 205.67 11.247 6.4607 11.852 5.2411-0.71063 1.8239-0.27718 1.8638-12.404-3.5016-11.819-4.8364 0.64-3.5712z\" clip-path=\"url(#05635793433)\" fill=\"#a58f8f\"/><path d=\"m49.28 135.98 3.8716 11.647 5.139 11.418-5.4633 5.1834-4.1996 5.5479-5.8959-10.829-4.4493-11.265 4.7966-6.0552z\" clip-path=\"url(#05635793433)\" fill=\"#d6baba\"/><path d=\"m106.44 221.06 12.797 2.1198 12.995 0.70973-12.58 1.1653-12.444-0.27449-0.60506-1.8482z\" clip-path=\"url(#05635793433)\" fill=\"#8e7b7b\"/><path d=\"m64.32 189.49 9.5388 8.5963 10.473 7.5841-1.4723 3.4804-0.64 3.5712-11.048-6.1053-10.099-7.2898 1.0374-4.9905z\" clip-path=\"url(#05635793433)\" fill=\"#bca3a3\"/><path d=\"m107.21 224.78 12.444 0.27449 12.58-1.1653-11.302 2.92-11.226 1.4672-1.4568-1.7044z\" clip-path=\"url(#05635793433)\" fill=\"#948080\"/><path d=\"m109.71 228.27 11.226-1.4672 11.302-2.92-9.2447 4.4326-9.2148 2.9802-2.2166-1.4394z\" clip-path=\"url(#05635793433)\" fill=\"#988484\"/><path d=\"m150.7 231.3-9.2148-2.9802-9.2447-4.4326 11.302 2.92 11.226 1.4672-1.8519 1.5862z\" clip-path=\"url(#05635793433)\" fill=\"#948181\"/><path d=\"m82.22 212.72 11.819 4.8364 12.404 3.5016 0.16389 1.8721 0.60506 1.8482-12.113-1.7236-11.59-3.1619-1.0753-3.5708z\" clip-path=\"url(#05635793433)\" fill=\"#a99292\"/><path d=\"m113.78 231.3 9.2148-2.9802 9.2447-4.4326-6.5459 5.5969-6.5426 4.1521-2.8271-1.0699z\" clip-path=\"url(#05635793433)\" fill=\"#9c8787\"/><path d=\"m145.32 233.64-6.5426-4.1521-6.5459-5.5969 9.2447 4.4326 9.2148 2.9802-2.5438 1.2663z\" clip-path=\"url(#05635793433)\" fill=\"#998585\"/><path d=\"m48.627 169.77 7.2369 10.232 8.4559 9.4833-2.2105 4.8464-1.0374 4.9905-8.9812-8.3713-7.708-9.3318 1.4039-6.0196z\" clip-path=\"url(#05635793433)\" fill=\"#d0b4b4\"/><path d=\"m119.15 233.64 6.5426-4.1521 6.5459-5.5969-3.3913 6.3305-3.3955 4.8937-3.2407-0.6215z\" clip-path=\"url(#05635793433)\" fill=\"#9e8989\"/><path d=\"m139.02 235.11-3.3955-4.8937-3.3913-6.3305 6.5459 5.5969 6.5426 4.1521-3.061 0.85368z\" clip-path=\"url(#05635793433)\" fill=\"#9c8888\"/><path d=\"m45.605 112.69 1.1411 11.584 2.5336 11.704-6.2011 5.6479-4.7966 6.0552-2.9152-11.528-1.3139-11.61 5.0454-6.1354z\" clip-path=\"url(#05635793433)\" fill=\"#e2c4c4\"/><path d=\"m125.45 235.11 3.3955-4.8937 3.3913-6.3305v6.581 5.1475l-3.4242-0.12668z\" clip-path=\"url(#05635793433)\" fill=\"#9f8a8a\"/><path d=\"m132.24 235.62v-5.1475-6.581l3.3913 6.3305 3.3955 4.8937-3.3626 0.37764z\" clip-path=\"url(#05635793433)\" fill=\"#9e8989\"/><path d=\"m83.509 219.89 11.59 3.1619 12.113 1.7236 1.0386 1.7921 1.4568 1.7044-10.972-0.031241-10.54-1.555-2.7584-3.3193z\" clip-path=\"url(#05635793433)\" fill=\"#aa9494\"/><path d=\"m61.072 199.32 10.099 7.2898 11.048 6.1053 0.21396 3.602 1.0753 3.5708-10.877-4.5684-9.9782-5.9211-1.4066-5.0264z\" clip-path=\"url(#05635793433)\" fill=\"#c0a7a7\"/><path d=\"m38.282 147.68 4.4493 11.265 5.8959 10.829-2.8405 5.8294-1.4039 6.0196-6.2946-10.154-4.759-10.821 1.6721-6.5939z\" clip-path=\"url(#05635793433)\" fill=\"#e1c3c3\"/><path d=\"m168.45 232.61-8.7116 0.13804-9.0384-1.45 2.2166-1.4394 1.8519-1.5862 10.972-0.031241 10.54-1.555-3.5482 3.1006z\" clip-path=\"url(#05635793433)\" fill=\"#7d6c6c\"/><path d=\"m88.196 226.69 10.54 1.555 10.972 0.031241 1.8519 1.5862 2.2166 1.4394-9.0384 1.45-8.7116-0.13804-4.2823-2.8232z\" clip-path=\"url(#05635793433)\" fill=\"#aa9393\"/><path d=\"m47.63 90.601-1.7363 10.802-0.28856 11.284-6.5065 5.7188-5.0454 6.1354 0.33229-11.505 1.9987-11.209 4.9079-5.8086z\" clip-path=\"url(#05635793433)\" fill=\"#eacbcb\"/><path d=\"m44.383 181.62 7.708 9.3318 8.9812 8.3713 0.17494 5.0519 1.4066 5.0264-8.9031-7.1976-7.6631-8.3749-1.6152-6.0978z\" clip-path=\"url(#05635793433)\" fill=\"#d5b9b9\"/><path d=\"m96.026 232.61 8.7116 0.13804 9.0384-1.45 2.5438 1.2663 2.8271 1.0699-6.4348 2.6045-6.2185 0.97306-5.5225-2.1105z\" clip-path=\"url(#05635793433)\" fill=\"#a89191\"/><path d=\"m157.98 237.21-6.2185-0.97306-6.4348-2.6045 2.8271-1.0699 2.5438-1.2663 9.0384 1.45 8.7116-0.13804-4.9452 2.4913z\" clip-path=\"url(#05635793433)\" fill=\"#857373\"/><path d=\"m62.654 209.4 9.9782 5.9211 10.877 4.5684 1.9287 3.4765 2.7584 3.3193-9.9277-3.0817-9.1392-4.587-3.8392-4.7054z\" clip-path=\"url(#05635793433)\" fill=\"#c1a8a8\"/><path d=\"m34.053 124.54 1.3139 11.61 2.9152 11.528-3.2806 6.3737-1.6721 6.5939-3.1222-11.319-1.4082-11.633 1.7879-6.6912z\" clip-path=\"url(#05635793433)\" fill=\"#eecece\"/><path d=\"m106.49 237.21 6.2185-0.97306 6.4348-2.6045 3.061 0.85368 3.2407 0.6215-3.3452 3.3383-3.2382 1.6823-6.3704-1.2307z\" clip-path=\"url(#05635793433)\" fill=\"#a38d8d\"/><path d=\"m145.61 240.13-3.2382-1.6823-3.3452-3.3383 3.2407-0.6215 3.061-0.85368 6.4348 2.6045 6.2185 0.97306-6.0012 1.6876z\" clip-path=\"url(#05635793433)\" fill=\"#8d7a7a\"/><path d=\"m118.87 240.13 3.2382-1.6823 3.3452-3.3383 3.3626 0.37764 3.4242 0.12668v3.5901 1.9262l-6.7486-0.25127z\" clip-path=\"url(#05635793433)\" fill=\"#9d8888\"/><path d=\"m132.24 241.13v-1.9262-3.5901l3.4242-0.12668 3.3626-0.37764 3.3452 3.3383 3.2382 1.6823-6.6216 0.74864z\" clip-path=\"url(#05635793433)\" fill=\"#968282\"/><path d=\"m55.413 71.165-4.6016 9.2982-3.1814 10.139-6.3379 5.4163-4.9079 5.8086 3.6589-10.721 5.2846-10.041 4.3882-5.1195z\" clip-path=\"url(#05635793433)\" fill=\"#edcdcd\"/><path d=\"m33.33 160.65 4.759 10.821 6.2946 10.154 0.089397 6.1111 1.6152 6.0978-6.273-9.4303-4.7518-10.342-1.7273-6.7051z\" clip-path=\"url(#05635793433)\" fill=\"#e7c8c8\"/><path d=\"m69.129 219.02 9.1392 4.587 9.9277 3.0817 3.5482 3.1006 4.2823 2.8232-8.2324-1.7613-7.6015-3.3939-6.071-4.0275z\" clip-path=\"url(#05635793433)\" fill=\"#bfa6a6\"/><path d=\"m184.28 227.46-7.6015 3.3939-8.2324 1.7613 4.2823-2.8232 3.5482-3.1006 9.9277-3.0817 9.1392-4.587-4.9925 4.4098z\" clip-path=\"url(#05635793433)\" fill=\"#736363\"/><path d=\"m36.384 101.83-1.9987 11.209-0.33229 11.505-3.4661 6.4628-1.7879 6.6912 0.35622-11.753 2.1417-11.67 1.7237-6.3297z\" clip-path=\"url(#05635793433)\" fill=\"#f6d5d5\"/><path d=\"m46.088 193.83 7.6631 8.3749 8.9031 7.1976 2.6358 4.9112 3.8392 4.7054-8.1801-6.045-7.0602-7.4286-4.6543-5.7404z\" clip-path=\"url(#05635793433)\" fill=\"#d6baba\"/><path d=\"m169.32 234.05-5.4526 2.4475-5.8912 0.71974 5.5225-2.1105 4.9452-2.4913 8.2324-1.7613 7.6015-3.3939-7.0503 3.5637z\" clip-path=\"url(#05635793433)\" fill=\"#7f6e6e\"/><path d=\"m80.192 227.46 7.6015 3.3939 8.2324 1.7613 4.9452 2.4913 5.5225 2.1105-5.8912-0.71974-5.4526-2.4475-7.9074-3.0261z\" clip-path=\"url(#05635793433)\" fill=\"#b9a1a1\"/><path d=\"m68.657 55.763-7.2712 7.1146-5.9732 8.2869-5.6972 4.7806-4.3882 5.1195 6.8462-9.1757 8.3135-8.1342 3.5361-4.1277z\" clip-path=\"url(#05635793433)\" fill=\"#ebcbcb\"/><path d=\"m28.799 137.7 1.4082 11.633 3.1222 11.319 0.006042 6.7069 1.7273 6.7051-3.1217-11.088-1.4091-11.65-1.7673-6.8146z\" clip-path=\"url(#05635793433)\" fill=\"#f4d4d4\"/><path d=\"m95.15 234.05 5.4526 2.4475 5.8912 0.71974 6.0012 1.6876 6.3704 1.2307-3.0727-0.052086-2.8481-1.8384-9.1735-1.7706z\" clip-path=\"url(#05635793433)\" fill=\"#b19999\"/><path d=\"m151.53 238.24-2.8481 1.8384-3.0727 0.052086 6.3704-1.2307 6.0012-1.6876 5.8912-0.71974 5.4526-2.4475-8.6212 2.4245z\" clip-path=\"url(#05635793433)\" fill=\"#8c7979\"/><path d=\"m45.328 81.065-5.2846 10.041-3.6589 10.721-3.3634 6.1162-1.7237 6.3297 3.9167-11.381 5.6479-10.883 1.4871-5.5612z\" clip-path=\"url(#05635793433)\" fill=\"#f8d7d7\"/><path d=\"m53.889 205.55 7.0602 7.4286 8.1801 6.045 4.9925 4.4098 6.071 4.0275-6.8226-5.0075-5.9028-6.5712-7.4717-4.9382z\" clip-path=\"url(#05635793433)\" fill=\"#d3b7b7\"/><path d=\"m197 215.88-5.9028 6.5712-6.8226 5.0075 6.071-4.0275 4.9925-4.4098 8.1801-6.045 7.0602-7.4286-6.1068 5.3939z\" clip-path=\"url(#05635793433)\" fill=\"#6e5f5f\"/><path d=\"m35.063 174.06 4.7518 10.342 6.273 9.4303 3.1467 5.975 4.6543 5.7404-5.793-8.7095-4.3962-9.8597-5.1751-6.3357z\" clip-path=\"url(#05635793433)\" fill=\"#e8c9c9\"/><path d=\"m112.94 238.24 2.8481 1.8384 3.0727 0.052086 6.6216 0.74864 6.7486 0.25127v0.17796-1.628l-9.7409-0.36207z\" clip-path=\"url(#05635793433)\" fill=\"#a69090\"/><path d=\"m132.24 239.68v1.628-0.17796l6.7486-0.25127 6.6216-0.74864 3.0727-0.052086 2.8481-1.8384-9.5501 1.0782z\" clip-path=\"url(#05635793433)\" fill=\"#998585\"/><path d=\"m31.297 114.27-2.1417 11.67-0.35622 11.753-0.034287 6.8111 1.7673 6.8146 0.35651-12.01 2.1426-12.157-1.7457-6.4409z\" clip-path=\"url(#05635793433)\" fill=\"#fcdada\"/><path d=\"m86.671 45.621-9.5438 4.3466-8.47 5.7952-4.6339 3.8639-3.5361 4.1277 9.6559-6.9299 10.844-5.5807 2.4419-2.8995z\" clip-path=\"url(#05635793433)\" fill=\"#e3c5c5\"/><path d=\"m60.487 63.755-8.3135 8.1342-6.8462 9.1757-2.9788 5.3823-1.4871 5.5612 7.3011-10.182 8.8418-9.2835 1.1224-4.46z\" clip-path=\"url(#05635793433)\" fill=\"#f4d4d4\"/><path d=\"m67.467 215.88 5.9028 6.5712 6.8226 5.0075 7.0503 3.5637 7.9074 3.0261-4.9044-4.1801-4.2513-5.8838-9.8107-3.7256z\" clip-path=\"url(#05635793433)\" fill=\"#cbb0b0\"/><path d=\"m178.48 223.98-4.2513 5.8838-4.9044 4.1801 7.9074-3.0261 7.0503-3.5637 6.8226-5.0075 5.9028-6.5712-8.7168 4.3791z\" clip-path=\"url(#05635793433)\" fill=\"#7d6d6d\"/><path d=\"m30.532 151.32 1.4091 11.65 3.1217 11.088 3.4615 6.5826 5.1751 6.3357-2.8919-10.852-1.3064-11.66-5.384-6.4491z\" clip-path=\"url(#05635793433)\" fill=\"#f5d4d4\"/><path d=\"m43.7 186.98 4.3962 9.8597 5.793 8.7095 6.1068 5.3939 7.4717 4.9382-4.8532-8.0522-3.689-9.4167-8.3937-5.4687z\" clip-path=\"url(#05635793433)\" fill=\"#e3c5c5\"/><path d=\"m205.55 198.41-3.689 9.4167-4.8532 8.0522 7.4717-4.9382 6.1068-5.3939 5.793-8.7095 4.3962-9.8597-6.8317 5.9637z\" clip-path=\"url(#05635793433)\" fill=\"#6d5f5f\"/><path d=\"m40.862 92.008-5.6479 10.883-3.9167 11.381-0.011607 6.4404 1.7457 6.4409 3.9141-12.08 5.6348-11.776-1.6532-5.6403z\" clip-path=\"url(#05635793433)\" fill=\"#fedcdc\"/><path d=\"m85.995 223.98 4.2513 5.8838 4.9044 4.1801 8.6212 2.4245 9.1735 1.7706-2.5653-3.6454-2.2264-5.438-11.434-2.186z\" clip-path=\"url(#05635793433)\" fill=\"#bfa6a6\"/><path d=\"m156.32 229.16-2.2264 5.438-2.5653 3.6454 9.1735-1.7706 8.6212-2.4245 4.9044-4.1801 4.2513-5.8838-10.725 2.9896z\" clip-path=\"url(#05635793433)\" fill=\"#8e7b7b\"/><path d=\"m80.987 51.244-10.844 5.5807-9.6559 6.9299-2.3602 4.3283-1.1224 4.46 10.237-8.2024 11.454-6.9561 0.70102-3.1106z\" clip-path=\"url(#05635793433)\" fill=\"#ebcbcb\"/><path d=\"m108.36 41.677-11.217 1.1537-10.467 2.7907-3.2421 2.7233-2.4419 2.8995 11.849-4.1088 12.647-2.5405 1.2222-1.5018z\" clip-path=\"url(#05635793433)\" fill=\"#d6b9b9\"/><path d=\"m108.15 229.16 2.2264 5.438 2.5653 3.6454 9.5501 1.0782 9.7409 0.36207v-3.4604-5.2835l-12.164-0.44756z\" clip-path=\"url(#05635793433)\" fill=\"#b09999\"/><path d=\"m132.24 230.94v5.2835 3.4604l9.7409-0.36207 9.5501-1.0782 2.5653-3.6454 2.2264-5.438-11.918 1.3322z\" clip-path=\"url(#05635793433)\" fill=\"#a08b8b\"/><path d=\"m33.031 127.15-2.1426 12.157-0.35651 12.01 3.5851 6.6953 5.384 6.4491 0.33057-12.261 1.9859-12.636-5.2691-6.0903z\" clip-path=\"url(#05635793433)\" fill=\"#fddbdb\"/><path d=\"m57.005 72.543-8.8418 9.2835-7.3011 10.182 0.065156 5.6492 1.6532 5.6403 7.2679-11.245 8.7771-10.493-1.4618-4.4984z\" clip-path=\"url(#05635793433)\" fill=\"#fad8d8\"/><path d=\"m105.48 44.595-12.647 2.5405-11.849 4.1088-1.5906 3.0298-0.70102 3.1106 12.466-5.5672 13.247-4.0625 0.30385-1.5973z\" clip-path=\"url(#05635793433)\" fill=\"#dcbebe\"/><path d=\"m58.925 198.41 3.689 9.4167 4.8532 8.0522 8.7168 4.3791 9.8107 3.7256-3.501-7.5223-2.6646-9.0574-11.081-4.1372z\" clip-path=\"url(#05635793433)\" fill=\"#dabdbd\"/><path d=\"m184.64 207.4-2.6646 9.0574-3.501 7.5223 9.8107-3.7256 8.7168-4.3791 4.8532-8.0522 3.689-9.4167-9.8226 4.8567z\" clip-path=\"url(#05635793433)\" fill=\"#7f6e6e\"/><path d=\"m132.24 44.452-12.11-2.2408-11.77-0.53455-1.6497 1.4161-1.2222 1.5018 13.215-0.90563 13.537 0.76306z\" clip-path=\"url(#05635793433)\" fill=\"#bca3a3\"/><path d=\"m39.501 164.47 1.3064 11.66 2.8919 10.852 6.8317 5.9637 8.3937 5.4687-2.4296-10.631-1.0982-11.663-8.7701-5.5744z\" clip-path=\"url(#05635793433)\" fill=\"#f0d0d0\"/><path d=\"m209.07 176.11-1.0982 11.663-2.4296 10.631 8.3937-5.4687 6.8317-5.9637 2.8919-10.852 1.3064-11.66-7.1257 6.0748z\" clip-path=\"url(#05635793433)\" fill=\"#716262\"/><path d=\"m78.695 57.385-11.454 6.9561-10.237 8.2024 0.15855 4.518 1.4618 4.4984 10.128-9.5348 11.291-8.3867-1.1356-3.114z\" clip-path=\"url(#05635793433)\" fill=\"#efcfcf\"/><path d=\"m132.24 44.452-13.537-0.76306-13.215 0.90563-0.77114 1.5626-0.30385 1.5973 13.779-2.4725 14.049-0.83004z\" clip-path=\"url(#05635793433)\" fill=\"#c2a8a8\"/><path d=\"m42.58 103.3-5.6348 11.776-3.9141 12.08 3.5174 6.3254 5.2691 6.0903 3.6242-12.77 5.2091-12.656-4.8219-5.316z\" clip-path=\"url(#05635793433)\" fill=\"#ffdddd\"/><path d=\"m104.41 47.755-13.247 4.0625-12.466 5.5672 0.21283 3.1394 1.1356 3.114 12.237-7.0726 12.947-5.6204-0.64824-1.585z\" clip-path=\"url(#05635793433)\" fill=\"#e0c2c2\"/><path d=\"m132.24 44.452-14.049 0.83004-13.779 2.4725 0.17197 1.605 0.64824 1.585 13.405-4.0618 13.602-2.4308z\" clip-path=\"url(#05635793433)\" fill=\"#c8adad\"/><path d=\"m132.24 44.452-13.602 2.4308-13.405 4.0618 1.1166 1.5374 1.5687 1.4627 12.099-5.5633 12.223-3.9294z\" clip-path=\"url(#05635793433)\" fill=\"#cdb2b2\"/><path d=\"m159.55 213.16-1.398 8.8225-1.8353 7.1774 11.434-2.186 10.725-2.9896 3.501-7.5223 2.6646-9.0574-12.136 3.3233z\" clip-path=\"url(#05635793433)\" fill=\"#938080\"/><path d=\"m79.829 207.4 2.6646 9.0574 3.501 7.5223 10.725 2.9896 11.434 2.186-1.8353-7.1774-1.398-8.8225-12.955-2.432z\" clip-path=\"url(#05635793433)\" fill=\"#ccb1b1\"/><path d=\"m132.24 44.452-12.223 3.9294-12.099 5.5633 1.9961 1.3617 2.3908 1.236 9.9361-6.8688 9.9992-5.2216z\" clip-path=\"url(#05635793433)\" fill=\"#d2b6b6\"/><path d=\"m132.24 44.452 9.9992 5.2216 9.9361 6.8688 2.3908-1.236 1.9961-1.3617-12.099-5.5633-12.223-3.9294z\" clip-path=\"url(#05635793433)\" fill=\"#ceb2b2\"/><path d=\"m58.625 81.559-8.7771 10.493-7.2679 11.245 3.249 5.5301 4.8219 5.316 6.7044-12.29 8.0749-11.679-4.041-4.2168z\" clip-path=\"url(#05635793433)\" fill=\"#fad9d9\"/><path d=\"m132.24 44.452-9.9992 5.2216-9.9361 6.8688 2.7451 1.0877 3.0521 0.91918 7.0571-7.8807 7.0809-6.2166z\" clip-path=\"url(#05635793433)\" fill=\"#d5b9b9\"/><path d=\"m132.24 44.452 7.0809 6.2166 7.0571 7.8807 3.0521-0.91918 2.7451-1.0877-9.9361-6.8688-9.9992-5.2216z\" clip-path=\"url(#05635793433)\" fill=\"#d2b6b6\"/><path d=\"m41.818 139.57-1.9859 12.636-0.33057 12.261 7.1257 6.0748 8.7701 5.5744 0.27795-12.484 1.6691-13.067-8.5627-5.2602z\" clip-path=\"url(#05635793433)\" fill=\"#f8d7d7\"/><path d=\"m207.13 150.56 1.6691 13.067 0.27795 12.484 8.7701-5.5744 7.1257-6.0748-0.33057-12.261-1.9859-12.636-6.9639 5.7345z\" clip-path=\"url(#05635793433)\" fill=\"#796969\"/><path d=\"m105.23 50.945-12.947 5.6204-12.237 7.0726 2.0511 3.0336 2.9421 2.8981 11.14-8.5193 11.737-7.1053-1.5687-1.4627z\" clip-path=\"url(#05635793433)\" fill=\"#e1c3c3\"/><path d=\"m80.044 63.638-11.291 8.3867-10.128 9.5348 2.7642 4.3984 4.041 4.2168 9.2888-10.833 10.318-9.7718-2.9421-2.8981z\" clip-path=\"url(#05635793433)\" fill=\"#f1d0d0\"/><path d=\"m104.92 213.16 1.398 8.8225 1.8353 7.1774 11.918 1.3322 12.164 0.44756v-7.0576-8.7407l-13.8-0.49835z\" clip-path=\"url(#05635793433)\" fill=\"#bba2a2\"/><path d=\"m132.24 215.14v8.7407 7.0576l12.164-0.44756 11.918-1.3322 1.8353-7.1774 1.398-8.8225-13.516 1.483z\" clip-path=\"url(#05635793433)\" fill=\"#a89191\"/><path d=\"m132.24 44.452-7.0809 6.2166-7.0571 7.8807 3.3056 0.73354 3.5004 0.5341 3.6632-8.5213 3.6688-6.8435z\" clip-path=\"url(#05635793433)\" fill=\"#d8bbbb\"/><path d=\"m132.24 44.452 3.6688 6.8435 3.6632 8.5213 3.5004-0.5341 3.3056-0.73354-7.0571-7.8807-7.0809-6.2166z\" clip-path=\"url(#05635793433)\" fill=\"#d6b9b9\"/><path d=\"m132.24 44.452v7.0576 8.7407l3.6994-0.10888 3.6326-0.32457-3.6632-8.5213-3.6688-6.8435z\" clip-path=\"url(#05635793433)\" fill=\"#d8bbbb\"/><path d=\"m132.24 44.452-3.6688 6.8435-3.6632 8.5213 3.6326 0.32457 3.6994 0.10888v-8.7407-7.0576z\" clip-path=\"url(#05635793433)\" fill=\"#d9bcbc\"/><path d=\"m55.397 176.11 1.0982 11.663 2.4296 10.631 9.8226 4.8567 11.081 4.1372-1.7565-10.45-0.7944-11.663-11.605-4.2219z\" clip-path=\"url(#05635793433)\" fill=\"#e6c7c7\"/><path d=\"m187.19 185.29-0.7944 11.663-1.7565 10.45 11.081-4.1372 9.8226-4.8567 2.4296-10.631 1.0982-11.663-10.276 4.9535z\" clip-path=\"url(#05635793433)\" fill=\"#857373\"/><path d=\"m152.17 56.543 9.6749 8.4066 9.2159 9.7966 4.5814-2.4675 3.7914-2.7086-11.14-8.5193-11.737-7.1053-1.9961 1.3617z\" clip-path=\"url(#05635793433)\" fill=\"#b49c9c\"/><path d=\"m107.91 53.945-11.737 7.1053-11.14 8.5193 3.7914 2.7086 4.5814 2.4675 9.2159-9.7966 9.6749-8.4066-2.3908-1.236z\" clip-path=\"url(#05635793433)\" fill=\"#e1c3c3\"/><path d=\"m50.651 114.14-5.2091 12.656-3.6242 12.77 6.9639 5.7345 8.5627 5.2602 3.0434-13.394 4.3682-13.451-7.7659-4.578z\" clip-path=\"url(#05635793433)\" fill=\"#fad9d9\"/><path d=\"m199.72 123.72 4.3682 13.451 3.0434 13.394 8.5627-5.2602 6.9639-5.7345-3.6242-12.77-5.2091-12.656-6.3389 4.9979z\" clip-path=\"url(#05635793433)\" fill=\"#847373\"/><path d=\"m85.037 69.57-10.318 9.7718-9.2888 10.833 5.2662 3.9544 6.4133 3.6137 7.7349-11.994 8.5652-11.003-4.5814-2.4675z\" clip-path=\"url(#05635793433)\" fill=\"#eecece\"/><path d=\"m171.06 74.746 8.5652 11.003 7.7349 11.994 6.4133-3.6137 5.2662-3.9544-9.2888-10.833-10.318-9.7718-3.7914 2.7086z\" clip-path=\"url(#05635793433)\" fill=\"#a28c8c\"/><path d=\"m65.43 90.175-8.0749 11.679-6.7044 12.29 6.3389 4.9979 7.7659 4.578 5.6114-13.233 6.7427-12.744-6.4133-3.6137z\" clip-path=\"url(#05635793433)\" fill=\"#f7d6d6\"/><path d=\"m187.36 97.743 6.7427 12.744 5.6114 13.233 7.7659-4.578 6.3389-4.9979-6.7044-12.29-8.0749-11.679-5.2662 3.9544z\" clip-path=\"url(#05635793433)\" fill=\"#927e7e\"/><path d=\"m77.278 185.29 0.7944 11.663 1.7565 10.45 12.136 3.3233 12.955 2.432-0.92208-10.331-0.41717-11.661-13.584-2.4838z\" clip-path=\"url(#05635793433)\" fill=\"#d7baba\"/><path d=\"m160.89 191.17-0.41717 11.661-0.92208 10.331 12.955-2.432 12.136-3.3233 1.7565-10.45 0.7944-11.663-12.718 3.3929z\" clip-path=\"url(#05635793433)\" fill=\"#9a8585\"/><path d=\"m112.3 56.543-9.6749 8.4066-9.2159 9.7966 5.2955 2.1785 5.9178 1.8462 6.5831-10.799 6.8916-9.4218-3.0521-0.91918z\" clip-path=\"url(#05635793433)\" fill=\"#dfc1c1\"/><path d=\"m146.37 58.55 6.8916 9.4218 6.5831 10.799 5.9178-1.8462 5.2955-2.1785-9.2159-9.7966-9.6749-8.4066-2.7451 1.0877z\" clip-path=\"url(#05635793433)\" fill=\"#bca3a3\"/><path d=\"m57.344 150.56-1.6691 13.067-0.27795 12.484 10.276 4.9535 11.605 4.2219 0.20108-12.66 1.2071-13.412-11.316-3.9814z\" clip-path=\"url(#05635793433)\" fill=\"#edcece\"/><path d=\"m185.79 159.22 1.2071 13.412 0.20108 12.66 11.605-4.2219 10.276-4.9535-0.27795-12.484-1.6691-13.067-10.026 4.6727z\" clip-path=\"url(#05635793433)\" fill=\"#8c7a7a\"/><path d=\"m139.57 59.817 3.5839 10.068 3.4295 11.44 6.8329-1.0771 6.4343-1.4767-6.5831-10.799-6.8916-9.4218-3.3056 0.73354z\" clip-path=\"url(#05635793433)\" fill=\"#c4aaaa\"/><path d=\"m118.1 58.55-6.8916 9.4218-6.5831 10.799 6.4343 1.4767 6.8329 1.0771 3.4295-11.44 3.5839-10.068-3.5004-0.5341z\" clip-path=\"url(#05635793433)\" fill=\"#dabdbd\"/><path d=\"m103.58 191.17 0.41717 11.661 0.92208 10.331 13.516 1.483 13.8 0.49835v-10.289-11.66l-14.478-0.50913z\" clip-path=\"url(#05635793433)\" fill=\"#c4aaaa\"/><path d=\"m132.24 193.19v11.66 10.289l13.8-0.49835 13.516-1.483 0.92208-10.331 0.41717-11.661-14.177 1.5149z\" clip-path=\"url(#05635793433)\" fill=\"#b09898\"/><path d=\"m124.9 59.817-3.5839 10.068-3.4295 11.44 7.1041 0.65536 7.2413 0.21998v-11.66-10.289l-3.6994-0.10888z\" clip-path=\"url(#05635793433)\" fill=\"#d4b8b8\"/><path d=\"m132.24 60.251v10.289 11.66l7.2413-0.21998 7.1041-0.65536-3.4295-11.44-3.5839-10.068-3.6326 0.32457z\" clip-path=\"url(#05635793433)\" fill=\"#ccb1b1\"/><path d=\"m93.41 74.746-8.5652 11.003-7.7349 11.994 7.4561 3.1993 8.3696 2.7179 5.5533-12.915 6.1345-11.975-5.9178-1.8462z\" clip-path=\"url(#05635793433)\" fill=\"#e9caca\"/><path d=\"m159.85 78.77 6.1345 11.975 5.5533 12.915 8.3696-2.7179 7.4561-3.1993-7.7349-11.994-8.5652-11.003-5.2955 2.1785z\" clip-path=\"url(#05635793433)\" fill=\"#ae9797\"/><path d=\"m64.756 123.72-4.3682 13.451-3.0434 13.394 10.026 4.6727 11.316 3.9814 2.1995-13.893 3.1534-14.087-10.215-3.4568z\" clip-path=\"url(#05635793433)\" fill=\"#f1d0d0\"/><path d=\"m180.43 131.24 3.1534 14.087 2.1995 13.893 11.316-3.9814 10.026-4.6727-3.0434-13.394-4.3682-13.451-9.0689 4.0616z\" clip-path=\"url(#05635793433)\" fill=\"#968282\"/><path d=\"m77.11 97.743-6.7427 12.744-5.6114 13.233 9.0689 4.0616 10.215 3.4568 4.0449-13.986 4.8514-13.592-8.3696-2.7179z\" clip-path=\"url(#05635793433)\" fill=\"#efcfcf\"/><path d=\"m171.54 103.66 4.8514 13.592 4.0449 13.986 10.215-3.4568 9.0689-4.0616-5.6114-13.233-6.7427-12.744-7.4561 3.1993z\" clip-path=\"url(#05635793433)\" fill=\"#a18c8c\"/><path d=\"m78.686 159.22-1.2071 13.412-0.20108 12.66 12.718 3.3929 13.584 2.4838 0.1056-12.774 0.63385-13.635-13.237-2.3413z\" clip-path=\"url(#05635793433)\" fill=\"#dfc1c1\"/><path d=\"m160.15 164.76 0.63385 13.635 0.1056 12.774 13.584-2.4838 12.718-3.3929-0.20108-12.66-1.2071-13.412-12.397 3.1989z\" clip-path=\"url(#05635793433)\" fill=\"#a18c8c\"/><path d=\"m104.62 78.77-6.1345 11.975-5.5533 12.915 9.1309 2.1784 9.7205 1.5914 2.9024-13.507 3.2012-12.598-6.8329-1.0771z\" clip-path=\"url(#05635793433)\" fill=\"#e0c2c2\"/><path d=\"m146.58 81.324 3.2012 12.598 2.9024 13.507 9.7205-1.5914 9.1309-2.1784-5.5533-12.915-6.1345-11.975-6.4343 1.4767z\" clip-path=\"url(#05635793433)\" fill=\"#bba2a2\"/><path d=\"m104.32 164.76-0.63385 13.635-0.1056 12.774 14.177 1.5149 14.478 0.50913v-12.813-13.712l-14.104-0.47983z\" clip-path=\"url(#05635793433)\" fill=\"#ccb1b1\"/><path d=\"m132.24 166.67v13.712 12.813l14.478-0.50913 14.177-1.5149-0.1056-12.774-0.63385-13.635-13.812 1.4278z\" clip-path=\"url(#05635793433)\" fill=\"#b79f9f\"/><path d=\"m117.89 81.324-3.2012 12.598-2.9024 13.507 10.123 0.96925 10.326 0.32551v-13.712-12.813l-7.2413-0.21998z\" clip-path=\"url(#05635793433)\" fill=\"#d5b9b9\"/><path d=\"m132.24 82.2v12.813 13.712l10.326-0.32551 10.123-0.96925-2.9024-13.507-3.2012-12.598-7.1041 0.65536z\" clip-path=\"url(#05635793433)\" fill=\"#c8aeae\"/><path d=\"m84.039 131.24-3.1534 14.087-2.1995 13.893 12.397 3.1989 13.237 2.3413 1.1544-14.216 1.6539-14.499-11.916-2.0295z\" clip-path=\"url(#05635793433)\" fill=\"#e3c5c5\"/><path d=\"m157.34 136.04 1.6539 14.499 1.1544 14.216 13.237-2.3413 12.397-3.1989-2.1995-13.893-3.1534-14.087-11.173 2.7749z\" clip-path=\"url(#05635793433)\" fill=\"#aa9393\"/><path d=\"m92.935 103.66-4.8514 13.592-4.0449 13.986 11.173 2.7749 11.916 2.0295 2.1194-14.473 2.539-14.139-9.7205-1.5914z\" clip-path=\"url(#05635793433)\" fill=\"#e3c5c5\"/><path d=\"m152.68 107.43 2.539 14.139 2.1194 14.473 11.916-2.0295 11.173-2.7749-4.0449-13.986-4.8514-13.592-9.1309 2.1784z\" clip-path=\"url(#05635793433)\" fill=\"#b39b9b\"/><path d=\"m132.24 137.7v14.642 14.329l14.104-0.47983 13.812-1.4278-1.1544-14.216-1.6539-14.499-12.425 1.2371z\" clip-path=\"url(#05635793433)\" fill=\"#bea5a5\"/><path d=\"m107.13 136.04-1.6539 14.499-1.1544 14.216 13.812 1.4278 14.104 0.47983v-14.329-14.642l-12.683-0.41564z\" clip-path=\"url(#05635793433)\" fill=\"#d2b6b6\"/><path d=\"m111.79 107.43-2.539 14.139-2.1194 14.473 12.425 1.2371 12.683 0.41564v-14.642-14.329l-10.326-0.32551z\" clip-path=\"url(#05635793433)\" fill=\"#d5b8b8\"/><path d=\"m132.24 108.72v14.329 14.642l12.683-0.41564 12.425-1.2371-2.1194-14.473-2.539-14.139-10.123 0.96925z\" clip-path=\"url(#05635793433)\" fill=\"#c4aaaa\"/></g><path d=\"m299.39 262.73h243.49v-243.49h-243.49z\" fill=\"#ffffff\"/><path d=\"m337.79 112.69 179.37 51.778\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m369.47 185.29 103.8-89.891\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m424.42 223.89v-179.43\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m517.16 164.47 5.384-6.4491 3.5851-6.6953 1.7673-6.8146-0.034286-6.8111-1.7879-6.6912-3.4661-6.4628-5.0454-6.1354-6.5065-5.7188-7.8337-5.2234-9.0147-4.6597-10.04-4.0377-10.903-3.3675-11.598-2.6584-12.122-1.9197-12.472-1.1601-12.648-0.38808-12.648 0.38808-12.472 1.1601-12.122 1.9197-11.598 2.6584-10.903 3.3675-10.04 4.0377-9.0147 4.6597-7.8337 5.2234\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m473.26 95.399-0.15886-10.963-0.95644-10.22-1.7548-9.3116-2.5436-8.2428-3.3112-7.0208-4.0454-5.6561-4.7327-4.1622-5.359-2.5571-5.91-0.8626-6.371 0.89479-6.7281 2.6843-6.9685 4.4709-7.0809 6.2166-7.0571 7.8807-6.8916 9.4218-6.5831 10.799-6.1345 11.975-5.5533 12.915-4.8514 13.592-4.0449 13.986-3.1534 14.087-2.1995 13.893-1.2071 13.412-0.20108 12.66\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m337.79 112.69-6.5065 5.7188-5.0454 6.1354-3.4661 6.4628-1.7879 6.6912-0.034287 6.8111 1.7673 6.8146 3.5851 6.6953 5.384 6.4491 7.1257 6.0748 8.7701 5.5744 10.276 4.9535 11.605 4.2219 12.718 3.3929 13.584 2.4838 14.177 1.5149 14.478 0.50913 14.478-0.50913 14.177-1.5149 13.584-2.4838 12.718-3.3929 11.605-4.2219 10.276-4.9535 8.7701-5.5744 7.1257-6.0748\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><path d=\"m369.47 185.29 0.7944 11.663 1.7565 10.45 2.6646 9.0574 3.501 7.5223 4.2513 5.8838 4.9044 4.1801 5.4526 2.4475 5.8912 0.71974 6.2185-0.97306 6.4348-2.6045 6.5426-4.1521 6.5459-5.5969 6.4497-6.9237 6.2597-8.12 5.9822-9.1761 5.6236-10.084 5.1905-10.839 4.6895-11.435 4.1271-11.87 3.51-12.14 2.8446-12.243 2.1378-12.178 1.3966-11.943 0.62838-11.538\" clip-path=\"url(#33f618e8111)\" fill=\"none\" stroke=\"#808080\" stroke-linecap=\"square\"/><g fill-opacity=\".2\"><path d=\"m445.96 139.11-1.7979 12.428-2.1161 12.235-8.7449-0.89751-8.8766-0.30043v-12.357-12.525l10.846 0.35543z\" clip-path=\"url(#33f618e8111)\" fill=\"#776767\"/><path d=\"m424.42 137.7v12.525 12.357l-8.8766 0.30043-8.7449 0.89751-2.1161-12.235-1.7979-12.428 10.69-1.0622z\" clip-path=\"url(#33f618e8111)\" fill=\"#887575\"/><path d=\"m424.42 112.81v12.357 12.525l-10.846 0.35543-10.69 1.0622-1.4559-12.454-1.0934-12.312 11.957-1.1491z\" clip-path=\"url(#33f618e8111)\" fill=\"#8d7a7a\"/><path d=\"m448.51 114.35-1.0934 12.312-1.4559 12.454-10.69-1.0622-10.846-0.35543v-12.525-12.357l12.127 0.38442z\" clip-path=\"url(#33f618e8111)\" fill=\"#7a6a6a\"/><path d=\"m466.26 143.3-3.51 12.14-4.1271 11.87-8.0913-2.0501-8.4824-1.4833 2.1161-12.235 1.7979-12.428 10.38 1.7566z\" clip-path=\"url(#33f618e8111)\" fill=\"#685a5a\"/><path d=\"m402.89 139.11 1.7979 12.428 2.1161 12.235-8.4824 1.4833-8.0913 2.0501-4.1271-11.87-3.51-12.14 9.9169-2.4303z\" clip-path=\"url(#33f618e8111)\" fill=\"#998585\"/><path d=\"m471.24 118.88-2.1378 12.178-2.8446 12.243-9.9169-2.4303-10.38-1.7566 1.4559-12.454 1.0934-12.312 11.618 1.9011z\" clip-path=\"url(#33f618e8111)\" fill=\"#695b5b\"/><path d=\"m400.34 114.35 1.0934 12.312 1.4559 12.454-10.38 1.7566-9.9169 2.4303-2.8446-12.243-2.1378-12.178 11.112-2.632z\" clip-path=\"url(#33f618e8111)\" fill=\"#a28c8c\"/><path d=\"m442.05 163.78-2.4072 11.874-2.6679 11.347-6.2242-0.65812-6.3222-0.22039v-11.519-12.022l8.8766 0.30043z\" clip-path=\"url(#33f618e8111)\" fill=\"#766767\"/><path d=\"m424.42 162.58v12.022 11.519l-6.3222 0.22039-6.2242 0.65812-2.6679-11.347-2.4072-11.874 8.7449-0.89751z\" clip-path=\"url(#33f618e8111)\" fill=\"#837272\"/><path d=\"m424.42 89.272v11.519 12.022l-12.127 0.38442-11.957 1.1491-0.71399-12.002-0.32116-11.524 12.472-1.1601z\" clip-path=\"url(#33f618e8111)\" fill=\"#948080\"/><path d=\"m449.54 90.821-0.32116 11.524-0.71399 12.002-11.957-1.1491-12.127-0.38442v-12.022-11.519l12.648 0.38808z\" clip-path=\"url(#33f618e8111)\" fill=\"#7f6e6e\"/><path d=\"m458.62 167.31-4.6895 11.435-5.1905 10.839-5.7395-1.5-6.0293-1.0867 2.6679-11.347 2.4072-11.874 8.4824 1.4833z\" clip-path=\"url(#33f618e8111)\" fill=\"#6b5d5d\"/><path d=\"m406.8 163.78 2.4072 11.874 2.6679 11.347-6.0293 1.0867-5.7395 1.5-5.1905-10.839-4.6895-11.435 8.0913-2.0501z\" clip-path=\"url(#33f618e8111)\" fill=\"#907d7d\"/><path d=\"m399.3 90.821 0.32116 11.524 0.71399 12.002-11.618 1.9011-11.112 2.632-1.3966-11.943-0.62838-11.538 11.598-2.6584z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9393\"/><path d=\"m473.26 95.399-0.62838 11.538-1.3966 11.943-11.112-2.632-11.618-1.9011 0.71399-12.002 0.32116-11.524 12.122 1.9197z\" clip-path=\"url(#33f618e8111)\" fill=\"#6d5e5e\"/><path d=\"m484.11 150.06-5.0481 11.666-5.9262 11.274-6.9376-3.0963-7.5748-2.5903 4.1271-11.87 3.51-12.14 9.304 3.0748z\" clip-path=\"url(#33f618e8111)\" fill=\"#5d5050\"/><path d=\"m382.59 143.3 3.51 12.14 4.1271 11.87-7.5748 2.5903-6.9376 3.0963-5.9262-11.274-5.0481-11.666 8.5456-3.6813z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9393\"/><path d=\"m377.61 118.88 2.1378 12.178 2.8446 12.243-9.304 3.0748-8.5456 3.6813-4.0967-11.895-3.082-11.955 9.6063-3.9944z\" clip-path=\"url(#33f618e8111)\" fill=\"#b59d9d\"/><path d=\"m491.29 126.21-3.0821 11.955-4.0967 11.895-8.5456-3.6813-9.304-3.0748 2.8446-12.243 2.1378-12.178 10.44 3.3328z\" clip-path=\"url(#33f618e8111)\" fill=\"#5b4f4f\"/><path d=\"m473.13 173-6.7212 10.721-7.4238 10.015-4.8893-2.257-5.3581-1.8921 5.1905-10.839 4.6895-11.435 7.5748 2.5903z\" clip-path=\"url(#33f618e8111)\" fill=\"#635656\"/><path d=\"m390.23 167.31 4.6895 11.435 5.1905 10.839-5.3581 1.8921-4.8893 2.257-7.4238-10.015-6.7212-10.721 6.9376-3.0963z\" clip-path=\"url(#33f618e8111)\" fill=\"#9e8989\"/><path d=\"m436.97 187-2.8946 10.656-3.0839 9.8045-3.257-0.35337-3.3109-0.1184v-10.018-10.85l6.3222 0.22039z\" clip-path=\"url(#33f618e8111)\" fill=\"#786868\"/><path d=\"m424.42 186.12v10.85 10.018l-3.3109 0.1184-3.257 0.35337-3.0839-9.8045-2.8946-10.656 6.2242-0.65812z\" clip-path=\"url(#33f618e8111)\" fill=\"#7f6e6e\"/><path d=\"m448.97 69.873 0.48888 10.069 0.08119 10.879-12.472-1.1601-12.648-0.38808v-10.85-10.018l12.361 0.36816z\" clip-path=\"url(#33f618e8111)\" fill=\"#877575\"/><path d=\"m424.42 68.405v10.018 10.85l-12.648 0.38808-12.472 1.1601 0.08119-10.879 0.48888-10.069 12.189-1.1005z\" clip-path=\"url(#33f618e8111)\" fill=\"#9c8787\"/><path d=\"m448.74 189.58-5.6236 10.084-5.9822 9.1761-2.9915-0.80336-3.1501-0.58288 3.0839-9.8045 2.8946-10.656 6.0293 1.0867z\" clip-path=\"url(#33f618e8111)\" fill=\"#716262\"/><path d=\"m411.88 187 2.8946 10.656 3.0839 9.8045-3.1501 0.58288-2.9915 0.80336-5.9822-9.1761-5.6236-10.084 5.7395-1.5z\" clip-path=\"url(#33f618e8111)\" fill=\"#877575\"/><path d=\"m494.21 102.8-0.90698 11.559-2.015 11.844-9.6063-3.9944-10.44-3.3328 1.3966-11.943 0.62838-11.538 10.903 3.3675z\" clip-path=\"url(#33f618e8111)\" fill=\"#5e5252\"/><path d=\"m375.59 95.399 0.62838 11.538 1.3966 11.943-10.44 3.3328-9.6063 3.9944-2.015-11.844-0.90698-11.559 10.04-4.0377z\" clip-path=\"url(#33f618e8111)\" fill=\"#bfa6a6\"/><path d=\"m458.99 193.73-8.0249 9.1605-8.5159 8.1655-2.5289-1.2034-2.7834-1.0113 5.9822-9.1761 5.6236-10.084 5.3581 1.8921z\" clip-path=\"url(#33f618e8111)\" fill=\"#6d5e5e\"/><path d=\"m400.11 189.58 5.6236 10.084 5.9822 9.1761-2.7834 1.0113-2.5289 1.2034-8.5159-8.1655-8.0249-9.1605 4.8893-2.257z\" clip-path=\"url(#33f618e8111)\" fill=\"#907d7d\"/><path d=\"m472.15 74.216 0.95644 10.22 0.15886 10.963-11.598-2.6584-12.122-1.9197-0.08119-10.879-0.48888-10.069 11.844 1.8209z\" clip-path=\"url(#33f618e8111)\" fill=\"#756565\"/><path d=\"m399.88 69.873-0.48888 10.069-0.08119 10.879-12.122 1.9197-11.598 2.6584 0.15886-10.963 0.95644-10.22 11.33-2.5212z\" clip-path=\"url(#33f618e8111)\" fill=\"#b29a9a\"/><path d=\"m498.37 159.04-6.3212 11.022-7.4048 10.467-5.3265-3.9748-6.1856-3.5604 5.9262-11.274 5.0481-11.666 7.6472 4.241z\" clip-path=\"url(#33f618e8111)\" fill=\"#554949\"/><path d=\"m364.74 150.06 5.0481 11.666 5.9262 11.274-6.1856 3.5604-5.3265 3.9748-7.4048-10.467-6.3212-11.022 6.6165-4.7447z\" clip-path=\"url(#33f618e8111)\" fill=\"#baa1a1\"/><path d=\"m484.64 180.53-8.3775 9.7607-9.2279 8.9119-3.7129-2.8823-4.3387-2.5889 7.4238-10.015 6.7212-10.721 6.1856 3.5604z\" clip-path=\"url(#33f618e8111)\" fill=\"#5d5151\"/><path d=\"m375.72 173 6.7212 10.721 7.4238 10.015-4.3387 2.5889-3.7129 2.8823-9.2279-8.9119-8.3775-9.7607 5.3265-3.9748z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9393\"/><path d=\"m507.38 135.98-3.8716 11.647-5.139 11.418-6.6165-4.7447-7.6472-4.241 4.0967-11.895 3.0821-11.955 8.6169 4.6074z\" clip-path=\"url(#33f618e8111)\" fill=\"#514747\"/><path d=\"m357.56 126.21 3.082 11.955 4.0967 11.895-7.6472 4.241-6.6165 4.7447-5.139-11.418-3.8716-11.647 7.4786-5.1619z\" clip-path=\"url(#33f618e8111)\" fill=\"#c7adad\"/><path d=\"m467.04 199.2-9.9453 7.9308-10.52 6.8282-1.8957-1.5276-2.2315-1.3765 8.5159-8.1655 8.0249-9.1605 4.3387 2.5889z\" clip-path=\"url(#33f618e8111)\" fill=\"#6a5c5c\"/><path d=\"m389.86 193.73 8.0249 9.1605 8.5159 8.1655-2.2315 1.3765-1.8957 1.5276-10.52-6.8282-9.9453-7.9308 3.7129-2.8823z\" clip-path=\"url(#33f618e8111)\" fill=\"#988484\"/><path d=\"m492.6 81.236 1.3803 10.467 0.22932 11.1-10.04-4.0377-10.903-3.3675-0.15886-10.963-0.95644-10.22 10.648 3.1931z\" clip-path=\"url(#33f618e8111)\" fill=\"#665858\"/><path d=\"m376.7 74.216-0.95644 10.22-0.15886 10.963-10.903 3.3675-10.04 4.0377 0.22932-11.1 1.3803-10.467 9.8009-3.8277z\" clip-path=\"url(#33f618e8111)\" fill=\"#c7acac\"/><path d=\"m430.99 207.46-3.2321 8.7953-3.3358 7.6346v-7.8768-9.0248l3.3109 0.1184z\" clip-path=\"url(#33f618e8111)\" fill=\"#736464\"/><path d=\"m424.42 206.99v9.0248 7.8768l-3.3358-7.6346-3.2321-8.7953 3.257-0.35337z\" clip-path=\"url(#33f618e8111)\" fill=\"#746464\"/><path d=\"m437.13 208.84-6.2597 8.12-6.4497 6.9237 3.3358-7.6346 3.2321-8.7953 3.1501 0.58288z\" clip-path=\"url(#33f618e8111)\" fill=\"#746464\"/><path d=\"m417.86 207.46 3.2321 8.7953 3.3358 7.6346-6.4497-6.9237-6.2597-8.12 2.9915-0.80336z\" clip-path=\"url(#33f618e8111)\" fill=\"#766666\"/><path d=\"m492.34 189.49-9.5388 8.5963-10.473 7.5841-2.2697-3.3327-3.0201-3.1319 9.2279-8.9119 8.3775-9.7607 4.3696 4.332z\" clip-path=\"url(#33f618e8111)\" fill=\"#5b4f4f\"/><path d=\"m446.78 52.808 1.3013 7.9689 0.89728 9.097-12.189-1.1005-12.361-0.36816v-9.0248-7.8768l11.256 0.32703z\" clip-path=\"url(#33f618e8111)\" fill=\"#917d7d\"/><path d=\"m424.42 51.503v7.8768 9.0248l-12.361 0.36816-12.189 1.1005 0.89728-9.097 1.3013-7.9689 11.096-0.97739z\" clip-path=\"url(#33f618e8111)\" fill=\"#a48e8e\"/><path d=\"m472.33 205.67-11.247 6.4607-11.852 5.2411-1.1293-1.7535-1.5264-1.654 10.52-6.8282 9.9453-7.9308 3.0201 3.1319z\" clip-path=\"url(#33f618e8111)\" fill=\"#6a5c5c\"/><path d=\"m442.45 211.06-8.8881 7.0387-9.1336 5.7903 6.4497-6.9237 6.2597-8.12 2.7834 1.0113z\" clip-path=\"url(#33f618e8111)\" fill=\"#766666\"/><path d=\"m411.72 208.84 6.2597 8.12 6.4497 6.9237-9.1336-5.7903-8.8881-7.0387 2.5289-1.2034z\" clip-path=\"url(#33f618e8111)\" fill=\"#796969\"/><path d=\"m511.06 112.69-1.1411 11.584-2.5336 11.704-7.4786-5.1619-8.6169-4.6074 2.015-11.844 0.90698-11.559 9.0147 4.6597z\" clip-path=\"url(#33f618e8111)\" fill=\"#544949\"/><path d=\"m354.64 102.8 0.90698 11.559 2.015 11.844-8.6169 4.6074-7.4786 5.1619-2.5336-11.704-1.1411-11.584 7.8337-5.2234z\" clip-path=\"url(#33f618e8111)\" fill=\"#d2b6b6\"/><path d=\"m508.03 169.77-7.2369 10.232-8.4559 9.4833-3.3265-4.6248-4.3696-4.332 7.4048-10.467 6.3212-11.022 5.4633 5.1834z\" clip-path=\"url(#33f618e8111)\" fill=\"#514646\"/><path d=\"m446.57 213.96-10.943 5.6163-11.206 4.3085 9.1336-5.7903 8.8881-7.0387 2.2315 1.3765z\" clip-path=\"url(#33f618e8111)\" fill=\"#7a6969\"/><path d=\"m406.4 211.06 8.8881 7.0387 9.1336 5.7903-11.206-4.3085-10.943-5.6163 1.8957-1.5276z\" clip-path=\"url(#33f618e8111)\" fill=\"#7e6d6d\"/><path d=\"m467.85 56.661 2.5436 8.2428 1.7548 9.3116-11.33-2.5212-11.844-1.8209-0.89728-9.097-1.3013-7.9689 10.776 1.6166z\" clip-path=\"url(#33f618e8111)\" fill=\"#7f6e6e\"/><path d=\"m402.07 52.808-1.3013 7.9689-0.89728 9.097-11.844 1.8209-11.33 2.5212 1.7548-9.3116 2.5436-8.2428 10.299-2.2371z\" clip-path=\"url(#33f618e8111)\" fill=\"#b8a0a0\"/><path d=\"m449.23 217.37-12.28 3.9408-12.524 2.5764 11.206-4.3085 10.943-5.6163 1.5264 1.654z\" clip-path=\"url(#33f618e8111)\" fill=\"#7e6e6e\"/><path d=\"m450.22 221.06-12.797 2.1198-12.995 0.70973 12.524-2.5764 12.28-3.9408 0.71063 1.8239z\" clip-path=\"url(#33f618e8111)\" fill=\"#847272\"/><path d=\"m474.44 212.72-11.819 4.8364-12.404 3.5016-0.27718-1.8638-0.71063-1.8239 11.852-5.2411 11.247-6.4607 1.4723 3.4804z\" clip-path=\"url(#33f618e8111)\" fill=\"#6c5e5e\"/><path d=\"m518.38 147.68-4.4493 11.265-5.8959 10.829-4.1996-5.5479-5.4633-5.1834 5.139-11.418 3.8716-11.647 6.2011 5.6479z\" clip-path=\"url(#33f618e8111)\" fill=\"#4d4343\"/><path d=\"m449.45 224.78-12.444 0.27449-12.58-1.1653 12.995-0.70973 12.797-2.1198-0.16389 1.8721z\" clip-path=\"url(#33f618e8111)\" fill=\"#897777\"/><path d=\"m495.59 199.32-10.099 7.2898-11.048 6.1053-0.64-3.5712-1.4723-3.4804 10.473-7.5841 9.5388-8.5963 2.2105 4.8464z\" clip-path=\"url(#33f618e8111)\" fill=\"#5c5050\"/><path d=\"m509.03 90.601 1.7363 10.802 0.28855 11.284-7.8337-5.2234-9.0147-4.6597-0.22932-11.1-1.3803-10.467 8.7953 4.4161z\" clip-path=\"url(#33f618e8111)\" fill=\"#5c4f4f\"/><path d=\"m356.25 81.236-1.3803 10.467-0.22932 11.1-9.0147 4.6597-7.8337 5.2234 0.28856-11.284 1.7363-10.802 7.6378-4.9488z\" clip-path=\"url(#33f618e8111)\" fill=\"#dabdbd\"/><path d=\"m446.95 228.27-11.226-1.4672-11.302-2.92 12.58 1.1653 12.444-0.27449-1.0386 1.7921z\" clip-path=\"url(#33f618e8111)\" fill=\"#8f7c7c\"/><path d=\"m486.4 62.883 3.6654 8.6908 2.5311 9.6627-9.8009-3.8277-10.648-3.1931-1.7548-9.3116-2.5436-8.2428 9.6666 2.8311z\" clip-path=\"url(#33f618e8111)\" fill=\"#726262\"/><path d=\"m381 56.661-2.5436 8.2428-1.7548 9.3116-10.648 3.1931-9.8009 3.8277 2.5311-9.6627 3.6654-8.6908 8.8838-3.3907z\" clip-path=\"url(#33f618e8111)\" fill=\"#ccb1b1\"/><path d=\"m473.15 219.89-11.59 3.1619-12.113 1.7236 0.60506-1.8482 0.16389-1.8721 12.404-3.5016 11.819-4.8364-0.21396 3.602z\" clip-path=\"url(#33f618e8111)\" fill=\"#706161\"/><path d=\"m512.28 181.62-7.708 9.3318-8.9812 8.3713-1.0374-4.9905-2.2105-4.8464 8.4559-9.4833 7.2369-10.232 2.8405 5.8294z\" clip-path=\"url(#33f618e8111)\" fill=\"#524747\"/><path d=\"m522.61 124.54-1.3139 11.61-2.9152 11.528-4.7966-6.0552-6.2011-5.6479 2.5336-11.704 1.1411-11.584 6.5065 5.7188z\" clip-path=\"url(#33f618e8111)\" fill=\"#4f4444\"/><path d=\"m443.01 40.84 2.0732 5.2756 1.6954 6.6917-11.096-0.97739-11.256-0.32703v-6.581-5.1475l9.3603 0.26722z\" clip-path=\"url(#33f618e8111)\" fill=\"#9b8686\"/><path d=\"m424.42 39.775v5.1475 6.581l-11.256 0.32703-11.096 0.97739 1.6954-6.6917 2.0732-5.2756 9.2225-0.79838z\" clip-path=\"url(#33f618e8111)\" fill=\"#ac9595\"/><path d=\"m468.47 226.69-10.54 1.555-10.972 0.031241 1.4568-1.7044 1.0386-1.7921 12.113-1.7236 11.59-3.1619-1.9287 3.4765z\" clip-path=\"url(#33f618e8111)\" fill=\"#766666\"/><path d=\"m494.01 209.4-9.9782 5.9211-10.877 4.5684 1.0753-3.5708 0.21396-3.602 11.048-6.1053 10.099-7.2898-0.17494 5.0519z\" clip-path=\"url(#33f618e8111)\" fill=\"#615454\"/><path d=\"m460.49 43.984 4.0454 5.6561 3.3112 7.0208-10.299-2.2371-10.776-1.6166-1.6954-6.6917-2.0732-5.2756 8.9479 1.3197z\" clip-path=\"url(#33f618e8111)\" fill=\"#8c7a7a\"/><path d=\"m405.84 40.84-2.0732 5.2756-1.6954 6.6917-10.776 1.6166-10.299 2.2371 3.3112-7.0208 4.0454-5.6561 8.5387-1.8244z\" clip-path=\"url(#33f618e8111)\" fill=\"#bda4a4\"/><path d=\"m523.33 160.65-4.759 10.821-6.2946 10.154-1.4039-6.0196-2.8405-5.8294 5.8959-10.829 4.4493-11.265 3.2806 6.3737z\" clip-path=\"url(#33f618e8111)\" fill=\"#4e4343\"/><path d=\"m501.25 71.165 4.6016 9.2982 3.1814 10.139-7.6378-4.9488-8.7953-4.4161-2.5311-9.6627-3.6654-8.6908 7.956 3.9077z\" clip-path=\"url(#33f618e8111)\" fill=\"#685a5a\"/><path d=\"m362.45 62.883-3.6654 8.6908-2.5311 9.6627-8.7953 4.4161-7.6378 4.9488 3.1814-10.139 4.6016-9.2982 6.8905-4.3739z\" clip-path=\"url(#33f618e8111)\" fill=\"#dec0c0\"/><path d=\"m520.28 101.83 1.9987 11.209 0.33229 11.505-5.0454-6.1354-6.5065-5.7188-0.28855-11.284-1.7363-10.802 6.3379 5.4163z\" clip-path=\"url(#33f618e8111)\" fill=\"#574b4b\"/><path d=\"m475.82 49.048 5.8133 6.2766 4.7657 7.5587-8.8838-3.3907-9.6666-2.8311-3.3112-7.0208-4.0454-5.6561 7.9979 2.3059z\" clip-path=\"url(#33f618e8111)\" fill=\"#817070\"/><path d=\"m388.36 43.984-4.0454 5.6561-3.3112 7.0208-9.6666 2.8311-8.8838 3.3907 4.7657-7.5587 5.8133-6.2766 7.3302-2.7575z\" clip-path=\"url(#33f618e8111)\" fill=\"#ceb3b3\"/><path d=\"m510.57 193.83-7.6631 8.3749-8.9031 7.1976 1.4066-5.0264 0.17494-5.0519 8.9812-8.3713 7.708-9.3318-0.089397 6.1111z\" clip-path=\"url(#33f618e8111)\" fill=\"#574c4c\"/><path d=\"m487.53 219.02-9.1392 4.587-9.9277 3.0817 2.7584-3.3193 1.9287-3.4765 10.877-4.5684 9.9782-5.9211-2.6358 4.9112z\" clip-path=\"url(#33f618e8111)\" fill=\"#685a5a\"/><path d=\"m527.86 137.7-1.4082 11.633-3.1222 11.319-1.6721-6.5939-3.2806-6.3737 2.9152-11.528 1.3139-11.61 3.4661 6.4628z\" clip-path=\"url(#33f618e8111)\" fill=\"#504545\"/><path d=\"m437.83 35.02 2.7533 2.0855 2.4282 3.7343-9.2225-0.79838-9.3603-0.26722v-3.5901-1.9262l6.7526 0.19117z\" clip-path=\"url(#33f618e8111)\" fill=\"#a69090\"/><path d=\"m424.42 34.258v1.9262 3.5901l-9.3603 0.26722-9.2225 0.79838 2.4282-3.7343 2.7533-2.0855 6.6487-0.5709z\" clip-path=\"url(#33f618e8111)\" fill=\"#b29a9a\"/><path d=\"m511.33 81.065 5.2846 10.041 3.6589 10.721-4.9079-5.8086-6.3379-5.4163-3.1814-10.139-4.6016-9.2982 5.6972 4.7806z\" clip-path=\"url(#33f618e8111)\" fill=\"#645656\"/><path d=\"m488 55.763 7.2712 7.1146 5.9732 8.2869-6.8905-4.3739-7.956-3.9077-4.7657-7.5587-5.8133-6.2766 6.5415 3.1722z\" clip-path=\"url(#33f618e8111)\" fill=\"#796969\"/><path d=\"m373.03 49.048-5.8133 6.2766-4.7657 7.5587-7.956 3.9077-6.8905 4.3739 5.9732-8.2869 7.2712-7.1146 5.6396-3.5432z\" clip-path=\"url(#33f618e8111)\" fill=\"#dec0c0\"/><path d=\"m521.6 174.06-4.7518 10.342-6.273 9.4303 1.6152-6.0978 0.089397-6.1111 6.2946-10.154 4.759-10.821-0.006042 6.7069z\" clip-path=\"url(#33f618e8111)\" fill=\"#544949\"/><path d=\"m450.4 37.265 5.359 2.5571 4.7327 4.1622-8.5387-1.8244-8.9479-1.3197-2.4282-3.7343-2.7533-2.0855 6.4419 0.94281z\" clip-path=\"url(#33f618e8111)\" fill=\"#9b8686\"/><path d=\"m411.02 35.02-2.7533 2.0855-2.4282 3.7343-8.9479 1.3197-8.5387 1.8244 4.7327-4.1622 5.359-2.5571 6.1345-1.3017z\" clip-path=\"url(#33f618e8111)\" fill=\"#c0a6a6\"/><path d=\"m525.36 114.27 2.1417 11.67 0.35622 11.753-1.7879-6.6912-3.4661-6.4628-0.33229-11.505-1.9987-11.209 3.3634 6.1162z\" clip-path=\"url(#33f618e8111)\" fill=\"#574c4c\"/><path d=\"m502.77 205.55-7.0602 7.4286-8.1801 6.045 3.8392-4.7054 2.6358-4.9112 8.9031-7.1976 7.6631-8.3749-3.1467 5.975z\" clip-path=\"url(#33f618e8111)\" fill=\"#615454\"/><path d=\"m461.36 40.867 7.6705 3.322 6.7884 4.8585-7.3302-2.7575-7.9979-2.3059-4.7327-4.1622-5.359-2.5571 5.7295 1.6424z\" clip-path=\"url(#33f618e8111)\" fill=\"#927f7f\"/><path d=\"m398.45 37.265-5.359 2.5571-4.7327 4.1622-7.9979 2.3059-7.3302 2.7575 6.7884-4.8585 7.6705-3.322 5.2315-1.9599z\" clip-path=\"url(#33f618e8111)\" fill=\"#cdb1b1\"/><path d=\"m496.17 63.755 8.3135 8.1342 6.8462 9.1757-4.3882-5.1195-5.6972-4.7806-5.9732-8.2869-7.2712-7.1146 4.6339 3.8639z\" clip-path=\"url(#33f618e8111)\" fill=\"#756666\"/><path d=\"m526.13 151.32-1.4091 11.65-3.1217 11.088 1.7273-6.7051 0.006042-6.7069 3.1222-11.319 1.4082-11.633 0.034286 6.8111z\" clip-path=\"url(#33f618e8111)\" fill=\"#564a4a\"/><path d=\"m387.49 40.867-7.6705 3.322-6.7884 4.8585-6.5415 3.1722-5.6396 3.5432 8.47-5.7952 9.5438-4.3466 3.9801-2.5051z\" clip-path=\"url(#33f618e8111)\" fill=\"#d9bcbc\"/><path d=\"m469.99 45.621 9.5438 4.3466 8.47 5.7952-5.6396-3.5432-6.5415-3.1722-6.7884-4.8585-7.6705-3.322 4.646 2.249z\" clip-path=\"url(#33f618e8111)\" fill=\"#8c7a7a\"/><path d=\"m515.8 92.008 5.6479 10.883 3.9167 11.381-1.7237-6.3297-3.3634-6.1162-3.6589-10.721-5.2846-10.041 2.9788 5.3823z\" clip-path=\"url(#33f618e8111)\" fill=\"#645757\"/><path d=\"m512.96 186.98-4.3962 9.8597-5.793 8.7095 4.6543-5.7404 3.1467-5.975 6.273-9.4303 4.7518-10.342-3.4615 6.5826z\" clip-path=\"url(#33f618e8111)\" fill=\"#5f5252\"/><path d=\"m431.5 36.112 3.2833-1.4424 3.0408 0.35104-6.6487-0.5709-6.7526-0.19117v-0.17796 1.628l3.5675 0.10122z\" clip-path=\"url(#33f618e8111)\" fill=\"#af9797\"/><path d=\"m424.42 35.708v-1.628 0.17796l-6.7526 0.19117-6.6487 0.5709 3.0408-0.35104 3.2833 1.4424 3.5097-0.30212z\" clip-path=\"url(#33f618e8111)\" fill=\"#b69e9e\"/><path d=\"m438.12 37.297 6.371-0.89479 5.91 0.8626-6.1345-1.3017-6.4419-0.94281-3.0408-0.35104-3.2833 1.4424 3.3949 0.49839z\" clip-path=\"url(#33f618e8111)\" fill=\"#a89292\"/><path d=\"m417.35 36.112-3.2833-1.4424-3.0408 0.35104-6.4419 0.94281-6.1345 1.3017 5.91-0.8626 6.371 0.89479 3.2246-0.687z\" clip-path=\"url(#33f618e8111)\" fill=\"#bea5a5\"/><path d=\"m523.63 127.15 2.1426 12.157 0.35651 12.01 1.7673-6.8146-0.034286-6.8111-0.35622-11.753-2.1417-11.67 0.011606 6.4404z\" clip-path=\"url(#33f618e8111)\" fill=\"#5e5151\"/><path d=\"m475.67 51.244 10.844 5.5807 9.6559 6.9299-3.5361-4.1277-4.6339-3.8639-8.47-5.7952-9.5438-4.3466 3.2421 2.7233z\" clip-path=\"url(#33f618e8111)\" fill=\"#8a7878\"/><path d=\"m443.85 39.192 9.074-0.013621 8.439 1.6892-5.2315-1.9599-5.7295-1.6424-5.91-0.8626-6.371 0.89479 3.0012 0.86498z\" clip-path=\"url(#33f618e8111)\" fill=\"#a48e8e\"/><path d=\"m410.73 37.297-6.371-0.89479-5.91 0.8626-5.7295 1.6424-5.2315 1.9599 8.439-1.6892 9.074 0.013621 2.7278-1.0295z\" clip-path=\"url(#33f618e8111)\" fill=\"#c7acac\"/><path d=\"m499.66 72.543 8.8418 9.2835 7.3011 10.182-1.4871-5.5612-2.9788-5.3823-6.8462-9.1757-8.3135-8.1342 2.3602 4.3283z\" clip-path=\"url(#33f618e8111)\" fill=\"#766666\"/><path d=\"m448.31 41.677 11.217 1.1537 10.467 2.7907-3.9801-2.5051-4.646-2.249-8.439-1.6892-9.074 0.013621 2.4082 1.1779z\" clip-path=\"url(#33f618e8111)\" fill=\"#a18c8c\"/><path d=\"m405 39.192-9.074-0.013621-8.439 1.6892-4.646 2.249-3.9801 2.5051 10.467-2.7907 11.217-1.1537 2.047-1.3075z\" clip-path=\"url(#33f618e8111)\" fill=\"#cfb3b3\"/><path d=\"m517.16 164.47-1.3064 11.66-2.8919 10.852 5.1751-6.3357 3.4615-6.5826 3.1217-11.088 1.4091-11.65-3.5851 6.6953z\" clip-path=\"url(#33f618e8111)\" fill=\"#615454\"/><path d=\"m514.08 103.3 5.6348 11.776 3.9141 12.08 1.7457-6.4409-0.011606-6.4404-3.9167-11.381-5.6479-10.883-0.065156 5.6492z\" clip-path=\"url(#33f618e8111)\" fill=\"#6a5c5c\"/><path d=\"m477.97 57.385 11.454 6.9561 10.237 8.2024-1.1224-4.46-2.3602-4.3283-9.6559-6.9299-10.844-5.5807 1.5906 3.0298z\" clip-path=\"url(#33f618e8111)\" fill=\"#8b7979\"/><path d=\"m451.18 44.595 12.647 2.5405 11.849 4.1088-2.4419-2.8995-3.2421-2.7233-10.467-2.7907-11.217-1.1537 1.6497 1.4161z\" clip-path=\"url(#33f618e8111)\" fill=\"#a18c8c\"/><path d=\"m424.42 44.452 3.6038-5.077 3.4733-3.2636-3.5097-0.30212-3.5675-0.10122v3.4604 5.2835z\" clip-path=\"url(#33f618e8111)\" fill=\"#ac9595\"/><path d=\"m424.42 44.452v-5.2835-3.4604l-3.5675 0.10122-3.5097 0.30212 3.4733 3.2636 3.6038 5.077z\" clip-path=\"url(#33f618e8111)\" fill=\"#ad9696\"/><path d=\"m514.84 139.57 1.9859 12.636 0.33057 12.261 5.384-6.4491 3.5851-6.6953-0.35651-12.01-2.1426-12.157-3.5174 6.3254z\" clip-path=\"url(#33f618e8111)\" fill=\"#695b5b\"/><path d=\"m424.42 44.452 6.9685-4.4709 6.7281-2.6843-3.2246-0.687-3.3949-0.49839-3.4733 3.2636-3.6038 5.077z\" clip-path=\"url(#33f618e8111)\" fill=\"#ad9696\"/><path d=\"m424.42 44.452-3.6038-5.077-3.4733-3.2636-3.3949 0.49839-3.2246 0.687 6.7282 2.6843 6.9685 4.4709z\" clip-path=\"url(#33f618e8111)\" fill=\"#af9898\"/><path d=\"m498.04 81.559 8.7771 10.493 7.2679 11.245 1.6532-5.6403 0.065156-5.6492-7.3011-10.182-8.8418-9.2835-0.15855 4.518z\" clip-path=\"url(#33f618e8111)\" fill=\"#7b6b6b\"/><path d=\"m424.42 44.452-6.9685-4.4709-6.7282-2.6843-3.0012 0.86498-2.7278 1.0295 9.5563 1.7562 9.8693 3.5045z\" clip-path=\"url(#33f618e8111)\" fill=\"#b39b9b\"/><path d=\"m424.42 44.452 9.8693-3.5045 9.5563-1.7562-2.7278-1.0295-3.0012-0.86498-6.7281 2.6843-6.9685 4.4709z\" clip-path=\"url(#33f618e8111)\" fill=\"#b09898\"/><path d=\"m452.25 47.755 13.247 4.0625 12.466 5.5672-0.70102-3.1106-1.5906-3.0298-11.849-4.1088-12.647-2.5405 0.77114 1.5626z\" clip-path=\"url(#33f618e8111)\" fill=\"#a38d8d\"/><path d=\"m424.42 44.452-9.8693-3.5045-9.5563-1.7562-2.4082 1.1779-2.047 1.3075 11.77 0.53455 12.11 2.2408z\" clip-path=\"url(#33f618e8111)\" fill=\"#b79f9f\"/><path d=\"m424.42 44.452 12.11-2.2408 11.77-0.53455-2.047-1.3075-2.4082-1.1779-9.5563 1.7562-9.8693 3.5045z\" clip-path=\"url(#33f618e8111)\" fill=\"#b39b9b\"/><path d=\"m424.42 44.452 13.537-0.76306 13.215 0.90563-1.2222-1.5018-1.6497-1.4161-11.77 0.53455-12.11 2.2408z\" clip-path=\"url(#33f618e8111)\" fill=\"#b89f9f\"/><path d=\"m476.62 63.638 11.291 8.3867 10.128 9.5348 1.4618-4.4984 0.15855-4.518-10.237-8.2024-11.454-6.9561-0.21283 3.1394z\" clip-path=\"url(#33f618e8111)\" fill=\"#907d7d\"/><path d=\"m424.42 44.452 14.049 0.83004 13.779 2.4725-0.30385-1.5973-0.77114-1.5626-13.215-0.90563-13.537 0.76306z\" clip-path=\"url(#33f618e8111)\" fill=\"#bda4a4\"/><path d=\"m506.01 114.14 5.2091 12.656 3.6242 12.77 5.2691-6.0903 3.5174-6.3254-3.9141-12.08-5.6348-11.776-3.249 5.5301z\" clip-path=\"url(#33f618e8111)\" fill=\"#756666\"/><path d=\"m451.43 50.945 12.947 5.6204 12.237 7.0726 1.1356-3.114 0.21283-3.1394-12.466-5.5672-13.247-4.0625-0.17197 1.605z\" clip-path=\"url(#33f618e8111)\" fill=\"#a79191\"/><path d=\"m424.42 44.452 13.602 2.4308 13.405 4.0618 0.64824-1.585 0.17197-1.605-13.779-2.4725-14.049-0.83004z\" clip-path=\"url(#33f618e8111)\" fill=\"#c3a9a9\"/><path d=\"m424.42 44.452 12.223 3.9294 12.099 5.5633 1.5687-1.4627 1.1166-1.5374-13.405-4.0618-13.602-2.4308z\" clip-path=\"url(#33f618e8111)\" fill=\"#c9aeae\"/><path d=\"m491.23 90.175 8.0749 11.679 6.7044 12.29 4.8219-5.316 3.249-5.5301-7.2679-11.245-8.7771-10.493-2.7642 4.3984z\" clip-path=\"url(#33f618e8111)\" fill=\"#857373\"/><path d=\"m448.75 53.945 11.737 7.1053 11.14 8.5193 2.9421-2.8981 2.0511-3.0336-12.237-7.0726-12.947-5.6204-1.1166 1.5374z\" clip-path=\"url(#33f618e8111)\" fill=\"#ad9696\"/><path d=\"m471.62 69.57 10.318 9.7718 9.2888 10.833 4.041-4.2168 2.7642-4.3984-10.128-9.5348-11.291-8.3867-2.0511 3.0336z\" clip-path=\"url(#33f618e8111)\" fill=\"#988383\"/></g><g stroke=\"#dc267f\" stroke-linecap=\"round\" stroke-width=\"5\"><path d=\"m423.2 136.12q-21.229-27.358-39.032-50.299\" clip-path=\"url(#33f618e8111)\" fill=\"none\"/><path d=\"m385.91 94.59-1.7443-8.7725 8.0646 3.868z\" clip-path=\"url(#33f618e8111)\" fill=\"#dc267f\"/></g><g transform=\"translate(354.64 198.29) scale(.1 -.1)\" fill=\"#343a3f\"><use transform=\"translate(0 .3125)\" xlink:href=\"#DejaVuSans-Oblique-78\"/></g><g transform=\"translate(533.5 172.79) scale(.1 -.1)\" fill=\"#343a3f\"><use transform=\"translate(0 .3125)\" xlink:href=\"#DejaVuSans-Oblique-79\"/></g><g transform=\"translate(417.97 27.64) scale(.1 -.1)\" fill=\"#343a3f\"><use transform=\"translate(0 16.625) scale(.75641)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(25.479 .125)\" xlink:href=\"#DejaVuSans-30\"/><use transform=\"translate(89.102 .125)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(418.02 243.11) scale(.1 -.1)\" fill=\"#343a3f\"><use transform=\"translate(0 17.344) scale(.72906)\" xlink:href=\"#DejaVuSans-7c\"/><use transform=\"translate(24.553 .125)\" xlink:href=\"#DejaVuSans-31\"/><use transform=\"translate(88.176 .125)\" xlink:href=\"#DejaVuSans-27e9\"/></g><g transform=\"translate(403.5 14.798) scale(.1 -.1)\" fill=\"#343a3f\"><use xlink:href=\"#DejaVuSans-71\"/><use x=\"63.476562\" xlink:href=\"#DejaVuSans-75\"/><use x=\"126.855469\" xlink:href=\"#DejaVuSans-62\"/><use x=\"190.332031\" xlink:href=\"#DejaVuSans-69\"/><use x=\"218.115234\" xlink:href=\"#DejaVuSans-74\"/><use x=\"257.324219\" xlink:href=\"#DejaVuSans-20\"/><use x=\"289.111328\" xlink:href=\"#DejaVuSans-31\"/></g><g fill=\"none\" stroke=\"#808080\" stroke-opacity=\".2\"><path d=\"m424.42 44.452 12.223 3.9294 12.099 5.5633 11.737 7.1053 11.14 8.5193 10.318 9.7718 9.2888 10.833 8.0749 11.679 6.7044 12.29 5.2091 12.656 3.6242 12.77 1.9859 12.636 0.33057 12.261-1.3064 11.66-2.8919 10.852-4.3962 9.8597-5.793 8.7095-7.0602 7.4286-8.1801 6.045-9.1392 4.587-9.9277 3.0817-10.54 1.555-10.972 0.031241-11.226-1.4672-11.302-2.92\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452 13.912 0.025665 13.612 1.6795 13.056 3.2905 12.259 4.8259 11.241 6.2557 10.028 7.5533 8.6475 8.6965 7.1308 9.6674 5.5101 10.453 3.818 11.043 2.0867 11.435 0.34699 11.627-1.3719 11.622-3.0428 11.427-4.641 11.049-6.1443 10.5-7.533 9.7925-8.7898 8.9396-9.8997 7.9562-10.85 6.8582-11.63 5.6617-12.231 4.3836-12.646 3.0412-12.869 1.6522\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452 9.8693-3.5045 9.5563-1.7562 9.074-0.013621 8.439 1.6892 7.6705 3.322 6.7884 4.8585 5.8133 6.2766 4.7657 7.5587 3.6654 8.6908 2.5311 9.6627 1.3803 10.467 0.22932 11.1-0.90698 11.559-2.015 11.844-3.0821 11.955-4.0967 11.895-5.0481 11.666-5.9262 11.274-6.7212 10.721-7.4238 10.015-8.0249 9.1605-8.5159 8.1655-8.8881 7.0387-9.1336 5.7903\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452 1.817-5.2316 1.7504-3.411 1.6539-1.5815 1.5312 0.22135 1.3858 1.9661 1.2218 3.6262 1.0429 5.1796 0.85261 6.6087 0.65432 7.8999 0.4511 9.0429 0.24576 10.03 0.040812 10.857-0.16144 11.52-0.35894 12.017-0.54976 12.346-0.73211 12.508-0.90429 12.501-1.0646 12.327-1.2114 11.984-1.343 11.476-1.4577 10.801-1.5536 9.9641-1.629 8.9672-1.6819 7.816\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452-6.9685-4.4709-6.7282-2.6843-6.371-0.89479-5.91 0.8626-5.359 2.5571-4.7327 4.1622-4.0454 5.6561-3.3112 7.0208-2.5436 8.2428-1.7548 9.3116-0.95644 10.22-0.15886 10.963 0.62838 11.538 1.3966 11.943 2.1378 12.178 2.8446 12.243 3.51 12.14 4.1271 11.87 4.6895 11.435 5.1905 10.839 5.6236 10.084 5.9822 9.1761 6.2597 8.12 6.4497 6.9237\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452-12.11-2.2408-11.77-0.53455-11.217 1.1537-10.467 2.7907-9.5438 4.3466-8.47 5.7952-7.2712 7.1146-5.9732 8.2869-4.6016 9.2982-3.1814 10.139-1.7363 10.802-0.28856 11.284 1.1411 11.584 2.5336 11.704 3.8716 11.647 5.139 11.418 6.3212 11.022 7.4048 10.467 8.3775 9.7607 9.2279 8.9119 9.9453 7.9308 10.52 6.8282 10.943 5.6163 11.206 4.3085\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452\" clip-path=\"url(#33f618e8111)\"/><path d=\"m481.94 79.341 3.5294-3.5783 2.4364-3.7386 1.3177-3.8302 0.19432-3.8538-0.91374-3.811-1.9882-3.7048-3.0124-3.539-3.9717-3.318-4.8533-3.0471-5.6462-2.7316-6.3413-2.3772-6.9311-1.9899-7.4097-1.5757-7.7725-1.1405-8.0161-0.69026-8.1384-0.23108-8.1384 0.23108-8.0161 0.69026-7.7725 1.1405-7.4097 1.5757-6.9311 1.9899-6.3413 2.3772-5.6462 2.7316-4.8533 3.0471\" clip-path=\"url(#33f618e8111)\"/><path d=\"m514.84 139.57 5.2691-6.0903 3.5174-6.3254 1.7457-6.4409-0.011606-6.4404-1.7237-6.3297-3.3634-6.1162-4.9079-5.8086-6.3379-5.4163-7.6378-4.9488-8.7953-4.4161-9.8009-3.8277-10.648-3.1931-11.33-2.5212-11.844-1.8209-12.189-1.1005-12.361-0.36816-12.361 0.36816-12.189 1.1005-11.844 1.8209-11.33 2.5212-10.648 3.1931-9.8009 3.8277-8.7953 4.4161-7.6378 4.9488\" clip-path=\"url(#33f618e8111)\"/><path d=\"m508.57 196.84 4.9527-6.0969 3.3283-6.3394 1.6816-6.4627 0.044542-6.4697-1.5541-6.366-3.0889-6.1583-4.5378-5.855-5.8821-5.4651-7.1067-4.9982-8.1992-4.464-9.15-3.8721-9.9516-3.2322-10.599-2.5535-11.087-1.8449-11.414-1.1153-11.578-0.37316-11.578 0.37316-11.414 1.1153-11.087 1.8449-10.599 2.5535-9.9516 3.2322-9.15 3.8721-8.1992 4.464-7.1067 4.9982\" clip-path=\"url(#33f618e8111)\"/><path d=\"m468.47 226.69 2.7584-3.3193 1.9287-3.4765 1.0753-3.5708 0.21396-3.602-0.64-3.5712-1.4723-3.4804-2.2697-3.3327-3.0201-3.1319-3.7129-2.8823-4.3387-2.5889-4.8893-2.257-5.3581-1.8921-5.7395-1.5-6.0293-1.0867-6.2242-0.65812-6.3222-0.22039-6.3222 0.22039-6.2242 0.65812-6.0293 1.0867-5.7395 1.5-5.3581 1.8921-4.8893 2.257-4.3387 2.5889-3.7129 2.8823\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 223.89\" clip-path=\"url(#33f618e8111)\"/></g><g fill=\"none\" stroke=\"#808080\" stroke-opacity=\".2\"><path d=\"m424.42 44.452-12.11-2.2408-11.77-0.53455-11.217 1.1537-10.467 2.7907-9.5438 4.3466-8.47 5.7952-7.2712 7.1146-5.9732 8.2869-4.6016 9.2982-3.1814 10.139-1.7363 10.802-0.28856 11.284 1.1411 11.584 2.5336 11.704 3.8716 11.647 5.139 11.418 6.3212 11.022 7.4048 10.467 8.3775 9.7607 9.2279 8.9119 9.9453 7.9308 10.52 6.8282 10.943 5.6163 11.206 4.3085\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452-13.945 1.6364-13.71 3.2712-13.212 4.8437-12.46 6.3204-11.473 7.6705-10.272 8.8666-8.8874 9.8859-7.349 10.71-5.6913 11.327-3.9501 11.728-2.1611 11.912-0.35952 11.881 1.4211 11.642 3.1496 11.205 4.7975 10.584 6.3394 9.7952 7.7536 8.8566 9.0212 7.7873 10.127 6.6075 11.059 5.3376 11.808 3.9983 12.366 2.6098 12.73 1.1922 12.898-0.23482\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452-9.9992 5.2216-9.9361 6.8688-9.6749 8.4066-9.2159 9.7966-8.5652 11.003-7.7349 11.994-6.7427 12.744-5.6114 13.233-4.3682 13.451-3.0434 13.394-1.6691 13.067-0.27795 12.484 1.0982 11.663 2.4296 10.631 3.689 9.4167 4.8532 8.0522 5.9028 6.5712 6.8226 5.0075 7.6015 3.3939 8.2324 1.7613 8.7116 0.13804 9.0384-1.45 9.2148-2.9802 9.2447-4.4326\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452-1.8507 7.0039-1.8487 8.6856-1.8095 10.233-1.7324 11.605-1.6178 12.759-1.4673 13.66-1.2841 14.281-1.0722 14.6-0.8369 14.606-0.58425 14.3-0.32083 13.693-0.053455 12.803 0.21117 11.66 0.4667 10.3 0.70746 8.7613 0.92859 7.0878 1.1261 5.3224 1.2972 3.507 1.4397 1.681 1.5526-0.12009 1.6355-1.8649 1.6889-3.5268 1.7135-5.0838 1.7107-6.5181\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452 7.0809 6.2166 7.0571 7.8807 6.8916 9.4218 6.5831 10.799 6.1345 11.975 5.5533 12.915 4.8514 13.592 4.0449 13.986 3.1534 14.087 2.1995 13.893 1.2071 13.412 0.20108 12.66-0.7944 11.663-1.7565 10.45-2.6646 9.0574-3.501 7.5223-4.2513 5.8838-4.9044 4.1801-5.4526 2.4475-5.8912 0.71974-6.2185-0.97306-6.4348-2.6045-6.5426-4.1521-6.5459-5.5969\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452 12.223 3.9294 12.099 5.5633 11.737 7.1053 11.14 8.5193 10.318 9.7718 9.2888 10.833 8.0749 11.679 6.7044 12.29 5.2091 12.656 3.6242 12.77 1.9859 12.636 0.33057 12.261-1.3064 11.66-2.8919 10.852-4.3962 9.8597-5.793 8.7095-7.0602 7.4286-8.1801 6.045-9.1392 4.587-9.9277 3.0817-10.54 1.555-10.972 0.031241-11.226-1.4672-11.302-2.92\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 44.452\" clip-path=\"url(#33f618e8111)\"/><path d=\"m369.32 49.968-3.9717 3.318-3.0124 3.539-1.9882 3.7048-0.91374 3.811 0.19432 3.8538 1.3177 3.8302 2.4364 3.7386 3.5294 3.5783 4.5749 3.3502 5.5507 3.0571 6.4355 2.7029 7.2086 2.2935 7.8517 1.8365 8.3488 1.3406 8.6875 0.81613 8.8591 0.27402 8.8591-0.27402 8.6875-0.81613 8.3488-1.3406 7.8517-1.8365 7.2086-2.2935 6.4355-2.7029 5.5507-3.0571 4.5749-3.3502\" clip-path=\"url(#33f618e8111)\"/><path d=\"m339.82 90.601-6.3379 5.4163-4.9079 5.8086-3.3634 6.1162-1.7237 6.3297-0.011607 6.4404 1.7457 6.4409 3.5174 6.3254 5.2691 6.0903 6.9639 5.7345 8.5627 5.2602 10.026 4.6727 11.316 3.9814 12.397 3.1989 13.237 2.3413 13.812 1.4278 14.104 0.47983 14.104-0.47983 13.812-1.4278 13.237-2.3413 12.397-3.1989 11.316-3.9814 10.026-4.6727 8.5627-5.2602 6.9639-5.7345\" clip-path=\"url(#33f618e8111)\"/><path d=\"m345.34 147.62-5.8821 5.4651-4.5378 5.855-3.0889 6.1583-1.5541 6.366 0.044543 6.4697 1.6816 6.4627 3.3283 6.3394 4.9527 6.0969 6.5209 5.7345 7.9973 5.2549 9.3463 4.6639 10.533 3.9707 11.526 3.1882 12.298 2.3323 12.825 1.4218 13.093 0.47774 13.093-0.47774 12.825-1.4218 12.298-2.3323 11.526-3.1882 10.533-3.9707 9.3463-4.6639 7.9973-5.2549 6.5209-5.7345\" clip-path=\"url(#33f618e8111)\"/><path d=\"m381.81 199.2-3.0201 3.1319-2.2697 3.3327-1.4723 3.4804-0.64 3.5712 0.21396 3.602 1.0753 3.5708 1.9287 3.4765 2.7584 3.3193 3.5482 3.1006 4.2823 2.8232 4.9452 2.4913 5.5225 2.1105 6.0012 1.6876 6.3704 1.2307 6.6216 0.74864 6.7486 0.25127 6.7486-0.25127 6.6216-0.74864 6.3704-1.2307 6.0012-1.6876 5.5225-2.1105 4.9452-2.4913 4.2823-2.8232 3.5482-3.1006\" clip-path=\"url(#33f618e8111)\"/><path d=\"m424.42 223.89\" clip-path=\"url(#33f618e8111)\"/></g><g fill-opacity=\".2\"><path d=\"m364.21 180.53 8.3775 9.7607 9.2279 8.9119-3.0201 3.1319-2.2697 3.3327-10.473-7.5841-9.5388-8.5963 3.3265-4.6248z\" clip-path=\"url(#33f618e8111)\" fill=\"#b49c9c\"/><path d=\"m381.81 199.2 9.9453 7.9308 10.52 6.8282-1.5264 1.654-1.1293 1.7535-11.852-5.2411-11.247-6.4607 2.2697-3.3327z\" clip-path=\"url(#33f618e8111)\" fill=\"#9f8a8a\"/><path d=\"m350.48 159.04 6.3212 11.022 7.4048 10.467-4.3696 4.332-3.3265 4.6248-8.4559-9.4833-7.2369-10.232 4.1996-5.5479z\" clip-path=\"url(#33f618e8111)\" fill=\"#c7acac\"/><path d=\"m402.28 213.96 10.943 5.6163 11.206 4.3085-12.524-2.5764-12.28-3.9408 1.1293-1.7535z\" clip-path=\"url(#33f618e8111)\" fill=\"#837171\"/><path d=\"m399.62 217.37 12.28 3.9408 12.524 2.5764-12.995-0.70973-12.797-2.1198 0.27718-1.8638z\" clip-path=\"url(#33f618e8111)\" fill=\"#897676\"/><path d=\"m376.52 205.67 11.247 6.4607 11.852 5.2411-0.71063 1.8239-0.27718 1.8638-12.404-3.5016-11.819-4.8364 0.64-3.5712z\" clip-path=\"url(#33f618e8111)\" fill=\"#a58f8f\"/><path d=\"m341.47 135.98 3.8716 11.647 5.139 11.418-5.4633 5.1834-4.1996 5.5479-5.8959-10.829-4.4493-11.265 4.7966-6.0552z\" clip-path=\"url(#33f618e8111)\" fill=\"#d6baba\"/><path d=\"m398.63 221.06 12.797 2.1198 12.995 0.70973-12.58 1.1653-12.444-0.27449-0.60506-1.8482z\" clip-path=\"url(#33f618e8111)\" fill=\"#8e7b7b\"/><path d=\"m356.51 189.49 9.5388 8.5963 10.473 7.5841-1.4723 3.4804-0.64 3.5712-11.048-6.1053-10.099-7.2898 1.0374-4.9905z\" clip-path=\"url(#33f618e8111)\" fill=\"#bca3a3\"/><path d=\"m399.4 224.78 12.444 0.27449 12.58-1.1653-11.302 2.92-11.226 1.4672-1.4568-1.7044z\" clip-path=\"url(#33f618e8111)\" fill=\"#948080\"/><path d=\"m401.9 228.27 11.226-1.4672 11.302-2.92-9.2447 4.4326-9.2148 2.9802-2.2166-1.4394z\" clip-path=\"url(#33f618e8111)\" fill=\"#988484\"/><path d=\"m442.88 231.3-9.2148-2.9802-9.2447-4.4326 11.302 2.92 11.226 1.4672-1.8519 1.5862z\" clip-path=\"url(#33f618e8111)\" fill=\"#948181\"/><path d=\"m374.41 212.72 11.819 4.8364 12.404 3.5016 0.16389 1.8721 0.60506 1.8482-12.113-1.7236-11.59-3.1619-1.0753-3.5708z\" clip-path=\"url(#33f618e8111)\" fill=\"#a99292\"/><path d=\"m405.97 231.3 9.2148-2.9802 9.2447-4.4326-6.5459 5.5969-6.5426 4.1521-2.8271-1.0699z\" clip-path=\"url(#33f618e8111)\" fill=\"#9c8787\"/><path d=\"m437.51 233.64-6.5426-4.1521-6.5459-5.5969 9.2447 4.4326 9.2148 2.9802-2.5438 1.2663z\" clip-path=\"url(#33f618e8111)\" fill=\"#998585\"/><path d=\"m340.82 169.77 7.2369 10.232 8.4559 9.4833-2.2105 4.8464-1.0374 4.9905-8.9812-8.3713-7.708-9.3318 1.4039-6.0196z\" clip-path=\"url(#33f618e8111)\" fill=\"#d0b4b4\"/><path d=\"m411.34 233.64 6.5426-4.1521 6.5459-5.5969-3.3913 6.3305-3.3955 4.8937-3.2407-0.6215z\" clip-path=\"url(#33f618e8111)\" fill=\"#9e8989\"/><path d=\"m431.21 235.11-3.3955-4.8937-3.3913-6.3305 6.5459 5.5969 6.5426 4.1521-3.061 0.85368z\" clip-path=\"url(#33f618e8111)\" fill=\"#9c8888\"/><path d=\"m337.79 112.69 1.1411 11.584 2.5336 11.704-6.2011 5.6479-4.7966 6.0552-2.9152-11.528-1.3139-11.61 5.0454-6.1354z\" clip-path=\"url(#33f618e8111)\" fill=\"#e2c4c4\"/><path d=\"m417.64 235.11 3.3955-4.8937 3.3913-6.3305v6.581 5.1475l-3.4242-0.12668z\" clip-path=\"url(#33f618e8111)\" fill=\"#9f8a8a\"/><path d=\"m424.42 235.62v-5.1475-6.581l3.3913 6.3305 3.3955 4.8937-3.3626 0.37764z\" clip-path=\"url(#33f618e8111)\" fill=\"#9e8989\"/><path d=\"m375.7 219.89 11.59 3.1619 12.113 1.7236 1.0386 1.7921 1.4568 1.7044-10.972-0.031241-10.54-1.555-2.7584-3.3193z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9494\"/><path d=\"m353.26 199.32 10.099 7.2898 11.048 6.1053 0.21396 3.602 1.0753 3.5708-10.877-4.5684-9.9782-5.9211-1.4066-5.0264z\" clip-path=\"url(#33f618e8111)\" fill=\"#c0a7a7\"/><path d=\"m330.47 147.68 4.4493 11.265 5.8959 10.829-2.8405 5.8294-1.4039 6.0196-6.2946-10.154-4.759-10.821 1.6721-6.5939z\" clip-path=\"url(#33f618e8111)\" fill=\"#e1c3c3\"/><path d=\"m460.63 232.61-8.7116 0.13804-9.0384-1.45 2.2166-1.4394 1.8519-1.5862 10.972-0.031241 10.54-1.555-3.5482 3.1006z\" clip-path=\"url(#33f618e8111)\" fill=\"#7d6c6c\"/><path d=\"m380.38 226.69 10.54 1.555 10.972 0.031241 1.8519 1.5862 2.2166 1.4394-9.0384 1.45-8.7116-0.13804-4.2823-2.8232z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9393\"/><path d=\"m339.82 90.601-1.7363 10.802-0.28856 11.284-6.5065 5.7188-5.0454 6.1354 0.33229-11.505 1.9987-11.209 4.9079-5.8086z\" clip-path=\"url(#33f618e8111)\" fill=\"#eacbcb\"/><path d=\"m336.57 181.62 7.708 9.3318 8.9812 8.3713 0.17494 5.0519 1.4066 5.0264-8.9031-7.1976-7.6631-8.3749-1.6152-6.0978z\" clip-path=\"url(#33f618e8111)\" fill=\"#d5b9b9\"/><path d=\"m388.22 232.61 8.7116 0.13804 9.0384-1.45 2.5438 1.2663 2.8271 1.0699-6.4348 2.6045-6.2185 0.97306-5.5225-2.1105z\" clip-path=\"url(#33f618e8111)\" fill=\"#a89191\"/><path d=\"m450.17 237.21-6.2185-0.97306-6.4348-2.6045 2.8271-1.0699 2.5438-1.2663 9.0384 1.45 8.7116-0.13804-4.9452 2.4913z\" clip-path=\"url(#33f618e8111)\" fill=\"#857373\"/><path d=\"m354.84 209.4 9.9782 5.9211 10.877 4.5684 1.9287 3.4765 2.7584 3.3193-9.9277-3.0817-9.1392-4.587-3.8392-4.7054z\" clip-path=\"url(#33f618e8111)\" fill=\"#c1a8a8\"/><path d=\"m326.24 124.54 1.3139 11.61 2.9152 11.528-3.2806 6.3737-1.6721 6.5939-3.1222-11.319-1.4082-11.633 1.7879-6.6912z\" clip-path=\"url(#33f618e8111)\" fill=\"#eecece\"/><path d=\"m398.68 237.21 6.2185-0.97306 6.4348-2.6045 3.061 0.85368 3.2407 0.6215-3.3452 3.3383-3.2382 1.6823-6.3704-1.2307z\" clip-path=\"url(#33f618e8111)\" fill=\"#a38d8d\"/><path d=\"m437.8 240.13-3.2382-1.6823-3.3452-3.3383 3.2407-0.6215 3.061-0.85368 6.4348 2.6045 6.2185 0.97306-6.0012 1.6876z\" clip-path=\"url(#33f618e8111)\" fill=\"#8d7a7a\"/><path d=\"m411.05 240.13 3.2382-1.6823 3.3452-3.3383 3.3626 0.37764 3.4242 0.12668v3.5901 1.9262l-6.7486-0.25127z\" clip-path=\"url(#33f618e8111)\" fill=\"#9d8888\"/><path d=\"m424.42 241.13v-1.9262-3.5901l3.4242-0.12668 3.3626-0.37764 3.3452 3.3383 3.2382 1.6823-6.6216 0.74864z\" clip-path=\"url(#33f618e8111)\" fill=\"#968282\"/><path d=\"m347.6 71.165-4.6016 9.2982-3.1814 10.139-6.3379 5.4163-4.9079 5.8086 3.6589-10.721 5.2846-10.041 4.3882-5.1195z\" clip-path=\"url(#33f618e8111)\" fill=\"#edcdcd\"/><path d=\"m325.52 160.65 4.759 10.821 6.2946 10.154 0.089397 6.1111 1.6152 6.0978-6.273-9.4303-4.7518-10.342-1.7273-6.7051z\" clip-path=\"url(#33f618e8111)\" fill=\"#e7c8c8\"/><path d=\"m361.32 219.02 9.1392 4.587 9.9277 3.0817 3.5482 3.1006 4.2823 2.8232-8.2324-1.7613-7.6015-3.3939-6.071-4.0275z\" clip-path=\"url(#33f618e8111)\" fill=\"#bfa6a6\"/><path d=\"m476.47 227.46-7.6015 3.3939-8.2324 1.7613 4.2823-2.8232 3.5482-3.1006 9.9277-3.0817 9.1392-4.587-4.9925 4.4098z\" clip-path=\"url(#33f618e8111)\" fill=\"#736363\"/><path d=\"m328.57 101.83-1.9987 11.209-0.33229 11.505-3.4661 6.4628-1.7879 6.6912 0.35622-11.753 2.1417-11.67 1.7237-6.3297z\" clip-path=\"url(#33f618e8111)\" fill=\"#f6d5d5\"/><path d=\"m338.28 193.83 7.6631 8.3749 8.9031 7.1976 2.6358 4.9112 3.8392 4.7054-8.1801-6.045-7.0602-7.4286-4.6543-5.7404z\" clip-path=\"url(#33f618e8111)\" fill=\"#d6baba\"/><path d=\"m461.51 234.05-5.4526 2.4475-5.8912 0.71974 5.5225-2.1105 4.9452-2.4913 8.2324-1.7613 7.6015-3.3939-7.0503 3.5637z\" clip-path=\"url(#33f618e8111)\" fill=\"#7f6e6e\"/><path d=\"m372.38 227.46 7.6015 3.3939 8.2324 1.7613 4.9452 2.4913 5.5225 2.1105-5.8912-0.71974-5.4526-2.4475-7.9074-3.0261z\" clip-path=\"url(#33f618e8111)\" fill=\"#b9a1a1\"/><path d=\"m360.85 55.763-7.2712 7.1146-5.9732 8.2869-5.6972 4.7806-4.3882 5.1195 6.8462-9.1757 8.3135-8.1342 3.5361-4.1277z\" clip-path=\"url(#33f618e8111)\" fill=\"#ebcbcb\"/><path d=\"m320.99 137.7 1.4082 11.633 3.1222 11.319 0.006041 6.7069 1.7273 6.7051-3.1217-11.088-1.4091-11.65-1.7673-6.8146z\" clip-path=\"url(#33f618e8111)\" fill=\"#f4d4d4\"/><path d=\"m387.34 234.05 5.4526 2.4475 5.8912 0.71974 6.0012 1.6876 6.3704 1.2307-3.0727-0.052086-2.8481-1.8384-9.1735-1.7706z\" clip-path=\"url(#33f618e8111)\" fill=\"#b19999\"/><path d=\"m443.72 238.24-2.8481 1.8384-3.0727 0.052086 6.3704-1.2307 6.0012-1.6876 5.8912-0.71974 5.4526-2.4475-8.6212 2.4245z\" clip-path=\"url(#33f618e8111)\" fill=\"#8c7979\"/><path d=\"m337.52 81.065-5.2846 10.041-3.6589 10.721-3.3634 6.1162-1.7237 6.3297 3.9167-11.381 5.6479-10.883 1.4871-5.5612z\" clip-path=\"url(#33f618e8111)\" fill=\"#f8d7d7\"/><path d=\"m346.08 205.55 7.0602 7.4286 8.1801 6.045 4.9925 4.4098 6.071 4.0275-6.8226-5.0075-5.9028-6.5712-7.4717-4.9382z\" clip-path=\"url(#33f618e8111)\" fill=\"#d3b7b7\"/><path d=\"m489.19 215.88-5.9028 6.5712-6.8226 5.0075 6.071-4.0275 4.9925-4.4098 8.1801-6.045 7.0602-7.4286-6.1068 5.3939z\" clip-path=\"url(#33f618e8111)\" fill=\"#6e5f5f\"/><path d=\"m327.25 174.06 4.7518 10.342 6.273 9.4303 3.1467 5.975 4.6543 5.7404-5.793-8.7095-4.3962-9.8597-5.1751-6.3357z\" clip-path=\"url(#33f618e8111)\" fill=\"#e8c9c9\"/><path d=\"m405.13 238.24 2.8481 1.8384 3.0727 0.052086 6.6216 0.74864 6.7486 0.25127v0.17796-1.628l-9.7409-0.36207z\" clip-path=\"url(#33f618e8111)\" fill=\"#a69090\"/><path d=\"m424.42 239.68v1.628-0.17796l6.7486-0.25127 6.6216-0.74864 3.0727-0.052086 2.8481-1.8384-9.5501 1.0782z\" clip-path=\"url(#33f618e8111)\" fill=\"#998585\"/><path d=\"m323.49 114.27-2.1417 11.67-0.35622 11.753-0.034287 6.8111 1.7673 6.8146 0.35651-12.01 2.1426-12.157-1.7457-6.4409z\" clip-path=\"url(#33f618e8111)\" fill=\"#fcdada\"/><path d=\"m378.86 45.621-9.5438 4.3466-8.47 5.7952-4.6339 3.8639-3.5361 4.1277 9.6559-6.9299 10.844-5.5807 2.4419-2.8995z\" clip-path=\"url(#33f618e8111)\" fill=\"#e3c5c5\"/><path d=\"m352.68 63.755-8.3135 8.1342-6.8462 9.1757-2.9788 5.3823-1.4871 5.5612 7.3011-10.182 8.8418-9.2835 1.1224-4.46z\" clip-path=\"url(#33f618e8111)\" fill=\"#f4d4d4\"/><path d=\"m359.66 215.88 5.9028 6.5712 6.8226 5.0075 7.0503 3.5637 7.9074 3.0261-4.9044-4.1801-4.2513-5.8838-9.8107-3.7256z\" clip-path=\"url(#33f618e8111)\" fill=\"#cbb0b0\"/><path d=\"m470.67 223.98-4.2513 5.8838-4.9044 4.1801 7.9074-3.0261 7.0503-3.5637 6.8226-5.0075 5.9028-6.5712-8.7168 4.3791z\" clip-path=\"url(#33f618e8111)\" fill=\"#7d6d6d\"/><path d=\"m322.72 151.32 1.4091 11.65 3.1217 11.088 3.4615 6.5826 5.1751 6.3357-2.8919-10.852-1.3064-11.66-5.384-6.4491z\" clip-path=\"url(#33f618e8111)\" fill=\"#f5d4d4\"/><path d=\"m335.89 186.98 4.3962 9.8597 5.793 8.7095 6.1068 5.3939 7.4717 4.9382-4.8532-8.0522-3.689-9.4167-8.3937-5.4687z\" clip-path=\"url(#33f618e8111)\" fill=\"#e3c5c5\"/><path d=\"m497.74 198.41-3.689 9.4167-4.8532 8.0522 7.4717-4.9382 6.1068-5.3939 5.793-8.7095 4.3962-9.8597-6.8317 5.9637z\" clip-path=\"url(#33f618e8111)\" fill=\"#6d5f5f\"/><path d=\"m333.05 92.008-5.6479 10.883-3.9167 11.381-0.011607 6.4404 1.7457 6.4409 3.9141-12.08 5.6348-11.776-1.6532-5.6403z\" clip-path=\"url(#33f618e8111)\" fill=\"#fedcdc\"/><path d=\"m378.18 223.98 4.2513 5.8838 4.9044 4.1801 8.6212 2.4245 9.1735 1.7706-2.5653-3.6454-2.2264-5.438-11.434-2.186z\" clip-path=\"url(#33f618e8111)\" fill=\"#bfa6a6\"/><path d=\"m448.51 229.16-2.2264 5.438-2.5653 3.6454 9.1735-1.7706 8.6212-2.4245 4.9044-4.1801 4.2513-5.8838-10.725 2.9896z\" clip-path=\"url(#33f618e8111)\" fill=\"#8e7b7b\"/><path d=\"m373.18 51.244-10.844 5.5807-9.6559 6.9299-2.3602 4.3283-1.1224 4.46 10.237-8.2024 11.454-6.9561 0.70102-3.1106z\" clip-path=\"url(#33f618e8111)\" fill=\"#ebcbcb\"/><path d=\"m400.54 41.677-11.217 1.1537-10.467 2.7907-3.2421 2.7233-2.4419 2.8995 11.849-4.1088 12.647-2.5405 1.2222-1.5018z\" clip-path=\"url(#33f618e8111)\" fill=\"#d6b9b9\"/><path d=\"m400.34 229.16 2.2264 5.438 2.5653 3.6454 9.5501 1.0782 9.7409 0.36207v-3.4604-5.2835l-12.164-0.44756z\" clip-path=\"url(#33f618e8111)\" fill=\"#b09999\"/><path d=\"m424.42 230.94v5.2835 3.4604l9.7409-0.36207 9.5501-1.0782 2.5653-3.6454 2.2264-5.438-11.918 1.3322z\" clip-path=\"url(#33f618e8111)\" fill=\"#a08b8b\"/><path d=\"m325.22 127.15-2.1426 12.157-0.35651 12.01 3.5851 6.6953 5.384 6.4491 0.33057-12.261 1.9859-12.636-5.2691-6.0903z\" clip-path=\"url(#33f618e8111)\" fill=\"#fddbdb\"/><path d=\"m349.19 72.543-8.8418 9.2835-7.3011 10.182 0.065156 5.6492 1.6532 5.6403 7.2679-11.245 8.7771-10.493-1.4618-4.4984z\" clip-path=\"url(#33f618e8111)\" fill=\"#fad8d8\"/><path d=\"m397.67 44.595-12.647 2.5405-11.849 4.1088-1.5906 3.0298-0.70102 3.1106 12.466-5.5672 13.247-4.0625 0.30385-1.5973z\" clip-path=\"url(#33f618e8111)\" fill=\"#dcbebe\"/><path d=\"m351.11 198.41 3.689 9.4167 4.8532 8.0522 8.7168 4.3791 9.8107 3.7256-3.501-7.5223-2.6646-9.0574-11.081-4.1372z\" clip-path=\"url(#33f618e8111)\" fill=\"#dabdbd\"/><path d=\"m476.83 207.4-2.6646 9.0574-3.501 7.5223 9.8107-3.7256 8.7168-4.3791 4.8532-8.0522 3.689-9.4167-9.8226 4.8567z\" clip-path=\"url(#33f618e8111)\" fill=\"#7f6e6e\"/><path d=\"m424.42 44.452-12.11-2.2408-11.77-0.53455-1.6497 1.4161-1.2222 1.5018 13.215-0.90563 13.537 0.76306z\" clip-path=\"url(#33f618e8111)\" fill=\"#bca3a3\"/><path d=\"m331.69 164.47 1.3064 11.66 2.8919 10.852 6.8317 5.9637 8.3937 5.4687-2.4296-10.631-1.0982-11.663-8.7701-5.5744z\" clip-path=\"url(#33f618e8111)\" fill=\"#f0d0d0\"/><path d=\"m501.26 176.11-1.0982 11.663-2.4296 10.631 8.3937-5.4687 6.8317-5.9637 2.8919-10.852 1.3064-11.66-7.1257 6.0748z\" clip-path=\"url(#33f618e8111)\" fill=\"#716262\"/><path d=\"m370.88 57.385-11.454 6.9561-10.237 8.2024 0.15855 4.518 1.4618 4.4984 10.128-9.5348 11.291-8.3867-1.1356-3.114z\" clip-path=\"url(#33f618e8111)\" fill=\"#efcfcf\"/><path d=\"m424.42 44.452-13.537-0.76306-13.215 0.90563-0.77114 1.5626-0.30385 1.5973 13.779-2.4725 14.049-0.83004z\" clip-path=\"url(#33f618e8111)\" fill=\"#c2a8a8\"/><path d=\"m334.77 103.3-5.6348 11.776-3.9141 12.08 3.5174 6.3254 5.2691 6.0903 3.6242-12.77 5.2091-12.656-4.8219-5.316z\" clip-path=\"url(#33f618e8111)\" fill=\"#ffdddd\"/><path d=\"m396.6 47.755-13.247 4.0625-12.466 5.5672 0.21283 3.1394 1.1356 3.114 12.237-7.0726 12.947-5.6204-0.64824-1.585z\" clip-path=\"url(#33f618e8111)\" fill=\"#e0c2c2\"/><path d=\"m424.42 44.452-14.049 0.83004-13.779 2.4725 0.17197 1.605 0.64824 1.585 13.405-4.0618 13.602-2.4308z\" clip-path=\"url(#33f618e8111)\" fill=\"#c8adad\"/><path d=\"m424.42 44.452-13.602 2.4308-13.405 4.0618 1.1166 1.5374 1.5687 1.4627 12.099-5.5633 12.223-3.9294z\" clip-path=\"url(#33f618e8111)\" fill=\"#cdb2b2\"/><path d=\"m451.74 213.16-1.398 8.8225-1.8353 7.1774 11.434-2.186 10.725-2.9896 3.501-7.5223 2.6646-9.0574-12.136 3.3233z\" clip-path=\"url(#33f618e8111)\" fill=\"#938080\"/><path d=\"m372.02 207.4 2.6646 9.0574 3.501 7.5223 10.725 2.9896 11.434 2.186-1.8353-7.1774-1.398-8.8225-12.955-2.432z\" clip-path=\"url(#33f618e8111)\" fill=\"#ccb1b1\"/><path d=\"m424.42 44.452-12.223 3.9294-12.099 5.5633 1.9961 1.3617 2.3908 1.236 9.9361-6.8688 9.9992-5.2216z\" clip-path=\"url(#33f618e8111)\" fill=\"#d2b6b6\"/><path d=\"m424.42 44.452 9.9992 5.2216 9.9361 6.8688 2.3908-1.236 1.9961-1.3617-12.099-5.5633-12.223-3.9294z\" clip-path=\"url(#33f618e8111)\" fill=\"#ceb2b2\"/><path d=\"m350.81 81.559-8.7771 10.493-7.2679 11.245 3.249 5.5301 4.8219 5.316 6.7044-12.29 8.0749-11.679-4.041-4.2168z\" clip-path=\"url(#33f618e8111)\" fill=\"#fad9d9\"/><path d=\"m424.42 44.452-9.9992 5.2216-9.9361 6.8688 2.7451 1.0877 3.0521 0.91918 7.0571-7.8807 7.0809-6.2166z\" clip-path=\"url(#33f618e8111)\" fill=\"#d5b9b9\"/><path d=\"m424.42 44.452 7.0809 6.2166 7.0571 7.8807 3.0521-0.91918 2.7451-1.0877-9.9361-6.8688-9.9992-5.2216z\" clip-path=\"url(#33f618e8111)\" fill=\"#d2b6b6\"/><path d=\"m334.01 139.57-1.9859 12.636-0.33057 12.261 7.1257 6.0748 8.7701 5.5744 0.27795-12.484 1.6691-13.067-8.5627-5.2602z\" clip-path=\"url(#33f618e8111)\" fill=\"#f8d7d7\"/><path d=\"m499.32 150.56 1.6691 13.067 0.27795 12.484 8.7701-5.5744 7.1257-6.0748-0.33057-12.261-1.9859-12.636-6.9639 5.7345z\" clip-path=\"url(#33f618e8111)\" fill=\"#796969\"/><path d=\"m397.42 50.945-12.947 5.6204-12.237 7.0726 2.0511 3.0336 2.9421 2.8981 11.14-8.5193 11.737-7.1053-1.5687-1.4627z\" clip-path=\"url(#33f618e8111)\" fill=\"#e1c3c3\"/><path d=\"m372.23 63.638-11.291 8.3867-10.128 9.5348 2.7642 4.3984 4.041 4.2168 9.2888-10.833 10.318-9.7718-2.9421-2.8981z\" clip-path=\"url(#33f618e8111)\" fill=\"#f1d0d0\"/><path d=\"m397.11 213.16 1.398 8.8225 1.8353 7.1774 11.918 1.3322 12.164 0.44756v-7.0576-8.7407l-13.8-0.49835z\" clip-path=\"url(#33f618e8111)\" fill=\"#bba2a2\"/><path d=\"m424.42 215.14v8.7407 7.0576l12.164-0.44756 11.918-1.3322 1.8353-7.1774 1.398-8.8225-13.516 1.483z\" clip-path=\"url(#33f618e8111)\" fill=\"#a89191\"/><path d=\"m424.42 44.452-7.0809 6.2166-7.0571 7.8807 3.3056 0.73354 3.5004 0.5341 3.6632-8.5213 3.6688-6.8435z\" clip-path=\"url(#33f618e8111)\" fill=\"#d8bbbb\"/><path d=\"m424.42 44.452 3.6688 6.8435 3.6632 8.5213 3.5004-0.5341 3.3056-0.73354-7.0571-7.8807-7.0809-6.2166z\" clip-path=\"url(#33f618e8111)\" fill=\"#d6b9b9\"/><path d=\"m424.42 44.452v7.0576 8.7407l3.6994-0.10888 3.6326-0.32457-3.6632-8.5213-3.6688-6.8435z\" clip-path=\"url(#33f618e8111)\" fill=\"#d8bbbb\"/><path d=\"m424.42 44.452-3.6688 6.8435-3.6632 8.5213 3.6326 0.32457 3.6994 0.10888v-8.7407-7.0576z\" clip-path=\"url(#33f618e8111)\" fill=\"#d9bcbc\"/><path d=\"m347.59 176.11 1.0982 11.663 2.4296 10.631 9.8226 4.8567 11.081 4.1372-1.7565-10.45-0.7944-11.663-11.605-4.2219z\" clip-path=\"url(#33f618e8111)\" fill=\"#e6c7c7\"/><path d=\"m479.38 185.29-0.7944 11.663-1.7565 10.45 11.081-4.1372 9.8226-4.8567 2.4296-10.631 1.0982-11.663-10.276 4.9535z\" clip-path=\"url(#33f618e8111)\" fill=\"#857373\"/><path d=\"m444.36 56.543 9.6749 8.4066 9.2159 9.7966 4.5814-2.4675 3.7914-2.7086-11.14-8.5193-11.737-7.1053-1.9961 1.3617z\" clip-path=\"url(#33f618e8111)\" fill=\"#b49c9c\"/><path d=\"m400.1 53.945-11.737 7.1053-11.14 8.5193 3.7914 2.7086 4.5814 2.4675 9.2159-9.7966 9.6749-8.4066-2.3908-1.236z\" clip-path=\"url(#33f618e8111)\" fill=\"#e1c3c3\"/><path d=\"m342.84 114.14-5.2091 12.656-3.6242 12.77 6.9639 5.7345 8.5627 5.2602 3.0434-13.394 4.3682-13.451-7.7659-4.578z\" clip-path=\"url(#33f618e8111)\" fill=\"#fad9d9\"/><path d=\"m491.91 123.72 4.3682 13.451 3.0434 13.394 8.5627-5.2602 6.9639-5.7345-3.6242-12.77-5.2091-12.656-6.3389 4.9979z\" clip-path=\"url(#33f618e8111)\" fill=\"#847373\"/><path d=\"m377.23 69.57-10.318 9.7718-9.2888 10.833 5.2662 3.9544 6.4133 3.6137 7.7349-11.994 8.5652-11.003-4.5814-2.4675z\" clip-path=\"url(#33f618e8111)\" fill=\"#eecece\"/><path d=\"m463.25 74.746 8.5652 11.003 7.7349 11.994 6.4133-3.6137 5.2662-3.9544-9.2888-10.833-10.318-9.7718-3.7914 2.7086z\" clip-path=\"url(#33f618e8111)\" fill=\"#a28c8c\"/><path d=\"m357.62 90.175-8.0749 11.679-6.7044 12.29 6.3389 4.9979 7.7659 4.578 5.6114-13.233 6.7427-12.744-6.4133-3.6137z\" clip-path=\"url(#33f618e8111)\" fill=\"#f7d6d6\"/><path d=\"m479.55 97.743 6.7427 12.744 5.6114 13.233 7.7659-4.578 6.3389-4.9979-6.7044-12.29-8.0749-11.679-5.2662 3.9544z\" clip-path=\"url(#33f618e8111)\" fill=\"#927e7e\"/><path d=\"m369.47 185.29 0.7944 11.663 1.7565 10.45 12.136 3.3233 12.955 2.432-0.92208-10.331-0.41717-11.661-13.584-2.4838z\" clip-path=\"url(#33f618e8111)\" fill=\"#d7baba\"/><path d=\"m453.08 191.17-0.41717 11.661-0.92208 10.331 12.955-2.432 12.136-3.3233 1.7565-10.45 0.7944-11.663-12.718 3.3929z\" clip-path=\"url(#33f618e8111)\" fill=\"#9a8585\"/><path d=\"m404.49 56.543-9.6749 8.4066-9.2159 9.7966 5.2955 2.1785 5.9178 1.8462 6.5831-10.799 6.8916-9.4218-3.0521-0.91918z\" clip-path=\"url(#33f618e8111)\" fill=\"#dfc1c1\"/><path d=\"m438.56 58.55 6.8916 9.4218 6.5831 10.799 5.9178-1.8462 5.2955-2.1785-9.2159-9.7966-9.6749-8.4066-2.7451 1.0877z\" clip-path=\"url(#33f618e8111)\" fill=\"#bca3a3\"/><path d=\"m349.53 150.56-1.6691 13.067-0.27795 12.484 10.276 4.9535 11.605 4.2219 0.20108-12.66 1.2071-13.412-11.316-3.9814z\" clip-path=\"url(#33f618e8111)\" fill=\"#edcece\"/><path d=\"m477.97 159.22 1.2071 13.412 0.20108 12.66 11.605-4.2219 10.276-4.9535-0.27795-12.484-1.6691-13.067-10.026 4.6727z\" clip-path=\"url(#33f618e8111)\" fill=\"#8c7a7a\"/><path d=\"m431.76 59.817 3.5839 10.068 3.4295 11.44 6.8329-1.0771 6.4343-1.4767-6.5831-10.799-6.8916-9.4218-3.3056 0.73354z\" clip-path=\"url(#33f618e8111)\" fill=\"#c4aaaa\"/><path d=\"m410.29 58.55-6.8916 9.4218-6.5831 10.799 6.4343 1.4767 6.8329 1.0771 3.4295-11.44 3.5839-10.068-3.5004-0.5341z\" clip-path=\"url(#33f618e8111)\" fill=\"#dabdbd\"/><path d=\"m395.77 191.17 0.41717 11.661 0.92208 10.331 13.516 1.483 13.8 0.49835v-10.289-11.66l-14.478-0.50913z\" clip-path=\"url(#33f618e8111)\" fill=\"#c4aaaa\"/><path d=\"m424.42 193.19v11.66 10.289l13.8-0.49835 13.516-1.483 0.92208-10.331 0.41717-11.661-14.177 1.5149z\" clip-path=\"url(#33f618e8111)\" fill=\"#b09898\"/><path d=\"m417.09 59.817-3.5839 10.068-3.4295 11.44 7.1041 0.65536 7.2413 0.21998v-11.66-10.289l-3.6994-0.10888z\" clip-path=\"url(#33f618e8111)\" fill=\"#d4b8b8\"/><path d=\"m424.42 60.251v10.289 11.66l7.2413-0.21998 7.1041-0.65536-3.4295-11.44-3.5839-10.068-3.6326 0.32457z\" clip-path=\"url(#33f618e8111)\" fill=\"#ccb1b1\"/><path d=\"m385.6 74.746-8.5652 11.003-7.7349 11.994 7.4561 3.1993 8.3696 2.7179 5.5533-12.915 6.1345-11.975-5.9178-1.8462z\" clip-path=\"url(#33f618e8111)\" fill=\"#e9caca\"/><path d=\"m452.04 78.77 6.1345 11.975 5.5533 12.915 8.3696-2.7179 7.4561-3.1993-7.7349-11.994-8.5652-11.003-5.2955 2.1785z\" clip-path=\"url(#33f618e8111)\" fill=\"#ae9797\"/><path d=\"m356.94 123.72-4.3682 13.451-3.0434 13.394 10.026 4.6727 11.316 3.9814 2.1995-13.893 3.1534-14.087-10.215-3.4568z\" clip-path=\"url(#33f618e8111)\" fill=\"#f1d0d0\"/><path d=\"m472.62 131.24 3.1534 14.087 2.1995 13.893 11.316-3.9814 10.026-4.6727-3.0434-13.394-4.3682-13.451-9.0689 4.0616z\" clip-path=\"url(#33f618e8111)\" fill=\"#968282\"/><path d=\"m369.3 97.743-6.7427 12.744-5.6114 13.233 9.0689 4.0616 10.215 3.4568 4.0449-13.986 4.8514-13.592-8.3696-2.7179z\" clip-path=\"url(#33f618e8111)\" fill=\"#efcfcf\"/><path d=\"m463.73 103.66 4.8514 13.592 4.0449 13.986 10.215-3.4568 9.0689-4.0616-5.6114-13.233-6.7427-12.744-7.4561 3.1993z\" clip-path=\"url(#33f618e8111)\" fill=\"#a18c8c\"/><path d=\"m370.88 159.22-1.2071 13.412-0.20108 12.66 12.718 3.3929 13.584 2.4838 0.1056-12.774 0.63385-13.635-13.237-2.3413z\" clip-path=\"url(#33f618e8111)\" fill=\"#dfc1c1\"/><path d=\"m452.34 164.76 0.63385 13.635 0.1056 12.774 13.584-2.4838 12.718-3.3929-0.20108-12.66-1.2071-13.412-12.397 3.1989z\" clip-path=\"url(#33f618e8111)\" fill=\"#a18c8c\"/><path d=\"m396.81 78.77-6.1345 11.975-5.5533 12.915 9.1309 2.1784 9.7205 1.5914 2.9024-13.507 3.2012-12.598-6.8329-1.0771z\" clip-path=\"url(#33f618e8111)\" fill=\"#e0c2c2\"/><path d=\"m438.77 81.324 3.2012 12.598 2.9024 13.507 9.7205-1.5914 9.1309-2.1784-5.5533-12.915-6.1345-11.975-6.4343 1.4767z\" clip-path=\"url(#33f618e8111)\" fill=\"#bba2a2\"/><path d=\"m396.51 164.76-0.63385 13.635-0.1056 12.774 14.177 1.5149 14.478 0.50913v-12.813-13.712l-14.104-0.47983z\" clip-path=\"url(#33f618e8111)\" fill=\"#ccb1b1\"/><path d=\"m424.42 166.67v13.712 12.813l14.478-0.50913 14.177-1.5149-0.1056-12.774-0.63385-13.635-13.812 1.4278z\" clip-path=\"url(#33f618e8111)\" fill=\"#b79f9f\"/><path d=\"m410.08 81.324-3.2012 12.598-2.9024 13.507 10.123 0.96925 10.326 0.32551v-13.712-12.813l-7.2413-0.21998z\" clip-path=\"url(#33f618e8111)\" fill=\"#d5b9b9\"/><path d=\"m424.42 82.2v12.813 13.712l10.326-0.32551 10.123-0.96925-2.9024-13.507-3.2012-12.598-7.1041 0.65536z\" clip-path=\"url(#33f618e8111)\" fill=\"#c8aeae\"/><path d=\"m376.23 131.24-3.1534 14.087-2.1995 13.893 12.397 3.1989 13.237 2.3413 1.1544-14.216 1.6539-14.499-11.916-2.0295z\" clip-path=\"url(#33f618e8111)\" fill=\"#e3c5c5\"/><path d=\"m449.53 136.04 1.6539 14.499 1.1544 14.216 13.237-2.3413 12.397-3.1989-2.1995-13.893-3.1534-14.087-11.173 2.7749z\" clip-path=\"url(#33f618e8111)\" fill=\"#aa9393\"/><path d=\"m385.12 103.66-4.8514 13.592-4.0449 13.986 11.173 2.7749 11.916 2.0295 2.1194-14.473 2.539-14.139-9.7205-1.5914z\" clip-path=\"url(#33f618e8111)\" fill=\"#e3c5c5\"/><path d=\"m444.87 107.43 2.539 14.139 2.1194 14.473 11.916-2.0295 11.173-2.7749-4.0449-13.986-4.8514-13.592-9.1309 2.1784z\" clip-path=\"url(#33f618e8111)\" fill=\"#b39b9b\"/><path d=\"m424.42 137.7v14.642 14.329l14.104-0.47983 13.812-1.4278-1.1544-14.216-1.6539-14.499-12.425 1.2371z\" clip-path=\"url(#33f618e8111)\" fill=\"#bea5a5\"/><path d=\"m399.32 136.04-1.6539 14.499-1.1544 14.216 13.812 1.4278 14.104 0.47983v-14.329-14.642l-12.683-0.41564z\" clip-path=\"url(#33f618e8111)\" fill=\"#d2b6b6\"/><path d=\"m403.98 107.43-2.539 14.139-2.1194 14.473 12.425 1.2371 12.683 0.41564v-14.642-14.329l-10.326-0.32551z\" clip-path=\"url(#33f618e8111)\" fill=\"#d5b8b8\"/><path d=\"m424.42 108.72v14.329 14.642l12.683-0.41564 12.425-1.2371-2.1194-14.473-2.539-14.139-10.123 0.96925z\" clip-path=\"url(#33f618e8111)\" fill=\"#c4aaaa\"/></g><defs><clipPath id=\"05635793433\"><rect x=\"7.2\" y=\"19.24\" width=\"243.49\" height=\"243.49\"/></clipPath><clipPath id=\"33f618e8111\"><rect x=\"299.39\" y=\"19.24\" width=\"243.49\" height=\"243.49\"/></clipPath></defs></svg>"
|
||
],
|
||
"text/plain": [
|
||
"<Figure size 960x480 with 2 Axes>"
|
||
]
|
||
},
|
||
"execution_count": 9,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"source": [
|
||
"from qiskit.visualization import plot_bloch_multivector\n",
|
||
"plot_bloch_multivector(psi)\n",
|
||
"# Alternative: psi.draw(\"bloch\")"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "878769c0-c2ea-42c0-bb72-78c651bdba19",
|
||
"metadata": {},
|
||
"source": [
|
||
"## Options for state-plotting functions\n",
|
||
"\n",
|
||
"All state-plotting functions accept the following arguments (except the LaTeX drawer, which doesn't return a Matplotlib figure, and `plot_state_qsphere`, which only accepts **figsize**):\n",
|
||
"- **title** (str): a string for the plot title, displayed at the top of the plot\n",
|
||
"- **figsize** (tuple): figure size in inches (width, height)\n",
|
||
"\n",
|
||
"The `plot_state_city` and `plot_state_paulivec` functions also accept a **color** argument (list of strings) specifying the colors of the bars. See the [API documentation](/api/qiskit/visualization) for more information."
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "d448035a-dfa0-42dc-bef8-aaf5742d818d",
|
||
"metadata": {},
|
||
"source": [
|
||
"## Next steps\n",
|
||
"\n",
|
||
"<Admonition type=\"tip\" title=\"Recommendations\">\n",
|
||
" - Need to refresh your quantum information knowledge? Check out the [Basics of quantum information](https://learning.quantum.ibm.com/course/basics-of-quantum-information) course on IBM Quantum Learning.\n",
|
||
" - Read the [contributing guidelines](https://github.com/Qiskit/qiskit/blob/main/CONTRIBUTING.md) if you want to contribute to the open-source Qiskit SDK.\n",
|
||
"</Admonition>"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"description": "Visualize statevectors and density matrices using Qiskit",
|
||
"kernelspec": {
|
||
"display_name": "Python 3",
|
||
"language": "python",
|
||
"name": "python3"
|
||
},
|
||
"language_info": {
|
||
"codemirror_mode": {
|
||
"name": "ipython",
|
||
"version": 3
|
||
},
|
||
"file_extension": ".py",
|
||
"mimetype": "text/x-python",
|
||
"name": "python",
|
||
"nbconvert_exporter": "python",
|
||
"pygments_lexer": "ipython3",
|
||
"version": "3"
|
||
},
|
||
"title": "Quantum information visualizations"
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 4
|
||
}
|