{ "cells": [ { "cell_type": "markdown", "id": "22631f8a-5369-4139-81fe-fd26a8b1168b", "metadata": {}, "source": [ "# Smoke Days\n", "\n", "Recently wildfire smoke has returned and blanketed the city in haze, causing the air quality health index (AQHI) to sky rocket, and as a result I've been spending a lot more time inside. This feels like it is a lot more common event than it used to be, but I'm not sure if that's true or if it merely feels true because I'm looking out at a hazy skyline.\n", "\n", "I would like to look into this more using air quality data and see if this truly is a recent change, or maybe Edmonton has always been like this and I've simply forgotten.\n", "\n", "## Particulates as a proxy\n", "\n", "Alberta has a series of air quality monitoring stations set up around the province and I can pull a data-set from the Edmonton Central station (the closest one to me) and look at airborne particulates (pm2.5) as a proxy for wildfire smoke. Though the smoke itself is more than just particulates <2.5μm in diameter, it is those particulates that cause the AQHI to rise significantly.\n", "\n", "However there are more sources of pm2.5 than just wildfires, vehicles are a major source for one, and in the winter atmospheric inversions can lead to really poor air quality during which time the pm2.5 concentration rises. Additionally farmers around the city often burn stubble and other stuff in the fall, leading to smoke days that have nothing to do with wildfires.\n", "\n", "So this is a proxy for wildfire smoke, but not a great one.\n", "\n", "### Ambient Air Data\n", "\n", "I downloaded just the pm2.5 measurements for Edmonton Central from October 2000, the earliest reported values, through to the end of December 2020, the latest values in the database at this time, from [Alberta's Ambient Air Data Warehouse](https://airdata.alberta.ca/reporting/Download/MultipleParameters). This is a csv with 177,072 rows of data and several columns each corresponding to, I'm guessing, a different instrument. Over time the station has swapped out instruments for measuring pm2.5s and those are recorded as a different measurement type." ] }, { "cell_type": "code", "execution_count": 1, "id": "9bedce3f-f797-417c-8a38-69fc2ca1d963", "metadata": {}, "outputs": [], "source": [ "using CSV, DataFrames, Dates, Pipe, Plots" ] }, { "cell_type": "code", "execution_count": 2, "id": "f5eb747b-43a1-489c-a9f5-7a9e13f5a020", "metadata": { "tags": [] }, "outputs": [], "source": [ "data_file = \"data/Long Term pm2.5 Edmonton Central.csv\"\n", "\n", "ambient_data = @pipe data_file |>\n", " CSV.File( _ ; \n", " dateformat=\"mm/dd/yyyy HH:MM:SS\", \n", " types=[DateTime, DateTime, Float64, Float64, Float64, Float64], \n", " header=16, silencewarnings=true) |>\n", " DataFrame(_);\n" ] }, { "cell_type": "code", "execution_count": 3, "id": "a300e7eb-1eaa-4dda-86ef-31d2dc5edb32", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "177072×6 DataFrame\n", "\u001b[1m6×6 DataFrame\u001b[0m\n", "\u001b[1m Row \u001b[0m│\u001b[1m IntervalStart \u001b[0m\u001b[1m IntervalEnd \u001b[0m\u001b[1m MeasurementValue \u001b[0m\u001b[1m MeasurementValue_1 \u001b[0m\u001b[1m MeasurementValue_2 \u001b[0m\u001b[1m MeasurementValue_3 \u001b[0m\n", "\u001b[1m \u001b[0m│\u001b[90m DateTime \u001b[0m\u001b[90m DateTime \u001b[0m\u001b[90m Float64? \u001b[0m\u001b[90m Float64? \u001b[0m\u001b[90m Float64? \u001b[0m\u001b[90m Float64? \u001b[0m\n", "─────┼────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────\n", " 1 │ 2000-10-20T00:00:00 2000-10-20T00:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 2.3\n", " 2 │ 2000-10-20T01:00:00 2000-10-20T01:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 1.8\n", " 3 │ 2000-10-20T02:00:00 2000-10-20T02:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 1.8\n", " 4 │ 2000-10-20T03:00:00 2000-10-20T03:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 1.0\n", " 5 │ 2000-10-20T04:00:00 2000-10-20T04:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 1.8\n", " 6 │ 2000-10-20T05:00:00 2000-10-20T05:59:00 \u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m\u001b[90m missing \u001b[0m 2.0" ] } ], "source": [ "println(summary(ambient_data))\n", "\n", "show(first(ambient_data, 6), allcols=true)" ] }, { "cell_type": "markdown", "id": "fd3b50c7-eb20-4c40-8f3a-cab5ecc95ffc", "metadata": {}, "source": [ "### Parsing the Data\n", "\n", "What I want to know is when smoke events happened and how long they were. To estimate that I am going to assume a smoke event is a period in which the hourly pm2.5 exceed the ambient air quality guideline for pm2.5s. The event starts at the first hour greater than that limit and ends on the first hour less than that limit. This has the obvious weakness that sometimes the clouds of wildfire smoke has breaks in it, so what feels like a week long smoke event would end up as a series of smaller events as the pm2.5 count might dip overnight or something. But this is a start.\n", "\n", "One complication is that the dataset has four columns of pm2.5 data that are full of mostly missing values since they each only correspond to the period in which the given instrument is running. So I first need to collect those measurement values, drop the missing values, and take the mean of what remains. I assume there is no overlap and so it's the mean of one number, but I haven't checked to see if that's true and the mean seems like the most sensible thing to do if there is overlap.\n", "\n", "If there is a missing hour entirely, i.e. no instrument has a reading, then I skip it. That neither counts as the start nor the end of a smoke event and I move to the next row." ] }, { "cell_type": "code", "execution_count": 4, "id": "ef4d29b1-1f51-4b01-91cc-7cdc570e7b82", "metadata": { "tags": [] }, "outputs": [ { "data": { "text/plain": [ "exceedences (generic function with 1 method)" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "using Statistics\n", "\n", "lim_1h = 80.0 #μg/m³ 1-hr limit\n", "lim_24h = 29.0 #μg/m³ 24-hr limit\n", "\n", "function exceedences(df; limit=lim_1h)\n", "\n", " results = DataFrame(start_date = DateTime[], end_date = DateTime[], month = Int64[], year = Int64[], duration = Float64[], max_conc = Float64[])\n", "\n", " flag = false\n", " start_date = nothing\n", " end_date = nothing\n", " max_conc = 0.0\n", "\n", " for r in eachrow(ambient_data)\n", " measurements = [r[:MeasurementValue], r[:MeasurementValue_1], r[:MeasurementValue_2], r[:MeasurementValue_3]]\n", " measurements = collect( skipmissing(measurements) )\n", " conc = if (sizeof(measurements)>0) mean(measurements) else missing end\n", "\n", " if typeof(conc) == Missing\n", " # ignore missing data\n", " elseif conc > limit\n", " if flag == true # we are already in a sequence\n", " end_date = r[:IntervalEnd]\n", " max_conc = max(conc, max_conc)\n", " else # we are starting a sequence\n", " flag = true\n", " start_date = r[:IntervalStart]\n", " end_date = r[:IntervalEnd]\n", " max_conc = max(conc, max_conc)\n", " end\n", " else\n", " if flag == true # we are ending a sequence\n", " flag = false\n", " duration = Dates.value.(end_date - start_date)/3.6e6\n", " push!(results, [start_date, end_date, month(start_date), year(start_date), duration, max_conc])\n", " max_conc = 0.0\n", " end\n", " end\n", " end\n", " \n", " return results\n", "end" ] }, { "cell_type": "code", "execution_count": 5, "id": "81618648-c98a-42f9-a605-aa7473cc3730", "metadata": { "collapsed": true, "jupyter": { "outputs_hidden": true }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "<table class=\"data-frame\"><thead><tr><th></th><th>start_date</th><th>end_date</th><th>month</th><th>year</th><th>duration</th><th>max_conc</th></tr><tr><th></th><th>DateTime</th><th>DateTime</th><th>Int64</th><th>Int64</th><th>Float64</th><th>Float64</th></tr></thead><tbody><p>53 rows × 6 columns</p><tr><th>1</th><td>2001-05-24T11:00:00</td><td>2001-05-24T12:59:00</td><td>5</td><td>2001</td><td>1.98333</td><td>274.8</td></tr><tr><th>2</th><td>2001-09-20T20:00:00</td><td>2001-09-20T20:59:00</td><td>9</td><td>2001</td><td>0.983333</td><td>88.5</td></tr><tr><th>3</th><td>2002-01-30T18:00:00</td><td>2002-01-30T20:59:00</td><td>1</td><td>2002</td><td>2.98333</td><td>111.5</td></tr><tr><th>4</th><td>2002-05-20T20:00:00</td><td>2002-05-20T23:59:00</td><td>5</td><td>2002</td><td>3.98333</td><td>293.3</td></tr><tr><th>5</th><td>2002-05-23T00:00:00</td><td>2002-05-23T04:59:00</td><td>5</td><td>2002</td><td>4.98333</td><td>200.5</td></tr><tr><th>6</th><td>2003-12-10T09:00:00</td><td>2003-12-10T09:59:00</td><td>12</td><td>2003</td><td>0.983333</td><td>82.3</td></tr><tr><th>7</th><td>2004-02-25T13:00:00</td><td>2004-02-25T13:59:00</td><td>2</td><td>2004</td><td>0.983333</td><td>86.3</td></tr><tr><th>8</th><td>2004-02-25T16:00:00</td><td>2004-02-25T18:59:00</td><td>2</td><td>2004</td><td>2.98333</td><td>99.6</td></tr><tr><th>9</th><td>2006-07-06T00:00:00</td><td>2006-07-06T02:59:00</td><td>7</td><td>2006</td><td>2.98333</td><td>83.2</td></tr><tr><th>10</th><td>2006-07-06T06:00:00</td><td>2006-07-06T06:59:00</td><td>7</td><td>2006</td><td>0.983333</td><td>81.5</td></tr><tr><th>11</th><td>2006-07-06T10:00:00</td><td>2006-07-06T11:59:00</td><td>7</td><td>2006</td><td>1.98333</td><td>81.5</td></tr><tr><th>12</th><td>2009-09-24T00:00:00</td><td>2009-09-24T02:59:00</td><td>9</td><td>2009</td><td>2.98333</td><td>94.8</td></tr><tr><th>13</th><td>2009-12-27T17:00:00</td><td>2009-12-27T17:59:00</td><td>12</td><td>2009</td><td>0.983333</td><td>97.0</td></tr><tr><th>14</th><td>2010-01-18T15:00:00</td><td>2010-01-18T15:59:00</td><td>1</td><td>2010</td><td>0.983333</td><td>80.4</td></tr><tr><th>15</th><td>2010-01-19T18:00:00</td><td>2010-01-19T18:59:00</td><td>1</td><td>2010</td><td>0.983333</td><td>80.9</td></tr><tr><th>16</th><td>2010-01-20T00:00:00</td><td>2010-01-20T00:59:00</td><td>1</td><td>2010</td><td>0.983333</td><td>84.5</td></tr><tr><th>17</th><td>2010-01-20T05:00:00</td><td>2010-01-20T05:59:00</td><td>1</td><td>2010</td><td>0.983333</td><td>88.9</td></tr><tr><th>18</th><td>2010-01-28T21:00:00</td><td>2010-01-28T23:59:00</td><td>1</td><td>2010</td><td>2.98333</td><td>114.4</td></tr><tr><th>19</th><td>2010-01-29T11:00:00</td><td>2010-01-29T11:59:00</td><td>1</td><td>2010</td><td>0.983333</td><td>83.1</td></tr><tr><th>20</th><td>2010-01-29T15:00:00</td><td>2010-01-29T16:59:00</td><td>1</td><td>2010</td><td>1.98333</td><td>93.9</td></tr><tr><th>21</th><td>2010-05-14T03:00:00</td><td>2010-05-14T03:59:00</td><td>5</td><td>2010</td><td>0.983333</td><td>93.5</td></tr><tr><th>22</th><td>2010-05-20T15:00:00</td><td>2010-05-20T15:59:00</td><td>5</td><td>2010</td><td>0.983333</td><td>80.3</td></tr><tr><th>23</th><td>2010-08-19T11:00:00</td><td>2010-08-19T23:59:00</td><td>8</td><td>2010</td><td>12.9833</td><td>450.0</td></tr><tr><th>24</th><td>2010-08-20T08:00:00</td><td>2010-08-20T09:59:00</td><td>8</td><td>2010</td><td>1.98333</td><td>95.7</td></tr><tr><th>25</th><td>2010-08-20T11:00:00</td><td>2010-08-20T12:59:00</td><td>8</td><td>2010</td><td>1.98333</td><td>81.0</td></tr><tr><th>26</th><td>2010-08-20T14:00:00</td><td>2010-08-21T05:59:00</td><td>8</td><td>2010</td><td>15.9833</td><td>149.6</td></tr><tr><th>27</th><td>2010-08-21T07:00:00</td><td>2010-08-21T08:59:00</td><td>8</td><td>2010</td><td>1.98333</td><td>92.2</td></tr><tr><th>28</th><td>2010-08-21T11:00:00</td><td>2010-08-21T11:59:00</td><td>8</td><td>2010</td><td>0.983333</td><td>82.7</td></tr><tr><th>29</th><td>2010-08-22T02:00:00</td><td>2010-08-22T03:59:00</td><td>8</td><td>2010</td><td>1.98333</td><td>82.8</td></tr><tr><th>30</th><td>2010-08-22T06:00:00</td><td>2010-08-22T07:59:00</td><td>8</td><td>2010</td><td>1.98333</td><td>103.9</td></tr><tr><th>⋮</th><td>⋮</td><td>⋮</td><td>⋮</td><td>⋮</td><td>⋮</td><td>⋮</td></tr></tbody></table>" ], "text/latex": [ "\\begin{tabular}{r|cccccc}\n", "\t& start\\_date & end\\_date & month & year & duration & max\\_conc\\\\\n", "\t\\hline\n", "\t& DateTime & DateTime & Int64 & Int64 & Float64 & Float64\\\\\n", "\t\\hline\n", "\t1 & 2001-05-24T11:00:00 & 2001-05-24T12:59:00 & 5 & 2001 & 1.98333 & 274.8 \\\\\n", "\t2 & 2001-09-20T20:00:00 & 2001-09-20T20:59:00 & 9 & 2001 & 0.983333 & 88.5 \\\\\n", "\t3 & 2002-01-30T18:00:00 & 2002-01-30T20:59:00 & 1 & 2002 & 2.98333 & 111.5 \\\\\n", "\t4 & 2002-05-20T20:00:00 & 2002-05-20T23:59:00 & 5 & 2002 & 3.98333 & 293.3 \\\\\n", "\t5 & 2002-05-23T00:00:00 & 2002-05-23T04:59:00 & 5 & 2002 & 4.98333 & 200.5 \\\\\n", "\t6 & 2003-12-10T09:00:00 & 2003-12-10T09:59:00 & 12 & 2003 & 0.983333 & 82.3 \\\\\n", "\t7 & 2004-02-25T13:00:00 & 2004-02-25T13:59:00 & 2 & 2004 & 0.983333 & 86.3 \\\\\n", "\t8 & 2004-02-25T16:00:00 & 2004-02-25T18:59:00 & 2 & 2004 & 2.98333 & 99.6 \\\\\n", "\t9 & 2006-07-06T00:00:00 & 2006-07-06T02:59:00 & 7 & 2006 & 2.98333 & 83.2 \\\\\n", "\t10 & 2006-07-06T06:00:00 & 2006-07-06T06:59:00 & 7 & 2006 & 0.983333 & 81.5 \\\\\n", "\t11 & 2006-07-06T10:00:00 & 2006-07-06T11:59:00 & 7 & 2006 & 1.98333 & 81.5 \\\\\n", "\t12 & 2009-09-24T00:00:00 & 2009-09-24T02:59:00 & 9 & 2009 & 2.98333 & 94.8 \\\\\n", "\t13 & 2009-12-27T17:00:00 & 2009-12-27T17:59:00 & 12 & 2009 & 0.983333 & 97.0 \\\\\n", "\t14 & 2010-01-18T15:00:00 & 2010-01-18T15:59:00 & 1 & 2010 & 0.983333 & 80.4 \\\\\n", "\t15 & 2010-01-19T18:00:00 & 2010-01-19T18:59:00 & 1 & 2010 & 0.983333 & 80.9 \\\\\n", "\t16 & 2010-01-20T00:00:00 & 2010-01-20T00:59:00 & 1 & 2010 & 0.983333 & 84.5 \\\\\n", "\t17 & 2010-01-20T05:00:00 & 2010-01-20T05:59:00 & 1 & 2010 & 0.983333 & 88.9 \\\\\n", "\t18 & 2010-01-28T21:00:00 & 2010-01-28T23:59:00 & 1 & 2010 & 2.98333 & 114.4 \\\\\n", "\t19 & 2010-01-29T11:00:00 & 2010-01-29T11:59:00 & 1 & 2010 & 0.983333 & 83.1 \\\\\n", "\t20 & 2010-01-29T15:00:00 & 2010-01-29T16:59:00 & 1 & 2010 & 1.98333 & 93.9 \\\\\n", "\t21 & 2010-05-14T03:00:00 & 2010-05-14T03:59:00 & 5 & 2010 & 0.983333 & 93.5 \\\\\n", "\t22 & 2010-05-20T15:00:00 & 2010-05-20T15:59:00 & 5 & 2010 & 0.983333 & 80.3 \\\\\n", "\t23 & 2010-08-19T11:00:00 & 2010-08-19T23:59:00 & 8 & 2010 & 12.9833 & 450.0 \\\\\n", "\t24 & 2010-08-20T08:00:00 & 2010-08-20T09:59:00 & 8 & 2010 & 1.98333 & 95.7 \\\\\n", "\t25 & 2010-08-20T11:00:00 & 2010-08-20T12:59:00 & 8 & 2010 & 1.98333 & 81.0 \\\\\n", "\t26 & 2010-08-20T14:00:00 & 2010-08-21T05:59:00 & 8 & 2010 & 15.9833 & 149.6 \\\\\n", "\t27 & 2010-08-21T07:00:00 & 2010-08-21T08:59:00 & 8 & 2010 & 1.98333 & 92.2 \\\\\n", "\t28 & 2010-08-21T11:00:00 & 2010-08-21T11:59:00 & 8 & 2010 & 0.983333 & 82.7 \\\\\n", "\t29 & 2010-08-22T02:00:00 & 2010-08-22T03:59:00 & 8 & 2010 & 1.98333 & 82.8 \\\\\n", "\t30 & 2010-08-22T06:00:00 & 2010-08-22T07:59:00 & 8 & 2010 & 1.98333 & 103.9 \\\\\n", "\t$\\dots$ & $\\dots$ & $\\dots$ & $\\dots$ & $\\dots$ & $\\dots$ & $\\dots$ \\\\\n", "\\end{tabular}\n" ], "text/plain": [ "\u001b[1m53×6 DataFrame\u001b[0m\n", "\u001b[1m Row \u001b[0m│\u001b[1m start_date \u001b[0m\u001b[1m end_date \u001b[0m\u001b[1m month \u001b[0m\u001b[1m year \u001b[0m\u001b[1m duration \u001b[0m\u001b[1m max_\u001b[0m ⋯\n", "\u001b[1m \u001b[0m│\u001b[90m DateTime \u001b[0m\u001b[90m DateTime \u001b[0m\u001b[90m Int64 \u001b[0m\u001b[90m Int64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Floa\u001b[0m ⋯\n", "─────┼──────────────────────────────────────────────────────────────────────────\n", " 1 │ 2001-05-24T11:00:00 2001-05-24T12:59:00 5 2001 1.98333 2 ⋯\n", " 2 │ 2001-09-20T20:00:00 2001-09-20T20:59:00 9 2001 0.983333\n", " 3 │ 2002-01-30T18:00:00 2002-01-30T20:59:00 1 2002 2.98333 1\n", " 4 │ 2002-05-20T20:00:00 2002-05-20T23:59:00 5 2002 3.98333 2\n", " 5 │ 2002-05-23T00:00:00 2002-05-23T04:59:00 5 2002 4.98333 2 ⋯\n", " 6 │ 2003-12-10T09:00:00 2003-12-10T09:59:00 12 2003 0.983333\n", " 7 │ 2004-02-25T13:00:00 2004-02-25T13:59:00 2 2004 0.983333\n", " 8 │ 2004-02-25T16:00:00 2004-02-25T18:59:00 2 2004 2.98333\n", " 9 │ 2006-07-06T00:00:00 2006-07-06T02:59:00 7 2006 2.98333 ⋯\n", " 10 │ 2006-07-06T06:00:00 2006-07-06T06:59:00 7 2006 0.983333\n", " 11 │ 2006-07-06T10:00:00 2006-07-06T11:59:00 7 2006 1.98333\n", " ⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱\n", " 44 │ 2018-08-10T14:00:00 2018-08-11T01:59:00 8 2018 11.9833 2\n", " 45 │ 2018-08-15T01:00:00 2018-08-15T21:59:00 8 2018 20.9833 1 ⋯\n", " 46 │ 2018-08-16T10:00:00 2018-08-16T14:59:00 8 2018 4.98333 1\n", " 47 │ 2018-08-17T06:00:00 2018-08-18T08:59:00 8 2018 26.9833 2\n", " 48 │ 2018-08-22T15:00:00 2018-08-22T16:59:00 8 2018 1.98333\n", " 49 │ 2018-08-23T03:00:00 2018-08-23T03:59:00 8 2018 0.983333 ⋯\n", " 50 │ 2018-08-23T07:00:00 2018-08-23T07:59:00 8 2018 0.983333\n", " 51 │ 2018-08-23T09:00:00 2018-08-23T15:59:00 8 2018 6.98333\n", " 52 │ 2019-05-30T14:00:00 2019-05-30T21:59:00 5 2019 7.98333 8\n", " 53 │ 2019-05-31T15:00:00 2019-05-31T15:59:00 5 2019 0.983333 ⋯\n", "\u001b[36m 1 column and 32 rows omitted\u001b[0m" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "result_1hr = exceedences(ambient_data, limit=lim_1h)" ] }, { "cell_type": "code", "execution_count": 6, "id": "a9931224-5d8f-4b52-8e8d-ae1d2ff0a1bc", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Results: 53×6 DataFrame\n", "\n", "Summary: \n", "\u001b[1m6×7 DataFrame\u001b[0m\n", "\u001b[1m Row \u001b[0m│\u001b[1m variable \u001b[0m\u001b[1m mean \u001b[0m\u001b[1m min \u001b[0m\u001b[1m median \u001b[0m\u001b[1m max \u001b[0m\u001b[1m\u001b[0m ⋯\n", "\u001b[1m \u001b[0m│\u001b[90m Symbol \u001b[0m\u001b[90m Union… \u001b[0m\u001b[90m Any \u001b[0m\u001b[90m Union… \u001b[0m\u001b[90m Any \u001b[0m\u001b[90m\u001b[0m ⋯\n", "─────┼──────────────────────────────────────────────────────────────────────────\n", " 1 │ start_date \u001b[90m \u001b[0m 2001-05-24T11:00:00 \u001b[90m \u001b[0m 2019-05-31T15:00:00 ⋯\n", " 2 │ end_date \u001b[90m \u001b[0m 2001-05-24T12:59:00 \u001b[90m \u001b[0m 2019-05-31T15:59:00\n", " 3 │ month 5.84906 1 7.0 12\n", " 4 │ year 2011.15 2001 2010.0 2019\n", " 5 │ duration 3.85126 0.983333 1.98333 26.9833 ⋯\n", " 6 │ max_conc 135.9 80.3 93.9 867.0\n", "\u001b[36m 2 columns omitted\u001b[0m" ] } ], "source": [ "println(\"Results: \" * summary(result_1hr))\n", "println()\n", "println(\"Summary: \")\n", "show(describe(result_1hr))" ] }, { "cell_type": "markdown", "id": "8b93755b-5f9b-4b7b-8e29-b90fa129941f", "metadata": {}, "source": [ "Over the past 20yrs there were 53 periods with the pm2.5 concentration above the limit, these range from 1hr to 27hrs long and a max concentration observed of 867μg/m³" ] }, { "cell_type": "markdown", "id": "68041ece-803b-414f-8c89-32d52f591758", "metadata": {}, "source": [ "## Results\n", "\n", "A plot of the results, showing each period in excess of the hourly limit and the duration of that period, is very suggestive that these are becoming more frequent events. If we also plot the maximum hourly concentration observed it appears that the extreme smoke days are a more recent phenomenon. Though with the big caveat that the data only goes back 20 years, it could be that the period between 2000 and 2010 was an abnormally smoke-less period." ] }, { "cell_type": "code", "execution_count": 7, "id": "e640fb8f-7866-425d-8f2f-56de61508e16", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip780\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip780)\" d=\"\n", "M0 1600 L2400 1600 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip781\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip780)\" d=\"\n", "M203.964 1423.18 L2352.76 1423.18 L2352.76 123.472 L203.964 123.472 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip782\">\n", " <rect x=\"203\" y=\"123\" width=\"2150\" height=\"1301\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 220.59,1423.18 220.59,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 783.043,1423.18 783.043,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1345.5,1423.18 1345.5,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1907.95,1423.18 1907.95,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,1423.18 2352.76,1423.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 220.59,1423.18 220.59,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 783.043,1423.18 783.043,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1345.5,1423.18 1345.5,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1907.95,1423.18 1907.95,1407.58 \n", " \"/>\n", "<path clip-path=\"url(#clip780)\" d=\"M92.3844 1479.92 L108.704 1479.92 L108.704 1483.85 L86.7594 1483.85 L86.7594 1479.92 Q89.4214 1477.16 94.0048 1472.53 Q98.6112 1467.88 99.7918 1466.54 Q102.037 1464.01 102.917 1462.28 Q103.82 1460.52 103.82 1458.83 Q103.82 1456.07 101.875 1454.34 Q99.9538 1452.6 96.852 1452.6 Q94.6529 1452.6 92.1992 1453.37 Q89.7687 1454.13 86.9909 1455.68 L86.9909 1450.96 Q89.815 1449.82 92.2687 1449.25 Q94.7223 1448.67 96.7594 1448.67 Q102.13 1448.67 105.324 1451.35 Q108.519 1454.04 108.519 1458.53 Q108.519 1460.66 107.708 1462.58 Q106.921 1464.48 104.815 1467.07 Q104.236 1467.74 101.134 1470.96 Q98.0325 1474.15 92.3844 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M128.518 1452.37 Q124.907 1452.37 123.079 1455.94 Q121.273 1459.48 121.273 1466.61 Q121.273 1473.71 123.079 1477.28 Q124.907 1480.82 128.518 1480.82 Q132.153 1480.82 133.958 1477.28 Q135.787 1473.71 135.787 1466.61 Q135.787 1459.48 133.958 1455.94 Q132.153 1452.37 128.518 1452.37 M128.518 1448.67 Q134.329 1448.67 137.384 1453.27 Q140.463 1457.86 140.463 1466.61 Q140.463 1475.33 137.384 1479.94 Q134.329 1484.52 128.518 1484.52 Q122.708 1484.52 119.63 1479.94 Q116.574 1475.33 116.574 1466.61 Q116.574 1457.86 119.63 1453.27 Q122.708 1448.67 128.518 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M158.68 1452.37 Q155.069 1452.37 153.241 1455.94 Q151.435 1459.48 151.435 1466.61 Q151.435 1473.71 153.241 1477.28 Q155.069 1480.82 158.68 1480.82 Q162.315 1480.82 164.12 1477.28 Q165.949 1473.71 165.949 1466.61 Q165.949 1459.48 164.12 1455.94 Q162.315 1452.37 158.68 1452.37 M158.68 1448.67 Q164.49 1448.67 167.546 1453.27 Q170.625 1457.86 170.625 1466.61 Q170.625 1475.33 167.546 1479.94 Q164.49 1484.52 158.68 1484.52 Q152.87 1484.52 149.791 1479.94 Q146.736 1475.33 146.736 1466.61 Q146.736 1457.86 149.791 1453.27 Q152.87 1448.67 158.68 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M179.652 1479.92 L187.291 1479.92 L187.291 1453.55 L178.981 1455.22 L178.981 1450.96 L187.245 1449.29 L191.921 1449.29 L191.921 1479.92 L199.56 1479.92 L199.56 1483.85 L179.652 1483.85 L179.652 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M206.25 1468.97 L218.726 1468.97 L218.726 1472.76 L206.25 1472.76 L206.25 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M236.11 1452.37 Q232.499 1452.37 230.671 1455.94 Q228.865 1459.48 228.865 1466.61 Q228.865 1473.71 230.671 1477.28 Q232.499 1480.82 236.11 1480.82 Q239.745 1480.82 241.55 1477.28 Q243.379 1473.71 243.379 1466.61 Q243.379 1459.48 241.55 1455.94 Q239.745 1452.37 236.11 1452.37 M236.11 1448.67 Q241.921 1448.67 244.976 1453.27 Q248.055 1457.86 248.055 1466.61 Q248.055 1475.33 244.976 1479.94 Q241.921 1484.52 236.11 1484.52 Q230.3 1484.52 227.222 1479.94 Q224.166 1475.33 224.166 1466.61 Q224.166 1457.86 227.222 1453.27 Q230.3 1448.67 236.11 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M257.083 1479.92 L264.721 1479.92 L264.721 1453.55 L256.411 1455.22 L256.411 1450.96 L264.675 1449.29 L269.351 1449.29 L269.351 1479.92 L276.99 1479.92 L276.99 1483.85 L257.083 1483.85 L257.083 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M283.68 1468.97 L296.156 1468.97 L296.156 1472.76 L283.68 1472.76 L283.68 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M313.541 1452.37 Q309.93 1452.37 308.101 1455.94 Q306.295 1459.48 306.295 1466.61 Q306.295 1473.71 308.101 1477.28 Q309.93 1480.82 313.541 1480.82 Q317.175 1480.82 318.98 1477.28 Q320.809 1473.71 320.809 1466.61 Q320.809 1459.48 318.98 1455.94 Q317.175 1452.37 313.541 1452.37 M313.541 1448.67 Q319.351 1448.67 322.406 1453.27 Q325.485 1457.86 325.485 1466.61 Q325.485 1475.33 322.406 1479.94 Q319.351 1484.52 313.541 1484.52 Q307.73 1484.52 304.652 1479.94 Q301.596 1475.33 301.596 1466.61 Q301.596 1457.86 304.652 1453.27 Q307.73 1448.67 313.541 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M334.513 1479.92 L342.152 1479.92 L342.152 1453.55 L333.841 1455.22 L333.841 1450.96 L342.105 1449.29 L346.781 1449.29 L346.781 1479.92 L354.42 1479.92 L354.42 1483.85 L334.513 1483.85 L334.513 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M654.838 1479.92 L671.157 1479.92 L671.157 1483.85 L649.213 1483.85 L649.213 1479.92 Q651.875 1477.16 656.458 1472.53 Q661.065 1467.88 662.245 1466.54 Q664.49 1464.01 665.37 1462.28 Q666.273 1460.52 666.273 1458.83 Q666.273 1456.07 664.328 1454.34 Q662.407 1452.6 659.305 1452.6 Q657.106 1452.6 654.653 1453.37 Q652.222 1454.13 649.444 1455.68 L649.444 1450.96 Q652.268 1449.82 654.722 1449.25 Q657.176 1448.67 659.213 1448.67 Q664.583 1448.67 667.777 1451.35 Q670.972 1454.04 670.972 1458.53 Q670.972 1460.66 670.162 1462.58 Q669.375 1464.48 667.268 1467.07 Q666.689 1467.74 663.588 1470.96 Q660.486 1474.15 654.838 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M690.972 1452.37 Q687.361 1452.37 685.532 1455.94 Q683.726 1459.48 683.726 1466.61 Q683.726 1473.71 685.532 1477.28 Q687.361 1480.82 690.972 1480.82 Q694.606 1480.82 696.412 1477.28 Q698.24 1473.71 698.24 1466.61 Q698.24 1459.48 696.412 1455.94 Q694.606 1452.37 690.972 1452.37 M690.972 1448.67 Q696.782 1448.67 699.837 1453.27 Q702.916 1457.86 702.916 1466.61 Q702.916 1475.33 699.837 1479.94 Q696.782 1484.52 690.972 1484.52 Q685.162 1484.52 682.083 1479.94 Q679.027 1475.33 679.027 1466.61 Q679.027 1457.86 682.083 1453.27 Q685.162 1448.67 690.972 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M721.134 1452.37 Q717.523 1452.37 715.694 1455.94 Q713.888 1459.48 713.888 1466.61 Q713.888 1473.71 715.694 1477.28 Q717.523 1480.82 721.134 1480.82 Q724.768 1480.82 726.573 1477.28 Q728.402 1473.71 728.402 1466.61 Q728.402 1459.48 726.573 1455.94 Q724.768 1452.37 721.134 1452.37 M721.134 1448.67 Q726.944 1448.67 729.999 1453.27 Q733.078 1457.86 733.078 1466.61 Q733.078 1475.33 729.999 1479.94 Q726.944 1484.52 721.134 1484.52 Q715.323 1484.52 712.245 1479.94 Q709.189 1475.33 709.189 1466.61 Q709.189 1457.86 712.245 1453.27 Q715.323 1448.67 721.134 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M751.874 1464.71 Q748.726 1464.71 746.874 1466.86 Q745.046 1469.01 745.046 1472.76 Q745.046 1476.49 746.874 1478.67 Q748.726 1480.82 751.874 1480.82 Q755.022 1480.82 756.851 1478.67 Q758.703 1476.49 758.703 1472.76 Q758.703 1469.01 756.851 1466.86 Q755.022 1464.71 751.874 1464.71 M761.157 1450.06 L761.157 1454.31 Q759.397 1453.48 757.592 1453.04 Q755.809 1452.6 754.05 1452.6 Q749.421 1452.6 746.967 1455.73 Q744.536 1458.85 744.189 1465.17 Q745.555 1463.16 747.615 1462.09 Q749.675 1461 752.152 1461 Q757.36 1461 760.37 1464.18 Q763.402 1467.32 763.402 1472.76 Q763.402 1478.09 760.254 1481.31 Q757.106 1484.52 751.874 1484.52 Q745.879 1484.52 742.708 1479.94 Q739.536 1475.33 739.536 1466.61 Q739.536 1458.41 743.425 1453.55 Q747.314 1448.67 753.865 1448.67 Q755.624 1448.67 757.407 1449.01 Q759.212 1449.36 761.157 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M768.703 1468.97 L781.18 1468.97 L781.18 1472.76 L768.703 1472.76 L768.703 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M798.564 1452.37 Q794.953 1452.37 793.124 1455.94 Q791.318 1459.48 791.318 1466.61 Q791.318 1473.71 793.124 1477.28 Q794.953 1480.82 798.564 1480.82 Q802.198 1480.82 804.004 1477.28 Q805.832 1473.71 805.832 1466.61 Q805.832 1459.48 804.004 1455.94 Q802.198 1452.37 798.564 1452.37 M798.564 1448.67 Q804.374 1448.67 807.429 1453.27 Q810.508 1457.86 810.508 1466.61 Q810.508 1475.33 807.429 1479.94 Q804.374 1484.52 798.564 1484.52 Q792.754 1484.52 789.675 1479.94 Q786.619 1475.33 786.619 1466.61 Q786.619 1457.86 789.675 1453.27 Q792.754 1448.67 798.564 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M819.536 1479.92 L827.175 1479.92 L827.175 1453.55 L818.865 1455.22 L818.865 1450.96 L827.128 1449.29 L831.804 1449.29 L831.804 1479.92 L839.443 1479.92 L839.443 1483.85 L819.536 1483.85 L819.536 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M846.133 1468.97 L858.61 1468.97 L858.61 1472.76 L846.133 1472.76 L846.133 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M875.994 1452.37 Q872.383 1452.37 870.554 1455.94 Q868.749 1459.48 868.749 1466.61 Q868.749 1473.71 870.554 1477.28 Q872.383 1480.82 875.994 1480.82 Q879.628 1480.82 881.434 1477.28 Q883.262 1473.71 883.262 1466.61 Q883.262 1459.48 881.434 1455.94 Q879.628 1452.37 875.994 1452.37 M875.994 1448.67 Q881.804 1448.67 884.86 1453.27 Q887.938 1457.86 887.938 1466.61 Q887.938 1475.33 884.86 1479.94 Q881.804 1484.52 875.994 1484.52 Q870.184 1484.52 867.105 1479.94 Q864.05 1475.33 864.05 1466.61 Q864.05 1457.86 867.105 1453.27 Q870.184 1448.67 875.994 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M896.966 1479.92 L904.605 1479.92 L904.605 1453.55 L896.295 1455.22 L896.295 1450.96 L904.559 1449.29 L909.234 1449.29 L909.234 1479.92 L916.873 1479.92 L916.873 1483.85 L896.966 1483.85 L896.966 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1217.29 1479.92 L1233.61 1479.92 L1233.61 1483.85 L1211.67 1483.85 L1211.67 1479.92 Q1214.33 1477.16 1218.91 1472.53 Q1223.52 1467.88 1224.7 1466.54 Q1226.94 1464.01 1227.82 1462.28 Q1228.73 1460.52 1228.73 1458.83 Q1228.73 1456.07 1226.78 1454.34 Q1224.86 1452.6 1221.76 1452.6 Q1219.56 1452.6 1217.11 1453.37 Q1214.68 1454.13 1211.9 1455.68 L1211.9 1450.96 Q1214.72 1449.82 1217.18 1449.25 Q1219.63 1448.67 1221.67 1448.67 Q1227.04 1448.67 1230.23 1451.35 Q1233.43 1454.04 1233.43 1458.53 Q1233.43 1460.66 1232.61 1462.58 Q1231.83 1464.48 1229.72 1467.07 Q1229.14 1467.74 1226.04 1470.96 Q1222.94 1474.15 1217.29 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1253.43 1452.37 Q1249.81 1452.37 1247.99 1455.94 Q1246.18 1459.48 1246.18 1466.61 Q1246.18 1473.71 1247.99 1477.28 Q1249.81 1480.82 1253.43 1480.82 Q1257.06 1480.82 1258.86 1477.28 Q1260.69 1473.71 1260.69 1466.61 Q1260.69 1459.48 1258.86 1455.94 Q1257.06 1452.37 1253.43 1452.37 M1253.43 1448.67 Q1259.24 1448.67 1262.29 1453.27 Q1265.37 1457.86 1265.37 1466.61 Q1265.37 1475.33 1262.29 1479.94 Q1259.24 1484.52 1253.43 1484.52 Q1247.61 1484.52 1244.54 1479.94 Q1241.48 1475.33 1241.48 1466.61 Q1241.48 1457.86 1244.54 1453.27 Q1247.61 1448.67 1253.43 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1274.4 1479.92 L1282.04 1479.92 L1282.04 1453.55 L1273.73 1455.22 L1273.73 1450.96 L1281.99 1449.29 L1286.67 1449.29 L1286.67 1479.92 L1294.3 1479.92 L1294.3 1483.85 L1274.4 1483.85 L1274.4 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1304.56 1479.92 L1312.2 1479.92 L1312.2 1453.55 L1303.89 1455.22 L1303.89 1450.96 L1312.15 1449.29 L1316.83 1449.29 L1316.83 1479.92 L1324.47 1479.92 L1324.47 1483.85 L1304.56 1483.85 L1304.56 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1331.16 1468.97 L1343.63 1468.97 L1343.63 1472.76 L1331.16 1472.76 L1331.16 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1361.02 1452.37 Q1357.41 1452.37 1355.58 1455.94 Q1353.77 1459.48 1353.77 1466.61 Q1353.77 1473.71 1355.58 1477.28 Q1357.41 1480.82 1361.02 1480.82 Q1364.65 1480.82 1366.46 1477.28 Q1368.29 1473.71 1368.29 1466.61 Q1368.29 1459.48 1366.46 1455.94 Q1364.65 1452.37 1361.02 1452.37 M1361.02 1448.67 Q1366.83 1448.67 1369.88 1453.27 Q1372.96 1457.86 1372.96 1466.61 Q1372.96 1475.33 1369.88 1479.94 Q1366.83 1484.52 1361.02 1484.52 Q1355.21 1484.52 1352.13 1479.94 Q1349.07 1475.33 1349.07 1466.61 Q1349.07 1457.86 1352.13 1453.27 Q1355.21 1448.67 1361.02 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1381.99 1479.92 L1389.63 1479.92 L1389.63 1453.55 L1381.32 1455.22 L1381.32 1450.96 L1389.58 1449.29 L1394.26 1449.29 L1394.26 1479.92 L1401.9 1479.92 L1401.9 1483.85 L1381.99 1483.85 L1381.99 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1408.59 1468.97 L1421.06 1468.97 L1421.06 1472.76 L1408.59 1472.76 L1408.59 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1438.45 1452.37 Q1434.84 1452.37 1433.01 1455.94 Q1431.2 1459.48 1431.2 1466.61 Q1431.2 1473.71 1433.01 1477.28 Q1434.84 1480.82 1438.45 1480.82 Q1442.08 1480.82 1443.89 1477.28 Q1445.72 1473.71 1445.72 1466.61 Q1445.72 1459.48 1443.89 1455.94 Q1442.08 1452.37 1438.45 1452.37 M1438.45 1448.67 Q1444.26 1448.67 1447.31 1453.27 Q1450.39 1457.86 1450.39 1466.61 Q1450.39 1475.33 1447.31 1479.94 Q1444.26 1484.52 1438.45 1484.52 Q1432.64 1484.52 1429.56 1479.94 Q1426.5 1475.33 1426.5 1466.61 Q1426.5 1457.86 1429.56 1453.27 Q1432.64 1448.67 1438.45 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1459.42 1479.92 L1467.06 1479.92 L1467.06 1453.55 L1458.75 1455.22 L1458.75 1450.96 L1467.01 1449.29 L1471.69 1449.29 L1471.69 1479.92 L1479.33 1479.92 L1479.33 1483.85 L1459.42 1483.85 L1459.42 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1779.74 1479.92 L1796.06 1479.92 L1796.06 1483.85 L1774.12 1483.85 L1774.12 1479.92 Q1776.78 1477.16 1781.36 1472.53 Q1785.97 1467.88 1787.15 1466.54 Q1789.4 1464.01 1790.28 1462.28 Q1791.18 1460.52 1791.18 1458.83 Q1791.18 1456.07 1789.23 1454.34 Q1787.31 1452.6 1784.21 1452.6 Q1782.01 1452.6 1779.56 1453.37 Q1777.13 1454.13 1774.35 1455.68 L1774.35 1450.96 Q1777.17 1449.82 1779.63 1449.25 Q1782.08 1448.67 1784.12 1448.67 Q1789.49 1448.67 1792.68 1451.35 Q1795.88 1454.04 1795.88 1458.53 Q1795.88 1460.66 1795.07 1462.58 Q1794.28 1464.48 1792.17 1467.07 Q1791.6 1467.74 1788.49 1470.96 Q1785.39 1474.15 1779.74 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1815.88 1452.37 Q1812.27 1452.37 1810.44 1455.94 Q1808.63 1459.48 1808.63 1466.61 Q1808.63 1473.71 1810.44 1477.28 Q1812.27 1480.82 1815.88 1480.82 Q1819.51 1480.82 1821.32 1477.28 Q1823.15 1473.71 1823.15 1466.61 Q1823.15 1459.48 1821.32 1455.94 Q1819.51 1452.37 1815.88 1452.37 M1815.88 1448.67 Q1821.69 1448.67 1824.74 1453.27 Q1827.82 1457.86 1827.82 1466.61 Q1827.82 1475.33 1824.74 1479.94 Q1821.69 1484.52 1815.88 1484.52 Q1810.07 1484.52 1806.99 1479.94 Q1803.93 1475.33 1803.93 1466.61 Q1803.93 1457.86 1806.99 1453.27 Q1810.07 1448.67 1815.88 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1836.85 1479.92 L1844.49 1479.92 L1844.49 1453.55 L1836.18 1455.22 L1836.18 1450.96 L1844.44 1449.29 L1849.12 1449.29 L1849.12 1479.92 L1856.76 1479.92 L1856.76 1483.85 L1836.85 1483.85 L1836.85 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1876.78 1464.71 Q1873.63 1464.71 1871.78 1466.86 Q1869.95 1469.01 1869.95 1472.76 Q1869.95 1476.49 1871.78 1478.67 Q1873.63 1480.82 1876.78 1480.82 Q1879.93 1480.82 1881.76 1478.67 Q1883.61 1476.49 1883.61 1472.76 Q1883.61 1469.01 1881.76 1466.86 Q1879.93 1464.71 1876.78 1464.71 M1886.06 1450.06 L1886.06 1454.31 Q1884.3 1453.48 1882.5 1453.04 Q1880.72 1452.6 1878.96 1452.6 Q1874.33 1452.6 1871.87 1455.73 Q1869.44 1458.85 1869.1 1465.17 Q1870.46 1463.16 1872.52 1462.09 Q1874.58 1461 1877.06 1461 Q1882.27 1461 1885.28 1464.18 Q1888.31 1467.32 1888.31 1472.76 Q1888.31 1478.09 1885.16 1481.31 Q1882.01 1484.52 1876.78 1484.52 Q1870.79 1484.52 1867.61 1479.94 Q1864.44 1475.33 1864.44 1466.61 Q1864.44 1458.41 1868.33 1453.55 Q1872.22 1448.67 1878.77 1448.67 Q1880.53 1448.67 1882.31 1449.01 Q1884.12 1449.36 1886.06 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1893.61 1468.97 L1906.09 1468.97 L1906.09 1472.76 L1893.61 1472.76 L1893.61 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1923.47 1452.37 Q1919.86 1452.37 1918.03 1455.94 Q1916.23 1459.48 1916.23 1466.61 Q1916.23 1473.71 1918.03 1477.28 Q1919.86 1480.82 1923.47 1480.82 Q1927.1 1480.82 1928.91 1477.28 Q1930.74 1473.71 1930.74 1466.61 Q1930.74 1459.48 1928.91 1455.94 Q1927.1 1452.37 1923.47 1452.37 M1923.47 1448.67 Q1929.28 1448.67 1932.34 1453.27 Q1935.41 1457.86 1935.41 1466.61 Q1935.41 1475.33 1932.34 1479.94 Q1929.28 1484.52 1923.47 1484.52 Q1917.66 1484.52 1914.58 1479.94 Q1911.53 1475.33 1911.53 1466.61 Q1911.53 1457.86 1914.58 1453.27 Q1917.66 1448.67 1923.47 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1944.44 1479.92 L1952.08 1479.92 L1952.08 1453.55 L1943.77 1455.22 L1943.77 1450.96 L1952.04 1449.29 L1956.71 1449.29 L1956.71 1479.92 L1964.35 1479.92 L1964.35 1483.85 L1944.44 1483.85 L1944.44 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1971.04 1468.97 L1983.52 1468.97 L1983.52 1472.76 L1971.04 1472.76 L1971.04 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2000.9 1452.37 Q1997.29 1452.37 1995.46 1455.94 Q1993.66 1459.48 1993.66 1466.61 Q1993.66 1473.71 1995.46 1477.28 Q1997.29 1480.82 2000.9 1480.82 Q2004.53 1480.82 2006.34 1477.28 Q2008.17 1473.71 2008.17 1466.61 Q2008.17 1459.48 2006.34 1455.94 Q2004.53 1452.37 2000.9 1452.37 M2000.9 1448.67 Q2006.71 1448.67 2009.77 1453.27 Q2012.84 1457.86 2012.84 1466.61 Q2012.84 1475.33 2009.77 1479.94 Q2006.71 1484.52 2000.9 1484.52 Q1995.09 1484.52 1992.01 1479.94 Q1988.96 1475.33 1988.96 1466.61 Q1988.96 1457.86 1992.01 1453.27 Q1995.09 1448.67 2000.9 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2021.87 1479.92 L2029.51 1479.92 L2029.51 1453.55 L2021.2 1455.22 L2021.2 1450.96 L2029.47 1449.29 L2034.14 1449.29 L2034.14 1479.92 L2041.78 1479.92 L2041.78 1483.85 L2021.87 1483.85 L2021.87 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1211.82 1525.81 L1211.82 1562.76 L1219.59 1562.76 Q1229.42 1562.76 1233.97 1558.3 Q1238.56 1553.85 1238.56 1544.24 Q1238.56 1534.69 1233.97 1530.26 Q1229.42 1525.81 1219.59 1525.81 L1211.82 1525.81 M1205.39 1520.52 L1218.6 1520.52 Q1232.42 1520.52 1238.88 1526.28 Q1245.34 1532.01 1245.34 1544.24 Q1245.34 1556.52 1238.84 1562.28 Q1232.35 1568.04 1218.6 1568.04 L1205.39 1568.04 L1205.39 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1271.53 1550.12 Q1264.43 1550.12 1261.7 1551.75 Q1258.96 1553.37 1258.96 1557.29 Q1258.96 1560.4 1261 1562.25 Q1263.07 1564.07 1266.6 1564.07 Q1271.47 1564.07 1274.4 1560.63 Q1277.36 1557.16 1277.36 1551.43 L1277.36 1550.12 L1271.53 1550.12 M1283.21 1547.71 L1283.21 1568.04 L1277.36 1568.04 L1277.36 1562.63 Q1275.35 1565.88 1272.36 1567.44 Q1269.37 1568.97 1265.04 1568.97 Q1259.56 1568.97 1256.32 1565.91 Q1253.1 1562.82 1253.1 1557.67 Q1253.1 1551.65 1257.11 1548.6 Q1261.16 1545.54 1269.15 1545.54 L1277.36 1545.54 L1277.36 1544.97 Q1277.36 1540.93 1274.68 1538.73 Q1272.04 1536.5 1267.24 1536.5 Q1264.18 1536.5 1261.28 1537.23 Q1258.39 1537.97 1255.71 1539.43 L1255.71 1534.02 Q1258.93 1532.78 1261.95 1532.17 Q1264.98 1531.54 1267.84 1531.54 Q1275.57 1531.54 1279.39 1535.55 Q1283.21 1539.56 1283.21 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1301.07 1522.27 L1301.07 1532.4 L1313.13 1532.4 L1313.13 1536.95 L1301.07 1536.95 L1301.07 1556.3 Q1301.07 1560.66 1302.25 1561.9 Q1303.46 1563.14 1307.12 1563.14 L1313.13 1563.14 L1313.13 1568.04 L1307.12 1568.04 Q1300.34 1568.04 1297.76 1565.53 Q1295.18 1562.98 1295.18 1556.3 L1295.18 1536.95 L1290.88 1536.95 L1290.88 1532.4 L1295.18 1532.4 L1295.18 1522.27 L1301.07 1522.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1351.33 1548.76 L1351.33 1551.62 L1324.4 1551.62 Q1324.78 1557.67 1328.03 1560.85 Q1331.31 1564 1337.13 1564 Q1340.5 1564 1343.66 1563.17 Q1346.84 1562.35 1349.96 1560.69 L1349.96 1566.23 Q1346.81 1567.57 1343.5 1568.27 Q1340.19 1568.97 1336.78 1568.97 Q1328.25 1568.97 1323.25 1564 Q1318.29 1559.04 1318.29 1550.57 Q1318.29 1541.82 1323 1536.69 Q1327.74 1531.54 1335.76 1531.54 Q1342.96 1531.54 1347.13 1536.18 Q1351.33 1540.8 1351.33 1548.76 M1345.47 1547.04 Q1345.41 1542.23 1342.76 1539.37 Q1340.15 1536.5 1335.83 1536.5 Q1330.92 1536.5 1327.96 1539.27 Q1325.04 1542.04 1324.59 1547.07 L1345.47 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 203.964,1196.97 2352.76,1196.97 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 203.964,961.177 2352.76,961.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 203.964,725.381 2352.76,725.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 203.964,489.585 2352.76,489.585 \n", " \"/>\n", "<polyline clip-path=\"url(#clip782)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 203.964,253.789 2352.76,253.789 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,1423.18 203.964,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,1196.97 229.749,1196.97 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,961.177 229.749,961.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,725.381 229.749,725.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,489.585 229.749,489.585 \n", " \"/>\n", "<polyline clip-path=\"url(#clip780)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 203.964,253.789 229.749,253.789 \n", " \"/>\n", "<path clip-path=\"url(#clip780)\" d=\"M147.061 1179.69 L165.417 1179.69 L165.417 1183.63 L151.343 1183.63 L151.343 1192.1 Q152.362 1191.75 153.38 1191.59 Q154.399 1191.41 155.417 1191.41 Q161.204 1191.41 164.584 1194.58 Q167.964 1197.75 167.964 1203.16 Q167.964 1208.74 164.491 1211.85 Q161.019 1214.92 154.7 1214.92 Q152.524 1214.92 150.255 1214.55 Q148.01 1214.18 145.603 1213.44 L145.603 1208.74 Q147.686 1209.88 149.908 1210.43 Q152.13 1210.99 154.607 1210.99 Q158.612 1210.99 160.95 1208.88 Q163.288 1206.78 163.288 1203.16 Q163.288 1199.55 160.95 1197.45 Q158.612 1195.34 154.607 1195.34 Q152.732 1195.34 150.857 1195.76 Q149.005 1196.17 147.061 1197.05 L147.061 1179.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M116.668 974.522 L124.306 974.522 L124.306 948.156 L115.996 949.823 L115.996 945.563 L124.26 943.897 L128.936 943.897 L128.936 974.522 L136.575 974.522 L136.575 978.457 L116.668 978.457 L116.668 974.522 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M156.019 946.976 Q152.408 946.976 150.579 950.54 Q148.774 954.082 148.774 961.212 Q148.774 968.318 150.579 971.883 Q152.408 975.424 156.019 975.424 Q159.653 975.424 161.459 971.883 Q163.288 968.318 163.288 961.212 Q163.288 954.082 161.459 950.54 Q159.653 946.976 156.019 946.976 M156.019 943.272 Q161.829 943.272 164.885 947.878 Q167.964 952.462 167.964 961.212 Q167.964 969.938 164.885 974.545 Q161.829 979.128 156.019 979.128 Q150.209 979.128 147.13 974.545 Q144.075 969.938 144.075 961.212 Q144.075 952.462 147.13 947.878 Q150.209 943.272 156.019 943.272 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M117.663 738.726 L125.302 738.726 L125.302 712.36 L116.992 714.027 L116.992 709.767 L125.255 708.101 L129.931 708.101 L129.931 738.726 L137.57 738.726 L137.57 742.661 L117.663 742.661 L117.663 738.726 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M147.061 708.101 L165.417 708.101 L165.417 712.036 L151.343 712.036 L151.343 720.508 Q152.362 720.161 153.38 719.999 Q154.399 719.814 155.417 719.814 Q161.204 719.814 164.584 722.985 Q167.964 726.156 167.964 731.573 Q167.964 737.152 164.491 740.253 Q161.019 743.332 154.7 743.332 Q152.524 743.332 150.255 742.962 Q148.01 742.591 145.603 741.851 L145.603 737.152 Q147.686 738.286 149.908 738.841 Q152.13 739.397 154.607 739.397 Q158.612 739.397 160.95 737.29 Q163.288 735.184 163.288 731.573 Q163.288 727.962 160.95 725.855 Q158.612 723.749 154.607 723.749 Q152.732 723.749 150.857 724.166 Q149.005 724.582 147.061 725.462 L147.061 708.101 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M119.885 502.93 L136.204 502.93 L136.204 506.865 L114.26 506.865 L114.26 502.93 Q116.922 500.175 121.505 495.545 Q126.112 490.893 127.292 489.55 Q129.538 487.027 130.417 485.291 Q131.32 483.532 131.32 481.842 Q131.32 479.087 129.376 477.351 Q127.455 475.615 124.353 475.615 Q122.154 475.615 119.7 476.379 Q117.269 477.143 114.492 478.694 L114.492 473.971 Q117.316 472.837 119.769 472.258 Q122.223 471.68 124.26 471.68 Q129.63 471.68 132.825 474.365 Q136.019 477.05 136.019 481.541 Q136.019 483.67 135.209 485.592 Q134.422 487.49 132.316 490.082 Q131.737 490.754 128.635 493.971 Q125.533 497.166 119.885 502.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M156.019 475.383 Q152.408 475.383 150.579 478.948 Q148.774 482.49 148.774 489.619 Q148.774 496.726 150.579 500.291 Q152.408 503.832 156.019 503.832 Q159.653 503.832 161.459 500.291 Q163.288 496.726 163.288 489.619 Q163.288 482.49 161.459 478.948 Q159.653 475.383 156.019 475.383 M156.019 471.68 Q161.829 471.68 164.885 476.286 Q167.964 480.87 167.964 489.619 Q167.964 498.346 164.885 502.953 Q161.829 507.536 156.019 507.536 Q150.209 507.536 147.13 502.953 Q144.075 498.346 144.075 489.619 Q144.075 480.87 147.13 476.286 Q150.209 471.68 156.019 471.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M120.88 267.134 L137.2 267.134 L137.2 271.069 L115.256 271.069 L115.256 267.134 Q117.918 264.379 122.501 259.749 Q127.107 255.097 128.288 253.754 Q130.533 251.231 131.413 249.495 Q132.316 247.736 132.316 246.046 Q132.316 243.291 130.371 241.555 Q128.45 239.819 125.348 239.819 Q123.149 239.819 120.695 240.583 Q118.265 241.347 115.487 242.898 L115.487 238.175 Q118.311 237.041 120.765 236.462 Q123.218 235.884 125.255 235.884 Q130.626 235.884 133.82 238.569 Q137.015 241.254 137.015 245.745 Q137.015 247.874 136.204 249.796 Q135.417 251.694 133.311 254.286 Q132.732 254.958 129.63 258.175 Q126.529 261.37 120.88 267.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M147.061 236.509 L165.417 236.509 L165.417 240.444 L151.343 240.444 L151.343 248.916 Q152.362 248.569 153.38 248.407 Q154.399 248.222 155.417 248.222 Q161.204 248.222 164.584 251.393 Q167.964 254.564 167.964 259.981 Q167.964 265.56 164.491 268.661 Q161.019 271.74 154.7 271.74 Q152.524 271.74 150.255 271.37 Q148.01 270.999 145.603 270.259 L145.603 265.56 Q147.686 266.694 149.908 267.249 Q152.13 267.805 154.607 267.805 Q158.612 267.805 160.95 265.698 Q163.288 263.592 163.288 259.981 Q163.288 256.37 160.95 254.263 Q158.612 252.157 154.607 252.157 Q152.732 252.157 150.857 252.573 Q149.005 252.99 147.061 253.87 L147.061 236.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M21.7677 1016.02 L58.7206 1016.02 L58.7206 1008.25 Q58.7206 998.417 54.2646 993.866 Q49.8086 989.283 40.1964 989.283 Q30.6479 989.283 26.2237 993.866 Q21.7677 998.417 21.7677 1008.25 L21.7677 1016.02 M16.4842 1022.45 L16.4842 1009.24 Q16.4842 995.425 22.2451 988.964 Q27.9743 982.503 40.1964 982.503 Q52.4822 982.503 58.2432 988.996 Q64.0042 995.489 64.0042 1009.24 L64.0042 1022.45 L16.4842 1022.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M49.9359 973.114 L28.3562 973.114 L28.3562 967.257 L49.7131 967.257 Q54.7739 967.257 57.3202 965.284 Q59.8346 963.31 59.8346 959.364 Q59.8346 954.621 56.8109 951.884 Q53.7872 949.115 48.5673 949.115 L28.3562 949.115 L28.3562 943.259 L64.0042 943.259 L64.0042 949.115 L58.5296 949.115 Q61.7762 951.247 63.3676 954.08 Q64.9272 956.881 64.9272 960.605 Q64.9272 966.748 61.1078 969.931 Q57.2883 973.114 49.9359 973.114 M27.4968 958.377 L27.4968 958.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M33.8307 910.539 Q33.2578 911.525 33.0032 912.703 Q32.7167 913.849 32.7167 915.249 Q32.7167 920.215 35.9632 922.888 Q39.1779 925.53 45.2253 925.53 L64.0042 925.53 L64.0042 931.418 L28.3562 931.418 L28.3562 925.53 L33.8944 925.53 Q30.6479 923.684 29.0883 920.724 Q27.4968 917.764 27.4968 913.531 Q27.4968 912.926 27.5923 912.194 Q27.656 911.462 27.8151 910.571 L33.8307 910.539 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M46.0847 888.195 Q46.0847 895.293 47.7079 898.03 Q49.3312 900.767 53.2461 900.767 Q56.3653 900.767 58.2114 898.73 Q60.0256 896.662 60.0256 893.129 Q60.0256 888.259 56.5881 885.331 Q53.1188 882.371 47.3897 882.371 L46.0847 882.371 L46.0847 888.195 M43.6657 876.514 L64.0042 876.514 L64.0042 882.371 L58.5933 882.371 Q61.8398 884.376 63.3994 887.368 Q64.9272 890.36 64.9272 894.688 Q64.9272 900.163 61.8716 903.409 Q58.7843 906.624 53.6281 906.624 Q47.6125 906.624 44.5569 902.613 Q41.5014 898.571 41.5014 890.582 L41.5014 882.371 L40.9285 882.371 Q36.8862 882.371 34.6901 885.044 Q32.4621 887.686 32.4621 892.492 Q32.4621 895.548 33.1941 898.444 Q33.9262 901.34 35.3903 904.014 L29.9795 904.014 Q28.7381 900.799 28.1334 897.776 Q27.4968 894.752 27.4968 891.887 Q27.4968 884.153 31.5072 880.334 Q35.5176 876.514 43.6657 876.514 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M18.2347 858.658 L28.3562 858.658 L28.3562 846.595 L32.9077 846.595 L32.9077 858.658 L52.2594 858.658 Q56.6199 858.658 57.8613 857.481 Q59.1026 856.271 59.1026 852.611 L59.1026 846.595 L64.0042 846.595 L64.0042 852.611 Q64.0042 859.39 61.4897 861.968 Q58.9434 864.547 52.2594 864.547 L32.9077 864.547 L32.9077 868.843 L28.3562 868.843 L28.3562 864.547 L18.2347 864.547 L18.2347 858.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M28.3562 838.893 L28.3562 833.036 L64.0042 833.036 L64.0042 838.893 L28.3562 838.893 M14.479 838.893 L14.479 833.036 L21.895 833.036 L21.895 838.893 L14.479 838.893 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M32.4621 806.969 Q32.4621 811.679 36.1542 814.417 Q39.8145 817.154 46.212 817.154 Q52.6095 817.154 56.3017 814.448 Q59.9619 811.711 59.9619 806.969 Q59.9619 802.29 56.2698 799.553 Q52.5777 796.815 46.212 796.815 Q39.8781 796.815 36.186 799.553 Q32.4621 802.29 32.4621 806.969 M27.4968 806.969 Q27.4968 799.33 32.4621 794.969 Q37.4273 790.609 46.212 790.609 Q54.9649 790.609 59.9619 794.969 Q64.9272 799.33 64.9272 806.969 Q64.9272 814.639 59.9619 819 Q54.9649 823.329 46.212 823.329 Q37.4273 823.329 32.4621 819 Q27.4968 814.639 27.4968 806.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M42.4881 751.269 L64.0042 751.269 L64.0042 757.125 L42.679 757.125 Q37.6183 757.125 35.1038 759.099 Q32.5894 761.072 32.5894 765.019 Q32.5894 769.761 35.6131 772.498 Q38.6368 775.236 43.8567 775.236 L64.0042 775.236 L64.0042 781.124 L28.3562 781.124 L28.3562 775.236 L33.8944 775.236 Q30.6797 773.135 29.0883 770.302 Q27.4968 767.438 27.4968 763.714 Q27.4968 757.571 31.3163 754.42 Q35.1038 751.269 42.4881 751.269 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M55.9197 738.092 L55.9197 731.376 L61.3942 731.376 L71.5793 736.596 L71.5793 740.702 L61.3942 738.092 L55.9197 738.092 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M42.4881 668.515 L64.0042 668.515 L64.0042 674.371 L42.679 674.371 Q37.6183 674.371 35.1038 676.344 Q32.5894 678.318 32.5894 682.265 Q32.5894 687.007 35.6131 689.744 Q38.6368 692.482 43.8567 692.482 L64.0042 692.482 L64.0042 698.37 L14.479 698.37 L14.479 692.482 L33.8944 692.482 Q30.6797 690.381 29.0883 687.548 Q27.4968 684.684 27.4968 680.96 Q27.4968 674.817 31.3163 671.666 Q35.1038 668.515 42.4881 668.515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M32.4621 643.02 Q32.4621 647.731 36.1542 650.468 Q39.8145 653.205 46.212 653.205 Q52.6095 653.205 56.3017 650.5 Q59.9619 647.762 59.9619 643.02 Q59.9619 638.341 56.2698 635.604 Q52.5777 632.867 46.212 632.867 Q39.8781 632.867 36.186 635.604 Q32.4621 638.341 32.4621 643.02 M27.4968 643.02 Q27.4968 635.381 32.4621 631.021 Q37.4273 626.66 46.212 626.66 Q54.9649 626.66 59.9619 631.021 Q64.9272 635.381 64.9272 643.02 Q64.9272 650.691 59.9619 655.051 Q54.9649 659.38 46.212 659.38 Q37.4273 659.38 32.4621 655.051 Q27.4968 650.691 27.4968 643.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M49.9359 617.557 L28.3562 617.557 L28.3562 611.701 L49.7131 611.701 Q54.7739 611.701 57.3202 609.727 Q59.8346 607.754 59.8346 603.807 Q59.8346 599.065 56.8109 596.328 Q53.7872 593.558 48.5673 593.558 L28.3562 593.558 L28.3562 587.702 L64.0042 587.702 L64.0042 593.558 L58.5296 593.558 Q61.7762 595.691 63.3676 598.524 Q64.9272 601.325 64.9272 605.049 Q64.9272 611.191 61.1078 614.374 Q57.2883 617.557 49.9359 617.557 M27.4968 602.821 L27.4968 602.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M33.8307 554.982 Q33.2578 555.969 33.0032 557.147 Q32.7167 558.292 32.7167 559.693 Q32.7167 564.658 35.9632 567.332 Q39.1779 569.973 45.2253 569.973 L64.0042 569.973 L64.0042 575.862 L28.3562 575.862 L28.3562 569.973 L33.8944 569.973 Q30.6479 568.127 29.0883 565.167 Q27.4968 562.207 27.4968 557.974 Q27.4968 557.369 27.5923 556.637 Q27.656 555.905 27.8151 555.014 L33.8307 554.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M29.4065 526.114 L34.9447 526.114 Q33.6716 528.596 33.035 531.27 Q32.3984 533.944 32.3984 536.808 Q32.3984 541.169 33.7352 543.365 Q35.072 545.529 37.7456 545.529 Q39.7826 545.529 40.9603 543.97 Q42.1061 542.41 43.1565 537.699 L43.6021 535.694 Q44.9389 529.456 47.3897 526.846 Q49.8086 524.204 54.1691 524.204 Q59.1344 524.204 62.0308 528.151 Q64.9272 532.066 64.9272 538.941 Q64.9272 541.805 64.3543 544.924 Q63.8132 548.012 62.6992 551.449 L56.6518 551.449 Q58.3387 548.203 59.198 545.052 Q60.0256 541.901 60.0256 538.813 Q60.0256 534.676 58.6251 532.448 Q57.1929 530.22 54.6147 530.22 Q52.2276 530.22 50.9545 531.843 Q49.6813 533.434 48.5037 538.877 L48.0262 540.914 Q46.8804 546.357 44.5251 548.776 Q42.138 551.195 38.0002 551.195 Q32.9713 551.195 30.2341 547.63 Q27.4968 544.065 27.4968 537.508 Q27.4968 534.262 27.9743 531.397 Q28.4517 528.533 29.4065 526.114 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M302.943 12.096 L341.183 12.096 L341.183 18.9825 L311.125 18.9825 L311.125 36.8875 L339.927 36.8875 L339.927 43.7741 L311.125 43.7741 L311.125 65.6895 L341.912 65.6895 L341.912 72.576 L302.943 72.576 L302.943 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M392.751 27.2059 L376.345 49.2833 L393.602 72.576 L384.811 72.576 L371.605 54.752 L358.399 72.576 L349.609 72.576 L367.23 48.8377 L351.108 27.2059 L359.898 27.2059 L371.929 43.369 L383.961 27.2059 L392.751 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M435.326 28.9478 L435.326 35.9153 Q432.166 34.1734 428.966 33.3227 Q425.806 32.4315 422.566 32.4315 Q415.315 32.4315 411.304 37.0496 Q407.294 41.6271 407.294 49.9314 Q407.294 58.2358 411.304 62.8538 Q415.315 67.4314 422.566 67.4314 Q425.806 67.4314 428.966 66.5807 Q432.166 65.6895 435.326 63.9476 L435.326 70.8341 Q432.207 72.2924 428.845 73.0216 Q425.523 73.7508 421.756 73.7508 Q411.507 73.7508 405.471 67.3098 Q399.435 60.8689 399.435 49.9314 Q399.435 38.832 405.511 32.472 Q411.628 26.1121 422.242 26.1121 Q425.685 26.1121 428.966 26.8413 Q432.247 27.5299 435.326 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M487.097 48.0275 L487.097 51.6733 L452.826 51.6733 Q453.312 59.3701 457.444 63.421 Q461.616 67.4314 469.03 67.4314 Q473.324 67.4314 477.334 66.3781 Q481.385 65.3249 485.355 63.2184 L485.355 70.267 Q481.344 71.9684 477.131 72.8596 Q472.918 73.7508 468.584 73.7508 Q457.728 73.7508 451.368 67.4314 Q445.048 61.1119 445.048 50.3365 Q445.048 39.1965 451.044 32.6746 Q457.079 26.1121 467.288 26.1121 Q476.443 26.1121 481.749 32.0264 Q487.097 37.9003 487.097 48.0275 M479.643 45.84 Q479.562 39.7232 476.2 36.0774 Q472.878 32.4315 467.369 32.4315 Q461.13 32.4315 457.363 35.9558 Q453.636 39.4801 453.069 45.8805 L479.643 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M538.138 48.0275 L538.138 51.6733 L503.867 51.6733 Q504.353 59.3701 508.485 63.421 Q512.658 67.4314 520.071 67.4314 Q524.365 67.4314 528.375 66.3781 Q532.426 65.3249 536.396 63.2184 L536.396 70.267 Q532.386 71.9684 528.173 72.8596 Q523.96 73.7508 519.625 73.7508 Q508.769 73.7508 502.409 67.4314 Q496.09 61.1119 496.09 50.3365 Q496.09 39.1965 502.085 32.6746 Q508.121 26.1121 518.329 26.1121 Q527.484 26.1121 532.791 32.0264 Q538.138 37.9003 538.138 48.0275 M530.684 45.84 Q530.603 39.7232 527.241 36.0774 Q523.919 32.4315 518.41 32.4315 Q512.172 32.4315 508.404 35.9558 Q504.678 39.4801 504.11 45.8805 L530.684 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M580.227 34.0924 L580.227 9.54393 L587.681 9.54393 L587.681 72.576 L580.227 72.576 L580.227 65.7705 Q577.877 69.8214 574.272 71.8063 Q570.707 73.7508 565.684 73.7508 Q557.461 73.7508 552.276 67.1883 Q547.131 60.6258 547.131 49.9314 Q547.131 39.2371 552.276 32.6746 Q557.461 26.1121 565.684 26.1121 Q570.707 26.1121 574.272 28.0971 Q577.877 30.0415 580.227 34.0924 M554.828 49.9314 Q554.828 58.1548 558.19 62.8538 Q561.593 67.5124 567.507 67.5124 Q573.421 67.5124 576.824 62.8538 Q580.227 58.1548 580.227 49.9314 Q580.227 41.7081 576.824 37.0496 Q573.421 32.3505 567.507 32.3505 Q561.593 32.3505 558.19 37.0496 Q554.828 41.7081 554.828 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M641.841 48.0275 L641.841 51.6733 L607.571 51.6733 Q608.057 59.3701 612.189 63.421 Q616.361 67.4314 623.774 67.4314 Q628.068 67.4314 632.078 66.3781 Q636.129 65.3249 640.099 63.2184 L640.099 70.267 Q636.089 71.9684 631.876 72.8596 Q627.663 73.7508 623.329 73.7508 Q612.472 73.7508 606.112 67.4314 Q599.793 61.1119 599.793 50.3365 Q599.793 39.1965 605.788 32.6746 Q611.824 26.1121 622.032 26.1121 Q631.187 26.1121 636.494 32.0264 Q641.841 37.9003 641.841 48.0275 M634.387 45.84 Q634.306 39.7232 630.944 36.0774 Q627.622 32.4315 622.113 32.4315 Q615.875 32.4315 612.108 35.9558 Q608.381 39.4801 607.814 45.8805 L634.387 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M691.789 45.1919 L691.789 72.576 L684.335 72.576 L684.335 45.4349 Q684.335 38.994 681.824 35.7938 Q679.312 32.5936 674.289 32.5936 Q668.253 32.5936 664.769 36.4419 Q661.285 40.2903 661.285 46.9338 L661.285 72.576 L653.791 72.576 L653.791 27.2059 L661.285 27.2059 L661.285 34.2544 Q663.959 30.163 667.564 28.1376 Q671.21 26.1121 675.95 26.1121 Q683.768 26.1121 687.778 30.9732 Q691.789 35.7938 691.789 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M739.306 28.9478 L739.306 35.9153 Q736.146 34.1734 732.946 33.3227 Q729.786 32.4315 726.546 32.4315 Q719.294 32.4315 715.284 37.0496 Q711.274 41.6271 711.274 49.9314 Q711.274 58.2358 715.284 62.8538 Q719.294 67.4314 726.546 67.4314 Q729.786 67.4314 732.946 66.5807 Q736.146 65.6895 739.306 63.9476 L739.306 70.8341 Q736.187 72.2924 732.824 73.0216 Q729.503 73.7508 725.735 73.7508 Q715.487 73.7508 709.451 67.3098 Q703.415 60.8689 703.415 49.9314 Q703.415 38.832 709.491 32.472 Q715.608 26.1121 726.221 26.1121 Q729.665 26.1121 732.946 26.8413 Q736.227 27.5299 739.306 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M791.076 48.0275 L791.076 51.6733 L756.806 51.6733 Q757.292 59.3701 761.424 63.421 Q765.596 67.4314 773.009 67.4314 Q777.303 67.4314 781.314 66.3781 Q785.365 65.3249 789.335 63.2184 L789.335 70.267 Q785.324 71.9684 781.111 72.8596 Q776.898 73.7508 772.564 73.7508 Q761.707 73.7508 755.347 67.4314 Q749.028 61.1119 749.028 50.3365 Q749.028 39.1965 755.023 32.6746 Q761.059 26.1121 771.268 26.1121 Q780.423 26.1121 785.729 32.0264 Q791.076 37.9003 791.076 48.0275 M783.623 45.84 Q783.542 39.7232 780.18 36.0774 Q776.858 32.4315 771.349 32.4315 Q765.11 32.4315 761.343 35.9558 Q757.616 39.4801 757.049 45.8805 L783.623 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M832.234 28.5427 L832.234 35.5912 Q829.074 33.9709 825.671 33.1607 Q822.268 32.3505 818.623 32.3505 Q813.073 32.3505 810.278 34.0519 Q807.523 35.7533 807.523 39.156 Q807.523 41.7486 809.508 43.2475 Q811.493 44.7058 817.488 46.0426 L820.04 46.6097 Q827.98 48.3111 831.302 51.4303 Q834.664 54.509 834.664 60.0587 Q834.664 66.3781 829.641 70.0644 Q824.658 73.7508 815.909 73.7508 Q812.263 73.7508 808.293 73.0216 Q804.363 72.3329 799.988 70.9151 L799.988 63.2184 Q804.12 65.3654 808.131 66.4591 Q812.141 67.5124 816.071 67.5124 Q821.337 67.5124 824.172 65.73 Q827.008 63.9071 827.008 60.6258 Q827.008 57.5877 824.942 55.9673 Q822.917 54.3469 815.99 52.8481 L813.397 52.2405 Q806.47 50.7821 803.391 47.7845 Q800.313 44.7463 800.313 39.4801 Q800.313 33.0797 804.85 29.5959 Q809.387 26.1121 817.731 26.1121 Q821.863 26.1121 825.509 26.7198 Q829.155 27.3274 832.234 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M890.486 32.4315 Q884.49 32.4315 881.007 37.1306 Q877.523 41.7891 877.523 49.9314 Q877.523 58.0738 880.966 62.7728 Q884.45 67.4314 890.486 67.4314 Q896.44 67.4314 899.924 62.7323 Q903.408 58.0333 903.408 49.9314 Q903.408 41.8701 899.924 37.1711 Q896.44 32.4315 890.486 32.4315 M890.486 26.1121 Q900.208 26.1121 905.758 32.4315 Q911.307 38.7509 911.307 49.9314 Q911.307 61.0714 905.758 67.4314 Q900.208 73.7508 890.486 73.7508 Q880.723 73.7508 875.173 67.4314 Q869.664 61.0714 869.664 49.9314 Q869.664 38.7509 875.173 32.4315 Q880.723 26.1121 890.486 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M946.631 9.54393 L946.631 15.7418 L939.502 15.7418 Q935.491 15.7418 933.911 17.3622 Q932.372 18.9825 932.372 23.1955 L932.372 27.2059 L944.646 27.2059 L944.646 32.9987 L932.372 32.9987 L932.372 72.576 L924.878 72.576 L924.878 32.9987 L917.748 32.9987 L917.748 27.2059 L924.878 27.2059 L924.878 24.0462 Q924.878 16.471 928.402 13.0277 Q931.926 9.54393 939.583 9.54393 L946.631 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M986.614 14.324 L986.614 27.2059 L1001.97 27.2059 L1001.97 32.9987 L986.614 32.9987 L986.614 57.6282 Q986.614 63.1779 988.112 64.7578 Q989.652 66.3376 994.31 66.3376 L1001.97 66.3376 L1001.97 72.576 L994.31 72.576 Q985.682 72.576 982.401 69.3758 Q979.119 66.1351 979.119 57.6282 L979.119 32.9987 L973.651 32.9987 L973.651 27.2059 L979.119 27.2059 L979.119 14.324 L986.614 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1049.48 45.1919 L1049.48 72.576 L1042.03 72.576 L1042.03 45.4349 Q1042.03 38.994 1039.52 35.7938 Q1037.01 32.5936 1031.98 32.5936 Q1025.95 32.5936 1022.46 36.4419 Q1018.98 40.2903 1018.98 46.9338 L1018.98 72.576 L1011.49 72.576 L1011.49 9.54393 L1018.98 9.54393 L1018.98 34.2544 Q1021.65 30.163 1025.26 28.1376 Q1028.91 26.1121 1033.64 26.1121 Q1041.46 26.1121 1045.47 30.9732 Q1049.48 35.7938 1049.48 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1103.16 48.0275 L1103.16 51.6733 L1068.89 51.6733 Q1069.37 59.3701 1073.51 63.421 Q1077.68 67.4314 1085.09 67.4314 Q1089.39 67.4314 1093.4 66.3781 Q1097.45 65.3249 1101.42 63.2184 L1101.42 70.267 Q1097.41 71.9684 1093.19 72.8596 Q1088.98 73.7508 1084.65 73.7508 Q1073.79 73.7508 1067.43 67.4314 Q1061.11 61.1119 1061.11 50.3365 Q1061.11 39.1965 1067.11 32.6746 Q1073.14 26.1121 1083.35 26.1121 Q1092.5 26.1121 1097.81 32.0264 Q1103.16 37.9003 1103.16 48.0275 M1095.7 45.84 Q1095.62 39.7232 1092.26 36.0774 Q1088.94 32.4315 1083.43 32.4315 Q1077.19 32.4315 1073.42 35.9558 Q1069.7 39.4801 1069.13 45.8805 L1095.7 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1162.3 20.1573 L1151.2 50.2555 L1173.44 50.2555 L1162.3 20.1573 M1157.68 12.096 L1166.96 12.096 L1190.01 72.576 L1181.5 72.576 L1175.99 57.061 L1148.73 57.061 L1143.22 72.576 L1134.59 72.576 L1157.68 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1221.36 20.1573 L1210.26 50.2555 L1232.5 50.2555 L1221.36 20.1573 M1216.75 12.096 L1226.02 12.096 L1249.07 72.576 L1240.56 72.576 L1235.06 57.061 L1207.79 57.061 L1202.28 72.576 L1193.66 72.576 L1216.75 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1280.99 17.6457 Q1272.08 17.6457 1266.81 24.2892 Q1261.59 30.9327 1261.59 42.3968 Q1261.59 53.8203 1266.81 60.4638 Q1272.08 67.1073 1280.99 67.1073 Q1289.9 67.1073 1295.09 60.4638 Q1300.32 53.8203 1300.32 42.3968 Q1300.32 30.9327 1295.09 24.2892 Q1289.9 17.6457 1280.99 17.6457 M1292.46 71.4823 L1303.23 83.2704 L1293.35 83.2704 L1284.4 73.5887 Q1283.06 73.6697 1282.33 73.7103 Q1281.64 73.7508 1280.99 73.7508 Q1268.23 73.7508 1260.58 65.2439 Q1252.96 56.6965 1252.96 42.3968 Q1252.96 28.0566 1260.58 19.5497 Q1268.23 11.0023 1280.99 11.0023 Q1293.71 11.0023 1301.33 19.5497 Q1308.94 28.0566 1308.94 42.3968 Q1308.94 52.9291 1304.69 60.4233 Q1300.48 67.9175 1292.46 71.4823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1346.29 17.6457 Q1337.38 17.6457 1332.12 24.2892 Q1326.89 30.9327 1326.89 42.3968 Q1326.89 53.8203 1332.12 60.4638 Q1337.38 67.1073 1346.29 67.1073 Q1355.21 67.1073 1360.39 60.4638 Q1365.62 53.8203 1365.62 42.3968 Q1365.62 30.9327 1360.39 24.2892 Q1355.21 17.6457 1346.29 17.6457 M1346.29 11.0023 Q1359.01 11.0023 1366.63 19.5497 Q1374.24 28.0566 1374.24 42.3968 Q1374.24 56.6965 1366.63 65.2439 Q1359.01 73.7508 1346.29 73.7508 Q1333.53 73.7508 1325.88 65.2439 Q1318.26 56.737 1318.26 42.3968 Q1318.26 28.0566 1325.88 19.5497 Q1333.53 11.0023 1346.29 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1413.09 27.2059 L1420.55 27.2059 L1420.55 72.576 L1413.09 72.576 L1413.09 27.2059 M1413.09 9.54393 L1420.55 9.54393 L1420.55 18.9825 L1413.09 18.9825 L1413.09 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1473.86 45.1919 L1473.86 72.576 L1466.4 72.576 L1466.4 45.4349 Q1466.4 38.994 1463.89 35.7938 Q1461.38 32.5936 1456.36 32.5936 Q1450.32 32.5936 1446.84 36.4419 Q1443.35 40.2903 1443.35 46.9338 L1443.35 72.576 L1435.86 72.576 L1435.86 27.2059 L1443.35 27.2059 L1443.35 34.2544 Q1446.03 30.163 1449.63 28.1376 Q1453.28 26.1121 1458.02 26.1121 Q1465.84 26.1121 1469.85 30.9732 Q1473.86 35.7938 1473.86 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1560.71 16.7545 L1560.71 25.383 Q1556.58 21.5346 1551.88 19.6307 Q1547.22 17.7268 1541.95 17.7268 Q1531.58 17.7268 1526.07 24.0867 Q1520.56 30.4061 1520.56 42.3968 Q1520.56 54.3469 1526.07 60.7069 Q1531.58 67.0263 1541.95 67.0263 Q1547.22 67.0263 1551.88 65.1223 Q1556.58 63.2184 1560.71 59.3701 L1560.71 67.9175 Q1556.41 70.8341 1551.59 72.2924 Q1546.81 73.7508 1541.47 73.7508 Q1527.73 73.7508 1519.83 65.3654 Q1511.93 56.9395 1511.93 42.3968 Q1511.93 27.8135 1519.83 19.4281 Q1527.73 11.0023 1541.47 11.0023 Q1546.89 11.0023 1551.67 12.4606 Q1556.49 13.8784 1560.71 16.7545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1611.83 48.0275 L1611.83 51.6733 L1577.56 51.6733 Q1578.05 59.3701 1582.18 63.421 Q1586.35 67.4314 1593.76 67.4314 Q1598.06 67.4314 1602.07 66.3781 Q1606.12 65.3249 1610.09 63.2184 L1610.09 70.267 Q1606.08 71.9684 1601.86 72.8596 Q1597.65 73.7508 1593.32 73.7508 Q1582.46 73.7508 1576.1 67.4314 Q1569.78 61.1119 1569.78 50.3365 Q1569.78 39.1965 1575.78 32.6746 Q1581.81 26.1121 1592.02 26.1121 Q1601.18 26.1121 1606.48 32.0264 Q1611.83 37.9003 1611.83 48.0275 M1604.38 45.84 Q1604.3 39.7232 1600.93 36.0774 Q1597.61 32.4315 1592.1 32.4315 Q1585.86 32.4315 1582.1 35.9558 Q1578.37 39.4801 1577.8 45.8805 L1604.38 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1661.78 45.1919 L1661.78 72.576 L1654.32 72.576 L1654.32 45.4349 Q1654.32 38.994 1651.81 35.7938 Q1649.3 32.5936 1644.28 32.5936 Q1638.24 32.5936 1634.76 36.4419 Q1631.27 40.2903 1631.27 46.9338 L1631.27 72.576 L1623.78 72.576 L1623.78 27.2059 L1631.27 27.2059 L1631.27 34.2544 Q1633.95 30.163 1637.55 28.1376 Q1641.2 26.1121 1645.94 26.1121 Q1653.76 26.1121 1657.77 30.9732 Q1661.78 35.7938 1661.78 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1684.02 14.324 L1684.02 27.2059 L1699.37 27.2059 L1699.37 32.9987 L1684.02 32.9987 L1684.02 57.6282 Q1684.02 63.1779 1685.52 64.7578 Q1687.06 66.3376 1691.71 66.3376 L1699.37 66.3376 L1699.37 72.576 L1691.71 72.576 Q1683.09 72.576 1679.8 69.3758 Q1676.52 66.1351 1676.52 57.6282 L1676.52 32.9987 L1671.05 32.9987 L1671.05 27.2059 L1676.52 27.2059 L1676.52 14.324 L1684.02 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1735.46 34.1734 Q1734.21 33.4443 1732.71 33.1202 Q1731.25 32.7556 1729.47 32.7556 Q1723.15 32.7556 1719.75 36.8875 Q1716.38 40.9789 1716.38 48.6757 L1716.38 72.576 L1708.89 72.576 L1708.89 27.2059 L1716.38 27.2059 L1716.38 34.2544 Q1718.73 30.1225 1722.5 28.1376 Q1726.27 26.1121 1731.66 26.1121 Q1732.43 26.1121 1733.36 26.2337 Q1734.29 26.3147 1735.42 26.5172 L1735.46 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1763.9 49.7694 Q1754.87 49.7694 1751.38 51.8354 Q1747.9 53.9013 1747.9 58.8839 Q1747.9 62.8538 1750.49 65.2034 Q1753.13 67.5124 1757.62 67.5124 Q1763.82 67.5124 1767.55 63.1374 Q1771.31 58.7219 1771.31 51.4303 L1771.31 49.7694 L1763.9 49.7694 M1778.77 46.6907 L1778.77 72.576 L1771.31 72.576 L1771.31 65.6895 Q1768.76 69.8214 1764.95 71.8063 Q1761.15 73.7508 1755.64 73.7508 Q1748.67 73.7508 1744.54 69.8619 Q1740.45 65.9325 1740.45 59.3701 Q1740.45 51.7138 1745.55 47.825 Q1750.7 43.9361 1760.86 43.9361 L1771.31 43.9361 L1771.31 43.2069 Q1771.31 38.0623 1767.91 35.2672 Q1764.55 32.4315 1758.43 32.4315 Q1754.54 32.4315 1750.86 33.3632 Q1747.17 34.295 1743.77 36.1584 L1743.77 29.2718 Q1747.86 27.692 1751.71 26.9223 Q1755.56 26.1121 1759.2 26.1121 Q1769.05 26.1121 1773.91 31.2163 Q1778.77 36.3204 1778.77 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1794.12 9.54393 L1801.57 9.54393 L1801.57 72.576 L1794.12 72.576 L1794.12 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1843.87 12.096 L1882.11 12.096 L1882.11 18.9825 L1852.05 18.9825 L1852.05 36.8875 L1880.85 36.8875 L1880.85 43.7741 L1852.05 43.7741 L1852.05 65.6895 L1882.84 65.6895 L1882.84 72.576 L1843.87 72.576 L1843.87 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1925.82 34.0924 L1925.82 9.54393 L1933.27 9.54393 L1933.27 72.576 L1925.82 72.576 L1925.82 65.7705 Q1923.47 69.8214 1919.86 71.8063 Q1916.3 73.7508 1911.27 73.7508 Q1903.05 73.7508 1897.86 67.1883 Q1892.72 60.6258 1892.72 49.9314 Q1892.72 39.2371 1897.86 32.6746 Q1903.05 26.1121 1911.27 26.1121 Q1916.3 26.1121 1919.86 28.0971 Q1923.47 30.0415 1925.82 34.0924 M1900.42 49.9314 Q1900.42 58.1548 1903.78 62.8538 Q1907.18 67.5124 1913.1 67.5124 Q1919.01 67.5124 1922.41 62.8538 Q1925.82 58.1548 1925.82 49.9314 Q1925.82 41.7081 1922.41 37.0496 Q1919.01 32.3505 1913.1 32.3505 Q1907.18 32.3505 1903.78 37.0496 Q1900.42 41.7081 1900.42 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M1983.95 35.9153 Q1986.74 30.8922 1990.63 28.5022 Q1994.52 26.1121 1999.79 26.1121 Q2006.87 26.1121 2010.72 31.0947 Q2014.57 36.0368 2014.57 45.1919 L2014.57 72.576 L2007.08 72.576 L2007.08 45.4349 Q2007.08 38.913 2004.77 35.7533 Q2002.46 32.5936 1997.72 32.5936 Q1991.93 32.5936 1988.56 36.4419 Q1985.2 40.2903 1985.2 46.9338 L1985.2 72.576 L1977.71 72.576 L1977.71 45.4349 Q1977.71 38.8725 1975.4 35.7533 Q1973.09 32.5936 1968.27 32.5936 Q1962.56 32.5936 1959.2 36.4824 Q1955.83 40.3308 1955.83 46.9338 L1955.83 72.576 L1948.34 72.576 L1948.34 27.2059 L1955.83 27.2059 L1955.83 34.2544 Q1958.39 30.082 1961.95 28.0971 Q1965.51 26.1121 1970.42 26.1121 Q1975.36 26.1121 1978.8 28.6237 Q1982.29 31.1352 1983.95 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2047.02 32.4315 Q2041.02 32.4315 2037.54 37.1306 Q2034.06 41.7891 2034.06 49.9314 Q2034.06 58.0738 2037.5 62.7728 Q2040.98 67.4314 2047.02 67.4314 Q2052.97 67.4314 2056.46 62.7323 Q2059.94 58.0333 2059.94 49.9314 Q2059.94 41.8701 2056.46 37.1711 Q2052.97 32.4315 2047.02 32.4315 M2047.02 26.1121 Q2056.74 26.1121 2062.29 32.4315 Q2067.84 38.7509 2067.84 49.9314 Q2067.84 61.0714 2062.29 67.4314 Q2056.74 73.7508 2047.02 73.7508 Q2037.26 73.7508 2031.71 67.4314 Q2026.2 61.0714 2026.2 49.9314 Q2026.2 38.7509 2031.71 32.4315 Q2037.26 26.1121 2047.02 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2117.91 45.1919 L2117.91 72.576 L2110.46 72.576 L2110.46 45.4349 Q2110.46 38.994 2107.94 35.7938 Q2105.43 32.5936 2100.41 32.5936 Q2094.37 32.5936 2090.89 36.4419 Q2087.41 40.2903 2087.41 46.9338 L2087.41 72.576 L2079.91 72.576 L2079.91 27.2059 L2087.41 27.2059 L2087.41 34.2544 Q2090.08 30.163 2093.69 28.1376 Q2097.33 26.1121 2102.07 26.1121 Q2109.89 26.1121 2113.9 30.9732 Q2117.91 35.7938 2117.91 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2140.15 14.324 L2140.15 27.2059 L2155.5 27.2059 L2155.5 32.9987 L2140.15 32.9987 L2140.15 57.6282 Q2140.15 63.1779 2141.65 64.7578 Q2143.19 66.3376 2147.85 66.3376 L2155.5 66.3376 L2155.5 72.576 L2147.85 72.576 Q2139.22 72.576 2135.94 69.3758 Q2132.65 66.1351 2132.65 57.6282 L2132.65 32.9987 L2127.19 32.9987 L2127.19 27.2059 L2132.65 27.2059 L2132.65 14.324 L2140.15 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2182.89 32.4315 Q2176.89 32.4315 2173.41 37.1306 Q2169.92 41.7891 2169.92 49.9314 Q2169.92 58.0738 2173.37 62.7728 Q2176.85 67.4314 2182.89 67.4314 Q2188.84 67.4314 2192.32 62.7323 Q2195.81 58.0333 2195.81 49.9314 Q2195.81 41.8701 2192.32 37.1711 Q2188.84 32.4315 2182.89 32.4315 M2182.89 26.1121 Q2192.61 26.1121 2198.16 32.4315 Q2203.71 38.7509 2203.71 49.9314 Q2203.71 61.0714 2198.16 67.4314 Q2192.61 73.7508 2182.89 73.7508 Q2173.12 73.7508 2167.57 67.4314 Q2162.06 61.0714 2162.06 49.9314 Q2162.06 38.7509 2167.57 32.4315 Q2173.12 26.1121 2182.89 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip780)\" d=\"M2253.78 45.1919 L2253.78 72.576 L2246.32 72.576 L2246.32 45.4349 Q2246.32 38.994 2243.81 35.7938 Q2241.3 32.5936 2236.28 32.5936 Q2230.24 32.5936 2226.76 36.4419 Q2223.27 40.2903 2223.27 46.9338 L2223.27 72.576 L2215.78 72.576 L2215.78 27.2059 L2223.27 27.2059 L2223.27 34.2544 Q2225.95 30.163 2229.55 28.1376 Q2233.2 26.1121 2237.94 26.1121 Q2245.76 26.1121 2249.77 30.9732 Q2253.78 35.7938 2253.78 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip782)\" cx=\"264.778\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"301.549\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"342.183\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"376.091\" cy=\"1244.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"376.758\" cy=\"1197.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"551.216\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"574.985\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"575.024\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"840.336\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"840.413\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"840.464\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1202.57\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1231.75\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1238.5\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1238.84\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1238.92\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1238.98\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1241.65\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1241.83\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1241.88\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1274.07\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1276.08\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.05\" cy=\"820.485\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.32\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.36\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.4\" cy=\"679.008\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.62\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.67\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.86\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1304.91\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1368.08\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1390.81\" cy=\"1244.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1400.06\" cy=\"1056.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1517.96\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1582.28\" cy=\"1244.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1596.93\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1794.2\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1914.56\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1914.58\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"1950.96\" cy=\"1292.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2089.94\" cy=\"1103.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2095.92\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2106.16\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2201.37\" cy=\"867.644\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2202.74\" cy=\"443.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2203.17\" cy=\"1197.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2203.42\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2205.08\" cy=\"1339.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2205.23\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2205.28\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2205.31\" cy=\"1103.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2291.62\" cy=\"1056.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip782)\" cx=\"2291.94\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "</svg>\n" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plot(result_1hr.start_date, result_1hr.duration, lab=false,\n", " title=\"Exceedences of the AAQO in Central Edmonton\",\n", " seriestype = :scatter,\n", " ylabel=\"Duration, hours\",\n", " xlabel=\"Date\",\n", " legend=:left)" ] }, { "cell_type": "code", "execution_count": 8, "id": "f21a802c-7a71-4b8a-a59d-1faf15f38370", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip820\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip820)\" d=\"\n", "M0 1600 L2400 1600 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip821\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip820)\" d=\"\n", "M235.283 1423.18 L2352.76 1423.18 L2352.76 123.472 L235.283 123.472 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip822\">\n", " <rect x=\"235\" y=\"123\" width=\"2118\" height=\"1301\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 314.976,1423.18 314.976,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 809.374,1423.18 809.374,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1303.77,1423.18 1303.77,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1798.17,1423.18 1798.17,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2292.84,1423.18 2292.84,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,1423.18 2352.76,1423.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.976,1423.18 314.976,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 809.374,1423.18 809.374,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.77,1423.18 1303.77,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1798.17,1423.18 1798.17,1407.58 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2292.84,1423.18 2292.84,1407.58 \n", " \"/>\n", "<path clip-path=\"url(#clip820)\" d=\"M186.771 1479.92 L203.09 1479.92 L203.09 1483.85 L181.146 1483.85 L181.146 1479.92 Q183.808 1477.16 188.391 1472.53 Q192.998 1467.88 194.178 1466.54 Q196.424 1464.01 197.303 1462.28 Q198.206 1460.52 198.206 1458.83 Q198.206 1456.07 196.262 1454.34 Q194.34 1452.6 191.239 1452.6 Q189.04 1452.6 186.586 1453.37 Q184.155 1454.13 181.378 1455.68 L181.378 1450.96 Q184.202 1449.82 186.655 1449.25 Q189.109 1448.67 191.146 1448.67 Q196.516 1448.67 199.711 1451.35 Q202.905 1454.04 202.905 1458.53 Q202.905 1460.66 202.095 1462.58 Q201.308 1464.48 199.202 1467.07 Q198.623 1467.74 195.521 1470.96 Q192.419 1474.15 186.771 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M222.905 1452.37 Q219.294 1452.37 217.465 1455.94 Q215.66 1459.48 215.66 1466.61 Q215.66 1473.71 217.465 1477.28 Q219.294 1480.82 222.905 1480.82 Q226.539 1480.82 228.345 1477.28 Q230.174 1473.71 230.174 1466.61 Q230.174 1459.48 228.345 1455.94 Q226.539 1452.37 222.905 1452.37 M222.905 1448.67 Q228.715 1448.67 231.771 1453.27 Q234.85 1457.86 234.85 1466.61 Q234.85 1475.33 231.771 1479.94 Q228.715 1484.52 222.905 1484.52 Q217.095 1484.52 214.016 1479.94 Q210.961 1475.33 210.961 1466.61 Q210.961 1457.86 214.016 1453.27 Q217.095 1448.67 222.905 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M253.067 1452.37 Q249.456 1452.37 247.627 1455.94 Q245.822 1459.48 245.822 1466.61 Q245.822 1473.71 247.627 1477.28 Q249.456 1480.82 253.067 1480.82 Q256.701 1480.82 258.507 1477.28 Q260.336 1473.71 260.336 1466.61 Q260.336 1459.48 258.507 1455.94 Q256.701 1452.37 253.067 1452.37 M253.067 1448.67 Q258.877 1448.67 261.933 1453.27 Q265.011 1457.86 265.011 1466.61 Q265.011 1475.33 261.933 1479.94 Q258.877 1484.52 253.067 1484.52 Q247.257 1484.52 244.178 1479.94 Q241.123 1475.33 241.123 1466.61 Q241.123 1457.86 244.178 1453.27 Q247.257 1448.67 253.067 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M274.039 1479.92 L281.678 1479.92 L281.678 1453.55 L273.368 1455.22 L273.368 1450.96 L281.632 1449.29 L286.308 1449.29 L286.308 1479.92 L293.946 1479.92 L293.946 1483.85 L274.039 1483.85 L274.039 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M300.636 1468.97 L313.113 1468.97 L313.113 1472.76 L300.636 1472.76 L300.636 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M330.497 1452.37 Q326.886 1452.37 325.057 1455.94 Q323.252 1459.48 323.252 1466.61 Q323.252 1473.71 325.057 1477.28 Q326.886 1480.82 330.497 1480.82 Q334.131 1480.82 335.937 1477.28 Q337.766 1473.71 337.766 1466.61 Q337.766 1459.48 335.937 1455.94 Q334.131 1452.37 330.497 1452.37 M330.497 1448.67 Q336.307 1448.67 339.363 1453.27 Q342.442 1457.86 342.442 1466.61 Q342.442 1475.33 339.363 1479.94 Q336.307 1484.52 330.497 1484.52 Q324.687 1484.52 321.608 1479.94 Q318.553 1475.33 318.553 1466.61 Q318.553 1457.86 321.608 1453.27 Q324.687 1448.67 330.497 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M351.469 1479.92 L359.108 1479.92 L359.108 1453.55 L350.798 1455.22 L350.798 1450.96 L359.062 1449.29 L363.738 1449.29 L363.738 1479.92 L371.377 1479.92 L371.377 1483.85 L351.469 1483.85 L351.469 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M378.066 1468.97 L390.543 1468.97 L390.543 1472.76 L378.066 1472.76 L378.066 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M407.927 1452.37 Q404.316 1452.37 402.488 1455.94 Q400.682 1459.48 400.682 1466.61 Q400.682 1473.71 402.488 1477.28 Q404.316 1480.82 407.927 1480.82 Q411.562 1480.82 413.367 1477.28 Q415.196 1473.71 415.196 1466.61 Q415.196 1459.48 413.367 1455.94 Q411.562 1452.37 407.927 1452.37 M407.927 1448.67 Q413.737 1448.67 416.793 1453.27 Q419.872 1457.86 419.872 1466.61 Q419.872 1475.33 416.793 1479.94 Q413.737 1484.52 407.927 1484.52 Q402.117 1484.52 399.038 1479.94 Q395.983 1475.33 395.983 1466.61 Q395.983 1457.86 399.038 1453.27 Q402.117 1448.67 407.927 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M428.899 1479.92 L436.538 1479.92 L436.538 1453.55 L428.228 1455.22 L428.228 1450.96 L436.492 1449.29 L441.168 1449.29 L441.168 1479.92 L448.807 1479.92 L448.807 1483.85 L428.899 1483.85 L428.899 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M681.169 1479.92 L697.488 1479.92 L697.488 1483.85 L675.544 1483.85 L675.544 1479.92 Q678.206 1477.16 682.789 1472.53 Q687.396 1467.88 688.576 1466.54 Q690.822 1464.01 691.701 1462.28 Q692.604 1460.52 692.604 1458.83 Q692.604 1456.07 690.66 1454.34 Q688.738 1452.6 685.637 1452.6 Q683.437 1452.6 680.984 1453.37 Q678.553 1454.13 675.775 1455.68 L675.775 1450.96 Q678.6 1449.82 681.053 1449.25 Q683.507 1448.67 685.544 1448.67 Q690.914 1448.67 694.109 1451.35 Q697.303 1454.04 697.303 1458.53 Q697.303 1460.66 696.493 1462.58 Q695.706 1464.48 693.599 1467.07 Q693.021 1467.74 689.919 1470.96 Q686.817 1474.15 681.169 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M717.303 1452.37 Q713.692 1452.37 711.863 1455.94 Q710.058 1459.48 710.058 1466.61 Q710.058 1473.71 711.863 1477.28 Q713.692 1480.82 717.303 1480.82 Q720.937 1480.82 722.743 1477.28 Q724.572 1473.71 724.572 1466.61 Q724.572 1459.48 722.743 1455.94 Q720.937 1452.37 717.303 1452.37 M717.303 1448.67 Q723.113 1448.67 726.169 1453.27 Q729.247 1457.86 729.247 1466.61 Q729.247 1475.33 726.169 1479.94 Q723.113 1484.52 717.303 1484.52 Q711.493 1484.52 708.414 1479.94 Q705.359 1475.33 705.359 1466.61 Q705.359 1457.86 708.414 1453.27 Q711.493 1448.67 717.303 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M747.465 1452.37 Q743.854 1452.37 742.025 1455.94 Q740.22 1459.48 740.22 1466.61 Q740.22 1473.71 742.025 1477.28 Q743.854 1480.82 747.465 1480.82 Q751.099 1480.82 752.905 1477.28 Q754.733 1473.71 754.733 1466.61 Q754.733 1459.48 752.905 1455.94 Q751.099 1452.37 747.465 1452.37 M747.465 1448.67 Q753.275 1448.67 756.331 1453.27 Q759.409 1457.86 759.409 1466.61 Q759.409 1475.33 756.331 1479.94 Q753.275 1484.52 747.465 1484.52 Q741.655 1484.52 738.576 1479.94 Q735.521 1475.33 735.521 1466.61 Q735.521 1457.86 738.576 1453.27 Q741.655 1448.67 747.465 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M778.205 1464.71 Q775.057 1464.71 773.206 1466.86 Q771.377 1469.01 771.377 1472.76 Q771.377 1476.49 773.206 1478.67 Q775.057 1480.82 778.205 1480.82 Q781.354 1480.82 783.182 1478.67 Q785.034 1476.49 785.034 1472.76 Q785.034 1469.01 783.182 1466.86 Q781.354 1464.71 778.205 1464.71 M787.488 1450.06 L787.488 1454.31 Q785.729 1453.48 783.923 1453.04 Q782.141 1452.6 780.381 1452.6 Q775.752 1452.6 773.298 1455.73 Q770.868 1458.85 770.52 1465.17 Q771.886 1463.16 773.946 1462.09 Q776.006 1461 778.483 1461 Q783.692 1461 786.701 1464.18 Q789.733 1467.32 789.733 1472.76 Q789.733 1478.09 786.585 1481.31 Q783.437 1484.52 778.205 1484.52 Q772.21 1484.52 769.039 1479.94 Q765.868 1475.33 765.868 1466.61 Q765.868 1458.41 769.756 1453.55 Q773.645 1448.67 780.196 1448.67 Q781.955 1448.67 783.738 1449.01 Q785.543 1449.36 787.488 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M795.034 1468.97 L807.511 1468.97 L807.511 1472.76 L795.034 1472.76 L795.034 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M824.895 1452.37 Q821.284 1452.37 819.455 1455.94 Q817.65 1459.48 817.65 1466.61 Q817.65 1473.71 819.455 1477.28 Q821.284 1480.82 824.895 1480.82 Q828.529 1480.82 830.335 1477.28 Q832.164 1473.71 832.164 1466.61 Q832.164 1459.48 830.335 1455.94 Q828.529 1452.37 824.895 1452.37 M824.895 1448.67 Q830.705 1448.67 833.761 1453.27 Q836.839 1457.86 836.839 1466.61 Q836.839 1475.33 833.761 1479.94 Q830.705 1484.52 824.895 1484.52 Q819.085 1484.52 816.006 1479.94 Q812.951 1475.33 812.951 1466.61 Q812.951 1457.86 816.006 1453.27 Q819.085 1448.67 824.895 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M845.867 1479.92 L853.506 1479.92 L853.506 1453.55 L845.196 1455.22 L845.196 1450.96 L853.46 1449.29 L858.136 1449.29 L858.136 1479.92 L865.774 1479.92 L865.774 1483.85 L845.867 1483.85 L845.867 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M872.464 1468.97 L884.941 1468.97 L884.941 1472.76 L872.464 1472.76 L872.464 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M902.325 1452.37 Q898.714 1452.37 896.885 1455.94 Q895.08 1459.48 895.08 1466.61 Q895.08 1473.71 896.885 1477.28 Q898.714 1480.82 902.325 1480.82 Q905.959 1480.82 907.765 1477.28 Q909.594 1473.71 909.594 1466.61 Q909.594 1459.48 907.765 1455.94 Q905.959 1452.37 902.325 1452.37 M902.325 1448.67 Q908.135 1448.67 911.191 1453.27 Q914.27 1457.86 914.27 1466.61 Q914.27 1475.33 911.191 1479.94 Q908.135 1484.52 902.325 1484.52 Q896.515 1484.52 893.436 1479.94 Q890.381 1475.33 890.381 1466.61 Q890.381 1457.86 893.436 1453.27 Q896.515 1448.67 902.325 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M923.297 1479.92 L930.936 1479.92 L930.936 1453.55 L922.626 1455.22 L922.626 1450.96 L930.89 1449.29 L935.566 1449.29 L935.566 1479.92 L943.205 1479.92 L943.205 1483.85 L923.297 1483.85 L923.297 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1175.57 1479.92 L1191.89 1479.92 L1191.89 1483.85 L1169.94 1483.85 L1169.94 1479.92 Q1172.6 1477.16 1177.19 1472.53 Q1181.79 1467.88 1182.97 1466.54 Q1185.22 1464.01 1186.1 1462.28 Q1187 1460.52 1187 1458.83 Q1187 1456.07 1185.06 1454.34 Q1183.14 1452.6 1180.03 1452.6 Q1177.84 1452.6 1175.38 1453.37 Q1172.95 1454.13 1170.17 1455.68 L1170.17 1450.96 Q1173 1449.82 1175.45 1449.25 Q1177.9 1448.67 1179.94 1448.67 Q1185.31 1448.67 1188.51 1451.35 Q1191.7 1454.04 1191.7 1458.53 Q1191.7 1460.66 1190.89 1462.58 Q1190.1 1464.48 1188 1467.07 Q1187.42 1467.74 1184.32 1470.96 Q1181.21 1474.15 1175.57 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1211.7 1452.37 Q1208.09 1452.37 1206.26 1455.94 Q1204.46 1459.48 1204.46 1466.61 Q1204.46 1473.71 1206.26 1477.28 Q1208.09 1480.82 1211.7 1480.82 Q1215.34 1480.82 1217.14 1477.28 Q1218.97 1473.71 1218.97 1466.61 Q1218.97 1459.48 1217.14 1455.94 Q1215.34 1452.37 1211.7 1452.37 M1211.7 1448.67 Q1217.51 1448.67 1220.57 1453.27 Q1223.65 1457.86 1223.65 1466.61 Q1223.65 1475.33 1220.57 1479.94 Q1217.51 1484.52 1211.7 1484.52 Q1205.89 1484.52 1202.81 1479.94 Q1199.76 1475.33 1199.76 1466.61 Q1199.76 1457.86 1202.81 1453.27 Q1205.89 1448.67 1211.7 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1232.67 1479.92 L1240.31 1479.92 L1240.31 1453.55 L1232 1455.22 L1232 1450.96 L1240.27 1449.29 L1244.94 1449.29 L1244.94 1479.92 L1252.58 1479.92 L1252.58 1483.85 L1232.67 1483.85 L1232.67 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1262.83 1479.92 L1270.47 1479.92 L1270.47 1453.55 L1262.16 1455.22 L1262.16 1450.96 L1270.43 1449.29 L1275.1 1449.29 L1275.1 1479.92 L1282.74 1479.92 L1282.74 1483.85 L1262.83 1483.85 L1262.83 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1289.43 1468.97 L1301.91 1468.97 L1301.91 1472.76 L1289.43 1472.76 L1289.43 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1319.29 1452.37 Q1315.68 1452.37 1313.85 1455.94 Q1312.05 1459.48 1312.05 1466.61 Q1312.05 1473.71 1313.85 1477.28 Q1315.68 1480.82 1319.29 1480.82 Q1322.93 1480.82 1324.73 1477.28 Q1326.56 1473.71 1326.56 1466.61 Q1326.56 1459.48 1324.73 1455.94 Q1322.93 1452.37 1319.29 1452.37 M1319.29 1448.67 Q1325.1 1448.67 1328.16 1453.27 Q1331.24 1457.86 1331.24 1466.61 Q1331.24 1475.33 1328.16 1479.94 Q1325.1 1484.52 1319.29 1484.52 Q1313.48 1484.52 1310.4 1479.94 Q1307.35 1475.33 1307.35 1466.61 Q1307.35 1457.86 1310.4 1453.27 Q1313.48 1448.67 1319.29 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1340.27 1479.92 L1347.9 1479.92 L1347.9 1453.55 L1339.59 1455.22 L1339.59 1450.96 L1347.86 1449.29 L1352.53 1449.29 L1352.53 1479.92 L1360.17 1479.92 L1360.17 1483.85 L1340.27 1483.85 L1340.27 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1366.86 1468.97 L1379.34 1468.97 L1379.34 1472.76 L1366.86 1472.76 L1366.86 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1396.72 1452.37 Q1393.11 1452.37 1391.28 1455.94 Q1389.48 1459.48 1389.48 1466.61 Q1389.48 1473.71 1391.28 1477.28 Q1393.11 1480.82 1396.72 1480.82 Q1400.36 1480.82 1402.16 1477.28 Q1403.99 1473.71 1403.99 1466.61 Q1403.99 1459.48 1402.16 1455.94 Q1400.36 1452.37 1396.72 1452.37 M1396.72 1448.67 Q1402.53 1448.67 1405.59 1453.27 Q1408.67 1457.86 1408.67 1466.61 Q1408.67 1475.33 1405.59 1479.94 Q1402.53 1484.52 1396.72 1484.52 Q1390.91 1484.52 1387.83 1479.94 Q1384.78 1475.33 1384.78 1466.61 Q1384.78 1457.86 1387.83 1453.27 Q1390.91 1448.67 1396.72 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1417.7 1479.92 L1425.33 1479.92 L1425.33 1453.55 L1417.02 1455.22 L1417.02 1450.96 L1425.29 1449.29 L1429.96 1449.29 L1429.96 1479.92 L1437.6 1479.92 L1437.6 1483.85 L1417.7 1483.85 L1417.7 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1669.96 1479.92 L1686.28 1479.92 L1686.28 1483.85 L1664.34 1483.85 L1664.34 1479.92 Q1667 1477.16 1671.59 1472.53 Q1676.19 1467.88 1677.37 1466.54 Q1679.62 1464.01 1680.5 1462.28 Q1681.4 1460.52 1681.4 1458.83 Q1681.4 1456.07 1679.46 1454.34 Q1677.53 1452.6 1674.43 1452.6 Q1672.23 1452.6 1669.78 1453.37 Q1667.35 1454.13 1664.57 1455.68 L1664.57 1450.96 Q1667.4 1449.82 1669.85 1449.25 Q1672.3 1448.67 1674.34 1448.67 Q1679.71 1448.67 1682.9 1451.35 Q1686.1 1454.04 1686.1 1458.53 Q1686.1 1460.66 1685.29 1462.58 Q1684.5 1464.48 1682.4 1467.07 Q1681.82 1467.74 1678.71 1470.96 Q1675.61 1474.15 1669.96 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1706.1 1452.37 Q1702.49 1452.37 1700.66 1455.94 Q1698.85 1459.48 1698.85 1466.61 Q1698.85 1473.71 1700.66 1477.28 Q1702.49 1480.82 1706.1 1480.82 Q1709.73 1480.82 1711.54 1477.28 Q1713.37 1473.71 1713.37 1466.61 Q1713.37 1459.48 1711.54 1455.94 Q1709.73 1452.37 1706.1 1452.37 M1706.1 1448.67 Q1711.91 1448.67 1714.96 1453.27 Q1718.04 1457.86 1718.04 1466.61 Q1718.04 1475.33 1714.96 1479.94 Q1711.91 1484.52 1706.1 1484.52 Q1700.29 1484.52 1697.21 1479.94 Q1694.15 1475.33 1694.15 1466.61 Q1694.15 1457.86 1697.21 1453.27 Q1700.29 1448.67 1706.1 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1727.07 1479.92 L1734.71 1479.92 L1734.71 1453.55 L1726.4 1455.22 L1726.4 1450.96 L1734.66 1449.29 L1739.34 1449.29 L1739.34 1479.92 L1746.98 1479.92 L1746.98 1483.85 L1727.07 1483.85 L1727.07 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1767 1464.71 Q1763.85 1464.71 1762 1466.86 Q1760.17 1469.01 1760.17 1472.76 Q1760.17 1476.49 1762 1478.67 Q1763.85 1480.82 1767 1480.82 Q1770.15 1480.82 1771.98 1478.67 Q1773.83 1476.49 1773.83 1472.76 Q1773.83 1469.01 1771.98 1466.86 Q1770.15 1464.71 1767 1464.71 M1776.28 1450.06 L1776.28 1454.31 Q1774.52 1453.48 1772.72 1453.04 Q1770.94 1452.6 1769.18 1452.6 Q1764.55 1452.6 1762.09 1455.73 Q1759.66 1458.85 1759.32 1465.17 Q1760.68 1463.16 1762.74 1462.09 Q1764.8 1461 1767.28 1461 Q1772.49 1461 1775.5 1464.18 Q1778.53 1467.32 1778.53 1472.76 Q1778.53 1478.09 1775.38 1481.31 Q1772.23 1484.52 1767 1484.52 Q1761.01 1484.52 1757.83 1479.94 Q1754.66 1475.33 1754.66 1466.61 Q1754.66 1458.41 1758.55 1453.55 Q1762.44 1448.67 1768.99 1448.67 Q1770.75 1448.67 1772.53 1449.01 Q1774.34 1449.36 1776.28 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1783.83 1468.97 L1796.31 1468.97 L1796.31 1472.76 L1783.83 1472.76 L1783.83 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1813.69 1452.37 Q1810.08 1452.37 1808.25 1455.94 Q1806.45 1459.48 1806.45 1466.61 Q1806.45 1473.71 1808.25 1477.28 Q1810.08 1480.82 1813.69 1480.82 Q1817.33 1480.82 1819.13 1477.28 Q1820.96 1473.71 1820.96 1466.61 Q1820.96 1459.48 1819.13 1455.94 Q1817.33 1452.37 1813.69 1452.37 M1813.69 1448.67 Q1819.5 1448.67 1822.56 1453.27 Q1825.64 1457.86 1825.64 1466.61 Q1825.64 1475.33 1822.56 1479.94 Q1819.5 1484.52 1813.69 1484.52 Q1807.88 1484.52 1804.8 1479.94 Q1801.75 1475.33 1801.75 1466.61 Q1801.75 1457.86 1804.8 1453.27 Q1807.88 1448.67 1813.69 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1834.66 1479.92 L1842.3 1479.92 L1842.3 1453.55 L1833.99 1455.22 L1833.99 1450.96 L1842.26 1449.29 L1846.93 1449.29 L1846.93 1479.92 L1854.57 1479.92 L1854.57 1483.85 L1834.66 1483.85 L1834.66 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1861.26 1468.97 L1873.74 1468.97 L1873.74 1472.76 L1861.26 1472.76 L1861.26 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1891.12 1452.37 Q1887.51 1452.37 1885.68 1455.94 Q1883.88 1459.48 1883.88 1466.61 Q1883.88 1473.71 1885.68 1477.28 Q1887.51 1480.82 1891.12 1480.82 Q1894.76 1480.82 1896.56 1477.28 Q1898.39 1473.71 1898.39 1466.61 Q1898.39 1459.48 1896.56 1455.94 Q1894.76 1452.37 1891.12 1452.37 M1891.12 1448.67 Q1896.93 1448.67 1899.99 1453.27 Q1903.07 1457.86 1903.07 1466.61 Q1903.07 1475.33 1899.99 1479.94 Q1896.93 1484.52 1891.12 1484.52 Q1885.31 1484.52 1882.23 1479.94 Q1879.18 1475.33 1879.18 1466.61 Q1879.18 1457.86 1882.23 1453.27 Q1885.31 1448.67 1891.12 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1912.09 1479.92 L1919.73 1479.92 L1919.73 1453.55 L1911.42 1455.22 L1911.42 1450.96 L1919.69 1449.29 L1924.36 1449.29 L1924.36 1479.92 L1932 1479.92 L1932 1483.85 L1912.09 1483.85 L1912.09 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2164.63 1479.92 L2180.95 1479.92 L2180.95 1483.85 L2159.01 1483.85 L2159.01 1479.92 Q2161.67 1477.16 2166.25 1472.53 Q2170.86 1467.88 2172.04 1466.54 Q2174.29 1464.01 2175.17 1462.28 Q2176.07 1460.52 2176.07 1458.83 Q2176.07 1456.07 2174.12 1454.34 Q2172.2 1452.6 2169.1 1452.6 Q2166.9 1452.6 2164.45 1453.37 Q2162.02 1454.13 2159.24 1455.68 L2159.24 1450.96 Q2162.06 1449.82 2164.52 1449.25 Q2166.97 1448.67 2169.01 1448.67 Q2174.38 1448.67 2177.57 1451.35 Q2180.77 1454.04 2180.77 1458.53 Q2180.77 1460.66 2179.96 1462.58 Q2179.17 1464.48 2177.06 1467.07 Q2176.49 1467.74 2173.38 1470.96 Q2170.28 1474.15 2164.63 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2200.77 1452.37 Q2197.16 1452.37 2195.33 1455.94 Q2193.52 1459.48 2193.52 1466.61 Q2193.52 1473.71 2195.33 1477.28 Q2197.16 1480.82 2200.77 1480.82 Q2204.4 1480.82 2206.21 1477.28 Q2208.04 1473.71 2208.04 1466.61 Q2208.04 1459.48 2206.21 1455.94 Q2204.4 1452.37 2200.77 1452.37 M2200.77 1448.67 Q2206.58 1448.67 2209.63 1453.27 Q2212.71 1457.86 2212.71 1466.61 Q2212.71 1475.33 2209.63 1479.94 Q2206.58 1484.52 2200.77 1484.52 Q2194.96 1484.52 2191.88 1479.94 Q2188.82 1475.33 2188.82 1466.61 Q2188.82 1457.86 2191.88 1453.27 Q2194.96 1448.67 2200.77 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2224.96 1479.92 L2241.28 1479.92 L2241.28 1483.85 L2219.33 1483.85 L2219.33 1479.92 Q2221.99 1477.16 2226.58 1472.53 Q2231.18 1467.88 2232.36 1466.54 Q2234.61 1464.01 2235.49 1462.28 Q2236.39 1460.52 2236.39 1458.83 Q2236.39 1456.07 2234.45 1454.34 Q2232.53 1452.6 2229.42 1452.6 Q2227.23 1452.6 2224.77 1453.37 Q2222.34 1454.13 2219.56 1455.68 L2219.56 1450.96 Q2222.39 1449.82 2224.84 1449.25 Q2227.3 1448.67 2229.33 1448.67 Q2234.7 1448.67 2237.9 1451.35 Q2241.09 1454.04 2241.09 1458.53 Q2241.09 1460.66 2240.28 1462.58 Q2239.49 1464.48 2237.39 1467.07 Q2236.81 1467.74 2233.71 1470.96 Q2230.61 1474.15 2224.96 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2251.9 1479.92 L2259.54 1479.92 L2259.54 1453.55 L2251.23 1455.22 L2251.23 1450.96 L2259.49 1449.29 L2264.17 1449.29 L2264.17 1479.92 L2271.81 1479.92 L2271.81 1483.85 L2251.9 1483.85 L2251.9 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2278.5 1468.97 L2290.98 1468.97 L2290.98 1472.76 L2278.5 1472.76 L2278.5 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2308.36 1452.37 Q2304.75 1452.37 2302.92 1455.94 Q2301.11 1459.48 2301.11 1466.61 Q2301.11 1473.71 2302.92 1477.28 Q2304.75 1480.82 2308.36 1480.82 Q2311.99 1480.82 2313.8 1477.28 Q2315.63 1473.71 2315.63 1466.61 Q2315.63 1459.48 2313.8 1455.94 Q2311.99 1452.37 2308.36 1452.37 M2308.36 1448.67 Q2314.17 1448.67 2317.23 1453.27 Q2320.3 1457.86 2320.3 1466.61 Q2320.3 1475.33 2317.23 1479.94 Q2314.17 1484.52 2308.36 1484.52 Q2302.55 1484.52 2299.47 1479.94 Q2296.42 1475.33 2296.42 1466.61 Q2296.42 1457.86 2299.47 1453.27 Q2302.55 1448.67 2308.36 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2329.33 1479.92 L2336.97 1479.92 L2336.97 1453.55 L2328.66 1455.22 L2328.66 1450.96 L2336.92 1449.29 L2341.6 1449.29 L2341.6 1479.92 L2349.24 1479.92 L2349.24 1483.85 L2329.33 1483.85 L2329.33 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2355.93 1468.97 L2368.41 1468.97 L2368.41 1472.76 L2355.93 1472.76 L2355.93 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2385.79 1452.37 Q2382.18 1452.37 2380.35 1455.94 Q2378.54 1459.48 2378.54 1466.61 Q2378.54 1473.71 2380.35 1477.28 Q2382.18 1480.82 2385.79 1480.82 Q2389.42 1480.82 2391.23 1477.28 Q2393.06 1473.71 2393.06 1466.61 Q2393.06 1459.48 2391.23 1455.94 Q2389.42 1452.37 2385.79 1452.37 M2385.79 1448.67 Q2391.6 1448.67 2394.66 1453.27 Q2397.73 1457.86 2397.73 1466.61 Q2397.73 1475.33 2394.66 1479.94 Q2391.6 1484.52 2385.79 1484.52 Q2379.98 1484.52 2376.9 1479.94 Q2373.85 1475.33 2373.85 1466.61 Q2373.85 1457.86 2376.9 1453.27 Q2379.98 1448.67 2385.79 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2406.76 1479.92 L2414.4 1479.92 L2414.4 1453.55 L2406.09 1455.22 L2406.09 1450.96 L2414.35 1449.29 L2419.03 1449.29 L2419.03 1479.92 L2426.67 1479.92 L2426.67 1483.85 L2406.76 1483.85 L2406.76 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1227.48 1525.81 L1227.48 1562.76 L1235.25 1562.76 Q1245.08 1562.76 1249.63 1558.3 Q1254.22 1553.85 1254.22 1544.24 Q1254.22 1534.69 1249.63 1530.26 Q1245.08 1525.81 1235.25 1525.81 L1227.48 1525.81 M1221.05 1520.52 L1234.26 1520.52 Q1248.07 1520.52 1254.54 1526.28 Q1261 1532.01 1261 1544.24 Q1261 1556.52 1254.5 1562.28 Q1248.01 1568.04 1234.26 1568.04 L1221.05 1568.04 L1221.05 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1287.19 1550.12 Q1280.09 1550.12 1277.36 1551.75 Q1274.62 1553.37 1274.62 1557.29 Q1274.62 1560.4 1276.66 1562.25 Q1278.73 1564.07 1282.26 1564.07 Q1287.13 1564.07 1290.06 1560.63 Q1293.02 1557.16 1293.02 1551.43 L1293.02 1550.12 L1287.19 1550.12 M1298.87 1547.71 L1298.87 1568.04 L1293.02 1568.04 L1293.02 1562.63 Q1291.01 1565.88 1288.02 1567.44 Q1285.03 1568.97 1280.7 1568.97 Q1275.22 1568.97 1271.98 1565.91 Q1268.76 1562.82 1268.76 1557.67 Q1268.76 1551.65 1272.77 1548.6 Q1276.82 1545.54 1284.81 1545.54 L1293.02 1545.54 L1293.02 1544.97 Q1293.02 1540.93 1290.34 1538.73 Q1287.7 1536.5 1282.9 1536.5 Q1279.84 1536.5 1276.94 1537.23 Q1274.05 1537.97 1271.37 1539.43 L1271.37 1534.02 Q1274.59 1532.78 1277.61 1532.17 Q1280.64 1531.54 1283.5 1531.54 Q1291.23 1531.54 1295.05 1535.55 Q1298.87 1539.56 1298.87 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1316.73 1522.27 L1316.73 1532.4 L1328.79 1532.4 L1328.79 1536.95 L1316.73 1536.95 L1316.73 1556.3 Q1316.73 1560.66 1317.91 1561.9 Q1319.12 1563.14 1322.78 1563.14 L1328.79 1563.14 L1328.79 1568.04 L1322.78 1568.04 Q1316 1568.04 1313.42 1565.53 Q1310.84 1562.98 1310.84 1556.3 L1310.84 1536.95 L1306.54 1536.95 L1306.54 1532.4 L1310.84 1532.4 L1310.84 1522.27 L1316.73 1522.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1366.99 1548.76 L1366.99 1551.62 L1340.06 1551.62 Q1340.44 1557.67 1343.69 1560.85 Q1346.97 1564 1352.79 1564 Q1356.16 1564 1359.32 1563.17 Q1362.5 1562.35 1365.62 1560.69 L1365.62 1566.23 Q1362.47 1567.57 1359.16 1568.27 Q1355.85 1568.97 1352.44 1568.97 Q1343.91 1568.97 1338.91 1564 Q1333.95 1559.04 1333.95 1550.57 Q1333.95 1541.82 1338.66 1536.69 Q1343.4 1531.54 1351.42 1531.54 Q1358.62 1531.54 1362.78 1536.18 Q1366.99 1540.8 1366.99 1548.76 M1361.13 1547.04 Q1361.07 1542.23 1358.42 1539.37 Q1355.81 1536.5 1351.49 1536.5 Q1346.58 1536.5 1343.62 1539.27 Q1340.7 1542.04 1340.25 1547.07 L1361.13 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 235.283,1199.44 2352.76,1199.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 235.283,887.838 2352.76,887.838 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 235.283,576.24 2352.76,576.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 235.283,264.642 2352.76,264.642 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,1423.18 235.283,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,1199.44 260.693,1199.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,887.838 260.693,887.838 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,576.24 260.693,576.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 235.283,264.642 260.693,264.642 \n", " \"/>\n", "<path clip-path=\"url(#clip820)\" d=\"M121.043 1212.78 L137.362 1212.78 L137.362 1216.72 L115.418 1216.72 L115.418 1212.78 Q118.08 1210.03 122.663 1205.4 Q127.269 1200.74 128.45 1199.4 Q130.695 1196.88 131.575 1195.14 Q132.478 1193.38 132.478 1191.69 Q132.478 1188.94 130.533 1187.2 Q128.612 1185.47 125.51 1185.47 Q123.311 1185.47 120.857 1186.23 Q118.427 1186.99 115.649 1188.55 L115.649 1183.82 Q118.473 1182.69 120.927 1182.11 Q123.38 1181.53 125.418 1181.53 Q130.788 1181.53 133.982 1184.22 Q137.177 1186.9 137.177 1191.39 Q137.177 1193.52 136.367 1195.44 Q135.579 1197.34 133.473 1199.93 Q132.894 1200.61 129.792 1203.82 Q126.691 1207.02 121.043 1212.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M157.177 1185.24 Q153.566 1185.24 151.737 1188.8 Q149.931 1192.34 149.931 1199.47 Q149.931 1206.58 151.737 1210.14 Q153.566 1213.68 157.177 1213.68 Q160.811 1213.68 162.616 1210.14 Q164.445 1206.58 164.445 1199.47 Q164.445 1192.34 162.616 1188.8 Q160.811 1185.24 157.177 1185.24 M157.177 1181.53 Q162.987 1181.53 166.042 1186.14 Q169.121 1190.72 169.121 1199.47 Q169.121 1208.2 166.042 1212.8 Q162.987 1217.39 157.177 1217.39 Q151.366 1217.39 148.288 1212.8 Q145.232 1208.2 145.232 1199.47 Q145.232 1190.72 148.288 1186.14 Q151.366 1181.53 157.177 1181.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M187.338 1185.24 Q183.727 1185.24 181.899 1188.8 Q180.093 1192.34 180.093 1199.47 Q180.093 1206.58 181.899 1210.14 Q183.727 1213.68 187.338 1213.68 Q190.973 1213.68 192.778 1210.14 Q194.607 1206.58 194.607 1199.47 Q194.607 1192.34 192.778 1188.8 Q190.973 1185.24 187.338 1185.24 M187.338 1181.53 Q193.149 1181.53 196.204 1186.14 Q199.283 1190.72 199.283 1199.47 Q199.283 1208.2 196.204 1212.8 Q193.149 1217.39 187.338 1217.39 Q181.528 1217.39 178.45 1212.8 Q175.394 1208.2 175.394 1199.47 Q175.394 1190.72 178.45 1186.14 Q181.528 1181.53 187.338 1181.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M129.862 874.632 L118.056 893.081 L129.862 893.081 L129.862 874.632 M128.635 870.558 L134.515 870.558 L134.515 893.081 L139.445 893.081 L139.445 896.97 L134.515 896.97 L134.515 905.118 L129.862 905.118 L129.862 896.97 L114.26 896.97 L114.26 892.456 L128.635 870.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M157.177 873.637 Q153.566 873.637 151.737 877.202 Q149.931 880.743 149.931 887.873 Q149.931 894.98 151.737 898.544 Q153.566 902.086 157.177 902.086 Q160.811 902.086 162.616 898.544 Q164.445 894.98 164.445 887.873 Q164.445 880.743 162.616 877.202 Q160.811 873.637 157.177 873.637 M157.177 869.933 Q162.987 869.933 166.042 874.54 Q169.121 879.123 169.121 887.873 Q169.121 896.6 166.042 901.206 Q162.987 905.79 157.177 905.79 Q151.366 905.79 148.288 901.206 Q145.232 896.6 145.232 887.873 Q145.232 879.123 148.288 874.54 Q151.366 869.933 157.177 869.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M187.338 873.637 Q183.727 873.637 181.899 877.202 Q180.093 880.743 180.093 887.873 Q180.093 894.98 181.899 898.544 Q183.727 902.086 187.338 902.086 Q190.973 902.086 192.778 898.544 Q194.607 894.98 194.607 887.873 Q194.607 880.743 192.778 877.202 Q190.973 873.637 187.338 873.637 M187.338 869.933 Q193.149 869.933 196.204 874.54 Q199.283 879.123 199.283 887.873 Q199.283 896.6 196.204 901.206 Q193.149 905.79 187.338 905.79 Q181.528 905.79 178.45 901.206 Q175.394 896.6 175.394 887.873 Q175.394 879.123 178.45 874.54 Q181.528 869.933 187.338 869.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M127.593 574.377 Q124.445 574.377 122.593 576.529 Q120.765 578.682 120.765 582.432 Q120.765 586.159 122.593 588.335 Q124.445 590.488 127.593 590.488 Q130.742 590.488 132.57 588.335 Q134.422 586.159 134.422 582.432 Q134.422 578.682 132.57 576.529 Q130.742 574.377 127.593 574.377 M136.876 559.724 L136.876 563.983 Q135.117 563.15 133.311 562.71 Q131.529 562.27 129.769 562.27 Q125.14 562.27 122.686 565.395 Q120.255 568.52 119.908 574.84 Q121.274 572.826 123.334 571.761 Q125.394 570.673 127.871 570.673 Q133.08 570.673 136.089 573.844 Q139.121 576.992 139.121 582.432 Q139.121 587.756 135.973 590.974 Q132.825 594.191 127.593 594.191 Q121.598 594.191 118.427 589.608 Q115.256 585.002 115.256 576.275 Q115.256 568.08 119.144 563.219 Q123.033 558.335 129.584 558.335 Q131.343 558.335 133.126 558.682 Q134.931 559.029 136.876 559.724 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M157.177 562.039 Q153.566 562.039 151.737 565.604 Q149.931 569.145 149.931 576.275 Q149.931 583.381 151.737 586.946 Q153.566 590.488 157.177 590.488 Q160.811 590.488 162.616 586.946 Q164.445 583.381 164.445 576.275 Q164.445 569.145 162.616 565.604 Q160.811 562.039 157.177 562.039 M157.177 558.335 Q162.987 558.335 166.042 562.942 Q169.121 567.525 169.121 576.275 Q169.121 585.002 166.042 589.608 Q162.987 594.191 157.177 594.191 Q151.366 594.191 148.288 589.608 Q145.232 585.002 145.232 576.275 Q145.232 567.525 148.288 562.942 Q151.366 558.335 157.177 558.335 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M187.338 562.039 Q183.727 562.039 181.899 565.604 Q180.093 569.145 180.093 576.275 Q180.093 583.381 181.899 586.946 Q183.727 590.488 187.338 590.488 Q190.973 590.488 192.778 586.946 Q194.607 583.381 194.607 576.275 Q194.607 569.145 192.778 565.604 Q190.973 562.039 187.338 562.039 M187.338 558.335 Q193.149 558.335 196.204 562.942 Q199.283 567.525 199.283 576.275 Q199.283 585.002 196.204 589.608 Q193.149 594.191 187.338 594.191 Q181.528 594.191 178.45 589.608 Q175.394 585.002 175.394 576.275 Q175.394 567.525 178.45 562.942 Q181.528 558.335 187.338 558.335 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M127.015 265.51 Q123.681 265.51 121.76 267.292 Q119.862 269.075 119.862 272.2 Q119.862 275.325 121.76 277.107 Q123.681 278.889 127.015 278.889 Q130.348 278.889 132.269 277.107 Q134.191 275.301 134.191 272.2 Q134.191 269.075 132.269 267.292 Q130.371 265.51 127.015 265.51 M122.339 263.519 Q119.33 262.778 117.64 260.718 Q115.973 258.658 115.973 255.695 Q115.973 251.552 118.913 249.144 Q121.876 246.737 127.015 246.737 Q132.177 246.737 135.117 249.144 Q138.056 251.552 138.056 255.695 Q138.056 258.658 136.367 260.718 Q134.7 262.778 131.714 263.519 Q135.093 264.306 136.968 266.598 Q138.867 268.889 138.867 272.2 Q138.867 277.223 135.788 279.908 Q132.732 282.593 127.015 282.593 Q121.297 282.593 118.218 279.908 Q115.163 277.223 115.163 272.2 Q115.163 268.889 117.061 266.598 Q118.959 264.306 122.339 263.519 M120.626 256.135 Q120.626 258.82 122.293 260.325 Q123.982 261.829 127.015 261.829 Q130.024 261.829 131.714 260.325 Q133.427 258.82 133.427 256.135 Q133.427 253.45 131.714 251.945 Q130.024 250.44 127.015 250.44 Q123.982 250.44 122.293 251.945 Q120.626 253.45 120.626 256.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M157.177 250.44 Q153.566 250.44 151.737 254.005 Q149.931 257.547 149.931 264.676 Q149.931 271.783 151.737 275.348 Q153.566 278.889 157.177 278.889 Q160.811 278.889 162.616 275.348 Q164.445 271.783 164.445 264.676 Q164.445 257.547 162.616 254.005 Q160.811 250.44 157.177 250.44 M157.177 246.737 Q162.987 246.737 166.042 251.343 Q169.121 255.927 169.121 264.676 Q169.121 273.403 166.042 278.01 Q162.987 282.593 157.177 282.593 Q151.366 282.593 148.288 278.01 Q145.232 273.403 145.232 264.676 Q145.232 255.927 148.288 251.343 Q151.366 246.737 157.177 246.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M187.338 250.44 Q183.727 250.44 181.899 254.005 Q180.093 257.547 180.093 264.676 Q180.093 271.783 181.899 275.348 Q183.727 278.889 187.338 278.889 Q190.973 278.889 192.778 275.348 Q194.607 271.783 194.607 264.676 Q194.607 257.547 192.778 254.005 Q190.973 250.44 187.338 250.44 M187.338 246.737 Q193.149 246.737 196.204 251.343 Q199.283 255.927 199.283 264.676 Q199.283 273.403 196.204 278.01 Q193.149 282.593 187.338 282.593 Q181.528 282.593 178.45 278.01 Q175.394 273.403 175.394 264.676 Q175.394 255.927 178.45 251.343 Q181.528 246.737 187.338 246.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M20.1444 1236.43 L26.9239 1236.43 Q23.9002 1239.68 22.4043 1243.37 Q20.9083 1247.03 20.9083 1251.17 Q20.9083 1259.32 25.9054 1263.64 Q30.8707 1267.97 40.2919 1267.97 Q49.6813 1267.97 54.6784 1263.64 Q59.6436 1259.32 59.6436 1251.17 Q59.6436 1247.03 58.1477 1243.37 Q56.6518 1239.68 53.6281 1236.43 L60.3439 1236.43 Q62.6355 1239.8 63.7814 1243.59 Q64.9272 1247.35 64.9272 1251.55 Q64.9272 1262.34 58.3387 1268.55 Q51.7183 1274.75 40.2919 1274.75 Q28.8336 1274.75 22.2451 1268.55 Q15.6248 1262.34 15.6248 1251.55 Q15.6248 1247.28 16.7706 1243.53 Q17.8846 1239.74 20.1444 1236.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M32.4621 1212.94 Q32.4621 1217.65 36.1542 1220.39 Q39.8145 1223.13 46.212 1223.13 Q52.6095 1223.13 56.3017 1220.42 Q59.9619 1217.68 59.9619 1212.94 Q59.9619 1208.26 56.2698 1205.53 Q52.5777 1202.79 46.212 1202.79 Q39.8781 1202.79 36.186 1205.53 Q32.4621 1208.26 32.4621 1212.94 M27.4968 1212.94 Q27.4968 1205.3 32.4621 1200.94 Q37.4273 1196.58 46.212 1196.58 Q54.9649 1196.58 59.9619 1200.94 Q64.9272 1205.3 64.9272 1212.94 Q64.9272 1220.61 59.9619 1224.97 Q54.9649 1229.3 46.212 1229.3 Q37.4273 1229.3 32.4621 1224.97 Q27.4968 1220.61 27.4968 1212.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M42.4881 1157.24 L64.0042 1157.24 L64.0042 1163.1 L42.679 1163.1 Q37.6183 1163.1 35.1038 1165.07 Q32.5894 1167.04 32.5894 1170.99 Q32.5894 1175.73 35.6131 1178.47 Q38.6368 1181.21 43.8567 1181.21 L64.0042 1181.21 L64.0042 1187.1 L28.3562 1187.1 L28.3562 1181.21 L33.8944 1181.21 Q30.6797 1179.11 29.0883 1176.28 Q27.4968 1173.41 27.4968 1169.69 Q27.4968 1163.54 31.3163 1160.39 Q35.1038 1157.24 42.4881 1157.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M29.7248 1119.91 L35.1993 1119.91 Q33.8307 1122.39 33.1623 1124.9 Q32.4621 1127.39 32.4621 1129.93 Q32.4621 1135.63 36.0905 1138.78 Q39.6872 1141.93 46.212 1141.93 Q52.7369 1141.93 56.3653 1138.78 Q59.9619 1135.63 59.9619 1129.93 Q59.9619 1127.39 59.2935 1124.9 Q58.5933 1122.39 57.2247 1119.91 L62.6355 1119.91 Q63.7814 1122.36 64.3543 1125 Q64.9272 1127.61 64.9272 1130.57 Q64.9272 1138.62 59.8664 1143.36 Q54.8057 1148.11 46.212 1148.11 Q37.491 1148.11 32.4939 1143.33 Q27.4968 1138.53 27.4968 1130.19 Q27.4968 1127.48 28.0697 1124.9 Q28.6108 1122.33 29.7248 1119.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M44.7161 1079.23 L47.5806 1079.23 L47.5806 1106.16 Q53.6281 1105.78 56.8109 1102.53 Q59.9619 1099.25 59.9619 1093.43 Q59.9619 1090.05 59.1344 1086.9 Q58.3069 1083.72 56.6518 1080.6 L62.1899 1080.6 Q63.5267 1083.75 64.227 1087.06 Q64.9272 1090.37 64.9272 1093.78 Q64.9272 1102.31 59.9619 1107.3 Q54.9967 1112.27 46.5303 1112.27 Q37.7774 1112.27 32.6531 1107.56 Q27.4968 1102.81 27.4968 1094.79 Q27.4968 1087.6 32.1438 1083.43 Q36.7589 1079.23 44.7161 1079.23 M42.9973 1085.09 Q38.1912 1085.15 35.3266 1087.79 Q32.4621 1090.4 32.4621 1094.73 Q32.4621 1099.63 35.2312 1102.59 Q38.0002 1105.52 43.0292 1105.97 L42.9973 1085.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M42.4881 1039.99 L64.0042 1039.99 L64.0042 1045.84 L42.679 1045.84 Q37.6183 1045.84 35.1038 1047.82 Q32.5894 1049.79 32.5894 1053.74 Q32.5894 1058.48 35.6131 1061.22 Q38.6368 1063.95 43.8567 1063.95 L64.0042 1063.95 L64.0042 1069.84 L28.3562 1069.84 L28.3562 1063.95 L33.8944 1063.95 Q30.6797 1061.85 29.0883 1059.02 Q27.4968 1056.15 27.4968 1052.43 Q27.4968 1046.29 31.3163 1043.14 Q35.1038 1039.99 42.4881 1039.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M18.2347 1022.51 L28.3562 1022.51 L28.3562 1010.45 L32.9077 1010.45 L32.9077 1022.51 L52.2594 1022.51 Q56.6199 1022.51 57.8613 1021.33 Q59.1026 1020.12 59.1026 1016.46 L59.1026 1010.45 L64.0042 1010.45 L64.0042 1016.46 Q64.0042 1023.24 61.4897 1025.82 Q58.9434 1028.4 52.2594 1028.4 L32.9077 1028.4 L32.9077 1032.7 L28.3562 1032.7 L28.3562 1028.4 L18.2347 1028.4 L18.2347 1022.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M33.8307 982.089 Q33.2578 983.076 33.0032 984.254 Q32.7167 985.4 32.7167 986.8 Q32.7167 991.765 35.9632 994.439 Q39.1779 997.081 45.2253 997.081 L64.0042 997.081 L64.0042 1002.97 L28.3562 1002.97 L28.3562 997.081 L33.8944 997.081 Q30.6479 995.235 29.0883 992.274 Q27.4968 989.314 27.4968 985.081 Q27.4968 984.476 27.5923 983.744 Q27.656 983.012 27.8151 982.121 L33.8307 982.089 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M46.0847 959.746 Q46.0847 966.843 47.7079 969.581 Q49.3312 972.318 53.2461 972.318 Q56.3653 972.318 58.2114 970.281 Q60.0256 968.212 60.0256 964.679 Q60.0256 959.809 56.5881 956.881 Q53.1188 953.921 47.3897 953.921 L46.0847 953.921 L46.0847 959.746 M43.6657 948.065 L64.0042 948.065 L64.0042 953.921 L58.5933 953.921 Q61.8398 955.926 63.3994 958.918 Q64.9272 961.91 64.9272 966.239 Q64.9272 971.713 61.8716 974.96 Q58.7843 978.174 53.6281 978.174 Q47.6125 978.174 44.5569 974.164 Q41.5014 970.122 41.5014 962.133 L41.5014 953.921 L40.9285 953.921 Q36.8862 953.921 34.6901 956.595 Q32.4621 959.236 32.4621 964.043 Q32.4621 967.098 33.1941 969.994 Q33.9262 972.891 35.3903 975.564 L29.9795 975.564 Q28.7381 972.35 28.1334 969.326 Q27.4968 966.302 27.4968 963.438 Q27.4968 955.703 31.5072 951.884 Q35.5176 948.065 43.6657 948.065 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M18.2347 930.209 L28.3562 930.209 L28.3562 918.146 L32.9077 918.146 L32.9077 930.209 L52.2594 930.209 Q56.6199 930.209 57.8613 929.031 Q59.1026 927.822 59.1026 924.161 L59.1026 918.146 L64.0042 918.146 L64.0042 924.161 Q64.0042 930.941 61.4897 933.519 Q58.9434 936.097 52.2594 936.097 L32.9077 936.097 L32.9077 940.394 L28.3562 940.394 L28.3562 936.097 L18.2347 936.097 L18.2347 930.209 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M28.3562 910.443 L28.3562 904.587 L64.0042 904.587 L64.0042 910.443 L28.3562 910.443 M14.479 910.443 L14.479 904.587 L21.895 904.587 L21.895 910.443 L14.479 910.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M32.4621 878.519 Q32.4621 883.23 36.1542 885.967 Q39.8145 888.704 46.212 888.704 Q52.6095 888.704 56.3017 885.999 Q59.9619 883.262 59.9619 878.519 Q59.9619 873.84 56.2698 871.103 Q52.5777 868.366 46.212 868.366 Q39.8781 868.366 36.186 871.103 Q32.4621 873.84 32.4621 878.519 M27.4968 878.519 Q27.4968 870.88 32.4621 866.52 Q37.4273 862.159 46.212 862.159 Q54.9649 862.159 59.9619 866.52 Q64.9272 870.88 64.9272 878.519 Q64.9272 886.19 59.9619 890.55 Q54.9649 894.879 46.212 894.879 Q37.4273 894.879 32.4621 890.55 Q27.4968 886.19 27.4968 878.519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M42.4881 822.819 L64.0042 822.819 L64.0042 828.676 L42.679 828.676 Q37.6183 828.676 35.1038 830.649 Q32.5894 832.623 32.5894 836.569 Q32.5894 841.312 35.6131 844.049 Q38.6368 846.786 43.8567 846.786 L64.0042 846.786 L64.0042 852.675 L28.3562 852.675 L28.3562 846.786 L33.8944 846.786 Q30.6797 844.686 29.0883 841.853 Q27.4968 838.988 27.4968 835.264 Q27.4968 829.121 31.3163 825.97 Q35.1038 822.819 42.4881 822.819 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M32.4621 776.604 Q32.4621 781.315 36.1542 784.052 Q39.8145 786.789 46.212 786.789 Q52.6095 786.789 56.3017 784.084 Q59.9619 781.347 59.9619 776.604 Q59.9619 771.926 56.2698 769.188 Q52.5777 766.451 46.212 766.451 Q39.8781 766.451 36.186 769.188 Q32.4621 771.926 32.4621 776.604 M27.4968 776.604 Q27.4968 768.965 32.4621 764.605 Q37.4273 760.244 46.212 760.244 Q54.9649 760.244 59.9619 764.605 Q64.9272 768.965 64.9272 776.604 Q64.9272 784.275 59.9619 788.636 Q54.9649 792.964 46.212 792.964 Q37.4273 792.964 32.4621 788.636 Q27.4968 784.275 27.4968 776.604 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M14.479 732.49 L19.3487 732.49 L19.3487 738.092 Q19.3487 741.243 20.6219 742.484 Q21.895 743.694 25.2052 743.694 L28.3562 743.694 L28.3562 734.05 L32.9077 734.05 L32.9077 743.694 L64.0042 743.694 L64.0042 749.582 L32.9077 749.582 L32.9077 755.184 L28.3562 755.184 L28.3562 749.582 L25.8736 749.582 Q19.9216 749.582 17.2162 746.813 Q14.479 744.044 14.479 738.028 L14.479 732.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M58.657 701.203 L77.5631 701.203 L77.5631 707.091 L28.3562 707.091 L28.3562 701.203 L33.7671 701.203 Q30.5842 699.356 29.0564 696.556 Q27.4968 693.723 27.4968 689.808 Q27.4968 683.315 32.6531 679.273 Q37.8093 675.199 46.212 675.199 Q54.6147 675.199 59.771 679.273 Q64.9272 683.315 64.9272 689.808 Q64.9272 693.723 63.3994 696.556 Q61.8398 699.356 58.657 701.203 M46.212 681.278 Q39.7508 681.278 36.0905 683.951 Q32.3984 686.593 32.3984 691.24 Q32.3984 695.887 36.0905 698.561 Q39.7508 701.203 46.212 701.203 Q52.6732 701.203 56.3653 698.561 Q60.0256 695.887 60.0256 691.24 Q60.0256 686.593 56.3653 683.951 Q52.6732 681.278 46.212 681.278 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M35.1993 637.736 Q31.2526 635.54 29.3747 632.485 Q27.4968 629.429 27.4968 625.291 Q27.4968 619.721 31.4117 616.698 Q35.2948 613.674 42.4881 613.674 L64.0042 613.674 L64.0042 619.562 L42.679 619.562 Q37.5546 619.562 35.072 621.377 Q32.5894 623.191 32.5894 626.915 Q32.5894 631.466 35.6131 634.108 Q38.6368 636.75 43.8567 636.75 L64.0042 636.75 L64.0042 642.638 L42.679 642.638 Q37.5228 642.638 35.072 644.452 Q32.5894 646.266 32.5894 650.054 Q32.5894 654.542 35.6449 657.184 Q38.6686 659.825 43.8567 659.825 L64.0042 659.825 L64.0042 665.714 L28.3562 665.714 L28.3562 659.825 L33.8944 659.825 Q30.616 657.82 29.0564 655.019 Q27.4968 652.218 27.4968 648.367 Q27.4968 644.484 29.4702 641.779 Q31.4436 639.041 35.1993 637.736 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M58.5933 595.627 L58.5933 573.188 L64.0042 573.188 L64.0042 603.362 L58.5933 603.362 Q54.8057 599.701 48.44 593.399 Q42.0425 587.065 40.1964 585.442 Q36.7271 582.355 34.34 581.145 Q31.921 579.904 29.5975 579.904 Q25.8099 579.904 23.4228 582.578 Q21.0356 585.219 21.0356 589.484 Q21.0356 592.508 22.086 595.882 Q23.1363 599.224 25.2688 603.043 L18.7758 603.043 Q17.2162 599.16 16.4205 595.786 Q15.6248 592.413 15.6248 589.612 Q15.6248 582.227 19.3169 577.835 Q23.009 573.443 29.1837 573.443 Q32.112 573.443 34.7537 574.557 Q37.3637 575.639 40.9285 578.535 Q41.8515 579.331 46.2757 583.596 Q50.668 587.861 58.5933 595.627 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M55.9197 559.693 L55.9197 552.977 L64.0042 552.977 L64.0042 559.693 L55.9197 559.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M16.4842 538.909 L16.4842 513.669 L21.895 513.669 L21.895 533.021 L33.5443 533.021 Q33.0668 531.62 32.844 530.22 Q32.5894 528.819 32.5894 527.419 Q32.5894 519.462 36.9499 514.815 Q41.3104 510.168 48.7583 510.168 Q56.429 510.168 60.694 514.942 Q64.9272 519.716 64.9272 528.405 Q64.9272 531.397 64.4179 534.516 Q63.9087 537.604 62.8902 540.914 L56.429 540.914 Q57.9886 538.049 58.7524 534.994 Q59.5163 531.938 59.5163 528.533 Q59.5163 523.026 56.6199 519.812 Q53.7235 516.597 48.7583 516.597 Q43.793 516.597 40.8966 519.812 Q38.0002 523.026 38.0002 528.533 Q38.0002 531.111 38.5732 533.689 Q39.1461 536.235 40.3556 538.909 L16.4842 538.909 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M55.9197 496.832 L55.9197 490.116 L61.3942 490.116 L71.5793 495.336 L71.5793 499.441 L61.3942 496.832 L55.9197 496.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M77.5631 457.491 L28.3562 457.491 L28.3562 451.635 L50.5089 451.635 Q55.124 451.635 57.4793 449.439 Q59.8346 447.243 59.8346 442.946 Q59.8346 438.235 57.161 435.88 Q54.4874 433.493 49.1402 433.493 L28.3562 433.493 L28.3562 427.636 L55.7924 427.636 Q57.7021 427.636 58.6251 427.095 Q59.5163 426.522 59.5163 425.345 Q59.5163 425.058 59.3572 424.549 Q59.1662 424.04 58.7843 423.148 L63.4949 423.148 Q64.227 424.453 64.5771 425.631 Q64.9272 426.777 64.9272 427.891 Q64.9272 430.087 63.6859 431.392 Q62.4446 432.697 59.8983 433.174 Q62.4127 434.766 63.6859 437.089 Q64.9272 439.381 64.9272 442.5 Q64.9272 445.747 63.6859 448.038 Q62.4446 450.298 59.9619 451.635 L77.5631 451.635 L77.5631 457.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M45.7664 391.956 Q39.4007 391.956 35.8996 394.598 Q32.3984 397.208 32.3984 401.951 Q32.3984 406.661 35.8996 409.303 Q39.4007 411.913 45.7664 411.913 Q52.1003 411.913 55.6014 409.303 Q59.1026 406.661 59.1026 401.951 Q59.1026 397.208 55.6014 394.598 Q52.1003 391.956 45.7664 391.956 M59.58 386.1 Q68.683 386.1 73.1071 390.142 Q77.5631 394.184 77.5631 402.524 Q77.5631 405.611 77.0857 408.348 Q76.6401 411.085 75.6852 413.664 L69.9879 413.664 Q71.3884 411.085 72.0568 408.571 Q72.7252 406.057 72.7252 403.447 Q72.7252 397.686 69.7015 394.821 Q66.7096 391.956 60.6303 391.956 L57.7339 391.956 Q60.885 393.771 62.4446 396.603 Q64.0042 399.436 64.0042 403.383 Q64.0042 409.94 59.0071 413.95 Q54.01 417.96 45.7664 417.96 Q37.491 417.96 32.4939 413.95 Q27.4968 409.94 27.4968 403.383 Q27.4968 399.436 29.0564 396.603 Q30.616 393.771 33.7671 391.956 L28.3562 391.956 L28.3562 386.1 L59.58 386.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M16.4842 363.629 L16.4842 358.218 L70.0516 374.769 L70.0516 380.18 L16.4842 363.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M35.1993 324.321 Q31.2526 322.125 29.3747 319.069 Q27.4968 316.014 27.4968 311.876 Q27.4968 306.306 31.4117 303.282 Q35.2948 300.258 42.4881 300.258 L64.0042 300.258 L64.0042 306.147 L42.679 306.147 Q37.5546 306.147 35.072 307.961 Q32.5894 309.775 32.5894 313.499 Q32.5894 318.051 35.6131 320.692 Q38.6368 323.334 43.8567 323.334 L64.0042 323.334 L64.0042 329.222 L42.679 329.222 Q37.5228 329.222 35.072 331.037 Q32.5894 332.851 32.5894 336.639 Q32.5894 341.126 35.6449 343.768 Q38.6686 346.41 43.8567 346.41 L64.0042 346.41 L64.0042 352.298 L28.3562 352.298 L28.3562 346.41 L33.8944 346.41 Q30.616 344.405 29.0564 341.604 Q27.4968 338.803 27.4968 334.952 Q27.4968 331.069 29.4702 328.363 Q31.4436 325.626 35.1993 324.321 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M28.3562 278.042 Q28.9291 275.114 30.6797 273.523 Q32.3984 271.899 35.0084 271.899 Q38.9551 271.899 41.0876 274.923 Q43.2201 277.947 43.2201 283.58 Q43.2201 285.395 42.9018 287.4 Q42.5517 289.373 41.9152 291.601 L38.0639 291.601 Q38.9233 289.946 39.337 288.068 Q39.7508 286.158 39.7508 284.026 Q39.7508 280.557 38.5095 278.647 Q37.2364 276.737 35.0084 276.737 Q32.6531 276.737 31.4436 278.52 Q30.2341 280.27 30.2341 283.708 L30.2341 286.445 L26.7966 286.445 L26.7966 283.453 Q26.7966 280.461 25.8099 278.933 Q24.7914 277.374 22.8817 277.374 Q21.0356 277.374 20.0808 278.965 Q19.0941 280.557 19.0941 283.58 Q19.0941 284.853 19.3806 286.477 Q19.667 288.1 20.3991 290.678 L16.7388 290.678 Q16.1977 288.355 15.9112 286.318 Q15.6248 284.281 15.6248 282.53 Q15.6248 277.947 17.5027 275.273 Q19.3806 272.568 22.5316 272.568 Q24.7277 272.568 26.2555 274 Q27.7833 275.432 28.3562 278.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M318.602 12.096 L356.843 12.096 L356.843 18.9825 L326.785 18.9825 L326.785 36.8875 L355.587 36.8875 L355.587 43.7741 L326.785 43.7741 L326.785 65.6895 L357.572 65.6895 L357.572 72.576 L318.602 72.576 L318.602 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M408.411 27.2059 L392.005 49.2833 L409.261 72.576 L400.471 72.576 L387.265 54.752 L374.059 72.576 L365.269 72.576 L382.89 48.8377 L366.767 27.2059 L375.558 27.2059 L387.589 43.369 L399.62 27.2059 L408.411 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M450.986 28.9478 L450.986 35.9153 Q447.826 34.1734 444.626 33.3227 Q441.466 32.4315 438.225 32.4315 Q430.974 32.4315 426.964 37.0496 Q422.953 41.6271 422.953 49.9314 Q422.953 58.2358 426.964 62.8538 Q430.974 67.4314 438.225 67.4314 Q441.466 67.4314 444.626 66.5807 Q447.826 65.6895 450.986 63.9476 L450.986 70.8341 Q447.867 72.2924 444.504 73.0216 Q441.183 73.7508 437.415 73.7508 Q427.166 73.7508 421.131 67.3098 Q415.095 60.8689 415.095 49.9314 Q415.095 38.832 421.171 32.472 Q427.288 26.1121 437.901 26.1121 Q441.345 26.1121 444.626 26.8413 Q447.907 27.5299 450.986 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M502.756 48.0275 L502.756 51.6733 L468.486 51.6733 Q468.972 59.3701 473.104 63.421 Q477.276 67.4314 484.689 67.4314 Q488.983 67.4314 492.994 66.3781 Q497.044 65.3249 501.014 63.2184 L501.014 70.267 Q497.004 71.9684 492.791 72.8596 Q488.578 73.7508 484.244 73.7508 Q473.387 73.7508 467.027 67.4314 Q460.708 61.1119 460.708 50.3365 Q460.708 39.1965 466.703 32.6746 Q472.739 26.1121 482.947 26.1121 Q492.102 26.1121 497.409 32.0264 Q502.756 37.9003 502.756 48.0275 M495.303 45.84 Q495.222 39.7232 491.859 36.0774 Q488.538 32.4315 483.028 32.4315 Q476.79 32.4315 473.023 35.9558 Q469.296 39.4801 468.729 45.8805 L495.303 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M553.798 48.0275 L553.798 51.6733 L519.527 51.6733 Q520.013 59.3701 524.145 63.421 Q528.317 67.4314 535.731 67.4314 Q540.025 67.4314 544.035 66.3781 Q548.086 65.3249 552.056 63.2184 L552.056 70.267 Q548.045 71.9684 543.832 72.8596 Q539.619 73.7508 535.285 73.7508 Q524.429 73.7508 518.069 67.4314 Q511.749 61.1119 511.749 50.3365 Q511.749 39.1965 517.745 32.6746 Q523.78 26.1121 533.989 26.1121 Q543.144 26.1121 548.45 32.0264 Q553.798 37.9003 553.798 48.0275 M546.344 45.84 Q546.263 39.7232 542.901 36.0774 Q539.579 32.4315 534.07 32.4315 Q527.831 32.4315 524.064 35.9558 Q520.337 39.4801 519.77 45.8805 L546.344 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M595.887 34.0924 L595.887 9.54393 L603.34 9.54393 L603.34 72.576 L595.887 72.576 L595.887 65.7705 Q593.537 69.8214 589.932 71.8063 Q586.367 73.7508 581.344 73.7508 Q573.12 73.7508 567.935 67.1883 Q562.791 60.6258 562.791 49.9314 Q562.791 39.2371 567.935 32.6746 Q573.12 26.1121 581.344 26.1121 Q586.367 26.1121 589.932 28.0971 Q593.537 30.0415 595.887 34.0924 M570.487 49.9314 Q570.487 58.1548 573.85 62.8538 Q577.252 67.5124 583.167 67.5124 Q589.081 67.5124 592.484 62.8538 Q595.887 58.1548 595.887 49.9314 Q595.887 41.7081 592.484 37.0496 Q589.081 32.3505 583.167 32.3505 Q577.252 32.3505 573.85 37.0496 Q570.487 41.7081 570.487 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M657.501 48.0275 L657.501 51.6733 L623.23 51.6733 Q623.716 59.3701 627.848 63.421 Q632.021 67.4314 639.434 67.4314 Q643.728 67.4314 647.738 66.3781 Q651.789 65.3249 655.759 63.2184 L655.759 70.267 Q651.749 71.9684 647.536 72.8596 Q643.323 73.7508 638.988 73.7508 Q628.132 73.7508 621.772 67.4314 Q615.452 61.1119 615.452 50.3365 Q615.452 39.1965 621.448 32.6746 Q627.484 26.1121 637.692 26.1121 Q646.847 26.1121 652.154 32.0264 Q657.501 37.9003 657.501 48.0275 M650.047 45.84 Q649.966 39.7232 646.604 36.0774 Q643.282 32.4315 637.773 32.4315 Q631.535 32.4315 627.767 35.9558 Q624.04 39.4801 623.473 45.8805 L650.047 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M707.448 45.1919 L707.448 72.576 L699.995 72.576 L699.995 45.4349 Q699.995 38.994 697.483 35.7938 Q694.972 32.5936 689.949 32.5936 Q683.913 32.5936 680.429 36.4419 Q676.945 40.2903 676.945 46.9338 L676.945 72.576 L669.451 72.576 L669.451 27.2059 L676.945 27.2059 L676.945 34.2544 Q679.619 30.163 683.224 28.1376 Q686.87 26.1121 691.609 26.1121 Q699.428 26.1121 703.438 30.9732 Q707.448 35.7938 707.448 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M754.966 28.9478 L754.966 35.9153 Q751.806 34.1734 748.606 33.3227 Q745.446 32.4315 742.205 32.4315 Q734.954 32.4315 730.944 37.0496 Q726.933 41.6271 726.933 49.9314 Q726.933 58.2358 730.944 62.8538 Q734.954 67.4314 742.205 67.4314 Q745.446 67.4314 748.606 66.5807 Q751.806 65.6895 754.966 63.9476 L754.966 70.8341 Q751.846 72.2924 748.484 73.0216 Q745.162 73.7508 741.395 73.7508 Q731.146 73.7508 725.11 67.3098 Q719.075 60.8689 719.075 49.9314 Q719.075 38.832 725.151 32.472 Q731.268 26.1121 741.881 26.1121 Q745.324 26.1121 748.606 26.8413 Q751.887 27.5299 754.966 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M806.736 48.0275 L806.736 51.6733 L772.465 51.6733 Q772.952 59.3701 777.083 63.421 Q781.256 67.4314 788.669 67.4314 Q792.963 67.4314 796.973 66.3781 Q801.024 65.3249 804.994 63.2184 L804.994 70.267 Q800.984 71.9684 796.771 72.8596 Q792.558 73.7508 788.223 73.7508 Q777.367 73.7508 771.007 67.4314 Q764.688 61.1119 764.688 50.3365 Q764.688 39.1965 770.683 32.6746 Q776.719 26.1121 786.927 26.1121 Q796.082 26.1121 801.389 32.0264 Q806.736 37.9003 806.736 48.0275 M799.282 45.84 Q799.201 39.7232 795.839 36.0774 Q792.517 32.4315 787.008 32.4315 Q780.77 32.4315 777.002 35.9558 Q773.276 39.4801 772.709 45.8805 L799.282 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M847.893 28.5427 L847.893 35.5912 Q844.734 33.9709 841.331 33.1607 Q837.928 32.3505 834.282 32.3505 Q828.733 32.3505 825.937 34.0519 Q823.183 35.7533 823.183 39.156 Q823.183 41.7486 825.168 43.2475 Q827.153 44.7058 833.148 46.0426 L835.7 46.6097 Q843.64 48.3111 846.962 51.4303 Q850.324 54.509 850.324 60.0587 Q850.324 66.3781 845.301 70.0644 Q840.318 73.7508 831.568 73.7508 Q827.922 73.7508 823.952 73.0216 Q820.023 72.3329 815.648 70.9151 L815.648 63.2184 Q819.78 65.3654 823.79 66.4591 Q827.801 67.5124 831.73 67.5124 Q836.996 67.5124 839.832 65.73 Q842.668 63.9071 842.668 60.6258 Q842.668 57.5877 840.602 55.9673 Q838.576 54.3469 831.649 52.8481 L829.057 52.2405 Q822.13 50.7821 819.051 47.7845 Q815.972 44.7463 815.972 39.4801 Q815.972 33.0797 820.509 29.5959 Q825.046 26.1121 833.391 26.1121 Q837.523 26.1121 841.169 26.7198 Q844.815 27.3274 847.893 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M906.145 32.4315 Q900.15 32.4315 896.666 37.1306 Q893.182 41.7891 893.182 49.9314 Q893.182 58.0738 896.626 62.7728 Q900.109 67.4314 906.145 67.4314 Q912.1 67.4314 915.584 62.7323 Q919.068 58.0333 919.068 49.9314 Q919.068 41.8701 915.584 37.1711 Q912.1 32.4315 906.145 32.4315 M906.145 26.1121 Q915.867 26.1121 921.417 32.4315 Q926.967 38.7509 926.967 49.9314 Q926.967 61.0714 921.417 67.4314 Q915.867 73.7508 906.145 73.7508 Q896.383 73.7508 890.833 67.4314 Q885.324 61.0714 885.324 49.9314 Q885.324 38.7509 890.833 32.4315 Q896.383 26.1121 906.145 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M962.291 9.54393 L962.291 15.7418 L955.161 15.7418 Q951.151 15.7418 949.571 17.3622 Q948.032 18.9825 948.032 23.1955 L948.032 27.2059 L960.306 27.2059 L960.306 32.9987 L948.032 32.9987 L948.032 72.576 L940.537 72.576 L940.537 32.9987 L933.408 32.9987 L933.408 27.2059 L940.537 27.2059 L940.537 24.0462 Q940.537 16.471 944.062 13.0277 Q947.586 9.54393 955.242 9.54393 L962.291 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1002.27 14.324 L1002.27 27.2059 L1017.63 27.2059 L1017.63 32.9987 L1002.27 32.9987 L1002.27 57.6282 Q1002.27 63.1779 1003.77 64.7578 Q1005.31 66.3376 1009.97 66.3376 L1017.63 66.3376 L1017.63 72.576 L1009.97 72.576 Q1001.34 72.576 998.06 69.3758 Q994.779 66.1351 994.779 57.6282 L994.779 32.9987 L989.31 32.9987 L989.31 27.2059 L994.779 27.2059 L994.779 14.324 L1002.27 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1065.14 45.1919 L1065.14 72.576 L1057.69 72.576 L1057.69 45.4349 Q1057.69 38.994 1055.18 35.7938 Q1052.67 32.5936 1047.64 32.5936 Q1041.61 32.5936 1038.12 36.4419 Q1034.64 40.2903 1034.64 46.9338 L1034.64 72.576 L1027.15 72.576 L1027.15 9.54393 L1034.64 9.54393 L1034.64 34.2544 Q1037.31 30.163 1040.92 28.1376 Q1044.56 26.1121 1049.3 26.1121 Q1057.12 26.1121 1061.13 30.9732 Q1065.14 35.7938 1065.14 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1118.82 48.0275 L1118.82 51.6733 L1084.55 51.6733 Q1085.03 59.3701 1089.17 63.421 Q1093.34 67.4314 1100.75 67.4314 Q1105.04 67.4314 1109.06 66.3781 Q1113.11 65.3249 1117.08 63.2184 L1117.08 70.267 Q1113.07 71.9684 1108.85 72.8596 Q1104.64 73.7508 1100.31 73.7508 Q1089.45 73.7508 1083.09 67.4314 Q1076.77 61.1119 1076.77 50.3365 Q1076.77 39.1965 1082.76 32.6746 Q1088.8 26.1121 1099.01 26.1121 Q1108.16 26.1121 1113.47 32.0264 Q1118.82 37.9003 1118.82 48.0275 M1111.36 45.84 Q1111.28 39.7232 1107.92 36.0774 Q1104.6 32.4315 1099.09 32.4315 Q1092.85 32.4315 1089.08 35.9558 Q1085.36 39.4801 1084.79 45.8805 L1111.36 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1177.96 20.1573 L1166.86 50.2555 L1189.1 50.2555 L1177.96 20.1573 M1173.34 12.096 L1182.62 12.096 L1205.67 72.576 L1197.16 72.576 L1191.65 57.061 L1164.39 57.061 L1158.88 72.576 L1150.25 72.576 L1173.34 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1237.02 20.1573 L1225.92 50.2555 L1248.16 50.2555 L1237.02 20.1573 M1232.41 12.096 L1241.68 12.096 L1264.73 72.576 L1256.22 72.576 L1250.72 57.061 L1223.45 57.061 L1217.94 72.576 L1209.31 72.576 L1232.41 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1296.65 17.6457 Q1287.74 17.6457 1282.47 24.2892 Q1277.25 30.9327 1277.25 42.3968 Q1277.25 53.8203 1282.47 60.4638 Q1287.74 67.1073 1296.65 67.1073 Q1305.56 67.1073 1310.75 60.4638 Q1315.98 53.8203 1315.98 42.3968 Q1315.98 30.9327 1310.75 24.2892 Q1305.56 17.6457 1296.65 17.6457 M1308.12 71.4823 L1318.89 83.2704 L1309.01 83.2704 L1300.06 73.5887 Q1298.72 73.6697 1297.99 73.7103 Q1297.3 73.7508 1296.65 73.7508 Q1283.89 73.7508 1276.24 65.2439 Q1268.62 56.6965 1268.62 42.3968 Q1268.62 28.0566 1276.24 19.5497 Q1283.89 11.0023 1296.65 11.0023 Q1309.37 11.0023 1316.99 19.5497 Q1324.6 28.0566 1324.6 42.3968 Q1324.6 52.9291 1320.35 60.4233 Q1316.14 67.9175 1308.12 71.4823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1361.95 17.6457 Q1353.04 17.6457 1347.77 24.2892 Q1342.55 30.9327 1342.55 42.3968 Q1342.55 53.8203 1347.77 60.4638 Q1353.04 67.1073 1361.95 67.1073 Q1370.87 67.1073 1376.05 60.4638 Q1381.28 53.8203 1381.28 42.3968 Q1381.28 30.9327 1376.05 24.2892 Q1370.87 17.6457 1361.95 17.6457 M1361.95 11.0023 Q1374.67 11.0023 1382.29 19.5497 Q1389.9 28.0566 1389.9 42.3968 Q1389.9 56.6965 1382.29 65.2439 Q1374.67 73.7508 1361.95 73.7508 Q1349.19 73.7508 1341.54 65.2439 Q1333.92 56.737 1333.92 42.3968 Q1333.92 28.0566 1341.54 19.5497 Q1349.19 11.0023 1361.95 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1428.75 27.2059 L1436.21 27.2059 L1436.21 72.576 L1428.75 72.576 L1428.75 27.2059 M1428.75 9.54393 L1436.21 9.54393 L1436.21 18.9825 L1428.75 18.9825 L1428.75 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1489.52 45.1919 L1489.52 72.576 L1482.06 72.576 L1482.06 45.4349 Q1482.06 38.994 1479.55 35.7938 Q1477.04 32.5936 1472.02 32.5936 Q1465.98 32.5936 1462.5 36.4419 Q1459.01 40.2903 1459.01 46.9338 L1459.01 72.576 L1451.52 72.576 L1451.52 27.2059 L1459.01 27.2059 L1459.01 34.2544 Q1461.69 30.163 1465.29 28.1376 Q1468.94 26.1121 1473.68 26.1121 Q1481.5 26.1121 1485.51 30.9732 Q1489.52 35.7938 1489.52 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1576.37 16.7545 L1576.37 25.383 Q1572.24 21.5346 1567.54 19.6307 Q1562.88 17.7268 1557.61 17.7268 Q1547.24 17.7268 1541.73 24.0867 Q1536.22 30.4061 1536.22 42.3968 Q1536.22 54.3469 1541.73 60.7069 Q1547.24 67.0263 1557.61 67.0263 Q1562.88 67.0263 1567.54 65.1223 Q1572.24 63.2184 1576.37 59.3701 L1576.37 67.9175 Q1572.07 70.8341 1567.25 72.2924 Q1562.47 73.7508 1557.13 73.7508 Q1543.39 73.7508 1535.49 65.3654 Q1527.59 56.9395 1527.59 42.3968 Q1527.59 27.8135 1535.49 19.4281 Q1543.39 11.0023 1557.13 11.0023 Q1562.55 11.0023 1567.33 12.4606 Q1572.15 13.8784 1576.37 16.7545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1627.49 48.0275 L1627.49 51.6733 L1593.22 51.6733 Q1593.71 59.3701 1597.84 63.421 Q1602.01 67.4314 1609.42 67.4314 Q1613.72 67.4314 1617.73 66.3781 Q1621.78 65.3249 1625.75 63.2184 L1625.75 70.267 Q1621.74 71.9684 1617.52 72.8596 Q1613.31 73.7508 1608.98 73.7508 Q1598.12 73.7508 1591.76 67.4314 Q1585.44 61.1119 1585.44 50.3365 Q1585.44 39.1965 1591.44 32.6746 Q1597.47 26.1121 1607.68 26.1121 Q1616.84 26.1121 1622.14 32.0264 Q1627.49 37.9003 1627.49 48.0275 M1620.04 45.84 Q1619.96 39.7232 1616.59 36.0774 Q1613.27 32.4315 1607.76 32.4315 Q1601.52 32.4315 1597.76 35.9558 Q1594.03 39.4801 1593.46 45.8805 L1620.04 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1677.44 45.1919 L1677.44 72.576 L1669.98 72.576 L1669.98 45.4349 Q1669.98 38.994 1667.47 35.7938 Q1664.96 32.5936 1659.94 32.5936 Q1653.9 32.5936 1650.42 36.4419 Q1646.93 40.2903 1646.93 46.9338 L1646.93 72.576 L1639.44 72.576 L1639.44 27.2059 L1646.93 27.2059 L1646.93 34.2544 Q1649.61 30.163 1653.21 28.1376 Q1656.86 26.1121 1661.6 26.1121 Q1669.42 26.1121 1673.43 30.9732 Q1677.44 35.7938 1677.44 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1699.68 14.324 L1699.68 27.2059 L1715.03 27.2059 L1715.03 32.9987 L1699.68 32.9987 L1699.68 57.6282 Q1699.68 63.1779 1701.18 64.7578 Q1702.72 66.3376 1707.37 66.3376 L1715.03 66.3376 L1715.03 72.576 L1707.37 72.576 Q1698.75 72.576 1695.46 69.3758 Q1692.18 66.1351 1692.18 57.6282 L1692.18 32.9987 L1686.71 32.9987 L1686.71 27.2059 L1692.18 27.2059 L1692.18 14.324 L1699.68 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1751.12 34.1734 Q1749.87 33.4443 1748.37 33.1202 Q1746.91 32.7556 1745.13 32.7556 Q1738.81 32.7556 1735.41 36.8875 Q1732.04 40.9789 1732.04 48.6757 L1732.04 72.576 L1724.55 72.576 L1724.55 27.2059 L1732.04 27.2059 L1732.04 34.2544 Q1734.39 30.1225 1738.16 28.1376 Q1741.93 26.1121 1747.32 26.1121 Q1748.09 26.1121 1749.02 26.2337 Q1749.95 26.3147 1751.08 26.5172 L1751.12 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1779.56 49.7694 Q1770.53 49.7694 1767.04 51.8354 Q1763.56 53.9013 1763.56 58.8839 Q1763.56 62.8538 1766.15 65.2034 Q1768.79 67.5124 1773.28 67.5124 Q1779.48 67.5124 1783.21 63.1374 Q1786.97 58.7219 1786.97 51.4303 L1786.97 49.7694 L1779.56 49.7694 M1794.43 46.6907 L1794.43 72.576 L1786.97 72.576 L1786.97 65.6895 Q1784.42 69.8214 1780.61 71.8063 Q1776.81 73.7508 1771.3 73.7508 Q1764.33 73.7508 1760.2 69.8619 Q1756.11 65.9325 1756.11 59.3701 Q1756.11 51.7138 1761.21 47.825 Q1766.35 43.9361 1776.52 43.9361 L1786.97 43.9361 L1786.97 43.2069 Q1786.97 38.0623 1783.57 35.2672 Q1780.21 32.4315 1774.09 32.4315 Q1770.2 32.4315 1766.52 33.3632 Q1762.83 34.295 1759.43 36.1584 L1759.43 29.2718 Q1763.52 27.692 1767.37 26.9223 Q1771.22 26.1121 1774.86 26.1121 Q1784.71 26.1121 1789.57 31.2163 Q1794.43 36.3204 1794.43 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1809.78 9.54393 L1817.23 9.54393 L1817.23 72.576 L1809.78 72.576 L1809.78 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1859.53 12.096 L1897.77 12.096 L1897.77 18.9825 L1867.71 18.9825 L1867.71 36.8875 L1896.51 36.8875 L1896.51 43.7741 L1867.71 43.7741 L1867.71 65.6895 L1898.5 65.6895 L1898.5 72.576 L1859.53 72.576 L1859.53 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1941.48 34.0924 L1941.48 9.54393 L1948.93 9.54393 L1948.93 72.576 L1941.48 72.576 L1941.48 65.7705 Q1939.13 69.8214 1935.52 71.8063 Q1931.96 73.7508 1926.93 73.7508 Q1918.71 73.7508 1913.52 67.1883 Q1908.38 60.6258 1908.38 49.9314 Q1908.38 39.2371 1913.52 32.6746 Q1918.71 26.1121 1926.93 26.1121 Q1931.96 26.1121 1935.52 28.0971 Q1939.13 30.0415 1941.48 34.0924 M1916.08 49.9314 Q1916.08 58.1548 1919.44 62.8538 Q1922.84 67.5124 1928.76 67.5124 Q1934.67 67.5124 1938.07 62.8538 Q1941.48 58.1548 1941.48 49.9314 Q1941.48 41.7081 1938.07 37.0496 Q1934.67 32.3505 1928.76 32.3505 Q1922.84 32.3505 1919.44 37.0496 Q1916.08 41.7081 1916.08 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1999.61 35.9153 Q2002.4 30.8922 2006.29 28.5022 Q2010.18 26.1121 2015.44 26.1121 Q2022.53 26.1121 2026.38 31.0947 Q2030.23 36.0368 2030.23 45.1919 L2030.23 72.576 L2022.74 72.576 L2022.74 45.4349 Q2022.74 38.913 2020.43 35.7533 Q2018.12 32.5936 2013.38 32.5936 Q2007.59 32.5936 2004.22 36.4419 Q2000.86 40.2903 2000.86 46.9338 L2000.86 72.576 L1993.37 72.576 L1993.37 45.4349 Q1993.37 38.8725 1991.06 35.7533 Q1988.75 32.5936 1983.93 32.5936 Q1978.22 32.5936 1974.85 36.4824 Q1971.49 40.3308 1971.49 46.9338 L1971.49 72.576 L1964 72.576 L1964 27.2059 L1971.49 27.2059 L1971.49 34.2544 Q1974.04 30.082 1977.61 28.0971 Q1981.17 26.1121 1986.08 26.1121 Q1991.02 26.1121 1994.46 28.6237 Q1997.95 31.1352 1999.61 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2062.68 32.4315 Q2056.68 32.4315 2053.2 37.1306 Q2049.72 41.7891 2049.72 49.9314 Q2049.72 58.0738 2053.16 62.7728 Q2056.64 67.4314 2062.68 67.4314 Q2068.63 67.4314 2072.12 62.7323 Q2075.6 58.0333 2075.6 49.9314 Q2075.6 41.8701 2072.12 37.1711 Q2068.63 32.4315 2062.68 32.4315 M2062.68 26.1121 Q2072.4 26.1121 2077.95 32.4315 Q2083.5 38.7509 2083.5 49.9314 Q2083.5 61.0714 2077.95 67.4314 Q2072.4 73.7508 2062.68 73.7508 Q2052.92 73.7508 2047.37 67.4314 Q2041.86 61.0714 2041.86 49.9314 Q2041.86 38.7509 2047.37 32.4315 Q2052.92 26.1121 2062.68 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2133.57 45.1919 L2133.57 72.576 L2126.12 72.576 L2126.12 45.4349 Q2126.12 38.994 2123.6 35.7938 Q2121.09 32.5936 2116.07 32.5936 Q2110.03 32.5936 2106.55 36.4419 Q2103.07 40.2903 2103.07 46.9338 L2103.07 72.576 L2095.57 72.576 L2095.57 27.2059 L2103.07 27.2059 L2103.07 34.2544 Q2105.74 30.163 2109.34 28.1376 Q2112.99 26.1121 2117.73 26.1121 Q2125.55 26.1121 2129.56 30.9732 Q2133.57 35.7938 2133.57 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2155.81 14.324 L2155.81 27.2059 L2171.16 27.2059 L2171.16 32.9987 L2155.81 32.9987 L2155.81 57.6282 Q2155.81 63.1779 2157.31 64.7578 Q2158.85 66.3376 2163.51 66.3376 L2171.16 66.3376 L2171.16 72.576 L2163.51 72.576 Q2154.88 72.576 2151.6 69.3758 Q2148.31 66.1351 2148.31 57.6282 L2148.31 32.9987 L2142.85 32.9987 L2142.85 27.2059 L2148.31 27.2059 L2148.31 14.324 L2155.81 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2198.55 32.4315 Q2192.55 32.4315 2189.07 37.1306 Q2185.58 41.7891 2185.58 49.9314 Q2185.58 58.0738 2189.03 62.7728 Q2192.51 67.4314 2198.55 67.4314 Q2204.5 67.4314 2207.98 62.7323 Q2211.47 58.0333 2211.47 49.9314 Q2211.47 41.8701 2207.98 37.1711 Q2204.5 32.4315 2198.55 32.4315 M2198.55 26.1121 Q2208.27 26.1121 2213.82 32.4315 Q2219.37 38.7509 2219.37 49.9314 Q2219.37 61.0714 2213.82 67.4314 Q2208.27 73.7508 2198.55 73.7508 Q2188.78 73.7508 2183.23 67.4314 Q2177.72 61.0714 2177.72 49.9314 Q2177.72 38.7509 2183.23 32.4315 Q2188.78 26.1121 2198.55 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M2269.44 45.1919 L2269.44 72.576 L2261.98 72.576 L2261.98 45.4349 Q2261.98 38.994 2259.47 35.7938 Q2256.96 32.5936 2251.94 32.5936 Q2245.9 32.5936 2242.42 36.4419 Q2238.93 40.2903 2238.93 46.9338 L2238.93 72.576 L2231.44 72.576 L2231.44 27.2059 L2238.93 27.2059 L2238.93 34.2544 Q2241.61 30.163 2245.21 28.1376 Q2248.86 26.1121 2253.6 26.1121 Q2261.42 26.1121 2265.43 30.9732 Q2269.44 35.7938 2269.44 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip822)\" cx=\"353.818\" cy=\"1082.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"386.14\" cy=\"1373.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"421.857\" cy=\"1337.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"451.662\" cy=\"1054.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"452.249\" cy=\"1198.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"605.598\" cy=\"1382.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"626.491\" cy=\"1376.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"626.525\" cy=\"1355.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"859.735\" cy=\"1381.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"859.802\" cy=\"1384.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"859.847\" cy=\"1384.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1178.14\" cy=\"1363.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1203.78\" cy=\"1359.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1209.72\" cy=\"1385.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1210.02\" cy=\"1384.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1210.09\" cy=\"1379.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1210.15\" cy=\"1372.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1212.49\" cy=\"1332.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1212.65\" cy=\"1381.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1212.7\" cy=\"1364.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1240.99\" cy=\"1365.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1242.75\" cy=\"1385.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.34\" cy=\"809.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.58\" cy=\"1361.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.62\" cy=\"1384.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.65\" cy=\"1277.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.84\" cy=\"1367.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1267.89\" cy=\"1382.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1268.06\" cy=\"1382.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1268.1\" cy=\"1349.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1323.63\" cy=\"1367.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1343.61\" cy=\"1292.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1351.73\" cy=\"1288.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1455.37\" cy=\"1380.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1511.9\" cy=\"1359.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1524.79\" cy=\"1377.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1698.18\" cy=\"1372.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1803.98\" cy=\"1369.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1804\" cy=\"1361.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1835.97\" cy=\"1199.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1958.14\" cy=\"1250.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1963.4\" cy=\"1366.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"1972.4\" cy=\"1327.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2056.09\" cy=\"1135.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2057.29\" cy=\"1243.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2057.67\" cy=\"1350.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2057.89\" cy=\"1096.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2059.35\" cy=\"1358.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2059.48\" cy=\"1377.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2059.53\" cy=\"1381.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2059.55\" cy=\"1359.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2135.42\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip822)\" cx=\"2135.7\" cy=\"1384.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<polyline clip-path=\"url(#clip822)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 295.211,1386.4 2292.83,1386.4 \n", " \"/>\n", "<path clip-path=\"url(#clip820)\" d=\"\n", "M305.865 287.756 L1329.93 287.756 L1329.93 166.796 L305.865 166.796 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 305.865,287.756 1329.93,287.756 1329.93,166.796 305.865,166.796 305.865,287.756 \n", " \"/>\n", "<polyline clip-path=\"url(#clip820)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 329.393,227.276 470.558,227.276 \n", " \"/>\n", "<path clip-path=\"url(#clip820)\" d=\"M494.756 240.621 L502.395 240.621 L502.395 214.255 L494.085 215.922 L494.085 211.662 L502.349 209.996 L507.025 209.996 L507.025 240.621 L514.664 240.621 L514.664 244.556 L494.756 244.556 L494.756 240.621 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M521.353 229.672 L533.83 229.672 L533.83 233.468 L521.353 233.468 L521.353 229.672 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M562.163 228.908 L562.163 244.556 L557.904 244.556 L557.904 229.047 Q557.904 225.366 556.469 223.537 Q555.034 221.709 552.164 221.709 Q548.714 221.709 546.724 223.908 Q544.733 226.107 544.733 229.903 L544.733 244.556 L540.451 244.556 L540.451 208.537 L544.733 208.537 L544.733 222.658 Q546.261 220.32 548.321 219.162 Q550.404 218.005 553.113 218.005 Q557.58 218.005 559.872 220.783 Q562.163 223.537 562.163 228.908 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M597.464 214.602 L591.122 231.801 L603.83 231.801 L597.464 214.602 M594.825 209.996 L600.126 209.996 L613.297 244.556 L608.436 244.556 L605.288 235.69 L589.71 235.69 L586.561 244.556 L581.631 244.556 L594.825 209.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M638.344 223.607 Q639.941 220.736 642.163 219.371 Q644.385 218.005 647.394 218.005 Q651.445 218.005 653.644 220.852 Q655.844 223.676 655.844 228.908 L655.844 244.556 L651.561 244.556 L651.561 229.047 Q651.561 225.32 650.242 223.514 Q648.922 221.709 646.214 221.709 Q642.904 221.709 640.982 223.908 Q639.061 226.107 639.061 229.903 L639.061 244.556 L634.779 244.556 L634.779 229.047 Q634.779 225.297 633.459 223.514 Q632.14 221.709 629.385 221.709 Q626.121 221.709 624.2 223.931 Q622.279 226.13 622.279 229.903 L622.279 244.556 L617.996 244.556 L617.996 218.63 L622.279 218.63 L622.279 222.658 Q623.737 220.273 625.774 219.139 Q627.811 218.005 630.612 218.005 Q633.436 218.005 635.404 219.44 Q637.395 220.875 638.344 223.607 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M682.95 231.616 Q682.95 226.917 681.005 224.255 Q679.084 221.57 675.705 221.57 Q672.325 221.57 670.38 224.255 Q668.459 226.917 668.459 231.616 Q668.459 236.315 670.38 239 Q672.325 241.662 675.705 241.662 Q679.084 241.662 681.005 239 Q682.95 236.315 682.95 231.616 M668.459 222.565 Q669.802 220.25 671.839 219.139 Q673.899 218.005 676.746 218.005 Q681.468 218.005 684.408 221.755 Q687.371 225.505 687.371 231.616 Q687.371 237.727 684.408 241.477 Q681.468 245.227 676.746 245.227 Q673.899 245.227 671.839 244.116 Q669.802 242.982 668.459 240.667 L668.459 244.556 L664.177 244.556 L664.177 208.537 L668.459 208.537 L668.459 222.565 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M694.431 218.63 L698.69 218.63 L698.69 244.556 L694.431 244.556 L694.431 218.63 M694.431 208.537 L698.69 208.537 L698.69 213.931 L694.431 213.931 L694.431 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M729.778 230.528 L729.778 232.611 L710.195 232.611 Q710.473 237.009 712.834 239.324 Q715.218 241.616 719.454 241.616 Q721.908 241.616 724.2 241.014 Q726.514 240.412 728.783 239.209 L728.783 243.236 Q726.491 244.208 724.084 244.718 Q721.676 245.227 719.2 245.227 Q712.996 245.227 709.362 241.616 Q705.751 238.005 705.751 231.847 Q705.751 225.482 709.177 221.755 Q712.626 218.005 718.459 218.005 Q723.69 218.005 726.723 221.385 Q729.778 224.741 729.778 230.528 M725.519 229.278 Q725.473 225.783 723.551 223.699 Q721.653 221.616 718.505 221.616 Q714.94 221.616 712.788 223.63 Q710.658 225.644 710.334 229.301 L725.519 229.278 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M758.32 228.908 L758.32 244.556 L754.061 244.556 L754.061 229.047 Q754.061 225.366 752.625 223.537 Q751.19 221.709 748.32 221.709 Q744.871 221.709 742.88 223.908 Q740.889 226.107 740.889 229.903 L740.889 244.556 L736.607 244.556 L736.607 218.63 L740.889 218.63 L740.889 222.658 Q742.417 220.32 744.477 219.162 Q746.561 218.005 749.269 218.005 Q753.736 218.005 756.028 220.783 Q758.32 223.537 758.32 228.908 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M771.028 211.269 L771.028 218.63 L779.801 218.63 L779.801 221.94 L771.028 221.94 L771.028 236.014 Q771.028 239.185 771.885 240.088 Q772.764 240.991 775.426 240.991 L779.801 240.991 L779.801 244.556 L775.426 244.556 Q770.496 244.556 768.621 242.727 Q766.746 240.875 766.746 236.014 L766.746 221.94 L763.621 221.94 L763.621 218.63 L766.746 218.63 L766.746 211.269 L771.028 211.269 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M812.208 214.602 L805.866 231.801 L818.574 231.801 L812.208 214.602 M809.57 209.996 L814.87 209.996 L828.042 244.556 L823.181 244.556 L820.032 235.69 L804.454 235.69 L801.306 244.556 L796.375 244.556 L809.57 209.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M832.903 218.63 L837.162 218.63 L837.162 244.556 L832.903 244.556 L832.903 218.63 M832.903 208.537 L837.162 208.537 L837.162 213.931 L832.903 213.931 L832.903 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M861.097 222.611 Q860.379 222.195 859.523 222.01 Q858.69 221.801 857.671 221.801 Q854.06 221.801 852.116 224.162 Q850.194 226.5 850.194 230.898 L850.194 244.556 L845.912 244.556 L845.912 218.63 L850.194 218.63 L850.194 222.658 Q851.537 220.297 853.69 219.162 Q855.842 218.005 858.921 218.005 Q859.361 218.005 859.893 218.074 Q860.426 218.121 861.074 218.236 L861.097 222.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M894.847 213.167 Q889.754 213.167 886.745 216.963 Q883.759 220.76 883.759 227.31 Q883.759 233.838 886.745 237.634 Q889.754 241.431 894.847 241.431 Q899.939 241.431 902.902 237.634 Q905.888 233.838 905.888 227.31 Q905.888 220.76 902.902 216.963 Q899.939 213.167 894.847 213.167 M901.398 243.931 L907.555 250.667 L901.907 250.667 L896.791 245.134 Q896.027 245.181 895.611 245.204 Q895.217 245.227 894.847 245.227 Q887.555 245.227 883.18 240.366 Q878.828 235.482 878.828 227.31 Q878.828 219.116 883.18 214.255 Q887.555 209.371 894.847 209.371 Q902.115 209.371 906.467 214.255 Q910.819 219.116 910.819 227.31 Q910.819 233.329 908.388 237.611 Q905.981 241.894 901.398 243.931 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M917.509 234.324 L917.509 218.63 L921.768 218.63 L921.768 234.162 Q921.768 237.843 923.203 239.695 Q924.638 241.523 927.509 241.523 Q930.958 241.523 932.949 239.324 Q934.962 237.125 934.962 233.329 L934.962 218.63 L939.222 218.63 L939.222 244.556 L934.962 244.556 L934.962 240.574 Q933.411 242.935 931.351 244.093 Q929.314 245.227 926.606 245.227 Q922.138 245.227 919.824 242.449 Q917.509 239.671 917.509 234.324 M928.226 218.005 L928.226 218.005 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M959.777 231.523 Q954.615 231.523 952.624 232.704 Q950.634 233.884 950.634 236.732 Q950.634 239 952.115 240.343 Q953.62 241.662 956.189 241.662 Q959.731 241.662 961.86 239.162 Q964.013 236.639 964.013 232.472 L964.013 231.523 L959.777 231.523 M968.272 229.764 L968.272 244.556 L964.013 244.556 L964.013 240.621 Q962.555 242.982 960.379 244.116 Q958.203 245.227 955.055 245.227 Q951.073 245.227 948.712 243.005 Q946.374 240.759 946.374 237.009 Q946.374 232.634 949.291 230.412 Q952.231 228.19 958.041 228.19 L964.013 228.19 L964.013 227.773 Q964.013 224.834 962.069 223.236 Q960.147 221.616 956.652 221.616 Q954.43 221.616 952.323 222.148 Q950.217 222.681 948.272 223.746 L948.272 219.81 Q950.61 218.908 952.81 218.468 Q955.009 218.005 957.092 218.005 Q962.717 218.005 965.495 220.922 Q968.272 223.838 968.272 229.764 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M977.045 208.537 L981.305 208.537 L981.305 244.556 L977.045 244.556 L977.045 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M990.217 218.63 L994.476 218.63 L994.476 244.556 L990.217 244.556 L990.217 218.63 M990.217 208.537 L994.476 208.537 L994.476 213.931 L990.217 213.931 L990.217 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1007.6 211.269 L1007.6 218.63 L1016.37 218.63 L1016.37 221.94 L1007.6 221.94 L1007.6 236.014 Q1007.6 239.185 1008.46 240.088 Q1009.34 240.991 1012 240.991 L1016.37 240.991 L1016.37 244.556 L1012 244.556 Q1007.07 244.556 1005.19 242.727 Q1003.32 240.875 1003.32 236.014 L1003.32 221.94 L1000.19 221.94 L1000.19 218.63 L1003.32 218.63 L1003.32 211.269 L1007.6 211.269 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1032.76 246.963 Q1030.96 251.593 1029.24 253.005 Q1027.53 254.417 1024.66 254.417 L1021.26 254.417 L1021.26 250.852 L1023.76 250.852 Q1025.52 250.852 1026.49 250.019 Q1027.46 249.185 1028.64 246.083 L1029.41 244.139 L1018.92 218.63 L1023.43 218.63 L1031.54 238.908 L1039.64 218.63 L1044.15 218.63 L1032.76 246.963 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1088.85 239.625 L1088.85 230.343 L1081.21 230.343 L1081.21 226.5 L1093.48 226.5 L1093.48 241.338 Q1090.77 243.259 1087.51 244.255 Q1084.24 245.227 1080.54 245.227 Q1072.44 245.227 1067.86 240.505 Q1063.3 235.759 1063.3 227.31 Q1063.3 218.838 1067.86 214.116 Q1072.44 209.371 1080.54 209.371 Q1083.92 209.371 1086.95 210.204 Q1090.01 211.037 1092.58 212.658 L1092.58 217.635 Q1089.98 215.436 1087.07 214.324 Q1084.15 213.213 1080.93 213.213 Q1074.59 213.213 1071.4 216.755 Q1068.23 220.297 1068.23 227.31 Q1068.23 234.301 1071.4 237.843 Q1074.59 241.384 1080.93 241.384 Q1083.41 241.384 1085.36 240.968 Q1087.3 240.528 1088.85 239.625 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1101.4 234.324 L1101.4 218.63 L1105.66 218.63 L1105.66 234.162 Q1105.66 237.843 1107.09 239.695 Q1108.53 241.523 1111.4 241.523 Q1114.85 241.523 1116.84 239.324 Q1118.85 237.125 1118.85 233.329 L1118.85 218.63 L1123.11 218.63 L1123.11 244.556 L1118.85 244.556 L1118.85 240.574 Q1117.3 242.935 1115.24 244.093 Q1113.2 245.227 1110.49 245.227 Q1106.03 245.227 1103.71 242.449 Q1101.4 239.671 1101.4 234.324 M1112.11 218.005 L1112.11 218.005 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1131.88 218.63 L1136.14 218.63 L1136.14 244.556 L1131.88 244.556 L1131.88 218.63 M1131.88 208.537 L1136.14 208.537 L1136.14 213.931 L1131.88 213.931 L1131.88 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1162.11 222.565 L1162.11 208.537 L1166.37 208.537 L1166.37 244.556 L1162.11 244.556 L1162.11 240.667 Q1160.77 242.982 1158.71 244.116 Q1156.67 245.227 1153.8 245.227 Q1149.1 245.227 1146.14 241.477 Q1143.2 237.727 1143.2 231.616 Q1143.2 225.505 1146.14 221.755 Q1149.1 218.005 1153.8 218.005 Q1156.67 218.005 1158.71 219.139 Q1160.77 220.25 1162.11 222.565 M1147.6 231.616 Q1147.6 236.315 1149.52 239 Q1151.47 241.662 1154.85 241.662 Q1158.23 241.662 1160.17 239 Q1162.11 236.315 1162.11 231.616 Q1162.11 226.917 1160.17 224.255 Q1158.23 221.57 1154.85 221.57 Q1151.47 221.57 1149.52 224.255 Q1147.6 226.917 1147.6 231.616 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1197.32 230.528 L1197.32 232.611 L1177.74 232.611 Q1178.02 237.009 1180.38 239.324 Q1182.76 241.616 1187 241.616 Q1189.45 241.616 1191.74 241.014 Q1194.06 240.412 1196.33 239.209 L1196.33 243.236 Q1194.04 244.208 1191.63 244.718 Q1189.22 245.227 1186.74 245.227 Q1180.54 245.227 1176.91 241.616 Q1173.29 238.005 1173.29 231.847 Q1173.29 225.482 1176.72 221.755 Q1180.17 218.005 1186 218.005 Q1191.23 218.005 1194.27 221.385 Q1197.32 224.741 1197.32 230.528 M1193.06 229.278 Q1193.02 225.783 1191.1 223.699 Q1189.2 221.616 1186.05 221.616 Q1182.48 221.616 1180.33 223.63 Q1178.2 225.644 1177.88 229.301 L1193.06 229.278 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1204.31 208.537 L1208.57 208.537 L1208.57 244.556 L1204.31 244.556 L1204.31 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1217.48 218.63 L1221.74 218.63 L1221.74 244.556 L1217.48 244.556 L1217.48 218.63 M1217.48 208.537 L1221.74 208.537 L1221.74 213.931 L1217.48 213.931 L1217.48 208.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1252.21 228.908 L1252.21 244.556 L1247.95 244.556 L1247.95 229.047 Q1247.95 225.366 1246.51 223.537 Q1245.08 221.709 1242.21 221.709 Q1238.76 221.709 1236.77 223.908 Q1234.78 226.107 1234.78 229.903 L1234.78 244.556 L1230.49 244.556 L1230.49 218.63 L1234.78 218.63 L1234.78 222.658 Q1236.3 220.32 1238.36 219.162 Q1240.45 218.005 1243.16 218.005 Q1247.62 218.005 1249.91 220.783 Q1252.21 223.537 1252.21 228.908 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip820)\" d=\"M1282.88 230.528 L1282.88 232.611 L1263.29 232.611 Q1263.57 237.009 1265.93 239.324 Q1268.32 241.616 1272.55 241.616 Q1275.01 241.616 1277.3 241.014 Q1279.61 240.412 1281.88 239.209 L1281.88 243.236 Q1279.59 244.208 1277.18 244.718 Q1274.78 245.227 1272.3 245.227 Q1266.09 245.227 1262.46 241.616 Q1258.85 238.005 1258.85 231.847 Q1258.85 225.482 1262.28 221.755 Q1265.72 218.005 1271.56 218.005 Q1276.79 218.005 1279.82 221.385 Q1282.88 224.741 1282.88 230.528 M1278.62 229.278 Q1278.57 225.783 1276.65 223.699 Q1274.75 221.616 1271.6 221.616 Q1268.04 221.616 1265.89 223.63 Q1263.76 225.644 1263.43 229.301 L1278.62 229.278 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plot(result_1hr.start_date, result_1hr.max_conc, lab=false,\n", " title=\"Exceedences of the AAQO in Central Edmonton\",\n", " seriestype = :scatter,\n", " ylabel=\"Concentration of pm2.5, μg/m³\",\n", " xlabel=\"Date\",\n", " legend=:topleft)\n", "plot!([ambient_data.IntervalStart[1], ambient_data.IntervalStart[end]], \n", " [lim_1h, lim_1h], lab=\"1-h Ambient Air Quality Guideline\")" ] }, { "cell_type": "markdown", "id": "b25f8360-ad09-4d7d-a746-42ea4f1e95c7", "metadata": {}, "source": [ "The plots below aggregate the events by year, and it certainly seems like smoke events are becoming more frequent and lasting longer, with more time spent in haze than in the early 2000s. But there are notable years such as 2010 and 2018 which could simply be outliers. Interestingly the most notable, in the news, years for wildfires are not obvious ones here -- the Slave Lake fire of 2011 and Ft. McMurray fire of 2016. I think it is often the case that the wildfire smoke in Alberta has less to do with fires in Alberta itself and more to do with smoke being carried in from neighbouring states and provinces. That is certainly true now when the major wildfires are in BC, northern Saskatchewan, and northern Manitoba." ] }, { "cell_type": "code", "execution_count": 9, "id": "3f5a8934-d325-435f-9d85-5fe06d7386be", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"800\" viewBox=\"0 0 2400 3200\">\n", "<defs>\n", " <clipPath id=\"clip860\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"3200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip860)\" d=\"\n", "M0 3200 L2400 3200 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip861\">\n", " <rect x=\"640\" y=\"320\" width=\"2241\" height=\"2241\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip860)\" d=\"\n", "M202.206 990.813 L2352.76 990.813 L2352.76 153.712 L202.206 153.712 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip862\">\n", " <rect x=\"202\" y=\"153\" width=\"2152\" height=\"838\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 259.405,990.813 259.405,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 768.443,990.813 768.443,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1277.48,990.813 1277.48,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1786.52,990.813 1786.52,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2295.56,990.813 2295.56,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,990.813 2352.76,990.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 259.405,990.813 259.405,980.768 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 768.443,990.813 768.443,980.768 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1277.48,990.813 1277.48,980.768 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.52,990.813 1786.52,980.768 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2295.56,990.813 2295.56,980.768 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M208.017 1053.95 L224.336 1053.95 L224.336 1057.89 L202.392 1057.89 L202.392 1053.95 Q205.054 1051.2 209.637 1046.57 Q214.244 1041.91 215.424 1040.57 Q217.669 1038.05 218.549 1036.31 Q219.452 1034.55 219.452 1032.86 Q219.452 1030.11 217.507 1028.37 Q215.586 1026.64 212.484 1026.64 Q210.285 1026.64 207.832 1027.4 Q205.401 1028.16 202.623 1029.71 L202.623 1024.99 Q205.447 1023.86 207.901 1023.28 Q210.355 1022.7 212.392 1022.7 Q217.762 1022.7 220.956 1025.39 Q224.151 1028.07 224.151 1032.56 Q224.151 1034.69 223.341 1036.61 Q222.554 1038.51 220.447 1041.1 Q219.868 1041.77 216.767 1044.99 Q213.665 1048.19 208.017 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M244.151 1026.4 Q240.54 1026.4 238.711 1029.97 Q236.905 1033.51 236.905 1040.64 Q236.905 1047.75 238.711 1051.31 Q240.54 1054.85 244.151 1054.85 Q247.785 1054.85 249.591 1051.31 Q251.419 1047.75 251.419 1040.64 Q251.419 1033.51 249.591 1029.97 Q247.785 1026.4 244.151 1026.4 M244.151 1022.7 Q249.961 1022.7 253.016 1027.31 Q256.095 1031.89 256.095 1040.64 Q256.095 1049.37 253.016 1053.97 Q249.961 1058.56 244.151 1058.56 Q238.341 1058.56 235.262 1053.97 Q232.206 1049.37 232.206 1040.64 Q232.206 1031.89 235.262 1027.31 Q238.341 1022.7 244.151 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M274.313 1026.4 Q270.702 1026.4 268.873 1029.97 Q267.067 1033.51 267.067 1040.64 Q267.067 1047.75 268.873 1051.31 Q270.702 1054.85 274.313 1054.85 Q277.947 1054.85 279.752 1051.31 Q281.581 1047.75 281.581 1040.64 Q281.581 1033.51 279.752 1029.97 Q277.947 1026.4 274.313 1026.4 M274.313 1022.7 Q280.123 1022.7 283.178 1027.31 Q286.257 1031.89 286.257 1040.64 Q286.257 1049.37 283.178 1053.97 Q280.123 1058.56 274.313 1058.56 Q268.502 1058.56 265.424 1053.97 Q262.368 1049.37 262.368 1040.64 Q262.368 1031.89 265.424 1027.31 Q268.502 1022.7 274.313 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M304.475 1026.4 Q300.863 1026.4 299.035 1029.97 Q297.229 1033.51 297.229 1040.64 Q297.229 1047.75 299.035 1051.31 Q300.863 1054.85 304.475 1054.85 Q308.109 1054.85 309.914 1051.31 Q311.743 1047.75 311.743 1040.64 Q311.743 1033.51 309.914 1029.97 Q308.109 1026.4 304.475 1026.4 M304.475 1022.7 Q310.285 1022.7 313.34 1027.31 Q316.419 1031.89 316.419 1040.64 Q316.419 1049.37 313.34 1053.97 Q310.285 1058.56 304.475 1058.56 Q298.664 1058.56 295.586 1053.97 Q292.53 1049.37 292.53 1040.64 Q292.53 1031.89 295.586 1027.31 Q298.664 1022.7 304.475 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M717.552 1053.95 L733.872 1053.95 L733.872 1057.89 L711.927 1057.89 L711.927 1053.95 Q714.589 1051.2 719.173 1046.57 Q723.779 1041.91 724.96 1040.57 Q727.205 1038.05 728.085 1036.31 Q728.987 1034.55 728.987 1032.86 Q728.987 1030.11 727.043 1028.37 Q725.122 1026.64 722.02 1026.64 Q719.821 1026.64 717.367 1027.4 Q714.936 1028.16 712.159 1029.71 L712.159 1024.99 Q714.983 1023.86 717.436 1023.28 Q719.89 1022.7 721.927 1022.7 Q727.297 1022.7 730.492 1025.39 Q733.686 1028.07 733.686 1032.56 Q733.686 1034.69 732.876 1036.61 Q732.089 1038.51 729.983 1041.1 Q729.404 1041.77 726.302 1044.99 Q723.2 1048.19 717.552 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M753.686 1026.4 Q750.075 1026.4 748.246 1029.97 Q746.441 1033.51 746.441 1040.64 Q746.441 1047.75 748.246 1051.31 Q750.075 1054.85 753.686 1054.85 Q757.32 1054.85 759.126 1051.31 Q760.955 1047.75 760.955 1040.64 Q760.955 1033.51 759.126 1029.97 Q757.32 1026.4 753.686 1026.4 M753.686 1022.7 Q759.496 1022.7 762.552 1027.31 Q765.631 1031.89 765.631 1040.64 Q765.631 1049.37 762.552 1053.97 Q759.496 1058.56 753.686 1058.56 Q747.876 1058.56 744.797 1053.97 Q741.742 1049.37 741.742 1040.64 Q741.742 1031.89 744.797 1027.31 Q747.876 1022.7 753.686 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M783.848 1026.4 Q780.237 1026.4 778.408 1029.97 Q776.603 1033.51 776.603 1040.64 Q776.603 1047.75 778.408 1051.31 Q780.237 1054.85 783.848 1054.85 Q787.482 1054.85 789.288 1051.31 Q791.117 1047.75 791.117 1040.64 Q791.117 1033.51 789.288 1029.97 Q787.482 1026.4 783.848 1026.4 M783.848 1022.7 Q789.658 1022.7 792.714 1027.31 Q795.792 1031.89 795.792 1040.64 Q795.792 1049.37 792.714 1053.97 Q789.658 1058.56 783.848 1058.56 Q778.038 1058.56 774.959 1053.97 Q771.904 1049.37 771.904 1040.64 Q771.904 1031.89 774.959 1027.31 Q778.038 1022.7 783.848 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M804.056 1023.33 L822.413 1023.33 L822.413 1027.26 L808.339 1027.26 L808.339 1035.73 Q809.357 1035.39 810.376 1035.22 Q811.394 1035.04 812.413 1035.04 Q818.2 1035.04 821.579 1038.21 Q824.959 1041.38 824.959 1046.8 Q824.959 1052.38 821.487 1055.48 Q818.015 1058.56 811.695 1058.56 Q809.519 1058.56 807.251 1058.19 Q805.005 1057.82 802.598 1057.08 L802.598 1052.38 Q804.681 1053.51 806.904 1054.07 Q809.126 1054.62 811.603 1054.62 Q815.607 1054.62 817.945 1052.51 Q820.283 1050.41 820.283 1046.8 Q820.283 1043.19 817.945 1041.08 Q815.607 1038.97 811.603 1038.97 Q809.728 1038.97 807.853 1039.39 Q806.001 1039.81 804.056 1040.69 L804.056 1023.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1226.09 1053.95 L1242.41 1053.95 L1242.41 1057.89 L1220.47 1057.89 L1220.47 1053.95 Q1223.13 1051.2 1227.71 1046.57 Q1232.32 1041.91 1233.5 1040.57 Q1235.74 1038.05 1236.62 1036.31 Q1237.53 1034.55 1237.53 1032.86 Q1237.53 1030.11 1235.58 1028.37 Q1233.66 1026.64 1230.56 1026.64 Q1228.36 1026.64 1225.91 1027.4 Q1223.48 1028.16 1220.7 1029.71 L1220.7 1024.99 Q1223.52 1023.86 1225.98 1023.28 Q1228.43 1022.7 1230.47 1022.7 Q1235.84 1022.7 1239.03 1025.39 Q1242.23 1028.07 1242.23 1032.56 Q1242.23 1034.69 1241.42 1036.61 Q1240.63 1038.51 1238.52 1041.1 Q1237.94 1041.77 1234.84 1044.99 Q1231.74 1048.19 1226.09 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1262.23 1026.4 Q1258.62 1026.4 1256.79 1029.97 Q1254.98 1033.51 1254.98 1040.64 Q1254.98 1047.75 1256.79 1051.31 Q1258.62 1054.85 1262.23 1054.85 Q1265.86 1054.85 1267.67 1051.31 Q1269.49 1047.75 1269.49 1040.64 Q1269.49 1033.51 1267.67 1029.97 Q1265.86 1026.4 1262.23 1026.4 M1262.23 1022.7 Q1268.04 1022.7 1271.09 1027.31 Q1274.17 1031.89 1274.17 1040.64 Q1274.17 1049.37 1271.09 1053.97 Q1268.04 1058.56 1262.23 1058.56 Q1256.42 1058.56 1253.34 1053.97 Q1250.28 1049.37 1250.28 1040.64 Q1250.28 1031.89 1253.34 1027.31 Q1256.42 1022.7 1262.23 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1283.2 1053.95 L1290.84 1053.95 L1290.84 1027.58 L1282.53 1029.25 L1282.53 1024.99 L1290.79 1023.33 L1295.47 1023.33 L1295.47 1053.95 L1303.11 1053.95 L1303.11 1057.89 L1283.2 1057.89 L1283.2 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1322.55 1026.4 Q1318.94 1026.4 1317.11 1029.97 Q1315.3 1033.51 1315.3 1040.64 Q1315.3 1047.75 1317.11 1051.31 Q1318.94 1054.85 1322.55 1054.85 Q1326.18 1054.85 1327.99 1051.31 Q1329.82 1047.75 1329.82 1040.64 Q1329.82 1033.51 1327.99 1029.97 Q1326.18 1026.4 1322.55 1026.4 M1322.55 1022.7 Q1328.36 1022.7 1331.42 1027.31 Q1334.49 1031.89 1334.49 1040.64 Q1334.49 1049.37 1331.42 1053.97 Q1328.36 1058.56 1322.55 1058.56 Q1316.74 1058.56 1313.66 1053.97 Q1310.61 1049.37 1310.61 1040.64 Q1310.61 1031.89 1313.66 1027.31 Q1316.74 1022.7 1322.55 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1735.63 1053.95 L1751.95 1053.95 L1751.95 1057.89 L1730 1057.89 L1730 1053.95 Q1732.66 1051.2 1737.25 1046.57 Q1741.85 1041.91 1743.04 1040.57 Q1745.28 1038.05 1746.16 1036.31 Q1747.06 1034.55 1747.06 1032.86 Q1747.06 1030.11 1745.12 1028.37 Q1743.2 1026.64 1740.1 1026.64 Q1737.9 1026.64 1735.44 1027.4 Q1733.01 1028.16 1730.23 1029.71 L1730.23 1024.99 Q1733.06 1023.86 1735.51 1023.28 Q1737.97 1022.7 1740 1022.7 Q1745.37 1022.7 1748.57 1025.39 Q1751.76 1028.07 1751.76 1032.56 Q1751.76 1034.69 1750.95 1036.61 Q1750.16 1038.51 1748.06 1041.1 Q1747.48 1041.77 1744.38 1044.99 Q1741.28 1048.19 1735.63 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1771.76 1026.4 Q1768.15 1026.4 1766.32 1029.97 Q1764.52 1033.51 1764.52 1040.64 Q1764.52 1047.75 1766.32 1051.31 Q1768.15 1054.85 1771.76 1054.85 Q1775.4 1054.85 1777.2 1051.31 Q1779.03 1047.75 1779.03 1040.64 Q1779.03 1033.51 1777.2 1029.97 Q1775.4 1026.4 1771.76 1026.4 M1771.76 1022.7 Q1777.57 1022.7 1780.63 1027.31 Q1783.71 1031.89 1783.71 1040.64 Q1783.71 1049.37 1780.63 1053.97 Q1777.57 1058.56 1771.76 1058.56 Q1765.95 1058.56 1762.87 1053.97 Q1759.82 1049.37 1759.82 1040.64 Q1759.82 1031.89 1762.87 1027.31 Q1765.95 1022.7 1771.76 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1792.73 1053.95 L1800.37 1053.95 L1800.37 1027.58 L1792.06 1029.25 L1792.06 1024.99 L1800.33 1023.33 L1805 1023.33 L1805 1053.95 L1812.64 1053.95 L1812.64 1057.89 L1792.73 1057.89 L1792.73 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1822.13 1023.33 L1840.49 1023.33 L1840.49 1027.26 L1826.41 1027.26 L1826.41 1035.73 Q1827.43 1035.39 1828.45 1035.22 Q1829.47 1035.04 1830.49 1035.04 Q1836.28 1035.04 1839.65 1038.21 Q1843.03 1041.38 1843.03 1046.8 Q1843.03 1052.38 1839.56 1055.48 Q1836.09 1058.56 1829.77 1058.56 Q1827.59 1058.56 1825.33 1058.19 Q1823.08 1057.82 1820.67 1057.08 L1820.67 1052.38 Q1822.76 1053.51 1824.98 1054.07 Q1827.2 1054.62 1829.68 1054.62 Q1833.68 1054.62 1836.02 1052.51 Q1838.36 1050.41 1838.36 1046.8 Q1838.36 1043.19 1836.02 1041.08 Q1833.68 1038.97 1829.68 1038.97 Q1827.8 1038.97 1825.93 1039.39 Q1824.08 1039.81 1822.13 1040.69 L1822.13 1023.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2244.17 1053.95 L2260.49 1053.95 L2260.49 1057.89 L2238.54 1057.89 L2238.54 1053.95 Q2241.2 1051.2 2245.79 1046.57 Q2250.39 1041.91 2251.58 1040.57 Q2253.82 1038.05 2254.7 1036.31 Q2255.6 1034.55 2255.6 1032.86 Q2255.6 1030.11 2253.66 1028.37 Q2251.74 1026.64 2248.64 1026.64 Q2246.44 1026.64 2243.98 1027.4 Q2241.55 1028.16 2238.77 1029.71 L2238.77 1024.99 Q2241.6 1023.86 2244.05 1023.28 Q2246.51 1022.7 2248.54 1022.7 Q2253.91 1022.7 2257.11 1025.39 Q2260.3 1028.07 2260.3 1032.56 Q2260.3 1034.69 2259.49 1036.61 Q2258.7 1038.51 2256.6 1041.1 Q2256.02 1041.77 2252.92 1044.99 Q2249.82 1048.19 2244.17 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2280.3 1026.4 Q2276.69 1026.4 2274.86 1029.97 Q2273.06 1033.51 2273.06 1040.64 Q2273.06 1047.75 2274.86 1051.31 Q2276.69 1054.85 2280.3 1054.85 Q2283.94 1054.85 2285.74 1051.31 Q2287.57 1047.75 2287.57 1040.64 Q2287.57 1033.51 2285.74 1029.97 Q2283.94 1026.4 2280.3 1026.4 M2280.3 1022.7 Q2286.11 1022.7 2289.17 1027.31 Q2292.25 1031.89 2292.25 1040.64 Q2292.25 1049.37 2289.17 1053.97 Q2286.11 1058.56 2280.3 1058.56 Q2274.49 1058.56 2271.41 1053.97 Q2268.36 1049.37 2268.36 1040.64 Q2268.36 1031.89 2271.41 1027.31 Q2274.49 1022.7 2280.3 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2304.49 1053.95 L2320.81 1053.95 L2320.81 1057.89 L2298.87 1057.89 L2298.87 1053.95 Q2301.53 1051.2 2306.11 1046.57 Q2310.72 1041.91 2311.9 1040.57 Q2314.14 1038.05 2315.02 1036.31 Q2315.93 1034.55 2315.93 1032.86 Q2315.93 1030.11 2313.98 1028.37 Q2312.06 1026.64 2308.96 1026.64 Q2306.76 1026.64 2304.31 1027.4 Q2301.88 1028.16 2299.1 1029.71 L2299.1 1024.99 Q2301.92 1023.86 2304.38 1023.28 Q2306.83 1022.7 2308.87 1022.7 Q2314.24 1022.7 2317.43 1025.39 Q2320.63 1028.07 2320.63 1032.56 Q2320.63 1034.69 2319.82 1036.61 Q2319.03 1038.51 2316.92 1041.1 Q2316.34 1041.77 2313.24 1044.99 Q2310.14 1048.19 2304.49 1053.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2340.63 1026.4 Q2337.01 1026.4 2335.19 1029.97 Q2333.38 1033.51 2333.38 1040.64 Q2333.38 1047.75 2335.19 1051.31 Q2337.01 1054.85 2340.63 1054.85 Q2344.26 1054.85 2346.07 1051.31 Q2347.89 1047.75 2347.89 1040.64 Q2347.89 1033.51 2346.07 1029.97 Q2344.26 1026.4 2340.63 1026.4 M2340.63 1022.7 Q2346.44 1022.7 2349.49 1027.31 Q2352.57 1031.89 2352.57 1040.64 Q2352.57 1049.37 2349.49 1053.97 Q2346.44 1058.56 2340.63 1058.56 Q2334.82 1058.56 2331.74 1053.97 Q2328.68 1049.37 2328.68 1040.64 Q2328.68 1031.89 2331.74 1027.31 Q2334.82 1022.7 2340.63 1022.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,967.122 2352.76,967.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,734.852 2352.76,734.852 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,502.582 2352.76,502.582 \n", " \"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,270.312 2352.76,270.312 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,990.813 202.206,153.712 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,967.122 228.012,967.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,734.852 228.012,734.852 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,502.582 228.012,502.582 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,270.312 228.012,270.312 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M142.261 952.92 Q138.65 952.92 136.822 956.485 Q135.016 960.027 135.016 967.156 Q135.016 974.263 136.822 977.828 Q138.65 981.369 142.261 981.369 Q145.896 981.369 147.701 977.828 Q149.53 974.263 149.53 967.156 Q149.53 960.027 147.701 956.485 Q145.896 952.92 142.261 952.92 M142.261 949.217 Q148.072 949.217 151.127 953.823 Q154.206 958.406 154.206 967.156 Q154.206 975.883 151.127 980.49 Q148.072 985.073 142.261 985.073 Q136.451 985.073 133.373 980.49 Q130.317 975.883 130.317 967.156 Q130.317 958.406 133.373 953.823 Q136.451 949.217 142.261 949.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M133.303 717.572 L151.659 717.572 L151.659 721.507 L137.585 721.507 L137.585 729.979 Q138.604 729.632 139.623 729.47 Q140.641 729.285 141.66 729.285 Q147.447 729.285 150.826 732.456 Q154.206 735.627 154.206 741.044 Q154.206 746.622 150.734 749.724 Q147.261 752.803 140.942 752.803 Q138.766 752.803 136.498 752.433 Q134.252 752.062 131.845 751.322 L131.845 746.622 Q133.928 747.757 136.15 748.312 Q138.373 748.868 140.849 748.868 Q144.854 748.868 147.192 746.761 Q149.53 744.655 149.53 741.044 Q149.53 737.433 147.192 735.326 Q144.854 733.22 140.849 733.22 Q138.974 733.22 137.099 733.636 Q135.248 734.053 133.303 734.933 L133.303 717.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M102.91 515.927 L110.549 515.927 L110.549 489.561 L102.238 491.228 L102.238 486.968 L110.502 485.302 L115.178 485.302 L115.178 515.927 L122.817 515.927 L122.817 519.862 L102.91 519.862 L102.91 515.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M142.261 488.38 Q138.65 488.38 136.822 491.945 Q135.016 495.487 135.016 502.616 Q135.016 509.723 136.822 513.288 Q138.65 516.829 142.261 516.829 Q145.896 516.829 147.701 513.288 Q149.53 509.723 149.53 502.616 Q149.53 495.487 147.701 491.945 Q145.896 488.38 142.261 488.38 M142.261 484.677 Q148.072 484.677 151.127 489.283 Q154.206 493.866 154.206 502.616 Q154.206 511.343 151.127 515.95 Q148.072 520.533 142.261 520.533 Q136.451 520.533 133.373 515.95 Q130.317 511.343 130.317 502.616 Q130.317 493.866 133.373 489.283 Q136.451 484.677 142.261 484.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M103.905 283.657 L111.544 283.657 L111.544 257.291 L103.234 258.958 L103.234 254.698 L111.498 253.032 L116.174 253.032 L116.174 283.657 L123.812 283.657 L123.812 287.592 L103.905 287.592 L103.905 283.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M133.303 253.032 L151.659 253.032 L151.659 256.967 L137.585 256.967 L137.585 265.439 Q138.604 265.092 139.623 264.93 Q140.641 264.745 141.66 264.745 Q147.447 264.745 150.826 267.916 Q154.206 271.087 154.206 276.504 Q154.206 282.082 150.734 285.184 Q147.261 288.263 140.942 288.263 Q138.766 288.263 136.498 287.893 Q134.252 287.522 131.845 286.781 L131.845 282.082 Q133.928 283.217 136.15 283.772 Q138.373 284.328 140.849 284.328 Q144.854 284.328 147.192 282.221 Q149.53 280.115 149.53 276.504 Q149.53 272.893 147.192 270.786 Q144.854 268.68 140.849 268.68 Q138.974 268.68 137.099 269.096 Q135.248 269.513 133.303 270.393 L133.303 253.032 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M3.69446 808.407 L3.69446 801.324 L36.2203 784.084 L3.69446 784.084 L3.69446 778.98 L42.5745 778.98 L42.5745 786.064 L10.0486 803.303 L42.5745 803.303 L42.5745 808.407 L3.69446 808.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M31.0641 769.215 L13.4079 769.215 L13.4079 764.423 L30.8818 764.423 Q35.0224 764.423 37.1057 762.809 Q39.163 761.194 39.163 757.965 Q39.163 754.085 36.6891 751.845 Q34.2151 749.579 29.9443 749.579 L13.4079 749.579 L13.4079 744.788 L42.5745 744.788 L42.5745 749.579 L38.0953 749.579 Q40.7515 751.324 42.0536 753.642 Q43.3297 755.934 43.3297 758.98 Q43.3297 764.006 40.2047 766.611 Q37.0797 769.215 31.0641 769.215 M12.7048 757.158 L12.7048 757.158 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M19.0069 712.21 Q15.7777 710.413 14.2413 707.913 Q12.7048 705.413 12.7048 702.028 Q12.7048 697.47 15.9079 694.996 Q19.085 692.522 24.9704 692.522 L42.5745 692.522 L42.5745 697.34 L25.1266 697.34 Q20.9339 697.34 18.9027 698.824 Q16.8715 700.309 16.8715 703.356 Q16.8715 707.08 19.3454 709.241 Q21.8194 711.403 26.0902 711.403 L42.5745 711.403 L42.5745 716.22 L25.1266 716.22 Q20.9079 716.22 18.9027 717.705 Q16.8715 719.189 16.8715 722.288 Q16.8715 725.96 19.3715 728.121 Q21.8454 730.283 26.0902 730.283 L42.5745 730.283 L42.5745 735.1 L13.4079 735.1 L13.4079 730.283 L17.9392 730.283 Q15.2569 728.642 13.9809 726.35 Q12.7048 724.059 12.7048 720.908 Q12.7048 717.731 14.3194 715.517 Q15.934 713.278 19.0069 712.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M28.0172 662.028 Q22.7308 662.028 19.736 664.215 Q16.7152 666.377 16.7152 670.179 Q16.7152 673.981 19.736 676.168 Q22.7308 678.33 28.0172 678.33 Q33.3037 678.33 36.3245 676.168 Q39.3193 673.981 39.3193 670.179 Q39.3193 666.377 36.3245 664.215 Q33.3037 662.028 28.0172 662.028 M17.835 678.33 Q15.2309 676.819 13.9809 674.528 Q12.7048 672.21 12.7048 669.007 Q12.7048 663.694 16.9236 660.387 Q21.1423 657.054 28.0172 657.054 Q34.8922 657.054 39.1109 660.387 Q43.3297 663.694 43.3297 669.007 Q43.3297 672.21 42.0797 674.528 Q40.8036 676.819 38.1995 678.33 L42.5745 678.33 L42.5745 683.147 L2.05384 683.147 L2.05384 678.33 L17.835 678.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M26.7933 624.163 L29.137 624.163 L29.137 646.195 Q34.0849 645.882 36.6891 643.226 Q39.2672 640.544 39.2672 635.778 Q39.2672 633.018 38.5901 630.439 Q37.913 627.835 36.5589 625.283 L41.0901 625.283 Q42.1838 627.861 42.7567 630.57 Q43.3297 633.278 43.3297 636.064 Q43.3297 643.044 39.2672 647.132 Q35.2047 651.195 28.2777 651.195 Q21.1162 651.195 16.9236 647.34 Q12.7048 643.46 12.7048 636.898 Q12.7048 631.012 16.5069 627.601 Q20.2829 624.163 26.7933 624.163 M25.387 628.955 Q21.4548 629.007 19.111 631.169 Q16.7673 633.304 16.7673 636.846 Q16.7673 640.856 19.0329 643.278 Q21.2985 645.674 25.4131 646.038 L25.387 628.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M17.8871 599.398 Q17.4183 600.205 17.21 601.169 Q16.9756 602.106 16.9756 603.252 Q16.9756 607.315 19.6319 609.502 Q22.2621 611.664 27.21 611.664 L42.5745 611.664 L42.5745 616.481 L13.4079 616.481 L13.4079 611.664 L17.9392 611.664 Q15.2829 610.153 14.0069 607.731 Q12.7048 605.309 12.7048 601.846 Q12.7048 601.351 12.7829 600.752 Q12.835 600.153 12.9652 599.424 L17.8871 599.398 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M16.7673 566.117 Q16.7673 569.971 19.7881 572.211 Q22.7829 574.45 28.0172 574.45 Q33.2516 574.45 36.2724 572.237 Q39.2672 569.997 39.2672 566.117 Q39.2672 562.289 36.2464 560.049 Q33.2255 557.81 28.0172 557.81 Q22.835 557.81 19.8142 560.049 Q16.7673 562.289 16.7673 566.117 M12.7048 566.117 Q12.7048 559.867 16.7673 556.299 Q20.8298 552.732 28.0172 552.732 Q35.1787 552.732 39.2672 556.299 Q43.3297 559.867 43.3297 566.117 Q43.3297 572.393 39.2672 575.961 Q35.1787 579.502 28.0172 579.502 Q20.8298 579.502 16.7673 575.961 Q12.7048 572.393 12.7048 566.117 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2.05384 530.023 L6.03819 530.023 L6.03819 534.607 Q6.03819 537.185 7.07985 538.2 Q8.12152 539.19 10.8298 539.19 L13.4079 539.19 L13.4079 531.299 L17.1319 531.299 L17.1319 539.19 L42.5745 539.19 L42.5745 544.008 L17.1319 544.008 L17.1319 548.591 L13.4079 548.591 L13.4079 544.008 L11.3767 544.008 Q6.50694 544.008 4.29341 541.742 Q2.05384 539.476 2.05384 534.555 L2.05384 530.023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M3.69446 508.852 L3.69446 484.268 L8.12152 484.268 L8.12152 503.591 L19.6319 503.591 L19.6319 485.076 L24.0589 485.076 L24.0589 503.591 L38.1474 503.591 L38.1474 483.8 L42.5745 483.8 L42.5745 508.852 L3.69446 508.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M13.4079 478.8 L13.4079 473.722 L37.887 464.607 L13.4079 455.492 L13.4079 450.414 L42.5745 461.352 L42.5745 467.862 L13.4079 478.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M26.7933 418.852 L29.137 418.852 L29.137 440.883 Q34.0849 440.571 36.6891 437.914 Q39.2672 435.232 39.2672 430.467 Q39.2672 427.706 38.5901 425.128 Q37.913 422.524 36.5589 419.972 L41.0901 419.972 Q42.1838 422.55 42.7567 425.258 Q43.3297 427.967 43.3297 430.753 Q43.3297 437.732 39.2672 441.821 Q35.2047 445.883 28.2777 445.883 Q21.1162 445.883 16.9236 442.029 Q12.7048 438.149 12.7048 431.586 Q12.7048 425.701 16.5069 422.29 Q20.2829 418.852 26.7933 418.852 M25.387 423.644 Q21.4548 423.696 19.111 425.857 Q16.7673 427.993 16.7673 431.534 Q16.7673 435.545 19.0329 437.967 Q21.2985 440.362 25.4131 440.727 L25.387 423.644 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M24.9704 386.743 L42.5745 386.743 L42.5745 391.534 L25.1266 391.534 Q20.986 391.534 18.9287 393.149 Q16.8715 394.764 16.8715 397.993 Q16.8715 401.873 19.3454 404.113 Q21.8194 406.352 26.0902 406.352 L42.5745 406.352 L42.5745 411.17 L13.4079 411.17 L13.4079 406.352 L17.9392 406.352 Q15.309 404.633 14.0069 402.316 Q12.7048 399.972 12.7048 396.925 Q12.7048 391.899 15.8298 389.321 Q18.9287 386.743 24.9704 386.743 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M5.12674 372.446 L13.4079 372.446 L13.4079 362.576 L17.1319 362.576 L17.1319 372.446 L32.9651 372.446 Q36.5328 372.446 37.5484 371.483 Q38.5641 370.493 38.5641 367.498 L38.5641 362.576 L42.5745 362.576 L42.5745 367.498 Q42.5745 373.045 40.5172 375.154 Q38.4339 377.264 32.9651 377.264 L17.1319 377.264 L17.1319 380.779 L13.4079 380.779 L13.4079 377.264 L5.12674 377.264 L5.12674 372.446 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M14.2673 337.681 L18.7985 337.681 Q17.7569 339.712 17.2361 341.899 Q16.7152 344.087 16.7152 346.431 Q16.7152 349.998 17.809 351.795 Q18.9027 353.566 21.0902 353.566 Q22.7569 353.566 23.7204 352.29 Q24.6579 351.014 25.5173 347.16 L25.8818 345.519 Q26.9756 340.415 28.9808 338.28 Q30.9599 336.118 34.5276 336.118 Q38.5901 336.118 40.9599 339.347 Q43.3297 342.55 43.3297 348.175 Q43.3297 350.519 42.8609 353.071 Q42.4182 355.597 41.5068 358.41 L36.5589 358.41 Q37.9391 355.753 38.6422 353.175 Q39.3193 350.597 39.3193 348.071 Q39.3193 344.686 38.1734 342.863 Q37.0016 341.04 34.8922 341.04 Q32.9391 341.04 31.8974 342.368 Q30.8558 343.67 29.8922 348.123 L29.5016 349.79 Q28.5641 354.243 26.637 356.222 Q24.6839 358.201 21.2985 358.201 Q17.184 358.201 14.9444 355.285 Q12.7048 352.368 12.7048 347.003 Q12.7048 344.347 13.0954 342.003 Q13.4861 339.66 14.2673 337.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1064.28 14.0809 L1064.28 22.0612 Q1059.62 19.8332 1055.49 18.7395 Q1051.36 17.6457 1047.51 17.6457 Q1040.83 17.6457 1037.18 20.2383 Q1033.58 22.8309 1033.58 27.611 Q1033.58 31.6214 1035.97 33.6873 Q1038.4 35.7128 1045.12 36.9686 L1050.06 37.9813 Q1059.22 39.7232 1063.55 44.1387 Q1067.93 48.5136 1067.93 55.8863 Q1067.93 64.6767 1062.01 69.2137 Q1056.14 73.7508 1044.76 73.7508 Q1040.46 73.7508 1035.6 72.7785 Q1030.78 71.8063 1025.6 69.9024 L1025.6 61.4765 Q1030.58 64.2716 1035.36 65.6895 Q1040.14 67.1073 1044.76 67.1073 Q1051.76 67.1073 1055.57 64.3527 Q1059.38 61.598 1059.38 56.4939 Q1059.38 52.0379 1056.63 49.5264 Q1053.91 47.0148 1047.67 45.759 L1042.69 44.7868 Q1033.54 42.9639 1029.44 39.075 Q1025.35 35.1862 1025.35 28.2591 Q1025.35 20.2383 1030.98 15.6203 Q1036.65 11.0023 1046.58 11.0023 Q1050.83 11.0023 1055.25 11.7719 Q1059.66 12.5416 1064.28 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1115.69 35.9153 Q1118.48 30.8922 1122.37 28.5022 Q1126.26 26.1121 1131.53 26.1121 Q1138.62 26.1121 1142.46 31.0947 Q1146.31 36.0368 1146.31 45.1919 L1146.31 72.576 L1138.82 72.576 L1138.82 45.4349 Q1138.82 38.913 1136.51 35.7533 Q1134.2 32.5936 1129.46 32.5936 Q1123.67 32.5936 1120.31 36.4419 Q1116.94 40.2903 1116.94 46.9338 L1116.94 72.576 L1109.45 72.576 L1109.45 45.4349 Q1109.45 38.8725 1107.14 35.7533 Q1104.83 32.5936 1100.01 32.5936 Q1094.3 32.5936 1090.94 36.4824 Q1087.57 40.3308 1087.57 46.9338 L1087.57 72.576 L1080.08 72.576 L1080.08 27.2059 L1087.57 27.2059 L1087.57 34.2544 Q1090.13 30.082 1093.69 28.0971 Q1097.26 26.1121 1102.16 26.1121 Q1107.1 26.1121 1110.54 28.6237 Q1114.03 31.1352 1115.69 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1178.76 32.4315 Q1172.76 32.4315 1169.28 37.1306 Q1165.8 41.7891 1165.8 49.9314 Q1165.8 58.0738 1169.24 62.7728 Q1172.72 67.4314 1178.76 67.4314 Q1184.72 67.4314 1188.2 62.7323 Q1191.68 58.0333 1191.68 49.9314 Q1191.68 41.8701 1188.2 37.1711 Q1184.72 32.4315 1178.76 32.4315 M1178.76 26.1121 Q1188.48 26.1121 1194.03 32.4315 Q1199.58 38.7509 1199.58 49.9314 Q1199.58 61.0714 1194.03 67.4314 Q1188.48 73.7508 1178.76 73.7508 Q1169 73.7508 1163.45 67.4314 Q1157.94 61.0714 1157.94 49.9314 Q1157.94 38.7509 1163.45 32.4315 Q1169 26.1121 1178.76 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1211.65 9.54393 L1219.15 9.54393 L1219.15 46.7717 L1241.39 27.2059 L1250.91 27.2059 L1226.84 48.4326 L1251.92 72.576 L1242.2 72.576 L1219.15 50.4176 L1219.15 72.576 L1211.65 72.576 L1211.65 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1295.83 48.0275 L1295.83 51.6733 L1261.56 51.6733 Q1262.05 59.3701 1266.18 63.421 Q1270.35 67.4314 1277.76 67.4314 Q1282.06 67.4314 1286.07 66.3781 Q1290.12 65.3249 1294.09 63.2184 L1294.09 70.267 Q1290.08 71.9684 1285.87 72.8596 Q1281.65 73.7508 1277.32 73.7508 Q1266.46 73.7508 1260.1 67.4314 Q1253.78 61.1119 1253.78 50.3365 Q1253.78 39.1965 1259.78 32.6746 Q1265.81 26.1121 1276.02 26.1121 Q1285.18 26.1121 1290.48 32.0264 Q1295.83 37.9003 1295.83 48.0275 M1288.38 45.84 Q1288.3 39.7232 1284.93 36.0774 Q1281.61 32.4315 1276.1 32.4315 Q1269.87 32.4315 1266.1 35.9558 Q1262.37 39.4801 1261.8 45.8805 L1288.38 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1342.94 18.8205 L1342.94 65.8515 L1352.83 65.8515 Q1365.34 65.8515 1371.14 60.1802 Q1376.97 54.509 1376.97 42.2752 Q1376.97 30.1225 1371.14 24.4918 Q1365.34 18.8205 1352.83 18.8205 L1342.94 18.8205 M1334.76 12.096 L1351.57 12.096 Q1369.15 12.096 1377.38 19.4281 Q1385.6 26.7198 1385.6 42.2752 Q1385.6 57.9117 1377.34 65.2439 Q1369.07 72.576 1351.57 72.576 L1334.76 72.576 L1334.76 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1418.94 49.7694 Q1409.9 49.7694 1406.42 51.8354 Q1402.94 53.9013 1402.94 58.8839 Q1402.94 62.8538 1405.53 65.2034 Q1408.16 67.5124 1412.66 67.5124 Q1418.86 67.5124 1422.58 63.1374 Q1426.35 58.7219 1426.35 51.4303 L1426.35 49.7694 L1418.94 49.7694 M1433.81 46.6907 L1433.81 72.576 L1426.35 72.576 L1426.35 65.6895 Q1423.8 69.8214 1419.99 71.8063 Q1416.18 73.7508 1410.67 73.7508 Q1403.71 73.7508 1399.58 69.8619 Q1395.48 65.9325 1395.48 59.3701 Q1395.48 51.7138 1400.59 47.825 Q1405.73 43.9361 1415.9 43.9361 L1426.35 43.9361 L1426.35 43.2069 Q1426.35 38.0623 1422.95 35.2672 Q1419.59 32.4315 1413.47 32.4315 Q1409.58 32.4315 1405.89 33.3632 Q1402.21 34.295 1398.81 36.1584 L1398.81 29.2718 Q1402.9 27.692 1406.75 26.9223 Q1410.59 26.1121 1414.24 26.1121 Q1424.08 26.1121 1428.94 31.2163 Q1433.81 36.3204 1433.81 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1468.04 76.7889 Q1464.88 84.8907 1461.88 87.3618 Q1458.88 89.8329 1453.86 89.8329 L1447.9 89.8329 L1447.9 83.5945 L1452.28 83.5945 Q1455.36 83.5945 1457.06 82.1361 Q1458.76 80.6778 1460.82 75.2496 L1462.16 71.8468 L1443.81 27.2059 L1451.71 27.2059 L1465.89 62.6918 L1480.07 27.2059 L1487.97 27.2059 L1468.04 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1527.18 28.5427 L1527.18 35.5912 Q1524.02 33.9709 1520.62 33.1607 Q1517.21 32.3505 1513.57 32.3505 Q1508.02 32.3505 1505.22 34.0519 Q1502.47 35.7533 1502.47 39.156 Q1502.47 41.7486 1504.45 43.2475 Q1506.44 44.7058 1512.43 46.0426 L1514.99 46.6097 Q1522.93 48.3111 1526.25 51.4303 Q1529.61 54.509 1529.61 60.0587 Q1529.61 66.3781 1524.59 70.0644 Q1519.6 73.7508 1510.85 73.7508 Q1507.21 73.7508 1503.24 73.0216 Q1499.31 72.3329 1494.93 70.9151 L1494.93 63.2184 Q1499.07 65.3654 1503.08 66.4591 Q1507.09 67.5124 1511.02 67.5124 Q1516.28 67.5124 1519.12 65.73 Q1521.95 63.9071 1521.95 60.6258 Q1521.95 57.5877 1519.89 55.9673 Q1517.86 54.3469 1510.93 52.8481 L1508.34 52.2405 Q1501.41 50.7821 1498.34 47.7845 Q1495.26 44.7463 1495.26 39.4801 Q1495.26 33.0797 1499.79 29.5959 Q1504.33 26.1121 1512.68 26.1121 Q1516.81 26.1121 1520.45 26.7198 Q1524.1 27.3274 1527.18 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip862)\" d=\"\n", "M320.49 874.214 L320.49 967.122 L401.936 967.122 L401.936 874.214 L320.49 874.214 L320.49 874.214 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 320.49,874.214 320.49,967.122 401.936,967.122 401.936,874.214 320.49,874.214 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M422.297 827.76 L422.297 967.122 L503.743 967.122 L503.743 827.76 L422.297 827.76 L422.297 827.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 422.297,827.76 422.297,967.122 503.743,967.122 503.743,827.76 422.297,827.76 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M524.105 920.668 L524.105 967.122 L605.551 967.122 L605.551 920.668 L524.105 920.668 L524.105 920.668 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.105,920.668 524.105,967.122 605.551,967.122 605.551,920.668 524.105,920.668 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M625.913 874.214 L625.913 967.122 L707.359 967.122 L707.359 874.214 L625.913 874.214 L625.913 874.214 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 625.913,874.214 625.913,967.122 707.359,967.122 707.359,874.214 625.913,874.214 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M829.528 827.76 L829.528 967.122 L910.974 967.122 L910.974 827.76 L829.528 827.76 L829.528 827.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.528,827.76 829.528,967.122 910.974,967.122 910.974,827.76 829.528,827.76 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1134.95 874.214 L1134.95 967.122 L1216.4 967.122 L1216.4 874.214 L1134.95 874.214 L1134.95 874.214 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.95,874.214 1134.95,967.122 1216.4,967.122 1216.4,874.214 1134.95,874.214 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1236.76 177.404 L1236.76 967.122 L1318.2 967.122 L1318.2 177.404 L1236.76 177.404 L1236.76 177.404 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1236.76,177.404 1236.76,967.122 1318.2,967.122 1318.2,177.404 1236.76,177.404 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1338.57 827.76 L1338.57 967.122 L1420.01 967.122 L1420.01 827.76 L1338.57 827.76 L1338.57 827.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1338.57,827.76 1338.57,967.122 1420.01,967.122 1420.01,827.76 1338.57,827.76 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1440.37 920.668 L1440.37 967.122 L1521.82 967.122 L1521.82 920.668 L1440.37 920.668 L1440.37 920.668 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1440.37,920.668 1440.37,967.122 1521.82,967.122 1521.82,920.668 1440.37,920.668 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1542.18 874.214 L1542.18 967.122 L1623.63 967.122 L1623.63 874.214 L1542.18 874.214 L1542.18 874.214 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1542.18,874.214 1542.18,967.122 1623.63,967.122 1623.63,874.214 1542.18,874.214 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1643.99 920.668 L1643.99 967.122 L1725.43 967.122 L1725.43 920.668 L1643.99 920.668 L1643.99 920.668 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1643.99,920.668 1643.99,967.122 1725.43,967.122 1725.43,920.668 1643.99,920.668 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1847.6 827.76 L1847.6 967.122 L1929.05 967.122 L1929.05 827.76 L1847.6 827.76 L1847.6 827.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1847.6,827.76 1847.6,967.122 1929.05,967.122 1929.05,827.76 1847.6,827.76 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M1949.41 827.76 L1949.41 967.122 L2030.86 967.122 L2030.86 827.76 L1949.41 827.76 L1949.41 827.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1949.41,827.76 1949.41,967.122 2030.86,967.122 2030.86,827.76 1949.41,827.76 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M2051.22 595.49 L2051.22 967.122 L2132.66 967.122 L2132.66 595.49 L2051.22 595.49 L2051.22 595.49 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2051.22,595.49 2051.22,967.122 2132.66,967.122 2132.66,595.49 2051.22,595.49 \n", " \"/>\n", "<path clip-path=\"url(#clip862)\" d=\"\n", "M2153.03 874.214 L2153.03 967.122 L2234.47 967.122 L2234.47 874.214 L2153.03 874.214 L2153.03 874.214 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2153.03,874.214 2153.03,967.122 2234.47,967.122 2234.47,874.214 2153.03,874.214 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"\n", "M202.206 2021.99 L2352.76 2021.99 L2352.76 1184.89 L202.206 1184.89 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip863\">\n", " <rect x=\"202\" y=\"1184\" width=\"2152\" height=\"838\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 259.405,2021.99 259.405,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 768.443,2021.99 768.443,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1277.48,2021.99 1277.48,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1786.52,2021.99 1786.52,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2295.56,2021.99 2295.56,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,2021.99 2352.76,2021.99 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 259.405,2021.99 259.405,2011.95 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 768.443,2021.99 768.443,2011.95 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1277.48,2021.99 1277.48,2011.95 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.52,2021.99 1786.52,2011.95 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2295.56,2021.99 2295.56,2011.95 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M208.017 2085.13 L224.336 2085.13 L224.336 2089.06 L202.392 2089.06 L202.392 2085.13 Q205.054 2082.37 209.637 2077.74 Q214.244 2073.09 215.424 2071.75 Q217.669 2069.22 218.549 2067.49 Q219.452 2065.73 219.452 2064.04 Q219.452 2061.28 217.507 2059.55 Q215.586 2057.81 212.484 2057.81 Q210.285 2057.81 207.832 2058.58 Q205.401 2059.34 202.623 2060.89 L202.623 2056.17 Q205.447 2055.03 207.901 2054.46 Q210.355 2053.88 212.392 2053.88 Q217.762 2053.88 220.956 2056.56 Q224.151 2059.25 224.151 2063.74 Q224.151 2065.87 223.341 2067.79 Q222.554 2069.69 220.447 2072.28 Q219.868 2072.95 216.767 2076.17 Q213.665 2079.36 208.017 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M244.151 2057.58 Q240.54 2057.58 238.711 2061.15 Q236.905 2064.69 236.905 2071.82 Q236.905 2078.92 238.711 2082.49 Q240.54 2086.03 244.151 2086.03 Q247.785 2086.03 249.591 2082.49 Q251.419 2078.92 251.419 2071.82 Q251.419 2064.69 249.591 2061.15 Q247.785 2057.58 244.151 2057.58 M244.151 2053.88 Q249.961 2053.88 253.016 2058.48 Q256.095 2063.07 256.095 2071.82 Q256.095 2080.54 253.016 2085.15 Q249.961 2089.73 244.151 2089.73 Q238.341 2089.73 235.262 2085.15 Q232.206 2080.54 232.206 2071.82 Q232.206 2063.07 235.262 2058.48 Q238.341 2053.88 244.151 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M274.313 2057.58 Q270.702 2057.58 268.873 2061.15 Q267.067 2064.69 267.067 2071.82 Q267.067 2078.92 268.873 2082.49 Q270.702 2086.03 274.313 2086.03 Q277.947 2086.03 279.752 2082.49 Q281.581 2078.92 281.581 2071.82 Q281.581 2064.69 279.752 2061.15 Q277.947 2057.58 274.313 2057.58 M274.313 2053.88 Q280.123 2053.88 283.178 2058.48 Q286.257 2063.07 286.257 2071.82 Q286.257 2080.54 283.178 2085.15 Q280.123 2089.73 274.313 2089.73 Q268.502 2089.73 265.424 2085.15 Q262.368 2080.54 262.368 2071.82 Q262.368 2063.07 265.424 2058.48 Q268.502 2053.88 274.313 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M304.475 2057.58 Q300.863 2057.58 299.035 2061.15 Q297.229 2064.69 297.229 2071.82 Q297.229 2078.92 299.035 2082.49 Q300.863 2086.03 304.475 2086.03 Q308.109 2086.03 309.914 2082.49 Q311.743 2078.92 311.743 2071.82 Q311.743 2064.69 309.914 2061.15 Q308.109 2057.58 304.475 2057.58 M304.475 2053.88 Q310.285 2053.88 313.34 2058.48 Q316.419 2063.07 316.419 2071.82 Q316.419 2080.54 313.34 2085.15 Q310.285 2089.73 304.475 2089.73 Q298.664 2089.73 295.586 2085.15 Q292.53 2080.54 292.53 2071.82 Q292.53 2063.07 295.586 2058.48 Q298.664 2053.88 304.475 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M717.552 2085.13 L733.872 2085.13 L733.872 2089.06 L711.927 2089.06 L711.927 2085.13 Q714.589 2082.37 719.173 2077.74 Q723.779 2073.09 724.96 2071.75 Q727.205 2069.22 728.085 2067.49 Q728.987 2065.73 728.987 2064.04 Q728.987 2061.28 727.043 2059.55 Q725.122 2057.81 722.02 2057.81 Q719.821 2057.81 717.367 2058.58 Q714.936 2059.34 712.159 2060.89 L712.159 2056.17 Q714.983 2055.03 717.436 2054.46 Q719.89 2053.88 721.927 2053.88 Q727.297 2053.88 730.492 2056.56 Q733.686 2059.25 733.686 2063.74 Q733.686 2065.87 732.876 2067.79 Q732.089 2069.69 729.983 2072.28 Q729.404 2072.95 726.302 2076.17 Q723.2 2079.36 717.552 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M753.686 2057.58 Q750.075 2057.58 748.246 2061.15 Q746.441 2064.69 746.441 2071.82 Q746.441 2078.92 748.246 2082.49 Q750.075 2086.03 753.686 2086.03 Q757.32 2086.03 759.126 2082.49 Q760.955 2078.92 760.955 2071.82 Q760.955 2064.69 759.126 2061.15 Q757.32 2057.58 753.686 2057.58 M753.686 2053.88 Q759.496 2053.88 762.552 2058.48 Q765.631 2063.07 765.631 2071.82 Q765.631 2080.54 762.552 2085.15 Q759.496 2089.73 753.686 2089.73 Q747.876 2089.73 744.797 2085.15 Q741.742 2080.54 741.742 2071.82 Q741.742 2063.07 744.797 2058.48 Q747.876 2053.88 753.686 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M783.848 2057.58 Q780.237 2057.58 778.408 2061.15 Q776.603 2064.69 776.603 2071.82 Q776.603 2078.92 778.408 2082.49 Q780.237 2086.03 783.848 2086.03 Q787.482 2086.03 789.288 2082.49 Q791.117 2078.92 791.117 2071.82 Q791.117 2064.69 789.288 2061.15 Q787.482 2057.58 783.848 2057.58 M783.848 2053.88 Q789.658 2053.88 792.714 2058.48 Q795.792 2063.07 795.792 2071.82 Q795.792 2080.54 792.714 2085.15 Q789.658 2089.73 783.848 2089.73 Q778.038 2089.73 774.959 2085.15 Q771.904 2080.54 771.904 2071.82 Q771.904 2063.07 774.959 2058.48 Q778.038 2053.88 783.848 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M804.056 2054.5 L822.413 2054.5 L822.413 2058.44 L808.339 2058.44 L808.339 2066.91 Q809.357 2066.56 810.376 2066.4 Q811.394 2066.22 812.413 2066.22 Q818.2 2066.22 821.579 2069.39 Q824.959 2072.56 824.959 2077.97 Q824.959 2083.55 821.487 2086.66 Q818.015 2089.73 811.695 2089.73 Q809.519 2089.73 807.251 2089.36 Q805.005 2088.99 802.598 2088.25 L802.598 2083.55 Q804.681 2084.69 806.904 2085.24 Q809.126 2085.8 811.603 2085.8 Q815.607 2085.8 817.945 2083.69 Q820.283 2081.59 820.283 2077.97 Q820.283 2074.36 817.945 2072.26 Q815.607 2070.15 811.603 2070.15 Q809.728 2070.15 807.853 2070.57 Q806.001 2070.98 804.056 2071.86 L804.056 2054.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1226.09 2085.13 L1242.41 2085.13 L1242.41 2089.06 L1220.47 2089.06 L1220.47 2085.13 Q1223.13 2082.37 1227.71 2077.74 Q1232.32 2073.09 1233.5 2071.75 Q1235.74 2069.22 1236.62 2067.49 Q1237.53 2065.73 1237.53 2064.04 Q1237.53 2061.28 1235.58 2059.55 Q1233.66 2057.81 1230.56 2057.81 Q1228.36 2057.81 1225.91 2058.58 Q1223.48 2059.34 1220.7 2060.89 L1220.7 2056.17 Q1223.52 2055.03 1225.98 2054.46 Q1228.43 2053.88 1230.47 2053.88 Q1235.84 2053.88 1239.03 2056.56 Q1242.23 2059.25 1242.23 2063.74 Q1242.23 2065.87 1241.42 2067.79 Q1240.63 2069.69 1238.52 2072.28 Q1237.94 2072.95 1234.84 2076.17 Q1231.74 2079.36 1226.09 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1262.23 2057.58 Q1258.62 2057.58 1256.79 2061.15 Q1254.98 2064.69 1254.98 2071.82 Q1254.98 2078.92 1256.79 2082.49 Q1258.62 2086.03 1262.23 2086.03 Q1265.86 2086.03 1267.67 2082.49 Q1269.49 2078.92 1269.49 2071.82 Q1269.49 2064.69 1267.67 2061.15 Q1265.86 2057.58 1262.23 2057.58 M1262.23 2053.88 Q1268.04 2053.88 1271.09 2058.48 Q1274.17 2063.07 1274.17 2071.82 Q1274.17 2080.54 1271.09 2085.15 Q1268.04 2089.73 1262.23 2089.73 Q1256.42 2089.73 1253.34 2085.15 Q1250.28 2080.54 1250.28 2071.82 Q1250.28 2063.07 1253.34 2058.48 Q1256.42 2053.88 1262.23 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1283.2 2085.13 L1290.84 2085.13 L1290.84 2058.76 L1282.53 2060.43 L1282.53 2056.17 L1290.79 2054.5 L1295.47 2054.5 L1295.47 2085.13 L1303.11 2085.13 L1303.11 2089.06 L1283.2 2089.06 L1283.2 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1322.55 2057.58 Q1318.94 2057.58 1317.11 2061.15 Q1315.3 2064.69 1315.3 2071.82 Q1315.3 2078.92 1317.11 2082.49 Q1318.94 2086.03 1322.55 2086.03 Q1326.18 2086.03 1327.99 2082.49 Q1329.82 2078.92 1329.82 2071.82 Q1329.82 2064.69 1327.99 2061.15 Q1326.18 2057.58 1322.55 2057.58 M1322.55 2053.88 Q1328.36 2053.88 1331.42 2058.48 Q1334.49 2063.07 1334.49 2071.82 Q1334.49 2080.54 1331.42 2085.15 Q1328.36 2089.73 1322.55 2089.73 Q1316.74 2089.73 1313.66 2085.15 Q1310.61 2080.54 1310.61 2071.82 Q1310.61 2063.07 1313.66 2058.48 Q1316.74 2053.88 1322.55 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1735.63 2085.13 L1751.95 2085.13 L1751.95 2089.06 L1730 2089.06 L1730 2085.13 Q1732.66 2082.37 1737.25 2077.74 Q1741.85 2073.09 1743.04 2071.75 Q1745.28 2069.22 1746.16 2067.49 Q1747.06 2065.73 1747.06 2064.04 Q1747.06 2061.28 1745.12 2059.55 Q1743.2 2057.81 1740.1 2057.81 Q1737.9 2057.81 1735.44 2058.58 Q1733.01 2059.34 1730.23 2060.89 L1730.23 2056.17 Q1733.06 2055.03 1735.51 2054.46 Q1737.97 2053.88 1740 2053.88 Q1745.37 2053.88 1748.57 2056.56 Q1751.76 2059.25 1751.76 2063.74 Q1751.76 2065.87 1750.95 2067.79 Q1750.16 2069.69 1748.06 2072.28 Q1747.48 2072.95 1744.38 2076.17 Q1741.28 2079.36 1735.63 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1771.76 2057.58 Q1768.15 2057.58 1766.32 2061.15 Q1764.52 2064.69 1764.52 2071.82 Q1764.52 2078.92 1766.32 2082.49 Q1768.15 2086.03 1771.76 2086.03 Q1775.4 2086.03 1777.2 2082.49 Q1779.03 2078.92 1779.03 2071.82 Q1779.03 2064.69 1777.2 2061.15 Q1775.4 2057.58 1771.76 2057.58 M1771.76 2053.88 Q1777.57 2053.88 1780.63 2058.48 Q1783.71 2063.07 1783.71 2071.82 Q1783.71 2080.54 1780.63 2085.15 Q1777.57 2089.73 1771.76 2089.73 Q1765.95 2089.73 1762.87 2085.15 Q1759.82 2080.54 1759.82 2071.82 Q1759.82 2063.07 1762.87 2058.48 Q1765.95 2053.88 1771.76 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1792.73 2085.13 L1800.37 2085.13 L1800.37 2058.76 L1792.06 2060.43 L1792.06 2056.17 L1800.33 2054.5 L1805 2054.5 L1805 2085.13 L1812.64 2085.13 L1812.64 2089.06 L1792.73 2089.06 L1792.73 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1822.13 2054.5 L1840.49 2054.5 L1840.49 2058.44 L1826.41 2058.44 L1826.41 2066.91 Q1827.43 2066.56 1828.45 2066.4 Q1829.47 2066.22 1830.49 2066.22 Q1836.28 2066.22 1839.65 2069.39 Q1843.03 2072.56 1843.03 2077.97 Q1843.03 2083.55 1839.56 2086.66 Q1836.09 2089.73 1829.77 2089.73 Q1827.59 2089.73 1825.33 2089.36 Q1823.08 2088.99 1820.67 2088.25 L1820.67 2083.55 Q1822.76 2084.69 1824.98 2085.24 Q1827.2 2085.8 1829.68 2085.8 Q1833.68 2085.8 1836.02 2083.69 Q1838.36 2081.59 1838.36 2077.97 Q1838.36 2074.36 1836.02 2072.26 Q1833.68 2070.15 1829.68 2070.15 Q1827.8 2070.15 1825.93 2070.57 Q1824.08 2070.98 1822.13 2071.86 L1822.13 2054.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2244.17 2085.13 L2260.49 2085.13 L2260.49 2089.06 L2238.54 2089.06 L2238.54 2085.13 Q2241.2 2082.37 2245.79 2077.74 Q2250.39 2073.09 2251.58 2071.75 Q2253.82 2069.22 2254.7 2067.49 Q2255.6 2065.73 2255.6 2064.04 Q2255.6 2061.28 2253.66 2059.55 Q2251.74 2057.81 2248.64 2057.81 Q2246.44 2057.81 2243.98 2058.58 Q2241.55 2059.34 2238.77 2060.89 L2238.77 2056.17 Q2241.6 2055.03 2244.05 2054.46 Q2246.51 2053.88 2248.54 2053.88 Q2253.91 2053.88 2257.11 2056.56 Q2260.3 2059.25 2260.3 2063.74 Q2260.3 2065.87 2259.49 2067.79 Q2258.7 2069.69 2256.6 2072.28 Q2256.02 2072.95 2252.92 2076.17 Q2249.82 2079.36 2244.17 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2280.3 2057.58 Q2276.69 2057.58 2274.86 2061.15 Q2273.06 2064.69 2273.06 2071.82 Q2273.06 2078.92 2274.86 2082.49 Q2276.69 2086.03 2280.3 2086.03 Q2283.94 2086.03 2285.74 2082.49 Q2287.57 2078.92 2287.57 2071.82 Q2287.57 2064.69 2285.74 2061.15 Q2283.94 2057.58 2280.3 2057.58 M2280.3 2053.88 Q2286.11 2053.88 2289.17 2058.48 Q2292.25 2063.07 2292.25 2071.82 Q2292.25 2080.54 2289.17 2085.15 Q2286.11 2089.73 2280.3 2089.73 Q2274.49 2089.73 2271.41 2085.15 Q2268.36 2080.54 2268.36 2071.82 Q2268.36 2063.07 2271.41 2058.48 Q2274.49 2053.88 2280.3 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2304.49 2085.13 L2320.81 2085.13 L2320.81 2089.06 L2298.87 2089.06 L2298.87 2085.13 Q2301.53 2082.37 2306.11 2077.74 Q2310.72 2073.09 2311.9 2071.75 Q2314.14 2069.22 2315.02 2067.49 Q2315.93 2065.73 2315.93 2064.04 Q2315.93 2061.28 2313.98 2059.55 Q2312.06 2057.81 2308.96 2057.81 Q2306.76 2057.81 2304.31 2058.58 Q2301.88 2059.34 2299.1 2060.89 L2299.1 2056.17 Q2301.92 2055.03 2304.38 2054.46 Q2306.83 2053.88 2308.87 2053.88 Q2314.24 2053.88 2317.43 2056.56 Q2320.63 2059.25 2320.63 2063.74 Q2320.63 2065.87 2319.82 2067.79 Q2319.03 2069.69 2316.92 2072.28 Q2316.34 2072.95 2313.24 2076.17 Q2310.14 2079.36 2304.49 2085.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2340.63 2057.58 Q2337.01 2057.58 2335.19 2061.15 Q2333.38 2064.69 2333.38 2071.82 Q2333.38 2078.92 2335.19 2082.49 Q2337.01 2086.03 2340.63 2086.03 Q2344.26 2086.03 2346.07 2082.49 Q2347.89 2078.92 2347.89 2071.82 Q2347.89 2064.69 2346.07 2061.15 Q2344.26 2057.58 2340.63 2057.58 M2340.63 2053.88 Q2346.44 2053.88 2349.49 2058.48 Q2352.57 2063.07 2352.57 2071.82 Q2352.57 2080.54 2349.49 2085.15 Q2346.44 2089.73 2340.63 2089.73 Q2334.82 2089.73 2331.74 2085.15 Q2328.68 2080.54 2328.68 2071.82 Q2328.68 2063.07 2331.74 2058.48 Q2334.82 2053.88 2340.63 2053.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1998.3 2352.76,1998.3 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1866.31 2352.76,1866.31 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1734.33 2352.76,1734.33 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1602.34 2352.76,1602.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1470.35 2352.76,1470.35 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1338.37 2352.76,1338.37 \n", " \"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,1206.38 2352.76,1206.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,2021.99 202.206,1184.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1998.3 228.012,1998.3 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1866.31 228.012,1866.31 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1734.33 228.012,1734.33 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1602.34 228.012,1602.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1470.35 228.012,1470.35 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1338.37 228.012,1338.37 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,1206.38 228.012,1206.38 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M142.261 1984.1 Q138.65 1984.1 136.822 1987.66 Q135.016 1991.2 135.016 1998.33 Q135.016 2005.44 136.822 2009 Q138.65 2012.55 142.261 2012.55 Q145.896 2012.55 147.701 2009 Q149.53 2005.44 149.53 1998.33 Q149.53 1991.2 147.701 1987.66 Q145.896 1984.1 142.261 1984.1 M142.261 1980.39 Q148.072 1980.39 151.127 1985 Q154.206 1989.58 154.206 1998.33 Q154.206 2007.06 151.127 2011.67 Q148.072 2016.25 142.261 2016.25 Q136.451 2016.25 133.373 2011.67 Q130.317 2007.06 130.317 1998.33 Q130.317 1989.58 133.373 1985 Q136.451 1980.39 142.261 1980.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M134.298 1879.66 L141.937 1879.66 L141.937 1853.29 L133.627 1854.96 L133.627 1850.7 L141.891 1849.03 L146.567 1849.03 L146.567 1879.66 L154.206 1879.66 L154.206 1883.59 L134.298 1883.59 L134.298 1879.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M137.886 1747.67 L154.206 1747.67 L154.206 1751.61 L132.261 1751.61 L132.261 1747.67 Q134.923 1744.92 139.507 1740.29 Q144.113 1735.63 145.294 1734.29 Q147.539 1731.77 148.419 1730.03 Q149.322 1728.27 149.322 1726.58 Q149.322 1723.83 147.377 1722.09 Q145.456 1720.36 142.354 1720.36 Q140.155 1720.36 137.701 1721.12 Q135.271 1721.88 132.493 1723.44 L132.493 1718.71 Q135.317 1717.58 137.771 1717 Q140.224 1716.42 142.261 1716.42 Q147.632 1716.42 150.826 1719.11 Q154.021 1721.79 154.021 1726.28 Q154.021 1728.41 153.21 1730.33 Q152.423 1732.23 150.317 1734.82 Q149.738 1735.5 146.636 1738.71 Q143.535 1741.91 137.886 1747.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M147.076 1600.99 Q150.433 1601.7 152.308 1603.97 Q154.206 1606.24 154.206 1609.57 Q154.206 1614.69 150.687 1617.49 Q147.169 1620.29 140.687 1620.29 Q138.511 1620.29 136.197 1619.85 Q133.905 1619.43 131.451 1618.58 L131.451 1614.06 Q133.396 1615.2 135.71 1615.78 Q138.025 1616.36 140.548 1616.36 Q144.947 1616.36 147.238 1614.62 Q149.553 1612.88 149.553 1609.57 Q149.553 1606.52 147.4 1604.81 Q145.271 1603.07 141.451 1603.07 L137.423 1603.07 L137.423 1599.23 L141.636 1599.23 Q145.085 1599.23 146.914 1597.86 Q148.743 1596.47 148.743 1593.88 Q148.743 1591.22 146.845 1589.81 Q144.97 1588.37 141.451 1588.37 Q139.53 1588.37 137.331 1588.79 Q135.132 1589.2 132.493 1590.08 L132.493 1585.92 Q135.155 1585.18 137.47 1584.81 Q139.808 1584.44 141.868 1584.44 Q147.192 1584.44 150.294 1586.87 Q153.396 1589.27 153.396 1593.39 Q153.396 1596.26 151.752 1598.25 Q150.109 1600.22 147.076 1600.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M144.622 1457.15 L132.817 1475.6 L144.622 1475.6 L144.622 1457.15 M143.396 1453.07 L149.275 1453.07 L149.275 1475.6 L154.206 1475.6 L154.206 1479.49 L149.275 1479.49 L149.275 1487.63 L144.622 1487.63 L144.622 1479.49 L129.021 1479.49 L129.021 1474.97 L143.396 1453.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M133.303 1321.09 L151.659 1321.09 L151.659 1325.02 L137.585 1325.02 L137.585 1333.49 Q138.604 1333.15 139.623 1332.99 Q140.641 1332.8 141.66 1332.8 Q147.447 1332.8 150.826 1335.97 Q154.206 1339.14 154.206 1344.56 Q154.206 1350.14 150.734 1353.24 Q147.261 1356.32 140.942 1356.32 Q138.766 1356.32 136.498 1355.95 Q134.252 1355.58 131.845 1354.84 L131.845 1350.14 Q133.928 1351.27 136.15 1351.83 Q138.373 1352.38 140.849 1352.38 Q144.854 1352.38 147.192 1350.28 Q149.53 1348.17 149.53 1344.56 Q149.53 1340.95 147.192 1338.84 Q144.854 1336.74 140.849 1336.74 Q138.974 1336.74 137.099 1337.15 Q135.248 1337.57 133.303 1338.45 L133.303 1321.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M142.678 1204.52 Q139.53 1204.52 137.678 1206.67 Q135.849 1208.82 135.849 1212.57 Q135.849 1216.3 137.678 1218.48 Q139.53 1220.63 142.678 1220.63 Q145.826 1220.63 147.655 1218.48 Q149.507 1216.3 149.507 1212.57 Q149.507 1208.82 147.655 1206.67 Q145.826 1204.52 142.678 1204.52 M151.96 1189.87 L151.96 1194.12 Q150.201 1193.29 148.396 1192.85 Q146.613 1192.41 144.854 1192.41 Q140.224 1192.41 137.771 1195.54 Q135.34 1198.66 134.993 1204.98 Q136.359 1202.97 138.419 1201.9 Q140.479 1200.81 142.956 1200.81 Q148.164 1200.81 151.173 1203.99 Q154.206 1207.13 154.206 1212.57 Q154.206 1217.9 151.058 1221.11 Q147.91 1224.33 142.678 1224.33 Q136.683 1224.33 133.511 1219.75 Q130.34 1215.14 130.34 1206.42 Q130.34 1198.22 134.229 1193.36 Q138.118 1188.48 144.669 1188.48 Q146.428 1188.48 148.21 1188.82 Q150.016 1189.17 151.96 1189.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M30.4767 1924.08 L30.4767 1916.24 L56.9349 1906.32 L30.4767 1896.34 L30.4767 1888.5 L69.3567 1888.5 L69.3567 1893.63 L35.2163 1893.63 L61.8828 1903.66 L61.8828 1908.95 L35.2163 1918.97 L69.3567 1918.97 L69.3567 1924.08 L30.4767 1924.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M53.5756 1853.32 L55.9193 1853.32 L55.9193 1875.35 Q60.8672 1875.04 63.4713 1872.38 Q66.0494 1869.7 66.0494 1864.94 Q66.0494 1862.18 65.3724 1859.6 Q64.6953 1856.99 63.3411 1854.44 L67.8724 1854.44 Q68.9661 1857.02 69.539 1859.73 Q70.1119 1862.44 70.1119 1865.22 Q70.1119 1872.2 66.0494 1876.29 Q61.987 1880.35 55.0599 1880.35 Q47.8985 1880.35 43.7058 1876.5 Q39.4871 1872.62 39.4871 1866.06 Q39.4871 1860.17 43.2892 1856.76 Q47.0652 1853.32 53.5756 1853.32 M52.1693 1858.11 Q48.237 1858.17 45.8933 1860.33 Q43.5496 1862.46 43.5496 1866 Q43.5496 1870.01 45.8152 1872.44 Q48.0808 1874.83 52.1954 1875.2 L52.1693 1858.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M44.6173 1826.26 L28.8361 1826.26 L28.8361 1821.47 L69.3567 1821.47 L69.3567 1826.26 L64.9817 1826.26 Q67.5859 1827.77 68.8619 1830.09 Q70.1119 1832.38 70.1119 1835.61 Q70.1119 1840.9 65.8932 1844.23 Q61.6745 1847.54 54.7995 1847.54 Q47.9245 1847.54 43.7058 1844.23 Q39.4871 1840.9 39.4871 1835.61 Q39.4871 1832.38 40.7631 1830.09 Q42.0131 1827.77 44.6173 1826.26 M54.7995 1842.59 Q60.0859 1842.59 63.1068 1840.43 Q66.1015 1838.24 66.1015 1834.44 Q66.1015 1830.64 63.1068 1828.45 Q60.0859 1826.26 54.7995 1826.26 Q49.5131 1826.26 46.5183 1828.45 Q43.4975 1830.64 43.4975 1834.44 Q43.4975 1838.24 46.5183 1840.43 Q49.5131 1842.59 54.7995 1842.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M40.1902 1811.6 L40.1902 1806.81 L69.3567 1806.81 L69.3567 1811.6 L40.1902 1811.6 M28.8361 1811.6 L28.8361 1806.81 L34.9038 1806.81 L34.9038 1811.6 L28.8361 1811.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M54.6953 1783.53 Q54.6953 1789.34 56.0235 1791.58 Q57.3516 1793.82 60.5547 1793.82 Q63.1068 1793.82 64.6172 1792.15 Q66.1015 1790.46 66.1015 1787.57 Q66.1015 1783.58 63.289 1781.19 Q60.4505 1778.76 55.763 1778.76 L54.6953 1778.76 L54.6953 1783.53 M52.7162 1773.97 L69.3567 1773.97 L69.3567 1778.76 L64.9297 1778.76 Q67.5859 1780.41 68.8619 1782.85 Q70.1119 1785.3 70.1119 1788.84 Q70.1119 1793.32 67.6119 1795.98 Q65.0859 1798.61 60.8672 1798.61 Q55.9453 1798.61 53.4453 1795.33 Q50.9454 1792.02 50.9454 1785.48 L50.9454 1778.76 L50.4766 1778.76 Q47.1693 1778.76 45.3725 1780.95 Q43.5496 1783.11 43.5496 1787.05 Q43.5496 1789.55 44.1485 1791.92 Q44.7475 1794.29 45.9454 1796.47 L41.5183 1796.47 Q40.5027 1793.84 40.0079 1791.37 Q39.4871 1788.89 39.4871 1786.55 Q39.4871 1780.22 42.7683 1777.1 Q46.0496 1773.97 52.7162 1773.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M51.7526 1739.86 L69.3567 1739.86 L69.3567 1744.65 L51.9089 1744.65 Q47.7683 1744.65 45.711 1746.26 Q43.6537 1747.88 43.6537 1751.11 Q43.6537 1754.99 46.1277 1757.23 Q48.6016 1759.47 52.8724 1759.47 L69.3567 1759.47 L69.3567 1764.29 L40.1902 1764.29 L40.1902 1759.47 L44.7214 1759.47 Q42.0912 1757.75 40.7892 1755.43 Q39.4871 1753.09 39.4871 1750.04 Q39.4871 1745.01 42.6121 1742.44 Q45.711 1739.86 51.7526 1739.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M34.7996 1707.88 L65.0338 1707.88 L65.0338 1701.53 Q65.0338 1693.48 61.388 1689.75 Q57.7422 1686 49.8777 1686 Q42.0652 1686 38.4454 1689.75 Q34.7996 1693.48 34.7996 1701.53 L34.7996 1707.88 M30.4767 1713.14 L30.4767 1702.33 Q30.4767 1691.03 35.1902 1685.74 Q39.8777 1680.46 49.8777 1680.46 Q59.9297 1680.46 64.6432 1685.77 Q69.3567 1691.08 69.3567 1702.33 L69.3567 1713.14 L30.4767 1713.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M57.8464 1672.78 L40.1902 1672.78 L40.1902 1667.98 L57.6641 1667.98 Q61.8047 1667.98 63.888 1666.37 Q65.9453 1664.75 65.9453 1661.53 Q65.9453 1657.65 63.4713 1655.41 Q60.9974 1653.14 56.7266 1653.14 L40.1902 1653.14 L40.1902 1648.35 L69.3567 1648.35 L69.3567 1653.14 L64.8776 1653.14 Q67.5338 1654.89 68.8359 1657.2 Q70.1119 1659.49 70.1119 1662.54 Q70.1119 1667.57 66.9869 1670.17 Q63.862 1672.78 57.8464 1672.78 M39.4871 1660.72 L39.4871 1660.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M44.6694 1621.58 Q44.2006 1622.39 43.9923 1623.35 Q43.7579 1624.29 43.7579 1625.43 Q43.7579 1629.49 46.4141 1631.68 Q49.0443 1633.84 53.9922 1633.84 L69.3567 1633.84 L69.3567 1638.66 L40.1902 1638.66 L40.1902 1633.84 L44.7214 1633.84 Q42.0652 1632.33 40.7892 1629.91 Q39.4871 1627.49 39.4871 1624.03 Q39.4871 1623.53 39.5652 1622.93 Q39.6173 1622.33 39.7475 1621.6 L44.6694 1621.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M54.6953 1603.3 Q54.6953 1609.1 56.0235 1611.34 Q57.3516 1613.58 60.5547 1613.58 Q63.1068 1613.58 64.6172 1611.92 Q66.1015 1610.22 66.1015 1607.33 Q66.1015 1603.35 63.289 1600.95 Q60.4505 1598.53 55.763 1598.53 L54.6953 1598.53 L54.6953 1603.3 M52.7162 1593.74 L69.3567 1593.74 L69.3567 1598.53 L64.9297 1598.53 Q67.5859 1600.17 68.8619 1602.62 Q70.1119 1605.07 70.1119 1608.61 Q70.1119 1613.09 67.6119 1615.74 Q65.0859 1618.37 60.8672 1618.37 Q55.9453 1618.37 53.4453 1615.09 Q50.9454 1611.79 50.9454 1605.25 L50.9454 1598.53 L50.4766 1598.53 Q47.1693 1598.53 45.3725 1600.72 Q43.5496 1602.88 43.5496 1606.81 Q43.5496 1609.31 44.1485 1611.68 Q44.7475 1614.05 45.9454 1616.24 L41.5183 1616.24 Q40.5027 1613.61 40.0079 1611.14 Q39.4871 1608.66 39.4871 1606.32 Q39.4871 1599.99 42.7683 1596.86 Q46.0496 1593.74 52.7162 1593.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M31.909 1579.13 L40.1902 1579.13 L40.1902 1569.26 L43.9141 1569.26 L43.9141 1579.13 L59.7474 1579.13 Q63.3151 1579.13 64.3307 1578.17 Q65.3463 1577.18 65.3463 1574.18 L65.3463 1569.26 L69.3567 1569.26 L69.3567 1574.18 Q69.3567 1579.73 67.2994 1581.84 Q65.2161 1583.95 59.7474 1583.95 L43.9141 1583.95 L43.9141 1587.46 L40.1902 1587.46 L40.1902 1583.95 L31.909 1583.95 L31.909 1579.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M40.1902 1562.96 L40.1902 1558.17 L69.3567 1558.17 L69.3567 1562.96 L40.1902 1562.96 M28.8361 1562.96 L28.8361 1558.17 L34.9038 1558.17 L34.9038 1562.96 L28.8361 1562.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M43.5496 1536.84 Q43.5496 1540.69 46.5704 1542.93 Q49.5652 1545.17 54.7995 1545.17 Q60.0339 1545.17 63.0547 1542.96 Q66.0494 1540.72 66.0494 1536.84 Q66.0494 1533.01 63.0286 1530.77 Q60.0078 1528.53 54.7995 1528.53 Q49.6172 1528.53 46.5964 1530.77 Q43.5496 1533.01 43.5496 1536.84 M39.4871 1536.84 Q39.4871 1530.59 43.5496 1527.02 Q47.612 1523.45 54.7995 1523.45 Q61.9609 1523.45 66.0494 1527.02 Q70.1119 1530.59 70.1119 1536.84 Q70.1119 1543.11 66.0494 1546.68 Q61.9609 1550.22 54.7995 1550.22 Q47.612 1550.22 43.5496 1546.68 Q39.4871 1543.11 39.4871 1536.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M51.7526 1491.27 L69.3567 1491.27 L69.3567 1496.06 L51.9089 1496.06 Q47.7683 1496.06 45.711 1497.67 Q43.6537 1499.29 43.6537 1502.52 Q43.6537 1506.4 46.1277 1508.64 Q48.6016 1510.88 52.8724 1510.88 L69.3567 1510.88 L69.3567 1515.69 L40.1902 1515.69 L40.1902 1510.88 L44.7214 1510.88 Q42.0912 1509.16 40.7892 1506.84 Q39.4871 1504.5 39.4871 1501.45 Q39.4871 1496.42 42.6121 1493.84 Q45.711 1491.27 51.7526 1491.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M28.8882 1453.25 Q34.8777 1456.74 40.7371 1458.43 Q46.5964 1460.12 52.612 1460.12 Q58.6276 1460.12 64.539 1458.43 Q70.4244 1456.71 76.3879 1453.25 L76.3879 1457.41 Q70.2682 1461.32 64.3567 1463.27 Q58.4453 1465.2 52.612 1465.2 Q46.8048 1465.2 40.9194 1463.27 Q35.034 1461.34 28.8882 1457.41 L28.8882 1453.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M51.7526 1419.7 L69.3567 1419.7 L69.3567 1424.5 L51.9089 1424.5 Q47.7683 1424.5 45.711 1426.11 Q43.6537 1427.72 43.6537 1430.95 Q43.6537 1434.83 46.1277 1437.07 Q48.6016 1439.31 52.8724 1439.31 L69.3567 1439.31 L69.3567 1444.13 L28.8361 1444.13 L28.8361 1439.31 L44.7214 1439.31 Q42.0912 1437.59 40.7892 1435.28 Q39.4871 1432.93 39.4871 1429.89 Q39.4871 1424.86 42.6121 1422.28 Q45.711 1419.7 51.7526 1419.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M43.5496 1398.84 Q43.5496 1402.7 46.5704 1404.94 Q49.5652 1407.18 54.7995 1407.18 Q60.0339 1407.18 63.0547 1404.96 Q66.0494 1402.72 66.0494 1398.84 Q66.0494 1395.02 63.0286 1392.78 Q60.0078 1390.54 54.7995 1390.54 Q49.6172 1390.54 46.5964 1392.78 Q43.5496 1395.02 43.5496 1398.84 M39.4871 1398.84 Q39.4871 1392.59 43.5496 1389.03 Q47.612 1385.46 54.7995 1385.46 Q61.9609 1385.46 66.0494 1389.03 Q70.1119 1392.59 70.1119 1398.84 Q70.1119 1405.12 66.0494 1408.69 Q61.9609 1412.23 54.7995 1412.23 Q47.612 1412.23 43.5496 1408.69 Q39.4871 1405.12 39.4871 1398.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M57.8464 1378.01 L40.1902 1378.01 L40.1902 1373.22 L57.6641 1373.22 Q61.8047 1373.22 63.888 1371.61 Q65.9453 1369.99 65.9453 1366.76 Q65.9453 1362.88 63.4713 1360.64 Q60.9974 1358.38 56.7266 1358.38 L40.1902 1358.38 L40.1902 1353.58 L69.3567 1353.58 L69.3567 1358.38 L64.8776 1358.38 Q67.5338 1360.12 68.8359 1362.44 Q70.1119 1364.73 70.1119 1367.78 Q70.1119 1372.8 66.9869 1375.41 Q63.862 1378.01 57.8464 1378.01 M39.4871 1365.95 L39.4871 1365.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M44.6694 1326.81 Q44.2006 1327.62 43.9923 1328.58 Q43.7579 1329.52 43.7579 1330.67 Q43.7579 1334.73 46.4141 1336.92 Q49.0443 1339.08 53.9922 1339.08 L69.3567 1339.08 L69.3567 1343.9 L40.1902 1343.9 L40.1902 1339.08 L44.7214 1339.08 Q42.0652 1337.57 40.7892 1335.15 Q39.4871 1332.73 39.4871 1329.26 Q39.4871 1328.77 39.5652 1328.17 Q39.6173 1327.57 39.7475 1326.84 L44.6694 1326.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M41.0496 1303.19 L45.5808 1303.19 Q44.5391 1305.23 44.0183 1307.41 Q43.4975 1309.6 43.4975 1311.94 Q43.4975 1315.51 44.5912 1317.31 Q45.685 1319.08 47.8725 1319.08 Q49.5391 1319.08 50.5027 1317.8 Q51.4401 1316.53 52.2995 1312.67 L52.6641 1311.03 Q53.7578 1305.93 55.763 1303.79 Q57.7422 1301.63 61.3099 1301.63 Q65.3724 1301.63 67.7421 1304.86 Q70.1119 1308.06 70.1119 1313.69 Q70.1119 1316.03 69.6432 1318.58 Q69.2005 1321.11 68.289 1323.92 L63.3411 1323.92 Q64.7213 1321.27 65.4244 1318.69 Q66.1015 1316.11 66.1015 1313.58 Q66.1015 1310.2 64.9557 1308.38 Q63.7838 1306.55 61.6745 1306.55 Q59.7214 1306.55 58.6797 1307.88 Q57.638 1309.18 56.6745 1313.64 L56.2839 1315.3 Q55.3464 1319.76 53.4193 1321.74 Q51.4662 1323.71 48.0808 1323.71 Q43.9662 1323.71 41.7267 1320.8 Q39.4871 1317.88 39.4871 1312.52 Q39.4871 1309.86 39.8777 1307.52 Q40.2683 1305.17 41.0496 1303.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M28.8882 1294.76 L28.8882 1290.59 Q35.034 1286.68 40.9194 1284.76 Q46.8048 1282.8 52.612 1282.8 Q58.4453 1282.8 64.3567 1284.76 Q70.2682 1286.68 76.3879 1290.59 L76.3879 1294.76 Q70.4244 1291.29 64.539 1289.6 Q58.6276 1287.88 52.612 1287.88 Q46.5964 1287.88 40.7371 1289.6 Q34.8777 1291.29 28.8882 1294.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip863)\" d=\"\n", "M320.49 1802.52 L320.49 1998.3 L401.936 1998.3 L401.936 1802.52 L320.49 1802.52 L320.49 1802.52 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 320.49,1802.52 320.49,1998.3 401.936,1998.3 401.936,1802.52 320.49,1802.52 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M422.297 1472.55 L422.297 1998.3 L503.743 1998.3 L503.743 1472.55 L422.297 1472.55 L422.297 1472.55 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 422.297,1472.55 422.297,1998.3 503.743,1998.3 503.743,1472.55 422.297,1472.55 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M524.105 1868.51 L524.105 1998.3 L605.551 1998.3 L605.551 1868.51 L524.105 1868.51 L524.105 1868.51 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.105,1868.51 524.105,1998.3 605.551,1998.3 605.551,1868.51 524.105,1868.51 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M625.913 1736.53 L625.913 1998.3 L707.359 1998.3 L707.359 1736.53 L625.913 1736.53 L625.913 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 625.913,1736.53 625.913,1998.3 707.359,1998.3 707.359,1736.53 625.913,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M829.528 1736.53 L829.528 1998.3 L910.974 1998.3 L910.974 1736.53 L829.528 1736.53 L829.528 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.528,1736.53 829.528,1998.3 910.974,1998.3 910.974,1736.53 829.528,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1134.95 1736.53 L1134.95 1998.3 L1216.4 1998.3 L1216.4 1736.53 L1134.95 1736.53 L1134.95 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.95,1736.53 1134.95,1998.3 1216.4,1998.3 1216.4,1736.53 1134.95,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1236.76 1736.53 L1236.76 1998.3 L1318.2 1998.3 L1318.2 1736.53 L1236.76 1736.53 L1236.76 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1236.76,1736.53 1236.76,1998.3 1318.2,1998.3 1318.2,1736.53 1236.76,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1338.57 1472.55 L1338.57 1998.3 L1420.01 1998.3 L1420.01 1472.55 L1338.57 1472.55 L1338.57 1472.55 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1338.57,1472.55 1338.57,1998.3 1420.01,1998.3 1420.01,1472.55 1338.57,1472.55 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1440.37 1736.53 L1440.37 1998.3 L1521.82 1998.3 L1521.82 1736.53 L1440.37 1736.53 L1440.37 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1440.37,1736.53 1440.37,1998.3 1521.82,1998.3 1521.82,1736.53 1440.37,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1542.18 1670.53 L1542.18 1998.3 L1623.63 1998.3 L1623.63 1670.53 L1542.18 1670.53 L1542.18 1670.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1542.18,1670.53 1542.18,1998.3 1623.63,1998.3 1623.63,1670.53 1542.18,1670.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1643.99 1868.51 L1643.99 1998.3 L1725.43 1998.3 L1725.43 1868.51 L1643.99 1868.51 L1643.99 1868.51 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1643.99,1868.51 1643.99,1998.3 1725.43,1998.3 1725.43,1868.51 1643.99,1868.51 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1847.6 1736.53 L1847.6 1998.3 L1929.05 1998.3 L1929.05 1736.53 L1847.6 1736.53 L1847.6 1736.53 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1847.6,1736.53 1847.6,1998.3 1929.05,1998.3 1929.05,1736.53 1847.6,1736.53 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M1949.41 1868.51 L1949.41 1998.3 L2030.86 1998.3 L2030.86 1868.51 L1949.41 1868.51 L1949.41 1868.51 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1949.41,1868.51 1949.41,1998.3 2030.86,1998.3 2030.86,1868.51 1949.41,1868.51 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M2051.22 1208.58 L2051.22 1998.3 L2132.66 1998.3 L2132.66 1208.58 L2051.22 1208.58 L2051.22 1208.58 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2051.22,1208.58 2051.22,1998.3 2132.66,1998.3 2132.66,1208.58 2051.22,1208.58 \n", " \"/>\n", "<path clip-path=\"url(#clip863)\" d=\"\n", "M2153.03 1406.56 L2153.03 1998.3 L2234.47 1998.3 L2234.47 1406.56 L2153.03 1406.56 L2153.03 1406.56 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip863)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2153.03,1406.56 2153.03,1998.3 2234.47,1998.3 2234.47,1406.56 2153.03,1406.56 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"\n", "M202.206 3053.17 L2352.76 3053.17 L2352.76 2216.07 L202.206 2216.07 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip864\">\n", " <rect x=\"202\" y=\"2216\" width=\"2152\" height=\"838\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 259.405,3053.17 259.405,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 768.443,3053.17 768.443,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1277.48,3053.17 1277.48,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1786.52,3053.17 1786.52,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2295.56,3053.17 2295.56,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,3053.17 2352.76,3053.17 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 259.405,3053.17 259.405,3043.12 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 768.443,3053.17 768.443,3043.12 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1277.48,3053.17 1277.48,3043.12 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.52,3053.17 1786.52,3043.12 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2295.56,3053.17 2295.56,3043.12 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M208.017 3116.3 L224.336 3116.3 L224.336 3120.24 L202.392 3120.24 L202.392 3116.3 Q205.054 3113.55 209.637 3108.92 Q214.244 3104.27 215.424 3102.93 Q217.669 3100.4 218.549 3098.67 Q219.452 3096.91 219.452 3095.22 Q219.452 3092.46 217.507 3090.73 Q215.586 3088.99 212.484 3088.99 Q210.285 3088.99 207.832 3089.75 Q205.401 3090.52 202.623 3092.07 L202.623 3087.35 Q205.447 3086.21 207.901 3085.63 Q210.355 3085.05 212.392 3085.05 Q217.762 3085.05 220.956 3087.74 Q224.151 3090.43 224.151 3094.92 Q224.151 3097.05 223.341 3098.97 Q222.554 3100.86 220.447 3103.46 Q219.868 3104.13 216.767 3107.35 Q213.665 3110.54 208.017 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M244.151 3088.76 Q240.54 3088.76 238.711 3092.32 Q236.905 3095.87 236.905 3102.99 Q236.905 3110.1 238.711 3113.67 Q240.54 3117.21 244.151 3117.21 Q247.785 3117.21 249.591 3113.67 Q251.419 3110.1 251.419 3102.99 Q251.419 3095.87 249.591 3092.32 Q247.785 3088.76 244.151 3088.76 M244.151 3085.05 Q249.961 3085.05 253.016 3089.66 Q256.095 3094.24 256.095 3102.99 Q256.095 3111.72 253.016 3116.33 Q249.961 3120.91 244.151 3120.91 Q238.341 3120.91 235.262 3116.33 Q232.206 3111.72 232.206 3102.99 Q232.206 3094.24 235.262 3089.66 Q238.341 3085.05 244.151 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M274.313 3088.76 Q270.702 3088.76 268.873 3092.32 Q267.067 3095.87 267.067 3102.99 Q267.067 3110.1 268.873 3113.67 Q270.702 3117.21 274.313 3117.21 Q277.947 3117.21 279.752 3113.67 Q281.581 3110.1 281.581 3102.99 Q281.581 3095.87 279.752 3092.32 Q277.947 3088.76 274.313 3088.76 M274.313 3085.05 Q280.123 3085.05 283.178 3089.66 Q286.257 3094.24 286.257 3102.99 Q286.257 3111.72 283.178 3116.33 Q280.123 3120.91 274.313 3120.91 Q268.502 3120.91 265.424 3116.33 Q262.368 3111.72 262.368 3102.99 Q262.368 3094.24 265.424 3089.66 Q268.502 3085.05 274.313 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M304.475 3088.76 Q300.863 3088.76 299.035 3092.32 Q297.229 3095.87 297.229 3102.99 Q297.229 3110.1 299.035 3113.67 Q300.863 3117.21 304.475 3117.21 Q308.109 3117.21 309.914 3113.67 Q311.743 3110.1 311.743 3102.99 Q311.743 3095.87 309.914 3092.32 Q308.109 3088.76 304.475 3088.76 M304.475 3085.05 Q310.285 3085.05 313.34 3089.66 Q316.419 3094.24 316.419 3102.99 Q316.419 3111.72 313.34 3116.33 Q310.285 3120.91 304.475 3120.91 Q298.664 3120.91 295.586 3116.33 Q292.53 3111.72 292.53 3102.99 Q292.53 3094.24 295.586 3089.66 Q298.664 3085.05 304.475 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M717.552 3116.3 L733.872 3116.3 L733.872 3120.24 L711.927 3120.24 L711.927 3116.3 Q714.589 3113.55 719.173 3108.92 Q723.779 3104.27 724.96 3102.93 Q727.205 3100.4 728.085 3098.67 Q728.987 3096.91 728.987 3095.22 Q728.987 3092.46 727.043 3090.73 Q725.122 3088.99 722.02 3088.99 Q719.821 3088.99 717.367 3089.75 Q714.936 3090.52 712.159 3092.07 L712.159 3087.35 Q714.983 3086.21 717.436 3085.63 Q719.89 3085.05 721.927 3085.05 Q727.297 3085.05 730.492 3087.74 Q733.686 3090.43 733.686 3094.92 Q733.686 3097.05 732.876 3098.97 Q732.089 3100.86 729.983 3103.46 Q729.404 3104.13 726.302 3107.35 Q723.2 3110.54 717.552 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M753.686 3088.76 Q750.075 3088.76 748.246 3092.32 Q746.441 3095.87 746.441 3102.99 Q746.441 3110.1 748.246 3113.67 Q750.075 3117.21 753.686 3117.21 Q757.32 3117.21 759.126 3113.67 Q760.955 3110.1 760.955 3102.99 Q760.955 3095.87 759.126 3092.32 Q757.32 3088.76 753.686 3088.76 M753.686 3085.05 Q759.496 3085.05 762.552 3089.66 Q765.631 3094.24 765.631 3102.99 Q765.631 3111.72 762.552 3116.33 Q759.496 3120.91 753.686 3120.91 Q747.876 3120.91 744.797 3116.33 Q741.742 3111.72 741.742 3102.99 Q741.742 3094.24 744.797 3089.66 Q747.876 3085.05 753.686 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M783.848 3088.76 Q780.237 3088.76 778.408 3092.32 Q776.603 3095.87 776.603 3102.99 Q776.603 3110.1 778.408 3113.67 Q780.237 3117.21 783.848 3117.21 Q787.482 3117.21 789.288 3113.67 Q791.117 3110.1 791.117 3102.99 Q791.117 3095.87 789.288 3092.32 Q787.482 3088.76 783.848 3088.76 M783.848 3085.05 Q789.658 3085.05 792.714 3089.66 Q795.792 3094.24 795.792 3102.99 Q795.792 3111.72 792.714 3116.33 Q789.658 3120.91 783.848 3120.91 Q778.038 3120.91 774.959 3116.33 Q771.904 3111.72 771.904 3102.99 Q771.904 3094.24 774.959 3089.66 Q778.038 3085.05 783.848 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M804.056 3085.68 L822.413 3085.68 L822.413 3089.62 L808.339 3089.62 L808.339 3098.09 Q809.357 3097.74 810.376 3097.58 Q811.394 3097.39 812.413 3097.39 Q818.2 3097.39 821.579 3100.56 Q824.959 3103.74 824.959 3109.15 Q824.959 3114.73 821.487 3117.83 Q818.015 3120.91 811.695 3120.91 Q809.519 3120.91 807.251 3120.54 Q805.005 3120.17 802.598 3119.43 L802.598 3114.73 Q804.681 3115.86 806.904 3116.42 Q809.126 3116.98 811.603 3116.98 Q815.607 3116.98 817.945 3114.87 Q820.283 3112.76 820.283 3109.15 Q820.283 3105.54 817.945 3103.43 Q815.607 3101.33 811.603 3101.33 Q809.728 3101.33 807.853 3101.74 Q806.001 3102.16 804.056 3103.04 L804.056 3085.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1226.09 3116.3 L1242.41 3116.3 L1242.41 3120.24 L1220.47 3120.24 L1220.47 3116.3 Q1223.13 3113.55 1227.71 3108.92 Q1232.32 3104.27 1233.5 3102.93 Q1235.74 3100.4 1236.62 3098.67 Q1237.53 3096.91 1237.53 3095.22 Q1237.53 3092.46 1235.58 3090.73 Q1233.66 3088.99 1230.56 3088.99 Q1228.36 3088.99 1225.91 3089.75 Q1223.48 3090.52 1220.7 3092.07 L1220.7 3087.35 Q1223.52 3086.21 1225.98 3085.63 Q1228.43 3085.05 1230.47 3085.05 Q1235.84 3085.05 1239.03 3087.74 Q1242.23 3090.43 1242.23 3094.92 Q1242.23 3097.05 1241.42 3098.97 Q1240.63 3100.86 1238.52 3103.46 Q1237.94 3104.13 1234.84 3107.35 Q1231.74 3110.54 1226.09 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1262.23 3088.76 Q1258.62 3088.76 1256.79 3092.32 Q1254.98 3095.87 1254.98 3102.99 Q1254.98 3110.1 1256.79 3113.67 Q1258.62 3117.21 1262.23 3117.21 Q1265.86 3117.21 1267.67 3113.67 Q1269.49 3110.1 1269.49 3102.99 Q1269.49 3095.87 1267.67 3092.32 Q1265.86 3088.76 1262.23 3088.76 M1262.23 3085.05 Q1268.04 3085.05 1271.09 3089.66 Q1274.17 3094.24 1274.17 3102.99 Q1274.17 3111.72 1271.09 3116.33 Q1268.04 3120.91 1262.23 3120.91 Q1256.42 3120.91 1253.34 3116.33 Q1250.28 3111.72 1250.28 3102.99 Q1250.28 3094.24 1253.34 3089.66 Q1256.42 3085.05 1262.23 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1283.2 3116.3 L1290.84 3116.3 L1290.84 3089.94 L1282.53 3091.61 L1282.53 3087.35 L1290.79 3085.68 L1295.47 3085.68 L1295.47 3116.3 L1303.11 3116.3 L1303.11 3120.24 L1283.2 3120.24 L1283.2 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1322.55 3088.76 Q1318.94 3088.76 1317.11 3092.32 Q1315.3 3095.87 1315.3 3102.99 Q1315.3 3110.1 1317.11 3113.67 Q1318.94 3117.21 1322.55 3117.21 Q1326.18 3117.21 1327.99 3113.67 Q1329.82 3110.1 1329.82 3102.99 Q1329.82 3095.87 1327.99 3092.32 Q1326.18 3088.76 1322.55 3088.76 M1322.55 3085.05 Q1328.36 3085.05 1331.42 3089.66 Q1334.49 3094.24 1334.49 3102.99 Q1334.49 3111.72 1331.42 3116.33 Q1328.36 3120.91 1322.55 3120.91 Q1316.74 3120.91 1313.66 3116.33 Q1310.61 3111.72 1310.61 3102.99 Q1310.61 3094.24 1313.66 3089.66 Q1316.74 3085.05 1322.55 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1735.63 3116.3 L1751.95 3116.3 L1751.95 3120.24 L1730 3120.24 L1730 3116.3 Q1732.66 3113.55 1737.25 3108.92 Q1741.85 3104.27 1743.04 3102.93 Q1745.28 3100.4 1746.16 3098.67 Q1747.06 3096.91 1747.06 3095.22 Q1747.06 3092.46 1745.12 3090.73 Q1743.2 3088.99 1740.1 3088.99 Q1737.9 3088.99 1735.44 3089.75 Q1733.01 3090.52 1730.23 3092.07 L1730.23 3087.35 Q1733.06 3086.21 1735.51 3085.63 Q1737.97 3085.05 1740 3085.05 Q1745.37 3085.05 1748.57 3087.74 Q1751.76 3090.43 1751.76 3094.92 Q1751.76 3097.05 1750.95 3098.97 Q1750.16 3100.86 1748.06 3103.46 Q1747.48 3104.13 1744.38 3107.35 Q1741.28 3110.54 1735.63 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1771.76 3088.76 Q1768.15 3088.76 1766.32 3092.32 Q1764.52 3095.87 1764.52 3102.99 Q1764.52 3110.1 1766.32 3113.67 Q1768.15 3117.21 1771.76 3117.21 Q1775.4 3117.21 1777.2 3113.67 Q1779.03 3110.1 1779.03 3102.99 Q1779.03 3095.87 1777.2 3092.32 Q1775.4 3088.76 1771.76 3088.76 M1771.76 3085.05 Q1777.57 3085.05 1780.63 3089.66 Q1783.71 3094.24 1783.71 3102.99 Q1783.71 3111.72 1780.63 3116.33 Q1777.57 3120.91 1771.76 3120.91 Q1765.95 3120.91 1762.87 3116.33 Q1759.82 3111.72 1759.82 3102.99 Q1759.82 3094.24 1762.87 3089.66 Q1765.95 3085.05 1771.76 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1792.73 3116.3 L1800.37 3116.3 L1800.37 3089.94 L1792.06 3091.61 L1792.06 3087.35 L1800.33 3085.68 L1805 3085.68 L1805 3116.3 L1812.64 3116.3 L1812.64 3120.24 L1792.73 3120.24 L1792.73 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M1822.13 3085.68 L1840.49 3085.68 L1840.49 3089.62 L1826.41 3089.62 L1826.41 3098.09 Q1827.43 3097.74 1828.45 3097.58 Q1829.47 3097.39 1830.49 3097.39 Q1836.28 3097.39 1839.65 3100.56 Q1843.03 3103.74 1843.03 3109.15 Q1843.03 3114.73 1839.56 3117.83 Q1836.09 3120.91 1829.77 3120.91 Q1827.59 3120.91 1825.33 3120.54 Q1823.08 3120.17 1820.67 3119.43 L1820.67 3114.73 Q1822.76 3115.86 1824.98 3116.42 Q1827.2 3116.98 1829.68 3116.98 Q1833.68 3116.98 1836.02 3114.87 Q1838.36 3112.76 1838.36 3109.15 Q1838.36 3105.54 1836.02 3103.43 Q1833.68 3101.33 1829.68 3101.33 Q1827.8 3101.33 1825.93 3101.74 Q1824.08 3102.16 1822.13 3103.04 L1822.13 3085.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2244.17 3116.3 L2260.49 3116.3 L2260.49 3120.24 L2238.54 3120.24 L2238.54 3116.3 Q2241.2 3113.55 2245.79 3108.92 Q2250.39 3104.27 2251.58 3102.93 Q2253.82 3100.4 2254.7 3098.67 Q2255.6 3096.91 2255.6 3095.22 Q2255.6 3092.46 2253.66 3090.73 Q2251.74 3088.99 2248.64 3088.99 Q2246.44 3088.99 2243.98 3089.75 Q2241.55 3090.52 2238.77 3092.07 L2238.77 3087.35 Q2241.6 3086.21 2244.05 3085.63 Q2246.51 3085.05 2248.54 3085.05 Q2253.91 3085.05 2257.11 3087.74 Q2260.3 3090.43 2260.3 3094.92 Q2260.3 3097.05 2259.49 3098.97 Q2258.7 3100.86 2256.6 3103.46 Q2256.02 3104.13 2252.92 3107.35 Q2249.82 3110.54 2244.17 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2280.3 3088.76 Q2276.69 3088.76 2274.86 3092.32 Q2273.06 3095.87 2273.06 3102.99 Q2273.06 3110.1 2274.86 3113.67 Q2276.69 3117.21 2280.3 3117.21 Q2283.94 3117.21 2285.74 3113.67 Q2287.57 3110.1 2287.57 3102.99 Q2287.57 3095.87 2285.74 3092.32 Q2283.94 3088.76 2280.3 3088.76 M2280.3 3085.05 Q2286.11 3085.05 2289.17 3089.66 Q2292.25 3094.24 2292.25 3102.99 Q2292.25 3111.72 2289.17 3116.33 Q2286.11 3120.91 2280.3 3120.91 Q2274.49 3120.91 2271.41 3116.33 Q2268.36 3111.72 2268.36 3102.99 Q2268.36 3094.24 2271.41 3089.66 Q2274.49 3085.05 2280.3 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2304.49 3116.3 L2320.81 3116.3 L2320.81 3120.24 L2298.87 3120.24 L2298.87 3116.3 Q2301.53 3113.55 2306.11 3108.92 Q2310.72 3104.27 2311.9 3102.93 Q2314.14 3100.4 2315.02 3098.67 Q2315.93 3096.91 2315.93 3095.22 Q2315.93 3092.46 2313.98 3090.73 Q2312.06 3088.99 2308.96 3088.99 Q2306.76 3088.99 2304.31 3089.75 Q2301.88 3090.52 2299.1 3092.07 L2299.1 3087.35 Q2301.92 3086.21 2304.38 3085.63 Q2306.83 3085.05 2308.87 3085.05 Q2314.24 3085.05 2317.43 3087.74 Q2320.63 3090.43 2320.63 3094.92 Q2320.63 3097.05 2319.82 3098.97 Q2319.03 3100.86 2316.92 3103.46 Q2316.34 3104.13 2313.24 3107.35 Q2310.14 3110.54 2304.49 3116.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2340.63 3088.76 Q2337.01 3088.76 2335.19 3092.32 Q2333.38 3095.87 2333.38 3102.99 Q2333.38 3110.1 2335.19 3113.67 Q2337.01 3117.21 2340.63 3117.21 Q2344.26 3117.21 2346.07 3113.67 Q2347.89 3110.1 2347.89 3102.99 Q2347.89 3095.87 2346.07 3092.32 Q2344.26 3088.76 2340.63 3088.76 M2340.63 3085.05 Q2346.44 3085.05 2349.49 3089.66 Q2352.57 3094.24 2352.57 3102.99 Q2352.57 3111.72 2349.49 3116.33 Q2346.44 3120.91 2340.63 3120.91 Q2334.82 3120.91 2331.74 3116.33 Q2328.68 3111.72 2328.68 3102.99 Q2328.68 3094.24 2331.74 3089.66 Q2334.82 3085.05 2340.63 3085.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,3029.48 2352.76,3029.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,2821.29 2352.76,2821.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,2613.1 2352.76,2613.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 202.206,2404.92 2352.76,2404.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,3053.17 202.206,2216.07 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,3029.48 228.012,3029.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,2821.29 228.012,2821.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,2613.1 228.012,2613.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 202.206,2404.92 228.012,2404.92 \n", " \"/>\n", "<path clip-path=\"url(#clip860)\" d=\"M142.261 3015.28 Q138.65 3015.28 136.822 3018.84 Q135.016 3022.38 135.016 3029.51 Q135.016 3036.62 136.822 3040.18 Q138.65 3043.72 142.261 3043.72 Q145.896 3043.72 147.701 3040.18 Q149.53 3036.62 149.53 3029.51 Q149.53 3022.38 147.701 3018.84 Q145.896 3015.28 142.261 3015.28 M142.261 3011.57 Q148.072 3011.57 151.127 3016.18 Q154.206 3020.76 154.206 3029.51 Q154.206 3038.24 151.127 3042.84 Q148.072 3047.43 142.261 3047.43 Q136.451 3047.43 133.373 3042.84 Q130.317 3038.24 130.317 3029.51 Q130.317 3020.76 133.373 3016.18 Q136.451 3011.57 142.261 3011.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M106.127 2834.64 L122.447 2834.64 L122.447 2838.57 L100.502 2838.57 L100.502 2834.64 Q103.164 2831.88 107.748 2827.25 Q112.354 2822.6 113.535 2821.26 Q115.78 2818.73 116.66 2817 Q117.562 2815.24 117.562 2813.55 Q117.562 2810.79 115.618 2809.06 Q113.697 2807.32 110.595 2807.32 Q108.396 2807.32 105.942 2808.08 Q103.512 2808.85 100.734 2810.4 L100.734 2805.68 Q103.558 2804.54 106.012 2803.96 Q108.465 2803.39 110.502 2803.39 Q115.873 2803.39 119.067 2806.07 Q122.261 2808.76 122.261 2813.25 Q122.261 2815.38 121.451 2817.3 Q120.664 2819.2 118.558 2821.79 Q117.979 2822.46 114.877 2825.68 Q111.775 2828.87 106.127 2834.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M142.261 2807.09 Q138.65 2807.09 136.822 2810.65 Q135.016 2814.2 135.016 2821.33 Q135.016 2828.43 136.822 2832 Q138.65 2835.54 142.261 2835.54 Q145.896 2835.54 147.701 2832 Q149.53 2828.43 149.53 2821.33 Q149.53 2814.2 147.701 2810.65 Q145.896 2807.09 142.261 2807.09 M142.261 2803.39 Q148.072 2803.39 151.127 2807.99 Q154.206 2812.58 154.206 2821.33 Q154.206 2830.05 151.127 2834.66 Q148.072 2839.24 142.261 2839.24 Q136.451 2839.24 133.373 2834.66 Q130.317 2830.05 130.317 2821.33 Q130.317 2812.58 133.373 2807.99 Q136.451 2803.39 142.261 2803.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M114.947 2599.9 L103.141 2618.35 L114.947 2618.35 L114.947 2599.9 M113.72 2595.82 L119.599 2595.82 L119.599 2618.35 L124.53 2618.35 L124.53 2622.24 L119.599 2622.24 L119.599 2630.38 L114.947 2630.38 L114.947 2622.24 L99.345 2622.24 L99.345 2617.72 L113.72 2595.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M142.261 2598.9 Q138.65 2598.9 136.822 2602.47 Q135.016 2606.01 135.016 2613.14 Q135.016 2620.25 136.822 2623.81 Q138.65 2627.35 142.261 2627.35 Q145.896 2627.35 147.701 2623.81 Q149.53 2620.25 149.53 2613.14 Q149.53 2606.01 147.701 2602.47 Q145.896 2598.9 142.261 2598.9 M142.261 2595.2 Q148.072 2595.2 151.127 2599.81 Q154.206 2604.39 154.206 2613.14 Q154.206 2621.87 151.127 2626.47 Q148.072 2631.06 142.261 2631.06 Q136.451 2631.06 133.373 2626.47 Q130.317 2621.87 130.317 2613.14 Q130.317 2604.39 133.373 2599.81 Q136.451 2595.2 142.261 2595.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M112.678 2403.06 Q109.53 2403.06 107.678 2405.21 Q105.85 2407.36 105.85 2411.11 Q105.85 2414.84 107.678 2417.01 Q109.53 2419.17 112.678 2419.17 Q115.826 2419.17 117.655 2417.01 Q119.507 2414.84 119.507 2411.11 Q119.507 2407.36 117.655 2405.21 Q115.826 2403.06 112.678 2403.06 M121.961 2388.4 L121.961 2392.66 Q120.201 2391.83 118.396 2391.39 Q116.613 2390.95 114.854 2390.95 Q110.225 2390.95 107.771 2394.07 Q105.34 2397.2 104.993 2403.52 Q106.359 2401.5 108.419 2400.44 Q110.479 2399.35 112.956 2399.35 Q118.164 2399.35 121.174 2402.52 Q124.206 2405.67 124.206 2411.11 Q124.206 2416.44 121.058 2419.65 Q117.91 2422.87 112.678 2422.87 Q106.683 2422.87 103.512 2418.29 Q100.34 2413.68 100.34 2404.95 Q100.34 2396.76 104.229 2391.9 Q108.118 2387.01 114.669 2387.01 Q116.428 2387.01 118.211 2387.36 Q120.016 2387.71 121.961 2388.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M142.261 2390.72 Q138.65 2390.72 136.822 2394.28 Q135.016 2397.82 135.016 2404.95 Q135.016 2412.06 136.822 2415.62 Q138.65 2419.17 142.261 2419.17 Q145.896 2419.17 147.701 2415.62 Q149.53 2412.06 149.53 2404.95 Q149.53 2397.82 147.701 2394.28 Q145.896 2390.72 142.261 2390.72 M142.261 2387.01 Q148.072 2387.01 151.127 2391.62 Q154.206 2396.2 154.206 2404.95 Q154.206 2413.68 151.127 2418.29 Q148.072 2422.87 142.261 2422.87 Q136.451 2422.87 133.373 2418.29 Q130.317 2413.68 130.317 2404.95 Q130.317 2396.2 133.373 2391.62 Q136.451 2387.01 142.261 2387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M0.800953 2923.24 L0.800953 2890.35 L5.22801 2890.35 L5.22801 2904.15 L39.681 2904.15 L39.681 2909.43 L5.22801 2909.43 L5.22801 2923.24 L0.800953 2923.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M13.8738 2883.24 Q13.8738 2887.09 16.8946 2889.33 Q19.8894 2891.57 25.1237 2891.57 Q30.3581 2891.57 33.3789 2889.36 Q36.3737 2887.12 36.3737 2883.24 Q36.3737 2879.41 33.3529 2877.17 Q30.332 2874.93 25.1237 2874.93 Q19.9415 2874.93 16.9207 2877.17 Q13.8738 2879.41 13.8738 2883.24 M9.81132 2883.24 Q9.81132 2876.99 13.8738 2873.42 Q17.9363 2869.85 25.1237 2869.85 Q32.2852 2869.85 36.3737 2873.42 Q40.4362 2876.99 40.4362 2883.24 Q40.4362 2889.51 36.3737 2893.08 Q32.2852 2896.62 25.1237 2896.62 Q17.9363 2896.62 13.8738 2893.08 Q9.81132 2889.51 9.81132 2883.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2.23324 2857.17 L10.5144 2857.17 L10.5144 2847.3 L14.2384 2847.3 L14.2384 2857.17 L30.0716 2857.17 Q33.6393 2857.17 34.6549 2856.2 Q35.6706 2855.22 35.6706 2852.22 L35.6706 2847.3 L39.681 2847.3 L39.681 2852.22 Q39.681 2857.77 37.6237 2859.88 Q35.5404 2861.99 30.0716 2861.99 L14.2384 2861.99 L14.2384 2865.5 L10.5144 2865.5 L10.5144 2861.99 L2.23324 2861.99 L2.23324 2857.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M25.0196 2827.74 Q25.0196 2833.55 26.3477 2835.79 Q27.6758 2838.03 30.8789 2838.03 Q33.431 2838.03 34.9414 2836.36 Q36.4258 2834.67 36.4258 2831.78 Q36.4258 2827.79 33.6133 2825.4 Q30.7748 2822.98 26.0873 2822.98 L25.0196 2822.98 L25.0196 2827.74 M23.0404 2818.18 L39.681 2818.18 L39.681 2822.98 L35.2539 2822.98 Q37.9101 2824.62 39.1862 2827.06 Q40.4362 2829.51 40.4362 2833.05 Q40.4362 2837.53 37.9362 2840.19 Q35.4101 2842.82 31.1914 2842.82 Q26.2696 2842.82 23.7696 2839.54 Q21.2696 2836.23 21.2696 2829.69 L21.2696 2822.98 L20.8008 2822.98 Q17.4936 2822.98 15.6967 2825.16 Q13.8738 2827.32 13.8738 2831.26 Q13.8738 2833.76 14.4728 2836.13 Q15.0717 2838.5 16.2696 2840.68 L11.8426 2840.68 Q10.8269 2838.05 10.3322 2835.58 Q9.81132 2833.11 9.81132 2830.76 Q9.81132 2824.43 13.0926 2821.31 Q16.3738 2818.18 23.0404 2818.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M-0.839663 2808.31 L-0.839663 2803.52 L39.681 2803.52 L39.681 2808.31 L-0.839663 2808.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M5.12385 2771.07 L35.3581 2771.07 L35.3581 2764.72 Q35.3581 2756.67 31.7122 2752.95 Q28.0664 2749.2 20.2019 2749.2 Q12.3894 2749.2 8.76966 2752.95 Q5.12385 2756.67 5.12385 2764.72 L5.12385 2771.07 M0.800953 2776.34 L0.800953 2765.53 Q0.800953 2754.23 5.51447 2748.94 Q10.2019 2743.65 20.2019 2743.65 Q30.2539 2743.65 34.9674 2748.97 Q39.681 2754.28 39.681 2765.53 L39.681 2776.34 L0.800953 2776.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M28.1706 2735.97 L10.5144 2735.97 L10.5144 2731.18 L27.9883 2731.18 Q32.1289 2731.18 34.2122 2729.56 Q36.2695 2727.95 36.2695 2724.72 Q36.2695 2720.84 33.7956 2718.6 Q31.3216 2716.34 27.0508 2716.34 L10.5144 2716.34 L10.5144 2711.54 L39.681 2711.54 L39.681 2716.34 L35.2018 2716.34 Q37.858 2718.08 39.1601 2720.4 Q40.4362 2722.69 40.4362 2725.74 Q40.4362 2730.76 37.3112 2733.37 Q34.1862 2735.97 28.1706 2735.97 M9.81132 2723.91 L9.81132 2723.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M14.9936 2684.77 Q14.5248 2685.58 14.3165 2686.54 Q14.0821 2687.48 14.0821 2688.63 Q14.0821 2692.69 16.7384 2694.88 Q19.3686 2697.04 24.3165 2697.04 L39.681 2697.04 L39.681 2701.86 L10.5144 2701.86 L10.5144 2697.04 L15.0457 2697.04 Q12.3894 2695.53 11.1134 2693.11 Q9.81132 2690.68 9.81132 2687.22 Q9.81132 2686.73 9.88945 2686.13 Q9.94153 2685.53 10.0717 2684.8 L14.9936 2684.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M25.0196 2666.49 Q25.0196 2672.3 26.3477 2674.54 Q27.6758 2676.78 30.8789 2676.78 Q33.431 2676.78 34.9414 2675.11 Q36.4258 2673.42 36.4258 2670.53 Q36.4258 2666.54 33.6133 2664.15 Q30.7748 2661.73 26.0873 2661.73 L25.0196 2661.73 L25.0196 2666.49 M23.0404 2656.93 L39.681 2656.93 L39.681 2661.73 L35.2539 2661.73 Q37.9101 2663.37 39.1862 2665.82 Q40.4362 2668.26 40.4362 2671.8 Q40.4362 2676.28 37.9362 2678.94 Q35.4101 2681.57 31.1914 2681.57 Q26.2696 2681.57 23.7696 2678.29 Q21.2696 2674.98 21.2696 2668.45 L21.2696 2661.73 L20.8008 2661.73 Q17.4936 2661.73 15.6967 2663.91 Q13.8738 2666.08 13.8738 2670.01 Q13.8738 2672.51 14.4728 2674.88 Q15.0717 2677.25 16.2696 2679.43 L11.8426 2679.43 Q10.8269 2676.8 10.3322 2674.33 Q9.81132 2671.86 9.81132 2669.51 Q9.81132 2663.18 13.0926 2660.06 Q16.3738 2656.93 23.0404 2656.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M2.23324 2642.33 L10.5144 2642.33 L10.5144 2632.46 L14.2384 2632.46 L14.2384 2642.33 L30.0716 2642.33 Q33.6393 2642.33 34.6549 2641.36 Q35.6706 2640.37 35.6706 2637.38 L35.6706 2632.46 L39.681 2632.46 L39.681 2637.38 Q39.681 2642.92 37.6237 2645.03 Q35.5404 2647.14 30.0716 2647.14 L14.2384 2647.14 L14.2384 2650.66 L10.5144 2650.66 L10.5144 2647.14 L2.23324 2647.14 L2.23324 2642.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M10.5144 2626.15 L10.5144 2621.36 L39.681 2621.36 L39.681 2626.15 L10.5144 2626.15 M-0.839663 2626.15 L-0.839663 2621.36 L5.22801 2621.36 L5.22801 2626.15 L-0.839663 2626.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M13.8738 2600.03 Q13.8738 2603.89 16.8946 2606.13 Q19.8894 2608.37 25.1237 2608.37 Q30.3581 2608.37 33.3789 2606.15 Q36.3737 2603.91 36.3737 2600.03 Q36.3737 2596.21 33.3529 2593.97 Q30.332 2591.73 25.1237 2591.73 Q19.9415 2591.73 16.9207 2593.97 Q13.8738 2596.21 13.8738 2600.03 M9.81132 2600.03 Q9.81132 2593.78 13.8738 2590.22 Q17.9363 2586.65 25.1237 2586.65 Q32.2852 2586.65 36.3737 2590.22 Q40.4362 2593.78 40.4362 2600.03 Q40.4362 2606.31 36.3737 2609.88 Q32.2852 2613.42 25.1237 2613.42 Q17.9363 2613.42 13.8738 2609.88 Q9.81132 2606.31 9.81132 2600.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M22.0769 2554.46 L39.681 2554.46 L39.681 2559.25 L22.2331 2559.25 Q18.0925 2559.25 16.0352 2560.87 Q13.978 2562.48 13.978 2565.71 Q13.978 2569.59 16.4519 2571.83 Q18.9259 2574.07 23.1967 2574.07 L39.681 2574.07 L39.681 2578.89 L10.5144 2578.89 L10.5144 2574.07 L15.0457 2574.07 Q12.4155 2572.35 11.1134 2570.03 Q9.81132 2567.69 9.81132 2564.64 Q9.81132 2559.62 12.9363 2557.04 Q16.0352 2554.46 22.0769 2554.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M-0.78758 2516.44 Q5.20197 2519.93 11.0613 2521.62 Q16.9207 2523.32 22.9363 2523.32 Q28.9518 2523.32 34.8633 2521.62 Q40.7487 2519.9 46.7122 2516.44 L46.7122 2520.61 Q40.5924 2524.51 34.681 2526.47 Q28.7696 2528.39 22.9363 2528.39 Q17.129 2528.39 11.2436 2526.47 Q5.35822 2524.54 -0.78758 2520.61 L-0.78758 2516.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M22.0769 2482.9 L39.681 2482.9 L39.681 2487.69 L22.2331 2487.69 Q18.0925 2487.69 16.0352 2489.31 Q13.978 2490.92 13.978 2494.15 Q13.978 2498.03 16.4519 2500.27 Q18.9259 2502.51 23.1967 2502.51 L39.681 2502.51 L39.681 2507.33 L-0.839663 2507.33 L-0.839663 2502.51 L15.0457 2502.51 Q12.4155 2500.79 11.1134 2498.47 Q9.81132 2496.13 9.81132 2493.08 Q9.81132 2488.06 12.9363 2485.48 Q16.0352 2482.9 22.0769 2482.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M13.8738 2462.04 Q13.8738 2465.89 16.8946 2468.13 Q19.8894 2470.37 25.1237 2470.37 Q30.3581 2470.37 33.3789 2468.16 Q36.3737 2465.92 36.3737 2462.04 Q36.3737 2458.21 33.3529 2455.97 Q30.332 2453.73 25.1237 2453.73 Q19.9415 2453.73 16.9207 2455.97 Q13.8738 2458.21 13.8738 2462.04 M9.81132 2462.04 Q9.81132 2455.79 13.8738 2452.22 Q17.9363 2448.65 25.1237 2448.65 Q32.2852 2448.65 36.3737 2452.22 Q40.4362 2455.79 40.4362 2462.04 Q40.4362 2468.32 36.3737 2471.88 Q32.2852 2475.43 25.1237 2475.43 Q17.9363 2475.43 13.8738 2471.88 Q9.81132 2468.32 9.81132 2462.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M28.1706 2441.21 L10.5144 2441.21 L10.5144 2436.42 L27.9883 2436.42 Q32.1289 2436.42 34.2122 2434.8 Q36.2695 2433.19 36.2695 2429.96 Q36.2695 2426.08 33.7956 2423.84 Q31.3216 2421.57 27.0508 2421.57 L10.5144 2421.57 L10.5144 2416.78 L39.681 2416.78 L39.681 2421.57 L35.2018 2421.57 Q37.858 2423.32 39.1601 2425.63 Q40.4362 2427.93 40.4362 2430.97 Q40.4362 2436 37.3112 2438.6 Q34.1862 2441.21 28.1706 2441.21 M9.81132 2429.15 L9.81132 2429.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M14.9936 2390.01 Q14.5248 2390.82 14.3165 2391.78 Q14.0821 2392.72 14.0821 2393.86 Q14.0821 2397.93 16.7384 2400.11 Q19.3686 2402.27 24.3165 2402.27 L39.681 2402.27 L39.681 2407.09 L10.5144 2407.09 L10.5144 2402.27 L15.0457 2402.27 Q12.3894 2400.76 11.1134 2398.34 Q9.81132 2395.92 9.81132 2392.46 Q9.81132 2391.96 9.88945 2391.36 Q9.94153 2390.76 10.0717 2390.04 L14.9936 2390.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M11.3738 2366.39 L15.905 2366.39 Q14.8634 2368.42 14.3425 2370.61 Q13.8217 2372.8 13.8217 2375.14 Q13.8217 2378.71 14.9155 2380.5 Q16.0092 2382.27 18.1967 2382.27 Q19.8634 2382.27 20.8269 2381 Q21.7644 2379.72 22.6238 2375.87 L22.9883 2374.23 Q24.0821 2369.12 26.0873 2366.99 Q28.0664 2364.83 31.6341 2364.83 Q35.6966 2364.83 38.0664 2368.06 Q40.4362 2371.26 40.4362 2376.88 Q40.4362 2379.23 39.9674 2381.78 Q39.5247 2384.31 38.6133 2387.12 L33.6654 2387.12 Q35.0456 2384.46 35.7487 2381.88 Q36.4258 2379.31 36.4258 2376.78 Q36.4258 2373.39 35.2799 2371.57 Q34.1081 2369.75 31.9987 2369.75 Q30.0456 2369.75 29.0039 2371.08 Q27.9623 2372.38 26.9987 2376.83 L26.6081 2378.5 Q25.6706 2382.95 23.7435 2384.93 Q21.7904 2386.91 18.405 2386.91 Q14.2905 2386.91 12.0509 2383.99 Q9.81132 2381.08 9.81132 2375.71 Q9.81132 2373.06 10.2019 2370.71 Q10.5926 2368.37 11.3738 2366.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M-0.78758 2357.95 L-0.78758 2353.79 Q5.35822 2349.88 11.2436 2347.95 Q17.129 2346 22.9363 2346 Q28.7696 2346 34.681 2347.95 Q40.5924 2349.88 46.7122 2353.79 L46.7122 2357.95 Q40.7487 2354.49 34.8633 2352.8 Q28.9518 2351.08 22.9363 2351.08 Q16.9207 2351.08 11.0613 2352.8 Q5.20197 2354.49 -0.78758 2357.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip864)\" d=\"\n", "M320.49 2998.6 L320.49 3029.48 L401.936 3029.48 L401.936 2998.6 L320.49 2998.6 L320.49 2998.6 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 320.49,2998.6 320.49,3029.48 401.936,3029.48 401.936,2998.6 320.49,2998.6 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M422.297 2905.09 L422.297 3029.48 L503.743 3029.48 L503.743 2905.09 L422.297 2905.09 L422.297 2905.09 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 422.297,2905.09 422.297,3029.48 503.743,3029.48 503.743,2905.09 422.297,2905.09 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M524.105 3019.24 L524.105 3029.48 L605.551 3029.48 L605.551 3019.24 L524.105 3019.24 L524.105 3019.24 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.105,3019.24 524.105,3029.48 605.551,3029.48 605.551,3019.24 524.105,3019.24 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M625.913 2988.19 L625.913 3029.48 L707.359 3029.48 L707.359 2988.19 L625.913 2988.19 L625.913 2988.19 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 625.913,2988.19 625.913,3029.48 707.359,3029.48 707.359,2988.19 625.913,2988.19 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M829.528 2967.54 L829.528 3029.48 L910.974 3029.48 L910.974 2967.54 L829.528 2967.54 L829.528 2967.54 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.528,2967.54 829.528,3029.48 910.974,3029.48 910.974,2967.54 829.528,2967.54 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1134.95 2988.19 L1134.95 3029.48 L1216.4 3029.48 L1216.4 2988.19 L1134.95 2988.19 L1134.95 2988.19 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.95,2988.19 1134.95,3029.48 1216.4,3029.48 1216.4,2988.19 1134.95,2988.19 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1236.76 2491.14 L1236.76 3029.48 L1318.2 3029.48 L1318.2 2491.14 L1236.76 2491.14 L1236.76 2491.14 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1236.76,2491.14 1236.76,3029.48 1318.2,3029.48 1318.2,2491.14 1236.76,2491.14 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1338.57 2873.86 L1338.57 3029.48 L1420.01 3029.48 L1420.01 2873.86 L1338.57 2873.86 L1338.57 2873.86 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1338.57,2873.86 1338.57,3029.48 1420.01,3029.48 1420.01,2873.86 1338.57,2873.86 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1440.37 3008.83 L1440.37 3029.48 L1521.82 3029.48 L1521.82 3008.83 L1440.37 3008.83 L1440.37 3008.83 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1440.37,3008.83 1440.37,3029.48 1521.82,3029.48 1521.82,3008.83 1440.37,3008.83 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1542.18 2977.78 L1542.18 3029.48 L1623.63 3029.48 L1623.63 2977.78 L1542.18 2977.78 L1542.18 2977.78 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1542.18,2977.78 1542.18,3029.48 1623.63,3029.48 1623.63,2977.78 1542.18,2977.78 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1643.99 3019.24 L1643.99 3029.48 L1725.43 3029.48 L1725.43 3019.24 L1643.99 3019.24 L1643.99 3019.24 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1643.99,3019.24 1643.99,3029.48 1725.43,3029.48 1725.43,3019.24 1643.99,3019.24 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1847.6 2967.54 L1847.6 3029.48 L1929.05 3029.48 L1929.05 2967.54 L1847.6 2967.54 L1847.6 2967.54 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1847.6,2967.54 1847.6,3029.48 1929.05,3029.48 1929.05,2967.54 1847.6,2967.54 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M1949.41 2936.31 L1949.41 3029.48 L2030.86 3029.48 L2030.86 2936.31 L1949.41 2936.31 L1949.41 2936.31 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1949.41,2936.31 1949.41,3029.48 2030.86,3029.48 2030.86,2936.31 1949.41,2936.31 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M2051.22 2239.76 L2051.22 3029.48 L2132.66 3029.48 L2132.66 2239.76 L2051.22 2239.76 L2051.22 2239.76 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2051.22,2239.76 2051.22,3029.48 2132.66,3029.48 2132.66,2239.76 2051.22,2239.76 \n", " \"/>\n", "<path clip-path=\"url(#clip864)\" d=\"\n", "M2153.03 2936.14 L2153.03 3029.48 L2234.47 3029.48 L2234.47 2936.14 L2153.03 2936.14 L2153.03 2936.14 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip864)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2153.03,2936.14 2153.03,3029.48 2234.47,3029.48 2234.47,2936.14 2153.03,2936.14 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "@pipe result_1hr |>\n", " groupby(_, :year) |>\n", " combine(_, nrow, :duration => median => :median, :duration => sum => :total) |>\n", " begin\n", " l = @layout [a ; b; c]\n", " p1 = bar(_.year, _.nrow, lab=false, title=\"Smoke Days\", ylabel=\"Number of Events\", labelfontsize=9)\n", " p2 = bar(_.year, _.median, lab=false, ylabel=\"Median Duration (hours)\", labelfontsize=9)\n", " p3 = bar(_.year, _.total, lab=false, ylabel=\"Total Duration (hours)\", labelfontsize=9)\n", " plot(p1, p2, p3, layout=l, size=(600,800))\n", " end" ] }, { "cell_type": "markdown", "id": "3243daa2-b5d8-4b21-b98f-b5c4a5d507a0", "metadata": {}, "source": [ "One thing these plots may mask is that while the median duration perhaps hasn't changed much, it's clear from the scatter plots that the outlier periods are more common in the last decade than the one preceeding it." ] }, { "cell_type": "code", "execution_count": 10, "id": "6db5600e-e42a-4d3f-94e0-608ec087e61e", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip900\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip900)\" d=\"\n", "M0 1600 L2400 1600 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip901\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip900)\" d=\"\n", "M166.805 1486.45 L2352.76 1486.45 L2352.76 123.472 L166.805 123.472 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip902\">\n", " <rect x=\"166\" y=\"123\" width=\"2187\" height=\"1364\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 224.946,1486.45 224.946,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 742.363,1486.45 742.363,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1259.78,1486.45 1259.78,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1777.2,1486.45 1777.2,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2294.61,1486.45 2294.61,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1486.45 2352.76,1486.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 224.946,1486.45 224.946,1470.09 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 742.363,1486.45 742.363,1470.09 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1259.78,1486.45 1259.78,1470.09 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1777.2,1486.45 1777.2,1470.09 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2294.61,1486.45 2294.61,1470.09 \n", " \"/>\n", "<path clip-path=\"url(#clip900)\" d=\"M173.558 1543.18 L189.877 1543.18 L189.877 1547.12 L167.933 1547.12 L167.933 1543.18 Q170.595 1540.43 175.178 1535.8 Q179.785 1531.15 180.965 1529.81 Q183.21 1527.28 184.09 1525.55 Q184.993 1523.79 184.993 1522.1 Q184.993 1519.34 183.048 1517.61 Q181.127 1515.87 178.025 1515.87 Q175.826 1515.87 173.373 1516.63 Q170.942 1517.4 168.164 1518.95 L168.164 1514.23 Q170.988 1513.09 173.442 1512.51 Q175.896 1511.93 177.933 1511.93 Q183.303 1511.93 186.497 1514.62 Q189.692 1517.31 189.692 1521.8 Q189.692 1523.93 188.882 1525.85 Q188.095 1527.74 185.988 1530.34 Q185.41 1531.01 182.308 1534.23 Q179.206 1537.42 173.558 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M209.692 1515.64 Q206.081 1515.64 204.252 1519.2 Q202.446 1522.75 202.446 1529.87 Q202.446 1536.98 204.252 1540.55 Q206.081 1544.09 209.692 1544.09 Q213.326 1544.09 215.132 1540.55 Q216.96 1536.98 216.96 1529.87 Q216.96 1522.75 215.132 1519.2 Q213.326 1515.64 209.692 1515.64 M209.692 1511.93 Q215.502 1511.93 218.557 1516.54 Q221.636 1521.12 221.636 1529.87 Q221.636 1538.6 218.557 1543.21 Q215.502 1547.79 209.692 1547.79 Q203.882 1547.79 200.803 1543.21 Q197.747 1538.6 197.747 1529.87 Q197.747 1521.12 200.803 1516.54 Q203.882 1511.93 209.692 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M239.854 1515.64 Q236.243 1515.64 234.414 1519.2 Q232.608 1522.75 232.608 1529.87 Q232.608 1536.98 234.414 1540.55 Q236.243 1544.09 239.854 1544.09 Q243.488 1544.09 245.293 1540.55 Q247.122 1536.98 247.122 1529.87 Q247.122 1522.75 245.293 1519.2 Q243.488 1515.64 239.854 1515.64 M239.854 1511.93 Q245.664 1511.93 248.719 1516.54 Q251.798 1521.12 251.798 1529.87 Q251.798 1538.6 248.719 1543.21 Q245.664 1547.79 239.854 1547.79 Q234.044 1547.79 230.965 1543.21 Q227.909 1538.6 227.909 1529.87 Q227.909 1521.12 230.965 1516.54 Q234.044 1511.93 239.854 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M270.016 1515.64 Q266.404 1515.64 264.576 1519.2 Q262.77 1522.75 262.77 1529.87 Q262.77 1536.98 264.576 1540.55 Q266.404 1544.09 270.016 1544.09 Q273.65 1544.09 275.455 1540.55 Q277.284 1536.98 277.284 1529.87 Q277.284 1522.75 275.455 1519.2 Q273.65 1515.64 270.016 1515.64 M270.016 1511.93 Q275.826 1511.93 278.881 1516.54 Q281.96 1521.12 281.96 1529.87 Q281.96 1538.6 278.881 1543.21 Q275.826 1547.79 270.016 1547.79 Q264.205 1547.79 261.127 1543.21 Q258.071 1538.6 258.071 1529.87 Q258.071 1521.12 261.127 1516.54 Q264.205 1511.93 270.016 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M691.473 1543.18 L707.792 1543.18 L707.792 1547.12 L685.848 1547.12 L685.848 1543.18 Q688.51 1540.43 693.093 1535.8 Q697.699 1531.15 698.88 1529.81 Q701.125 1527.28 702.005 1525.55 Q702.908 1523.79 702.908 1522.1 Q702.908 1519.34 700.963 1517.61 Q699.042 1515.87 695.94 1515.87 Q693.741 1515.87 691.287 1516.63 Q688.857 1517.4 686.079 1518.95 L686.079 1514.23 Q688.903 1513.09 691.357 1512.51 Q693.81 1511.93 695.847 1511.93 Q701.218 1511.93 704.412 1514.62 Q707.607 1517.31 707.607 1521.8 Q707.607 1523.93 706.797 1525.85 Q706.009 1527.74 703.903 1530.34 Q703.324 1531.01 700.222 1534.23 Q697.121 1537.42 691.473 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M727.607 1515.64 Q723.995 1515.64 722.167 1519.2 Q720.361 1522.75 720.361 1529.87 Q720.361 1536.98 722.167 1540.55 Q723.995 1544.09 727.607 1544.09 Q731.241 1544.09 733.046 1540.55 Q734.875 1536.98 734.875 1529.87 Q734.875 1522.75 733.046 1519.2 Q731.241 1515.64 727.607 1515.64 M727.607 1511.93 Q733.417 1511.93 736.472 1516.54 Q739.551 1521.12 739.551 1529.87 Q739.551 1538.6 736.472 1543.21 Q733.417 1547.79 727.607 1547.79 Q721.796 1547.79 718.718 1543.21 Q715.662 1538.6 715.662 1529.87 Q715.662 1521.12 718.718 1516.54 Q721.796 1511.93 727.607 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M757.768 1515.64 Q754.157 1515.64 752.329 1519.2 Q750.523 1522.75 750.523 1529.87 Q750.523 1536.98 752.329 1540.55 Q754.157 1544.09 757.768 1544.09 Q761.403 1544.09 763.208 1540.55 Q765.037 1536.98 765.037 1529.87 Q765.037 1522.75 763.208 1519.2 Q761.403 1515.64 757.768 1515.64 M757.768 1511.93 Q763.579 1511.93 766.634 1516.54 Q769.713 1521.12 769.713 1529.87 Q769.713 1538.6 766.634 1543.21 Q763.579 1547.79 757.768 1547.79 Q751.958 1547.79 748.88 1543.21 Q745.824 1538.6 745.824 1529.87 Q745.824 1521.12 748.88 1516.54 Q751.958 1511.93 757.768 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M777.977 1512.56 L796.333 1512.56 L796.333 1516.5 L782.259 1516.5 L782.259 1524.97 Q783.278 1524.62 784.296 1524.46 Q785.315 1524.27 786.333 1524.27 Q792.12 1524.27 795.5 1527.44 Q798.879 1530.62 798.879 1536.03 Q798.879 1541.61 795.407 1544.71 Q791.935 1547.79 785.616 1547.79 Q783.44 1547.79 781.171 1547.42 Q778.926 1547.05 776.518 1546.31 L776.518 1541.61 Q778.602 1542.74 780.824 1543.3 Q783.046 1543.86 785.523 1543.86 Q789.528 1543.86 791.865 1541.75 Q794.203 1539.64 794.203 1536.03 Q794.203 1532.42 791.865 1530.31 Q789.528 1528.21 785.523 1528.21 Q783.648 1528.21 781.773 1528.62 Q779.921 1529.04 777.977 1529.92 L777.977 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1208.39 1543.18 L1224.71 1543.18 L1224.71 1547.12 L1202.77 1547.12 L1202.77 1543.18 Q1205.43 1540.43 1210.01 1535.8 Q1214.62 1531.15 1215.8 1529.81 Q1218.04 1527.28 1218.92 1525.55 Q1219.83 1523.79 1219.83 1522.1 Q1219.83 1519.34 1217.88 1517.61 Q1215.96 1515.87 1212.86 1515.87 Q1210.66 1515.87 1208.21 1516.63 Q1205.78 1517.4 1203 1518.95 L1203 1514.23 Q1205.82 1513.09 1208.28 1512.51 Q1210.73 1511.93 1212.77 1511.93 Q1218.14 1511.93 1221.33 1514.62 Q1224.53 1517.31 1224.53 1521.8 Q1224.53 1523.93 1223.72 1525.85 Q1222.93 1527.74 1220.82 1530.34 Q1220.24 1531.01 1217.14 1534.23 Q1214.04 1537.42 1208.39 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1244.53 1515.64 Q1240.91 1515.64 1239.09 1519.2 Q1237.28 1522.75 1237.28 1529.87 Q1237.28 1536.98 1239.09 1540.55 Q1240.91 1544.09 1244.53 1544.09 Q1248.16 1544.09 1249.97 1540.55 Q1251.79 1536.98 1251.79 1529.87 Q1251.79 1522.75 1249.97 1519.2 Q1248.16 1515.64 1244.53 1515.64 M1244.53 1511.93 Q1250.34 1511.93 1253.39 1516.54 Q1256.47 1521.12 1256.47 1529.87 Q1256.47 1538.6 1253.39 1543.21 Q1250.34 1547.79 1244.53 1547.79 Q1238.72 1547.79 1235.64 1543.21 Q1232.58 1538.6 1232.58 1529.87 Q1232.58 1521.12 1235.64 1516.54 Q1238.72 1511.93 1244.53 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1265.5 1543.18 L1273.14 1543.18 L1273.14 1516.82 L1264.83 1518.49 L1264.83 1514.23 L1273.09 1512.56 L1277.77 1512.56 L1277.77 1543.18 L1285.41 1543.18 L1285.41 1547.12 L1265.5 1547.12 L1265.5 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1304.85 1515.64 Q1301.24 1515.64 1299.41 1519.2 Q1297.6 1522.75 1297.6 1529.87 Q1297.6 1536.98 1299.41 1540.55 Q1301.24 1544.09 1304.85 1544.09 Q1308.48 1544.09 1310.29 1540.55 Q1312.12 1536.98 1312.12 1529.87 Q1312.12 1522.75 1310.29 1519.2 Q1308.48 1515.64 1304.85 1515.64 M1304.85 1511.93 Q1310.66 1511.93 1313.72 1516.54 Q1316.79 1521.12 1316.79 1529.87 Q1316.79 1538.6 1313.72 1543.21 Q1310.66 1547.79 1304.85 1547.79 Q1299.04 1547.79 1295.96 1543.21 Q1292.91 1538.6 1292.91 1529.87 Q1292.91 1521.12 1295.96 1516.54 Q1299.04 1511.93 1304.85 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1726.31 1543.18 L1742.63 1543.18 L1742.63 1547.12 L1720.68 1547.12 L1720.68 1543.18 Q1723.34 1540.43 1727.93 1535.8 Q1732.53 1531.15 1733.71 1529.81 Q1735.96 1527.28 1736.84 1525.55 Q1737.74 1523.79 1737.74 1522.1 Q1737.74 1519.34 1735.8 1517.61 Q1733.88 1515.87 1730.77 1515.87 Q1728.58 1515.87 1726.12 1516.63 Q1723.69 1517.4 1720.91 1518.95 L1720.91 1514.23 Q1723.74 1513.09 1726.19 1512.51 Q1728.64 1511.93 1730.68 1511.93 Q1736.05 1511.93 1739.25 1514.62 Q1742.44 1517.31 1742.44 1521.8 Q1742.44 1523.93 1741.63 1525.85 Q1740.84 1527.74 1738.74 1530.34 Q1738.16 1531.01 1735.06 1534.23 Q1731.95 1537.42 1726.31 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1762.44 1515.64 Q1758.83 1515.64 1757 1519.2 Q1755.2 1522.75 1755.2 1529.87 Q1755.2 1536.98 1757 1540.55 Q1758.83 1544.09 1762.44 1544.09 Q1766.08 1544.09 1767.88 1540.55 Q1769.71 1536.98 1769.71 1529.87 Q1769.71 1522.75 1767.88 1519.2 Q1766.08 1515.64 1762.44 1515.64 M1762.44 1511.93 Q1768.25 1511.93 1771.31 1516.54 Q1774.39 1521.12 1774.39 1529.87 Q1774.39 1538.6 1771.31 1543.21 Q1768.25 1547.79 1762.44 1547.79 Q1756.63 1547.79 1753.55 1543.21 Q1750.5 1538.6 1750.5 1529.87 Q1750.5 1521.12 1753.55 1516.54 Q1756.63 1511.93 1762.44 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1783.41 1543.18 L1791.05 1543.18 L1791.05 1516.82 L1782.74 1518.49 L1782.74 1514.23 L1791.01 1512.56 L1795.68 1512.56 L1795.68 1543.18 L1803.32 1543.18 L1803.32 1547.12 L1783.41 1547.12 L1783.41 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1812.81 1512.56 L1831.17 1512.56 L1831.17 1516.5 L1817.09 1516.5 L1817.09 1524.97 Q1818.11 1524.62 1819.13 1524.46 Q1820.15 1524.27 1821.17 1524.27 Q1826.95 1524.27 1830.33 1527.44 Q1833.71 1530.62 1833.71 1536.03 Q1833.71 1541.61 1830.24 1544.71 Q1826.77 1547.79 1820.45 1547.79 Q1818.27 1547.79 1816.01 1547.42 Q1813.76 1547.05 1811.35 1546.31 L1811.35 1541.61 Q1813.44 1542.74 1815.66 1543.3 Q1817.88 1543.86 1820.36 1543.86 Q1824.36 1543.86 1826.7 1541.75 Q1829.04 1539.64 1829.04 1536.03 Q1829.04 1532.42 1826.7 1530.31 Q1824.36 1528.21 1820.36 1528.21 Q1818.48 1528.21 1816.61 1528.62 Q1814.76 1529.04 1812.81 1529.92 L1812.81 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M2243.23 1543.18 L2259.55 1543.18 L2259.55 1547.12 L2237.6 1547.12 L2237.6 1543.18 Q2240.26 1540.43 2244.85 1535.8 Q2249.45 1531.15 2250.63 1529.81 Q2252.88 1527.28 2253.76 1525.55 Q2254.66 1523.79 2254.66 1522.1 Q2254.66 1519.34 2252.72 1517.61 Q2250.8 1515.87 2247.69 1515.87 Q2245.49 1515.87 2243.04 1516.63 Q2240.61 1517.4 2237.83 1518.95 L2237.83 1514.23 Q2240.66 1513.09 2243.11 1512.51 Q2245.56 1511.93 2247.6 1511.93 Q2252.97 1511.93 2256.17 1514.62 Q2259.36 1517.31 2259.36 1521.8 Q2259.36 1523.93 2258.55 1525.85 Q2257.76 1527.74 2255.66 1530.34 Q2255.08 1531.01 2251.98 1534.23 Q2248.87 1537.42 2243.23 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M2279.36 1515.64 Q2275.75 1515.64 2273.92 1519.2 Q2272.11 1522.75 2272.11 1529.87 Q2272.11 1536.98 2273.92 1540.55 Q2275.75 1544.09 2279.36 1544.09 Q2282.99 1544.09 2284.8 1540.55 Q2286.63 1536.98 2286.63 1529.87 Q2286.63 1522.75 2284.8 1519.2 Q2282.99 1515.64 2279.36 1515.64 M2279.36 1511.93 Q2285.17 1511.93 2288.23 1516.54 Q2291.3 1521.12 2291.3 1529.87 Q2291.3 1538.6 2288.23 1543.21 Q2285.17 1547.79 2279.36 1547.79 Q2273.55 1547.79 2270.47 1543.21 Q2267.42 1538.6 2267.42 1529.87 Q2267.42 1521.12 2270.47 1516.54 Q2273.55 1511.93 2279.36 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M2303.55 1543.18 L2319.87 1543.18 L2319.87 1547.12 L2297.92 1547.12 L2297.92 1543.18 Q2300.59 1540.43 2305.17 1535.8 Q2309.78 1531.15 2310.96 1529.81 Q2313.2 1527.28 2314.08 1525.55 Q2314.99 1523.79 2314.99 1522.1 Q2314.99 1519.34 2313.04 1517.61 Q2311.12 1515.87 2308.02 1515.87 Q2305.82 1515.87 2303.36 1516.63 Q2300.93 1517.4 2298.16 1518.95 L2298.16 1514.23 Q2300.98 1513.09 2303.43 1512.51 Q2305.89 1511.93 2307.92 1511.93 Q2313.3 1511.93 2316.49 1514.62 Q2319.68 1517.31 2319.68 1521.8 Q2319.68 1523.93 2318.87 1525.85 Q2318.09 1527.74 2315.98 1530.34 Q2315.4 1531.01 2312.3 1534.23 Q2309.2 1537.42 2303.55 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M2339.68 1515.64 Q2336.07 1515.64 2334.24 1519.2 Q2332.44 1522.75 2332.44 1529.87 Q2332.44 1536.98 2334.24 1540.55 Q2336.07 1544.09 2339.68 1544.09 Q2343.32 1544.09 2345.12 1540.55 Q2346.95 1536.98 2346.95 1529.87 Q2346.95 1522.75 2345.12 1519.2 Q2343.32 1515.64 2339.68 1515.64 M2339.68 1511.93 Q2345.49 1511.93 2348.55 1516.54 Q2351.63 1521.12 2351.63 1529.87 Q2351.63 1538.6 2348.55 1543.21 Q2345.49 1547.79 2339.68 1547.79 Q2333.87 1547.79 2330.8 1543.21 Q2327.74 1538.6 2327.74 1529.87 Q2327.74 1521.12 2330.8 1516.54 Q2333.87 1511.93 2339.68 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,1447.87 2352.76,1447.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,1126.42 2352.76,1126.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,804.96 2352.76,804.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,483.503 2352.76,483.503 \n", " \"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,162.047 2352.76,162.047 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1486.45 166.805,123.472 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1447.87 193.037,1447.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1126.42 193.037,1126.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,804.96 193.037,804.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,483.503 193.037,483.503 \n", " \"/>\n", "<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,162.047 193.037,162.047 \n", " \"/>\n", "<path clip-path=\"url(#clip900)\" d=\"M118.861 1433.67 Q115.25 1433.67 113.421 1437.24 Q111.615 1440.78 111.615 1447.91 Q111.615 1455.01 113.421 1458.58 Q115.25 1462.12 118.861 1462.12 Q122.495 1462.12 124.301 1458.58 Q126.129 1455.01 126.129 1447.91 Q126.129 1440.78 124.301 1437.24 Q122.495 1433.67 118.861 1433.67 M118.861 1429.97 Q124.671 1429.97 127.727 1434.57 Q130.805 1439.16 130.805 1447.91 Q130.805 1456.63 127.727 1461.24 Q124.671 1465.82 118.861 1465.82 Q113.051 1465.82 109.972 1461.24 Q106.916 1456.63 106.916 1447.91 Q106.916 1439.16 109.972 1434.57 Q113.051 1429.97 118.861 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M110.898 1139.76 L118.537 1139.76 L118.537 1113.4 L110.227 1115.06 L110.227 1110.8 L118.49 1109.14 L123.166 1109.14 L123.166 1139.76 L130.805 1139.76 L130.805 1143.7 L110.898 1143.7 L110.898 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M114.486 818.305 L130.805 818.305 L130.805 822.24 L108.861 822.24 L108.861 818.305 Q111.523 815.55 116.106 810.921 Q120.713 806.268 121.893 804.925 Q124.139 802.402 125.018 800.666 Q125.921 798.907 125.921 797.217 Q125.921 794.462 123.977 792.726 Q122.055 790.99 118.953 790.99 Q116.754 790.99 114.301 791.754 Q111.87 792.518 109.092 794.069 L109.092 789.347 Q111.916 788.212 114.37 787.634 Q116.824 787.055 118.861 787.055 Q124.231 787.055 127.426 789.74 Q130.62 792.425 130.62 796.916 Q130.62 799.046 129.81 800.967 Q129.023 802.865 126.916 805.458 Q126.338 806.129 123.236 809.347 Q120.134 812.541 114.486 818.305 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M123.676 482.149 Q127.032 482.867 128.907 485.135 Q130.805 487.404 130.805 490.737 Q130.805 495.853 127.287 498.654 Q123.768 501.455 117.287 501.455 Q115.111 501.455 112.796 501.015 Q110.504 500.598 108.051 499.742 L108.051 495.228 Q109.995 496.362 112.31 496.941 Q114.625 497.52 117.148 497.52 Q121.546 497.52 123.838 495.783 Q126.152 494.047 126.152 490.737 Q126.152 487.682 124 485.969 Q121.87 484.233 118.051 484.233 L114.023 484.233 L114.023 480.39 L118.236 480.39 Q121.685 480.39 123.514 479.024 Q125.342 477.635 125.342 475.043 Q125.342 472.381 123.444 470.969 Q121.569 469.534 118.051 469.534 Q116.129 469.534 113.93 469.95 Q111.731 470.367 109.092 471.247 L109.092 467.08 Q111.754 466.339 114.069 465.969 Q116.407 465.598 118.467 465.598 Q123.791 465.598 126.893 468.029 Q129.995 470.436 129.995 474.557 Q129.995 477.427 128.352 479.418 Q126.708 481.385 123.676 482.149 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M121.222 148.841 L109.416 167.29 L121.222 167.29 L121.222 148.841 M119.995 144.767 L125.875 144.767 L125.875 167.29 L130.805 167.29 L130.805 171.179 L125.875 171.179 L125.875 179.327 L121.222 179.327 L121.222 171.179 L105.62 171.179 L105.62 166.665 L119.995 144.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M19.0762 1041.1 L19.0762 1034.02 L51.602 1016.78 L19.0762 1016.78 L19.0762 1011.68 L57.9562 1011.68 L57.9562 1018.76 L25.4303 1036 L57.9562 1036 L57.9562 1041.1 L19.0762 1041.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M46.4458 1001.91 L28.7896 1001.91 L28.7896 997.12 L46.2635 997.12 Q50.4041 997.12 52.4874 995.506 Q54.5447 993.891 54.5447 990.662 Q54.5447 986.782 52.0708 984.542 Q49.5968 982.277 45.326 982.277 L28.7896 982.277 L28.7896 977.485 L57.9562 977.485 L57.9562 982.277 L53.477 982.277 Q56.1333 984.022 57.4353 986.339 Q58.7114 988.631 58.7114 991.678 Q58.7114 996.704 55.5864 999.308 Q52.4614 1001.91 46.4458 1001.91 M28.0865 989.855 L28.0865 989.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M34.3886 944.907 Q31.1594 943.11 29.623 940.61 Q28.0865 938.11 28.0865 934.725 Q28.0865 930.168 31.2896 927.694 Q34.4667 925.22 40.3521 925.22 L57.9562 925.22 L57.9562 930.037 L40.5083 930.037 Q36.3156 930.037 34.2844 931.522 Q32.2532 933.006 32.2532 936.053 Q32.2532 939.777 34.7271 941.938 Q37.2011 944.1 41.4719 944.1 L57.9562 944.1 L57.9562 948.918 L40.5083 948.918 Q36.2896 948.918 34.2844 950.402 Q32.2532 951.886 32.2532 954.985 Q32.2532 958.657 34.7532 960.819 Q37.2271 962.98 41.4719 962.98 L57.9562 962.98 L57.9562 967.798 L28.7896 967.798 L28.7896 962.98 L33.3209 962.98 Q30.6386 961.339 29.3626 959.048 Q28.0865 956.756 28.0865 953.605 Q28.0865 950.428 29.7011 948.214 Q31.3157 945.975 34.3886 944.907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M43.3989 894.725 Q38.1125 894.725 35.1177 896.913 Q32.0969 899.074 32.0969 902.876 Q32.0969 906.678 35.1177 908.866 Q38.1125 911.027 43.3989 911.027 Q48.6854 911.027 51.7062 908.866 Q54.701 906.678 54.701 902.876 Q54.701 899.074 51.7062 896.913 Q48.6854 894.725 43.3989 894.725 M33.2167 911.027 Q30.6126 909.517 29.3626 907.225 Q28.0865 904.907 28.0865 901.704 Q28.0865 896.392 32.3053 893.085 Q36.524 889.751 43.3989 889.751 Q50.2739 889.751 54.4926 893.085 Q58.7114 896.392 58.7114 901.704 Q58.7114 904.907 57.4614 907.225 Q56.1853 909.517 53.5812 911.027 L57.9562 911.027 L57.9562 915.845 L17.4355 915.845 L17.4355 911.027 L33.2167 911.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M42.175 856.861 L44.5187 856.861 L44.5187 878.892 Q49.4666 878.579 52.0708 875.923 Q54.6489 873.241 54.6489 868.475 Q54.6489 865.715 53.9718 863.137 Q53.2947 860.533 51.9406 857.981 L56.4718 857.981 Q57.5655 860.559 58.1384 863.267 Q58.7114 865.975 58.7114 868.762 Q58.7114 875.741 54.6489 879.829 Q50.5864 883.892 43.6594 883.892 Q36.4979 883.892 32.3053 880.038 Q28.0865 876.158 28.0865 869.595 Q28.0865 863.71 31.8886 860.298 Q35.6646 856.861 42.175 856.861 M40.7687 861.652 Q36.8365 861.704 34.4927 863.866 Q32.149 866.001 32.149 869.543 Q32.149 873.553 34.4146 875.975 Q36.6802 878.371 40.7948 878.736 L40.7687 861.652 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M33.2688 832.095 Q32.8 832.903 32.5917 833.866 Q32.3573 834.804 32.3573 835.949 Q32.3573 840.012 35.0136 842.199 Q37.6438 844.361 42.5917 844.361 L57.9562 844.361 L57.9562 849.179 L28.7896 849.179 L28.7896 844.361 L33.3209 844.361 Q30.6646 842.85 29.3886 840.429 Q28.0865 838.007 28.0865 834.543 Q28.0865 834.048 28.1647 833.449 Q28.2167 832.85 28.3469 832.121 L33.2688 832.095 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M32.149 798.814 Q32.149 802.668 35.1698 804.908 Q38.1646 807.147 43.3989 807.147 Q48.6333 807.147 51.6541 804.934 Q54.6489 802.694 54.6489 798.814 Q54.6489 794.986 51.6281 792.747 Q48.6072 790.507 43.3989 790.507 Q38.2167 790.507 35.1959 792.747 Q32.149 794.986 32.149 798.814 M28.0865 798.814 Q28.0865 792.564 32.149 788.997 Q36.2115 785.429 43.3989 785.429 Q50.5604 785.429 54.6489 788.997 Q58.7114 792.564 58.7114 798.814 Q58.7114 805.09 54.6489 808.658 Q50.5604 812.2 43.3989 812.2 Q36.2115 812.2 32.149 808.658 Q28.0865 805.09 28.0865 798.814 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M17.4355 762.721 L21.4199 762.721 L21.4199 767.304 Q21.4199 769.882 22.4616 770.898 Q23.5032 771.887 26.2115 771.887 L28.7896 771.887 L28.7896 763.997 L32.5136 763.997 L32.5136 771.887 L57.9562 771.887 L57.9562 776.705 L32.5136 776.705 L32.5136 781.288 L28.7896 781.288 L28.7896 776.705 L26.7584 776.705 Q21.8886 776.705 19.6751 774.439 Q17.4355 772.174 17.4355 767.252 L17.4355 762.721 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M19.0762 741.549 L19.0762 716.966 L23.5032 716.966 L23.5032 736.288 L35.0136 736.288 L35.0136 717.773 L39.4406 717.773 L39.4406 736.288 L53.5291 736.288 L53.5291 716.497 L57.9562 716.497 L57.9562 741.549 L19.0762 741.549 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M28.7896 711.497 L28.7896 706.419 L53.2687 697.304 L28.7896 688.19 L28.7896 683.112 L57.9562 694.049 L57.9562 700.56 L28.7896 711.497 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M42.175 651.549 L44.5187 651.549 L44.5187 673.58 Q49.4666 673.268 52.0708 670.612 Q54.6489 667.929 54.6489 663.164 Q54.6489 660.403 53.9718 657.825 Q53.2947 655.221 51.9406 652.669 L56.4718 652.669 Q57.5655 655.247 58.1384 657.956 Q58.7114 660.664 58.7114 663.45 Q58.7114 670.429 54.6489 674.518 Q50.5864 678.58 43.6594 678.58 Q36.4979 678.58 32.3053 674.726 Q28.0865 670.846 28.0865 664.284 Q28.0865 658.398 31.8886 654.987 Q35.6646 651.549 42.175 651.549 M40.7687 656.341 Q36.8365 656.393 34.4927 658.555 Q32.149 660.69 32.149 664.232 Q32.149 668.242 34.4146 670.664 Q36.6802 673.06 40.7948 673.424 L40.7687 656.341 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M40.3521 619.44 L57.9562 619.44 L57.9562 624.232 L40.5083 624.232 Q36.3677 624.232 34.3105 625.846 Q32.2532 627.461 32.2532 630.69 Q32.2532 634.57 34.7271 636.81 Q37.2011 639.049 41.4719 639.049 L57.9562 639.049 L57.9562 643.867 L28.7896 643.867 L28.7896 639.049 L33.3209 639.049 Q30.6907 637.331 29.3886 635.013 Q28.0865 632.669 28.0865 629.622 Q28.0865 624.596 31.2115 622.018 Q34.3105 619.44 40.3521 619.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M20.5084 605.143 L28.7896 605.143 L28.7896 595.274 L32.5136 595.274 L32.5136 605.143 L48.3468 605.143 Q51.9145 605.143 52.9301 604.18 Q53.9458 603.19 53.9458 600.195 L53.9458 595.274 L57.9562 595.274 L57.9562 600.195 Q57.9562 605.742 55.8989 607.852 Q53.8156 609.961 48.3468 609.961 L32.5136 609.961 L32.5136 613.477 L28.7896 613.477 L28.7896 609.961 L20.5084 609.961 L20.5084 605.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M29.649 570.378 L34.1802 570.378 Q33.1386 572.409 32.6178 574.597 Q32.0969 576.784 32.0969 579.128 Q32.0969 582.696 33.1907 584.492 Q34.2844 586.263 36.4719 586.263 Q38.1386 586.263 39.1021 584.987 Q40.0396 583.711 40.899 579.857 L41.2635 578.216 Q42.3573 573.112 44.3625 570.977 Q46.3416 568.815 49.9093 568.815 Q53.9718 568.815 56.3416 572.045 Q58.7114 575.248 58.7114 580.873 Q58.7114 583.216 58.2426 585.768 Q57.7999 588.294 56.8885 591.107 L51.9406 591.107 Q53.3208 588.451 54.0239 585.873 Q54.701 583.295 54.701 580.768 Q54.701 577.383 53.5551 575.56 Q52.3833 573.737 50.2739 573.737 Q48.3208 573.737 47.2791 575.065 Q46.2375 576.367 45.2739 580.821 L44.8833 582.487 Q43.9458 586.94 42.0187 588.919 Q40.0656 590.899 36.6802 590.899 Q32.5657 590.899 30.3261 587.982 Q28.0865 585.065 28.0865 579.701 Q28.0865 577.045 28.4771 574.701 Q28.8678 572.357 29.649 570.378 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M627.515 14.0809 L627.515 22.0612 Q622.857 19.8332 618.725 18.7395 Q614.593 17.6457 610.745 17.6457 Q604.061 17.6457 600.415 20.2383 Q596.81 22.8309 596.81 27.611 Q596.81 31.6214 599.2 33.6873 Q601.63 35.7128 608.355 36.9686 L613.297 37.9813 Q622.452 39.7232 626.786 44.1387 Q631.161 48.5136 631.161 55.8863 Q631.161 64.6767 625.247 69.2137 Q619.373 73.7508 607.99 73.7508 Q603.696 73.7508 598.835 72.7785 Q594.014 71.8063 588.829 69.9024 L588.829 61.4765 Q593.812 64.2716 598.592 65.6895 Q603.372 67.1073 607.99 67.1073 Q614.998 67.1073 618.806 64.3527 Q622.614 61.598 622.614 56.4939 Q622.614 52.0379 619.859 49.5264 Q617.145 47.0148 610.907 45.759 L605.924 44.7868 Q596.769 42.9639 592.678 39.075 Q588.586 35.1862 588.586 28.2591 Q588.586 20.2383 594.217 15.6203 Q599.888 11.0023 609.813 11.0023 Q614.066 11.0023 618.482 11.7719 Q622.897 12.5416 627.515 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M678.921 35.9153 Q681.717 30.8922 685.605 28.5022 Q689.494 26.1121 694.76 26.1121 Q701.85 26.1121 705.698 31.0947 Q709.546 36.0368 709.546 45.1919 L709.546 72.576 L702.052 72.576 L702.052 45.4349 Q702.052 38.913 699.743 35.7533 Q697.434 32.5936 692.694 32.5936 Q686.902 32.5936 683.539 36.4419 Q680.177 40.2903 680.177 46.9338 L680.177 72.576 L672.683 72.576 L672.683 45.4349 Q672.683 38.8725 670.374 35.7533 Q668.065 32.5936 663.244 32.5936 Q657.533 32.5936 654.17 36.4824 Q650.808 40.3308 650.808 46.9338 L650.808 72.576 L643.314 72.576 L643.314 27.2059 L650.808 27.2059 L650.808 34.2544 Q653.36 30.082 656.925 28.0971 Q660.49 26.1121 665.391 26.1121 Q670.333 26.1121 673.777 28.6237 Q677.261 31.1352 678.921 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M741.994 32.4315 Q735.999 32.4315 732.515 37.1306 Q729.031 41.7891 729.031 49.9314 Q729.031 58.0738 732.474 62.7728 Q735.958 67.4314 741.994 67.4314 Q747.949 67.4314 751.433 62.7323 Q754.916 58.0333 754.916 49.9314 Q754.916 41.8701 751.433 37.1711 Q747.949 32.4315 741.994 32.4315 M741.994 26.1121 Q751.716 26.1121 757.266 32.4315 Q762.816 38.7509 762.816 49.9314 Q762.816 61.0714 757.266 67.4314 Q751.716 73.7508 741.994 73.7508 Q732.231 73.7508 726.682 67.4314 Q721.172 61.0714 721.172 49.9314 Q721.172 38.7509 726.682 32.4315 Q732.231 26.1121 741.994 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M774.887 9.54393 L782.381 9.54393 L782.381 46.7717 L804.621 27.2059 L814.141 27.2059 L790.078 48.4326 L815.153 72.576 L805.431 72.576 L782.381 50.4176 L782.381 72.576 L774.887 72.576 L774.887 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M859.065 48.0275 L859.065 51.6733 L824.794 51.6733 Q825.281 59.3701 829.412 63.421 Q833.585 67.4314 840.998 67.4314 Q845.292 67.4314 849.302 66.3781 Q853.353 65.3249 857.323 63.2184 L857.323 70.267 Q853.313 71.9684 849.1 72.8596 Q844.887 73.7508 840.552 73.7508 Q829.696 73.7508 823.336 67.4314 Q817.017 61.1119 817.017 50.3365 Q817.017 39.1965 823.012 32.6746 Q829.048 26.1121 839.256 26.1121 Q848.411 26.1121 853.718 32.0264 Q859.065 37.9003 859.065 48.0275 M851.611 45.84 Q851.53 39.7232 848.168 36.0774 Q844.846 32.4315 839.337 32.4315 Q833.099 32.4315 829.331 35.9558 Q825.605 39.4801 825.038 45.8805 L851.611 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M897.994 12.096 L936.235 12.096 L936.235 18.9825 L906.177 18.9825 L906.177 36.8875 L934.979 36.8875 L934.979 43.7741 L906.177 43.7741 L906.177 65.6895 L936.964 65.6895 L936.964 72.576 L897.994 72.576 L897.994 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M944.742 27.2059 L952.641 27.2059 L966.819 65.2844 L980.997 27.2059 L988.897 27.2059 L971.883 72.576 L961.756 72.576 L944.742 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1037.99 48.0275 L1037.99 51.6733 L1003.72 51.6733 Q1004.21 59.3701 1008.34 63.421 Q1012.51 67.4314 1019.93 67.4314 Q1024.22 67.4314 1028.23 66.3781 Q1032.28 65.3249 1036.25 63.2184 L1036.25 70.267 Q1032.24 71.9684 1028.03 72.8596 Q1023.82 73.7508 1019.48 73.7508 Q1008.62 73.7508 1002.26 67.4314 Q995.945 61.1119 995.945 50.3365 Q995.945 39.1965 1001.94 32.6746 Q1007.98 26.1121 1018.18 26.1121 Q1027.34 26.1121 1032.65 32.0264 Q1037.99 37.9003 1037.99 48.0275 M1030.54 45.84 Q1030.46 39.7232 1027.1 36.0774 Q1023.77 32.4315 1018.27 32.4315 Q1012.03 32.4315 1008.26 35.9558 Q1004.53 39.4801 1003.97 45.8805 L1030.54 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1087.94 45.1919 L1087.94 72.576 L1080.49 72.576 L1080.49 45.4349 Q1080.49 38.994 1077.98 35.7938 Q1075.46 32.5936 1070.44 32.5936 Q1064.41 32.5936 1060.92 36.4419 Q1057.44 40.2903 1057.44 46.9338 L1057.44 72.576 L1049.94 72.576 L1049.94 27.2059 L1057.44 27.2059 L1057.44 34.2544 Q1060.11 30.163 1063.72 28.1376 Q1067.36 26.1121 1072.1 26.1121 Q1079.92 26.1121 1083.93 30.9732 Q1087.94 35.7938 1087.94 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1110.18 14.324 L1110.18 27.2059 L1125.53 27.2059 L1125.53 32.9987 L1110.18 32.9987 L1110.18 57.6282 Q1110.18 63.1779 1111.68 64.7578 Q1113.22 66.3376 1117.88 66.3376 L1125.53 66.3376 L1125.53 72.576 L1117.88 72.576 Q1109.25 72.576 1105.97 69.3758 Q1102.69 66.1351 1102.69 57.6282 L1102.69 32.9987 L1097.22 32.9987 L1097.22 27.2059 L1102.69 27.2059 L1102.69 14.324 L1110.18 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1164.26 28.5427 L1164.26 35.5912 Q1161.1 33.9709 1157.7 33.1607 Q1154.3 32.3505 1150.65 32.3505 Q1145.1 32.3505 1142.3 34.0519 Q1139.55 35.7533 1139.55 39.156 Q1139.55 41.7486 1141.53 43.2475 Q1143.52 44.7058 1149.51 46.0426 L1152.07 46.6097 Q1160.01 48.3111 1163.33 51.4303 Q1166.69 54.509 1166.69 60.0587 Q1166.69 66.3781 1161.67 70.0644 Q1156.69 73.7508 1147.94 73.7508 Q1144.29 73.7508 1140.32 73.0216 Q1136.39 72.3329 1132.02 70.9151 L1132.02 63.2184 Q1136.15 65.3654 1140.16 66.4591 Q1144.17 67.5124 1148.1 67.5124 Q1153.36 67.5124 1156.2 65.73 Q1159.03 63.9071 1159.03 60.6258 Q1159.03 57.5877 1156.97 55.9673 Q1154.94 54.3469 1148.02 52.8481 L1145.42 52.2405 Q1138.5 50.7821 1135.42 47.7845 Q1132.34 44.7463 1132.34 39.4801 Q1132.34 33.0797 1136.88 29.5959 Q1141.41 26.1121 1149.76 26.1121 Q1153.89 26.1121 1157.54 26.7198 Q1161.18 27.3274 1164.26 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1205.9 31.7429 L1205.9 24.3702 L1257.84 43.2069 L1257.84 49.9314 L1205.9 68.7682 L1205.9 61.3955 L1247.63 46.6097 L1205.9 31.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1275.58 12.096 L1307.7 12.096 L1307.7 18.9825 L1283.07 18.9825 L1283.07 33.8088 Q1284.86 33.2012 1286.64 32.9176 Q1288.42 32.5936 1290.2 32.5936 Q1300.33 32.5936 1306.24 38.1433 Q1312.16 43.6931 1312.16 53.1722 Q1312.16 62.9348 1306.08 68.3631 Q1300.01 73.7508 1288.95 73.7508 Q1285.14 73.7508 1281.17 73.1026 Q1277.24 72.4545 1273.03 71.1582 L1273.03 62.9348 Q1276.67 64.9198 1280.56 65.892 Q1284.45 66.8642 1288.79 66.8642 Q1295.79 66.8642 1299.88 63.1779 Q1303.98 59.4916 1303.98 53.1722 Q1303.98 46.8528 1299.88 43.1664 Q1295.79 39.4801 1288.79 39.4801 Q1285.5 39.4801 1282.22 40.2093 Q1278.98 40.9384 1275.58 42.4778 L1275.58 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1364.94 45.1919 L1364.94 72.576 L1357.49 72.576 L1357.49 45.4349 Q1357.49 38.994 1354.98 35.7938 Q1352.47 32.5936 1347.44 32.5936 Q1341.41 32.5936 1337.92 36.4419 Q1334.44 40.2903 1334.44 46.9338 L1334.44 72.576 L1326.94 72.576 L1326.94 9.54393 L1334.44 9.54393 L1334.44 34.2544 Q1337.11 30.163 1340.72 28.1376 Q1344.36 26.1121 1349.1 26.1121 Q1356.92 26.1121 1360.93 30.9732 Q1364.94 35.7938 1364.94 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1406.1 34.1734 Q1404.84 33.4443 1403.34 33.1202 Q1401.89 32.7556 1400.1 32.7556 Q1393.78 32.7556 1390.38 36.8875 Q1387.02 40.9789 1387.02 48.6757 L1387.02 72.576 L1379.53 72.576 L1379.53 27.2059 L1387.02 27.2059 L1387.02 34.2544 Q1389.37 30.1225 1393.14 28.1376 Q1396.9 26.1121 1402.29 26.1121 Q1403.06 26.1121 1403.99 26.2337 Q1404.92 26.3147 1406.06 26.5172 L1406.1 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1442.84 28.5427 L1442.84 35.5912 Q1439.68 33.9709 1436.28 33.1607 Q1432.88 32.3505 1429.23 32.3505 Q1423.68 32.3505 1420.89 34.0519 Q1418.13 35.7533 1418.13 39.156 Q1418.13 41.7486 1420.12 43.2475 Q1422.1 44.7058 1428.1 46.0426 L1430.65 46.6097 Q1438.59 48.3111 1441.91 51.4303 Q1445.27 54.509 1445.27 60.0587 Q1445.27 66.3781 1440.25 70.0644 Q1435.27 73.7508 1426.52 73.7508 Q1422.87 73.7508 1418.9 73.0216 Q1414.97 72.3329 1410.6 70.9151 L1410.6 63.2184 Q1414.73 65.3654 1418.74 66.4591 Q1422.75 67.5124 1426.68 67.5124 Q1431.94 67.5124 1434.78 65.73 Q1437.62 63.9071 1437.62 60.6258 Q1437.62 57.5877 1435.55 55.9673 Q1433.52 54.3469 1426.6 52.8481 L1424 52.2405 Q1417.08 50.7821 1414 47.7845 Q1410.92 44.7463 1410.92 39.4801 Q1410.92 33.0797 1415.46 29.5959 Q1419.99 26.1121 1428.34 26.1121 Q1432.47 26.1121 1436.12 26.7198 Q1439.76 27.3274 1442.84 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1483.51 27.2059 L1490.97 27.2059 L1490.97 72.576 L1483.51 72.576 L1483.51 27.2059 M1483.51 9.54393 L1490.97 9.54393 L1490.97 18.9825 L1483.51 18.9825 L1483.51 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1544.28 45.1919 L1544.28 72.576 L1536.82 72.576 L1536.82 45.4349 Q1536.82 38.994 1534.31 35.7938 Q1531.8 32.5936 1526.78 32.5936 Q1520.74 32.5936 1517.26 36.4419 Q1513.77 40.2903 1513.77 46.9338 L1513.77 72.576 L1506.28 72.576 L1506.28 27.2059 L1513.77 27.2059 L1513.77 34.2544 Q1516.45 30.163 1520.05 28.1376 Q1523.7 26.1121 1528.44 26.1121 Q1536.25 26.1121 1540.27 30.9732 Q1544.28 35.7938 1544.28 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1594.02 18.8205 L1594.02 65.8515 L1603.9 65.8515 Q1616.42 65.8515 1622.21 60.1802 Q1628.05 54.509 1628.05 42.2752 Q1628.05 30.1225 1622.21 24.4918 Q1616.42 18.8205 1603.9 18.8205 L1594.02 18.8205 M1585.84 12.096 L1602.65 12.096 Q1620.23 12.096 1628.45 19.4281 Q1636.68 26.7198 1636.68 42.2752 Q1636.68 57.9117 1628.41 65.2439 Q1620.15 72.576 1602.65 72.576 L1585.84 72.576 L1585.84 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1648.63 54.671 L1648.63 27.2059 L1656.08 27.2059 L1656.08 54.3874 Q1656.08 60.8284 1658.59 64.0691 Q1661.1 67.2693 1666.13 67.2693 Q1672.16 67.2693 1675.65 63.421 Q1679.17 59.5726 1679.17 52.9291 L1679.17 27.2059 L1686.62 27.2059 L1686.62 72.576 L1679.17 72.576 L1679.17 65.6084 Q1676.46 69.7404 1672.85 71.7658 Q1669.29 73.7508 1664.55 73.7508 Q1656.73 73.7508 1652.68 68.8897 Q1648.63 64.0286 1648.63 54.671 M1667.38 26.1121 L1667.38 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1728.27 34.1734 Q1727.01 33.4443 1725.51 33.1202 Q1724.05 32.7556 1722.27 32.7556 Q1715.95 32.7556 1712.55 36.8875 Q1709.19 40.9789 1709.19 48.6757 L1709.19 72.576 L1701.69 72.576 L1701.69 27.2059 L1709.19 27.2059 L1709.19 34.2544 Q1711.54 30.1225 1715.3 28.1376 Q1719.07 26.1121 1724.46 26.1121 Q1725.23 26.1121 1726.16 26.2337 Q1727.09 26.3147 1728.23 26.5172 L1728.27 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1756.7 49.7694 Q1747.67 49.7694 1744.19 51.8354 Q1740.7 53.9013 1740.7 58.8839 Q1740.7 62.8538 1743.3 65.2034 Q1745.93 67.5124 1750.43 67.5124 Q1756.62 67.5124 1760.35 63.1374 Q1764.12 58.7219 1764.12 51.4303 L1764.12 49.7694 L1756.7 49.7694 M1771.57 46.6907 L1771.57 72.576 L1764.12 72.576 L1764.12 65.6895 Q1761.57 69.8214 1757.76 71.8063 Q1753.95 73.7508 1748.44 73.7508 Q1741.47 73.7508 1737.34 69.8619 Q1733.25 65.9325 1733.25 59.3701 Q1733.25 51.7138 1738.35 47.825 Q1743.5 43.9361 1753.67 43.9361 L1764.12 43.9361 L1764.12 43.2069 Q1764.12 38.0623 1760.72 35.2672 Q1757.35 32.4315 1751.24 32.4315 Q1747.35 32.4315 1743.66 33.3632 Q1739.97 34.295 1736.57 36.1584 L1736.57 29.2718 Q1740.66 27.692 1744.51 26.9223 Q1748.36 26.1121 1752.01 26.1121 Q1761.85 26.1121 1766.71 31.2163 Q1771.57 36.3204 1771.57 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1794.3 14.324 L1794.3 27.2059 L1809.65 27.2059 L1809.65 32.9987 L1794.3 32.9987 L1794.3 57.6282 Q1794.3 63.1779 1795.8 64.7578 Q1797.34 66.3376 1801.99 66.3376 L1809.65 66.3376 L1809.65 72.576 L1801.99 72.576 Q1793.37 72.576 1790.08 69.3758 Q1786.8 66.1351 1786.8 57.6282 L1786.8 32.9987 L1781.33 32.9987 L1781.33 27.2059 L1786.8 27.2059 L1786.8 14.324 L1794.3 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1819.45 27.2059 L1826.91 27.2059 L1826.91 72.576 L1819.45 72.576 L1819.45 27.2059 M1819.45 9.54393 L1826.91 9.54393 L1826.91 18.9825 L1819.45 18.9825 L1819.45 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1860.08 32.4315 Q1854.09 32.4315 1850.6 37.1306 Q1847.12 41.7891 1847.12 49.9314 Q1847.12 58.0738 1850.56 62.7728 Q1854.05 67.4314 1860.08 67.4314 Q1866.04 67.4314 1869.52 62.7323 Q1873.01 58.0333 1873.01 49.9314 Q1873.01 41.8701 1869.52 37.1711 Q1866.04 32.4315 1860.08 32.4315 M1860.08 26.1121 Q1869.81 26.1121 1875.36 32.4315 Q1880.91 38.7509 1880.91 49.9314 Q1880.91 61.0714 1875.36 67.4314 Q1869.81 73.7508 1860.08 73.7508 Q1850.32 73.7508 1844.77 67.4314 Q1839.26 61.0714 1839.26 49.9314 Q1839.26 38.7509 1844.77 32.4315 Q1850.32 26.1121 1860.08 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M1930.97 45.1919 L1930.97 72.576 L1923.52 72.576 L1923.52 45.4349 Q1923.52 38.994 1921.01 35.7938 Q1918.5 32.5936 1913.47 32.5936 Q1907.44 32.5936 1903.96 36.4419 Q1900.47 40.2903 1900.47 46.9338 L1900.47 72.576 L1892.98 72.576 L1892.98 27.2059 L1900.47 27.2059 L1900.47 34.2544 Q1903.15 30.163 1906.75 28.1376 Q1910.4 26.1121 1915.14 26.1121 Q1922.95 26.1121 1926.96 30.9732 Q1930.97 35.7938 1930.97 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip902)\" d=\"\n", "M287.036 1447.87 L287.036 1447.87 L369.823 1447.87 L369.823 1447.87 L287.036 1447.87 L287.036 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 287.036,1447.87 287.036,1447.87 369.823,1447.87 287.036,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M390.52 1447.87 L390.52 1447.87 L473.307 1447.87 L473.307 1447.87 L390.52 1447.87 L390.52 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 390.52,1447.87 390.52,1447.87 473.307,1447.87 390.52,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M494.003 1447.87 L494.003 1447.87 L576.79 1447.87 L576.79 1447.87 L494.003 1447.87 L494.003 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 494.003,1447.87 494.003,1447.87 576.79,1447.87 494.003,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M597.487 1447.87 L597.487 1447.87 L680.273 1447.87 L680.273 1447.87 L597.487 1447.87 L597.487 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 597.487,1447.87 597.487,1447.87 680.273,1447.87 597.487,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M804.453 1447.87 L804.453 1447.87 L887.24 1447.87 L887.24 1447.87 L804.453 1447.87 L804.453 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 804.453,1447.87 804.453,1447.87 887.24,1447.87 804.453,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1114.9 1447.87 L1114.9 1447.87 L1197.69 1447.87 L1197.69 1447.87 L1114.9 1447.87 L1114.9 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1114.9,1447.87 1114.9,1447.87 1197.69,1447.87 1114.9,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1218.39 804.96 L1218.39 1447.87 L1301.17 1447.87 L1301.17 804.96 L1218.39 804.96 L1218.39 804.96 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.39,804.96 1218.39,1447.87 1301.17,1447.87 1301.17,804.96 1218.39,804.96 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1321.87 1126.42 L1321.87 1447.87 L1404.66 1447.87 L1404.66 1126.42 L1321.87 1126.42 L1321.87 1126.42 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1321.87,1126.42 1321.87,1447.87 1404.66,1447.87 1404.66,1126.42 1321.87,1126.42 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1425.35 1447.87 L1425.35 1447.87 L1508.14 1447.87 L1508.14 1447.87 L1425.35 1447.87 L1425.35 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1425.35,1447.87 1425.35,1447.87 1508.14,1447.87 1425.35,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1528.84 1447.87 L1528.84 1447.87 L1611.62 1447.87 L1611.62 1447.87 L1528.84 1447.87 L1528.84 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1528.84,1447.87 1528.84,1447.87 1611.62,1447.87 1528.84,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1632.32 1447.87 L1632.32 1447.87 L1715.11 1447.87 L1715.11 1447.87 L1632.32 1447.87 L1632.32 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1632.32,1447.87 1632.32,1447.87 1715.11,1447.87 1632.32,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1839.29 1447.87 L1839.29 1447.87 L1922.07 1447.87 L1922.07 1447.87 L1839.29 1447.87 L1839.29 1447.87 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1839.29,1447.87 1839.29,1447.87 1922.07,1447.87 1839.29,1447.87 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M1942.77 1126.42 L1942.77 1447.87 L2025.56 1447.87 L2025.56 1126.42 L1942.77 1126.42 L1942.77 1126.42 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1942.77,1126.42 1942.77,1447.87 2025.56,1447.87 2025.56,1126.42 1942.77,1126.42 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M2046.25 162.047 L2046.25 1447.87 L2129.04 1447.87 L2129.04 162.047 L2046.25 162.047 L2046.25 162.047 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2046.25,162.047 2046.25,1447.87 2129.04,1447.87 2129.04,162.047 2046.25,162.047 \n", " \"/>\n", "<path clip-path=\"url(#clip902)\" d=\"\n", "M2149.74 1126.42 L2149.74 1447.87 L2232.52 1447.87 L2232.52 1126.42 L2149.74 1126.42 L2149.74 1126.42 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.74,1126.42 2149.74,1447.87 2232.52,1447.87 2232.52,1126.42 2149.74,1126.42 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function count_if(vector)\n", " result = 0\n", " for r in vector\n", " if r>5\n", " result +=1\n", " end\n", " end\n", " return result\n", "end\n", " \n", "\n", "@pipe result_1hr |>\n", " groupby(_, :year) |>\n", " combine(_, :duration => count_if => :count) |>\n", " begin\n", " bar(_.year, _.count, lab=false, title=\"Smoke Events >5hrs in Duration\", ylabel=\"Number of Events\", labelfontsize=9)\n", " end" ] }, { "cell_type": "markdown", "id": "ac1ef996-7936-44aa-9e40-7e85767b2ee4", "metadata": {}, "source": [ "When grouped by month, we can see winter months have notable representation, which is likely those atmospheric inversions trapping pollutants near ground level, but the summer months appears to be when the hazy periods are longest and that likely corresponds to wildfire smoke." ] }, { "cell_type": "code", "execution_count": 11, "id": "b43271bf-77cd-4476-990e-a07bf8bf02bb", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"600\" viewBox=\"0 0 2400 2400\">\n", "<defs>\n", " <clipPath id=\"clip940\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"2400\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip940)\" d=\"\n", "M0 2400 L2400 2400 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip941\">\n", " <rect x=\"480\" y=\"240\" width=\"1681\" height=\"1681\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip940)\" d=\"\n", "M213.027 802.257 L2352.76 802.257 L2352.76 47.2441 L213.027 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip942\">\n", " <rect x=\"213\" y=\"47\" width=\"2141\" height=\"756\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 395.271,802.257 395.271,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 556.656,802.257 556.656,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 718.042,802.257 718.042,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 879.428,802.257 879.428,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1040.81,802.257 1040.81,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1202.2,802.257 1202.2,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1363.58,802.257 1363.58,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1524.97,802.257 1524.97,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1686.36,802.257 1686.36,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1847.74,802.257 1847.74,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2009.13,802.257 2009.13,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2170.51,802.257 2170.51,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,802.257 2352.76,802.257 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 395.271,802.257 395.271,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.656,802.257 556.656,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 718.042,802.257 718.042,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 879.428,802.257 879.428,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1040.81,802.257 1040.81,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1202.2,802.257 1202.2,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1363.58,802.257 1363.58,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1524.97,802.257 1524.97,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1686.36,802.257 1686.36,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1847.74,802.257 1847.74,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2009.13,802.257 2009.13,793.197 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2170.51,802.257 2170.51,793.197 \n", " \"/>\n", "<path clip-path=\"url(#clip940)\" d=\"M277.364 949.138 L280.671 945.832 L303.406 968.567 Q307.826 972.987 308.137 976.67 Q308.464 980.336 304.748 984.052 L303.488 985.312 L300.705 982.529 L301.737 981.498 Q303.93 979.305 303.603 977.177 Q303.275 975.049 300.1 971.874 L277.364 949.138 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M310.674 946.274 Q307.023 949.924 306.451 952.167 Q305.878 954.409 307.891 956.422 Q309.495 958.026 311.492 957.928 Q313.489 957.797 315.306 955.98 Q317.81 953.476 317.548 950.202 Q317.286 946.896 314.34 943.95 L313.669 943.279 L310.674 946.274 M315.437 939.023 L325.896 949.482 L322.884 952.494 L320.102 949.711 Q320.74 952.412 320.003 954.753 Q319.25 957.077 317.024 959.303 Q314.209 962.118 310.968 962.217 Q307.727 962.282 305.076 959.63 Q301.982 956.537 302.473 952.903 Q302.981 949.253 307.089 945.145 L311.312 940.922 L311.017 940.627 Q308.939 938.548 306.434 938.794 Q303.93 939.007 301.458 941.478 Q299.887 943.049 298.774 944.915 Q297.661 946.781 297.039 948.909 L294.256 946.127 Q295.271 943.835 296.515 941.969 Q297.743 940.087 299.216 938.614 Q303.193 934.636 307.22 934.734 Q311.246 934.833 315.437 939.023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M336.273 916.975 L347.338 928.04 L344.326 931.052 L333.36 920.085 Q330.757 917.482 328.449 917.204 Q326.141 916.926 324.112 918.956 Q321.673 921.394 321.82 924.357 Q321.968 927.32 324.652 930.004 L335.013 940.365 L331.985 943.393 L313.653 925.061 L316.681 922.033 L319.529 924.881 Q318.956 922.147 319.594 919.872 Q320.249 917.581 322.164 915.666 Q325.323 912.507 328.908 912.85 Q332.476 913.178 336.273 916.975 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M345.8 915.109 L334.702 904.011 L337.714 901 L348.697 911.983 Q351.299 914.585 353.624 914.88 Q355.931 915.158 357.961 913.129 Q360.4 910.69 360.253 907.727 Q360.122 904.748 357.437 902.064 L347.044 891.67 L350.055 888.658 L368.388 906.99 L365.376 910.002 L362.561 907.187 Q363.133 909.953 362.495 912.228 Q361.857 914.471 359.942 916.386 Q356.783 919.545 353.182 919.217 Q349.581 918.89 345.8 915.109 M341.838 895.991 L341.838 895.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M373.707 883.24 Q370.057 886.89 369.484 889.133 Q368.911 891.375 370.925 893.389 Q372.529 894.993 374.526 894.894 Q376.523 894.764 378.339 892.947 Q380.844 890.442 380.582 887.169 Q380.32 883.862 377.374 880.916 L376.703 880.245 L373.707 883.24 M378.47 875.989 L388.93 886.449 L385.918 889.46 L383.135 886.678 Q383.774 889.378 383.037 891.719 Q382.284 894.043 380.058 896.269 Q377.243 899.085 374.002 899.183 Q370.761 899.248 368.109 896.597 Q365.016 893.503 365.507 889.869 Q366.014 886.219 370.123 882.111 L374.346 877.888 L374.051 877.593 Q371.972 875.515 369.468 875.76 Q366.964 875.973 364.492 878.444 Q362.921 880.016 361.808 881.882 Q360.695 883.748 360.073 885.876 L357.29 883.093 Q358.305 880.801 359.549 878.936 Q360.776 877.053 362.25 875.58 Q366.227 871.603 370.254 871.701 Q374.28 871.799 378.47 875.989 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M390.239 854.105 Q389.437 854.318 388.7 854.793 Q387.964 855.234 387.244 855.955 Q384.69 858.508 384.985 861.553 Q385.28 864.564 388.389 867.674 L398.047 877.331 L395.019 880.36 L376.686 862.027 L379.714 858.999 L382.562 861.847 Q381.842 859.228 382.562 856.904 Q383.266 854.563 385.443 852.386 Q385.754 852.075 386.18 851.748 Q386.589 851.404 387.129 851.028 L390.239 854.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M418.245 860.538 Q420.242 865.088 420.029 867.298 Q419.816 869.507 417.787 871.537 L415.38 873.943 L412.86 871.423 L414.628 869.655 Q415.872 868.411 415.97 867.134 Q416.068 865.857 414.709 862.829 L413.875 860.914 L388.422 850.291 L391.614 847.1 L411.681 855.709 L403.072 835.642 L406.263 832.45 L418.245 860.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M417.291 970.597 L431.335 956.553 L434.118 959.336 L423.38 970.073 L430.582 977.275 L440.272 967.585 L443.055 970.368 L433.365 980.058 L445.035 991.728 L441.729 995.035 L417.291 970.597 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M464.808 952.117 L466.281 953.591 L452.434 967.438 Q455.74 970.352 459.047 970.319 Q462.353 970.253 465.348 967.258 Q467.083 965.523 468.278 963.477 Q469.489 961.415 470.242 958.959 L473.09 961.807 Q472.157 964.115 470.815 966.178 Q469.473 968.24 467.722 969.991 Q463.335 974.378 458.212 974.394 Q453.105 974.394 448.751 970.041 Q444.25 965.539 444.037 960.482 Q443.824 955.391 447.949 951.266 Q451.648 947.567 456.182 947.813 Q460.716 948.025 464.808 952.117 M460.913 954.245 Q458.408 951.806 455.577 951.692 Q452.761 951.561 450.535 953.787 Q448.014 956.308 447.916 959.254 Q447.834 962.184 450.191 964.999 L460.913 954.245 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M483.681 934.784 Q480.358 931.461 477.101 930.953 Q473.843 930.413 471.454 932.803 Q469.064 935.193 469.588 938.466 Q470.111 941.707 473.434 945.03 Q476.757 948.353 480.014 948.893 Q483.271 949.4 485.661 947.011 Q488.051 944.621 487.527 941.38 Q487.003 938.106 483.681 934.784 M467.034 938.63 Q466.347 936.044 467.001 933.818 Q467.656 931.559 469.669 929.546 Q473.009 926.207 477.739 926.78 Q482.486 927.336 486.807 931.657 Q491.128 935.978 491.685 940.725 Q492.258 945.456 488.918 948.795 Q486.905 950.808 484.663 951.479 Q482.42 952.117 479.834 951.43 L482.584 954.18 L479.556 957.208 L454.087 931.739 L457.115 928.711 L467.034 938.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M496.055 909.675 Q495.253 909.888 494.516 910.362 Q493.78 910.804 493.06 911.524 Q490.506 914.078 490.801 917.122 Q491.095 920.134 494.205 923.244 L503.863 932.901 L500.834 935.929 L482.502 917.597 L485.53 914.569 L488.378 917.417 Q487.658 914.798 488.378 912.474 Q489.082 910.133 491.259 907.956 Q491.57 907.645 491.996 907.318 Q492.405 906.974 492.945 906.598 L496.055 909.675 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M507.185 915.109 L496.088 904.011 L499.099 901 L510.082 911.983 Q512.685 914.585 515.009 914.88 Q517.317 915.158 519.347 913.129 Q521.786 910.69 521.638 907.727 Q521.507 904.748 518.823 902.064 L508.429 891.67 L511.441 888.658 L529.773 906.99 L526.762 910.002 L523.946 907.187 Q524.519 909.953 523.881 912.228 Q523.242 914.471 521.327 916.386 Q518.168 919.545 514.567 919.217 Q510.966 918.89 507.185 915.109 M503.224 895.991 L503.224 895.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M535.093 883.24 Q531.443 886.89 530.87 889.133 Q530.297 891.375 532.31 893.389 Q533.914 894.993 535.911 894.894 Q537.908 894.764 539.725 892.947 Q542.229 890.442 541.968 887.169 Q541.706 883.862 538.759 880.916 L538.088 880.245 L535.093 883.24 M539.856 875.989 L550.315 886.449 L547.304 889.46 L544.521 886.678 Q545.159 889.378 544.423 891.719 Q543.67 894.043 541.444 896.269 Q538.628 899.085 535.388 899.183 Q532.147 899.248 529.495 896.597 Q526.401 893.503 526.892 889.869 Q527.4 886.219 531.508 882.111 L535.731 877.888 L535.437 877.593 Q533.358 875.515 530.854 875.76 Q528.349 875.973 525.878 878.444 Q524.306 880.016 523.193 881.882 Q522.08 883.748 521.458 885.876 L518.676 883.093 Q519.69 880.801 520.934 878.936 Q522.162 877.053 523.635 875.58 Q527.613 871.603 531.639 871.701 Q535.666 871.799 539.856 875.989 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M551.625 854.105 Q550.823 854.318 550.086 854.793 Q549.35 855.234 548.629 855.955 Q546.076 858.508 546.371 861.553 Q546.665 864.564 549.775 867.674 L559.432 877.331 L556.404 880.36 L538.072 862.027 L541.1 858.999 L543.948 861.847 Q543.228 859.228 543.948 856.904 Q544.652 854.563 546.829 852.386 Q547.14 852.075 547.565 851.748 Q547.975 851.404 548.515 851.028 L551.625 854.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M579.631 860.538 Q581.627 865.088 581.415 867.298 Q581.202 869.507 579.172 871.537 L576.766 873.943 L574.245 871.423 L576.013 869.655 Q577.257 868.411 577.355 867.134 Q577.454 865.857 576.095 862.829 L575.26 860.914 L549.808 850.291 L553 847.1 L573.067 855.709 L564.457 835.642 L567.649 832.45 L579.631 860.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M626.881 922.393 L631.808 917.466 L654.674 927.86 L644.313 904.961 L649.24 900.034 L673.678 924.472 L670.453 927.696 L648.995 906.238 L659.454 929.3 L656.131 932.623 L633.068 922.164 L654.527 943.622 L651.319 946.831 L626.881 922.393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M679.227 900.492 Q675.576 904.142 675.004 906.385 Q674.431 908.627 676.444 910.641 Q678.048 912.245 680.045 912.146 Q682.042 912.016 683.859 910.199 Q686.363 907.694 686.101 904.421 Q685.839 901.114 682.893 898.168 L682.222 897.497 L679.227 900.492 M683.99 893.241 L694.449 903.701 L691.437 906.712 L688.655 903.93 Q689.293 906.63 688.556 908.971 Q687.803 911.295 685.577 913.521 Q682.762 916.337 679.521 916.435 Q676.28 916.5 673.629 913.849 Q670.535 910.755 671.026 907.121 Q671.534 903.471 675.642 899.363 L679.865 895.14 L679.57 894.845 Q677.492 892.767 674.987 893.012 Q672.483 893.225 670.011 895.696 Q668.44 897.268 667.327 899.134 Q666.214 901 665.592 903.128 L662.809 900.345 Q663.824 898.054 665.068 896.188 Q666.296 894.305 667.769 892.832 Q671.746 888.855 675.773 888.953 Q679.799 889.051 683.99 893.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M695.758 871.357 Q694.956 871.57 694.22 872.045 Q693.483 872.486 692.763 873.207 Q690.21 875.76 690.504 878.805 Q690.799 881.816 693.909 884.926 L703.566 894.583 L700.538 897.612 L682.206 879.279 L685.234 876.251 L688.082 879.099 Q687.361 876.48 688.082 874.156 Q688.786 871.815 690.962 869.638 Q691.273 869.327 691.699 869 Q692.108 868.656 692.648 868.28 L695.758 871.357 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M709.262 853.63 L712.077 856.446 Q710.097 857.019 708.46 857.968 Q706.823 858.885 705.514 860.194 Q702.584 863.124 702.829 866.61 Q703.059 870.08 706.414 873.436 Q709.769 876.791 713.256 877.037 Q716.726 877.266 719.656 874.336 Q720.965 873.027 721.898 871.406 Q722.831 869.753 723.404 867.772 L726.187 870.555 Q725.516 872.405 724.452 874.058 Q723.404 875.695 721.882 877.217 Q717.741 881.358 712.699 881.194 Q707.658 881.031 703.239 876.611 Q698.754 872.126 698.639 867.101 Q698.541 862.06 702.829 857.772 Q704.221 856.38 705.841 855.349 Q707.445 854.302 709.262 853.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M736.302 839.718 L747.367 850.782 L744.355 853.794 L733.389 842.827 Q730.786 840.225 728.478 839.947 Q726.17 839.668 724.141 841.698 Q721.702 844.137 721.849 847.1 Q721.996 850.062 724.681 852.747 L735.042 863.108 L732.014 866.136 L706.545 840.667 L709.573 837.639 L719.558 847.623 Q718.985 844.89 719.623 842.615 Q720.278 840.323 722.193 838.408 Q725.352 835.249 728.937 835.593 Q732.505 835.92 736.302 839.718 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M825.554 891.621 L833.23 908.267 L842.216 899.281 L825.554 891.621 M820.43 890.23 L824.179 886.481 L857.93 901.605 L854.492 905.043 L845.997 901 L834.982 912.016 L839.024 920.511 L835.538 923.997 L820.43 890.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M861.531 892.505 L871.253 902.227 L868.225 905.255 L842.92 879.95 L845.948 876.922 L848.731 879.705 Q848.043 877.119 848.698 874.893 Q849.353 872.634 851.366 870.621 Q854.705 867.281 859.436 867.854 Q864.182 868.411 868.503 872.732 Q872.825 877.053 873.381 881.8 Q873.954 886.53 870.615 889.869 Q868.602 891.883 866.359 892.554 Q864.117 893.192 861.531 892.505 M865.377 875.858 Q862.054 872.536 858.797 872.028 Q855.54 871.488 853.15 873.878 Q850.76 876.268 851.284 879.541 Q851.808 882.782 855.131 886.105 Q858.453 889.427 861.711 889.968 Q864.968 890.475 867.358 888.085 Q869.747 885.696 869.224 882.455 Q868.7 879.181 865.377 875.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M877.751 850.75 Q876.949 850.962 876.213 851.437 Q875.476 851.879 874.756 852.599 Q872.203 855.153 872.497 858.197 Q872.792 861.209 875.902 864.319 L885.559 873.976 L882.531 877.004 L864.199 858.672 L867.227 855.644 L870.075 858.492 Q869.355 855.873 870.075 853.549 Q870.779 851.208 872.956 849.031 Q873.267 848.72 873.692 848.393 Q874.101 848.049 874.642 847.672 L877.751 850.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M878.095 844.775 L881.107 841.764 L899.439 860.096 L896.427 863.108 L878.095 844.775 M870.959 837.639 L873.97 834.627 L877.784 838.441 L874.772 841.453 L870.959 837.639 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M880.272 828.325 L883.284 825.314 L908.753 850.782 L905.741 853.794 L880.272 828.325 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M980.687 891.359 L985.613 886.432 L1008.48 896.826 L998.119 873.927 L1003.05 869 L1027.48 893.438 L1024.26 896.662 L1002.8 875.204 L1013.26 898.266 L1009.94 901.589 L986.874 891.13 L1008.33 912.588 L1005.12 915.797 L980.687 891.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1033.03 869.458 Q1029.38 873.108 1028.81 875.351 Q1028.24 877.593 1030.25 879.607 Q1031.85 881.211 1033.85 881.112 Q1035.85 880.982 1037.66 879.165 Q1040.17 876.66 1039.91 873.387 Q1039.64 870.08 1036.7 867.134 L1036.03 866.463 L1033.03 869.458 M1037.79 862.207 L1048.25 872.667 L1045.24 875.678 L1042.46 872.896 Q1043.1 875.596 1042.36 877.937 Q1041.61 880.261 1039.38 882.487 Q1036.57 885.303 1033.33 885.401 Q1030.09 885.466 1027.43 882.815 Q1024.34 879.721 1024.83 876.087 Q1025.34 872.437 1029.45 868.329 L1033.67 864.106 L1033.38 863.811 Q1031.3 861.733 1028.79 861.978 Q1026.29 862.191 1023.82 864.663 Q1022.25 866.234 1021.13 868.1 Q1020.02 869.966 1019.4 872.094 L1016.61 869.311 Q1017.63 867.02 1018.87 865.154 Q1020.1 863.271 1021.57 861.798 Q1025.55 857.821 1029.58 857.919 Q1033.6 858.017 1037.79 862.207 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1063.79 860.538 Q1065.78 865.088 1065.57 867.298 Q1065.36 869.507 1063.33 871.537 L1060.92 873.943 L1058.4 871.423 L1060.17 869.655 Q1061.41 868.411 1061.51 867.134 Q1061.61 865.857 1060.25 862.829 L1059.42 860.914 L1033.96 850.291 L1037.16 847.1 L1057.22 855.709 L1048.61 835.642 L1051.81 832.45 L1063.79 860.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1139.16 894.272 L1142.47 890.966 L1165.2 913.701 Q1169.62 918.121 1169.93 921.804 Q1170.26 925.47 1166.54 929.186 L1165.28 930.446 L1162.5 927.663 L1163.53 926.632 Q1165.72 924.439 1165.4 922.311 Q1165.07 920.183 1161.89 917.008 L1139.16 894.272 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1165.81 902.031 L1154.71 890.933 L1157.72 887.922 L1168.7 898.905 Q1171.31 901.507 1173.63 901.802 Q1175.94 902.08 1177.97 900.05 Q1180.41 897.612 1180.26 894.649 Q1180.13 891.67 1177.44 888.986 L1167.05 878.592 L1170.06 875.58 L1188.39 893.912 L1185.38 896.924 L1182.57 894.109 Q1183.14 896.875 1182.5 899.15 Q1181.86 901.393 1179.95 903.308 Q1176.79 906.467 1173.19 906.139 Q1169.59 905.812 1165.81 902.031 M1161.84 882.913 L1161.84 882.913 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1198.77 861.405 L1209.84 872.47 L1206.82 875.482 L1195.86 864.515 Q1193.26 861.913 1190.95 861.634 Q1188.64 861.356 1186.61 863.386 Q1184.17 865.825 1184.32 868.787 Q1184.47 871.75 1187.15 874.434 L1197.51 884.795 L1194.48 887.823 L1176.15 869.491 L1179.18 866.463 L1182.03 869.311 Q1181.45 866.578 1182.09 864.302 Q1182.75 862.011 1184.66 860.096 Q1187.82 856.937 1191.41 857.281 Q1194.97 857.608 1198.77 861.405 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1221.6 840.863 L1223.08 842.336 L1209.23 856.184 Q1212.54 859.097 1215.84 859.065 Q1219.15 858.999 1222.15 856.004 Q1223.88 854.269 1225.07 852.223 Q1226.29 850.16 1227.04 847.705 L1229.89 850.553 Q1228.95 852.861 1227.61 854.923 Q1226.27 856.986 1224.52 858.737 Q1220.13 863.124 1215.01 863.14 Q1209.9 863.14 1205.55 858.786 Q1201.05 854.285 1200.83 849.227 Q1200.62 844.137 1204.75 840.012 Q1208.44 836.313 1212.98 836.558 Q1217.51 836.771 1221.6 840.863 M1217.71 842.991 Q1215.2 840.552 1212.37 840.438 Q1209.56 840.307 1207.33 842.533 Q1204.81 845.054 1204.71 848 Q1204.63 850.93 1206.99 853.745 L1217.71 842.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1312.48 882.34 L1315.78 879.034 L1338.52 901.769 Q1342.94 906.188 1343.25 909.871 Q1343.58 913.538 1339.86 917.253 L1338.6 918.514 L1335.82 915.731 L1336.85 914.7 Q1339.04 912.507 1338.71 910.379 Q1338.39 908.251 1335.21 905.075 L1312.48 882.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1339.12 890.099 L1328.03 879.001 L1331.04 875.989 L1342.02 886.972 Q1344.62 889.575 1346.95 889.869 Q1349.26 890.148 1351.29 888.118 Q1353.72 885.679 1353.58 882.717 Q1353.45 879.738 1350.76 877.053 L1340.37 866.659 L1343.38 863.648 L1361.71 881.98 L1358.7 884.992 L1355.88 882.176 Q1356.46 884.943 1355.82 887.218 Q1355.18 889.46 1353.27 891.375 Q1350.11 894.534 1346.51 894.207 Q1342.91 893.88 1339.12 890.099 M1335.16 870.981 L1335.16 870.981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1342.45 850.308 L1345.46 847.296 L1370.93 872.765 L1367.92 875.776 L1342.45 850.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1386.56 860.538 Q1388.56 865.088 1388.34 867.298 Q1388.13 869.507 1386.1 871.537 L1383.69 873.943 L1381.17 871.423 L1382.94 869.655 Q1384.19 868.411 1384.28 867.134 Q1384.38 865.857 1383.02 862.829 L1382.19 860.914 L1356.74 850.291 L1359.93 847.1 L1380 855.709 L1371.39 835.642 L1374.58 832.45 L1386.56 860.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1428.06 934.653 L1435.74 951.299 L1444.73 942.313 L1428.06 934.653 M1422.94 933.261 L1426.69 929.513 L1460.44 944.637 L1457 948.074 L1448.51 944.032 L1437.49 955.047 L1441.54 963.542 L1438.05 967.029 L1422.94 933.261 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1456.33 934.276 L1445.23 923.179 L1448.25 920.167 L1459.23 931.15 Q1461.83 933.752 1464.16 934.047 Q1466.46 934.325 1468.49 932.296 Q1470.93 929.857 1470.79 926.894 Q1470.65 923.915 1467.97 921.231 L1457.58 910.837 L1460.59 907.825 L1478.92 926.158 L1475.91 929.169 L1473.09 926.354 Q1473.67 929.12 1473.03 931.395 Q1472.39 933.638 1470.47 935.553 Q1467.32 938.712 1463.71 938.385 Q1460.11 938.057 1456.33 934.276 M1452.37 915.158 L1452.37 915.158 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1487.81 898.512 Q1484.53 895.238 1481.38 894.796 Q1478.23 894.338 1475.79 896.777 Q1473.37 899.199 1473.81 902.358 Q1474.27 905.501 1477.55 908.775 Q1480.8 912.032 1483.95 912.49 Q1487.1 912.932 1489.53 910.51 Q1491.97 908.071 1491.51 904.928 Q1491.07 901.769 1487.81 898.512 M1497.92 902.604 Q1502.6 907.285 1502.8 911.639 Q1503.01 916.009 1498.73 920.298 Q1497.14 921.885 1495.48 923.048 Q1493.85 924.226 1492.03 925.061 L1489.1 922.131 Q1491.15 921.525 1492.78 920.576 Q1494.42 919.627 1495.76 918.285 Q1498.73 915.322 1498.64 912.294 Q1498.58 909.282 1495.45 906.156 L1493.96 904.666 Q1494.65 907.22 1494 909.478 Q1493.34 911.737 1491.31 913.767 Q1487.94 917.139 1483.31 916.631 Q1478.67 916.124 1474.44 911.885 Q1470.18 907.629 1469.67 902.997 Q1469.16 898.364 1472.54 894.993 Q1474.57 892.963 1476.82 892.308 Q1479.08 891.654 1481.64 892.341 L1478.85 889.558 L1481.87 886.547 L1497.92 902.604 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1498.86 891.752 L1487.76 880.654 L1490.77 877.642 L1501.75 888.625 Q1504.36 891.228 1506.68 891.523 Q1508.99 891.801 1511.02 889.771 Q1513.46 887.332 1513.31 884.37 Q1513.18 881.391 1510.49 878.706 L1500.1 868.313 L1503.11 865.301 L1521.44 883.633 L1518.43 886.645 L1515.62 883.83 Q1516.19 886.596 1515.55 888.871 Q1514.91 891.113 1513 893.028 Q1509.84 896.188 1506.24 895.86 Q1502.64 895.533 1498.86 891.752 M1494.9 872.634 L1494.9 872.634 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1521.54 847.951 L1524.39 850.799 Q1522.46 851.421 1520.76 852.468 Q1519.05 853.516 1517.58 854.989 Q1515.34 857.231 1514.9 859.048 Q1514.47 860.849 1515.85 862.224 Q1516.89 863.271 1518.3 863.075 Q1519.69 862.862 1522.66 860.98 L1523.92 860.178 Q1527.81 857.657 1530.41 857.575 Q1533.02 857.461 1535.26 859.703 Q1537.81 862.256 1537.27 865.776 Q1536.75 869.278 1533.21 872.814 Q1531.74 874.287 1529.84 875.596 Q1527.98 876.906 1525.63 878.101 L1522.52 874.991 Q1525.06 874.189 1527.12 873.01 Q1529.17 871.815 1530.76 870.228 Q1532.89 868.1 1533.31 866.234 Q1533.72 864.352 1532.39 863.026 Q1531.17 861.798 1529.68 861.978 Q1528.2 862.142 1524.8 864.335 L1523.51 865.137 Q1520.12 867.347 1517.66 867.38 Q1515.19 867.396 1513.06 865.268 Q1510.48 862.682 1510.9 859.441 Q1511.33 856.2 1514.7 852.828 Q1516.37 851.159 1518.09 849.931 Q1519.81 848.704 1521.54 847.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1524.55 833.449 L1529.76 838.654 L1535.96 832.45 L1538.3 834.791 L1532.1 840.994 L1542.05 850.946 Q1544.29 853.188 1545.54 853.221 Q1546.8 853.238 1548.68 851.355 L1551.77 848.262 L1554.3 850.782 L1551.2 853.876 Q1547.72 857.362 1545.1 857.395 Q1542.46 857.411 1539.02 853.974 L1529.07 844.022 L1526.86 846.232 L1524.52 843.891 L1526.73 841.682 L1521.53 836.477 L1524.55 833.449 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1524.7 994.494 L1527.92 997.719 Q1525.14 998.701 1523.03 999.929 Q1520.92 1001.16 1519.36 1002.71 Q1516.66 1005.41 1516.24 1007.93 Q1515.83 1010.44 1517.76 1012.37 Q1519.38 1013.99 1521.18 1013.86 Q1522.98 1013.69 1526.2 1011.48 L1528.61 1009.9 Q1533.01 1006.9 1536.55 1006.93 Q1540.08 1006.93 1543.06 1009.91 Q1546.61 1013.47 1546.06 1017.69 Q1545.52 1021.89 1540.92 1026.49 Q1539.18 1028.23 1536.83 1029.8 Q1534.49 1031.36 1531.62 1032.68 L1528.22 1029.28 Q1531.36 1028.39 1533.86 1027.03 Q1536.37 1025.68 1538.23 1023.81 Q1541.07 1020.98 1541.49 1018.33 Q1541.92 1015.67 1539.85 1013.61 Q1538.05 1011.81 1535.93 1011.91 Q1533.81 1011.99 1530.79 1014.01 L1528.38 1015.63 Q1523.94 1018.59 1520.72 1018.67 Q1517.5 1018.75 1514.7 1015.95 Q1511.46 1012.71 1511.87 1008.57 Q1512.29 1004.41 1516.3 1000.4 Q1518.02 998.685 1520.11 997.212 Q1522.21 995.738 1524.7 994.494 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1560.59 986.032 L1562.07 987.505 L1548.22 1001.35 Q1551.53 1004.27 1554.83 1004.23 Q1558.14 1004.17 1561.13 1001.17 Q1562.87 999.438 1564.06 997.392 Q1565.27 995.329 1566.03 992.874 L1568.88 995.722 Q1567.94 998.03 1566.6 1000.09 Q1565.26 1002.15 1563.51 1003.91 Q1559.12 1008.29 1554 1008.31 Q1548.89 1008.31 1544.54 1003.96 Q1540.03 999.454 1539.82 994.396 Q1539.61 989.306 1543.73 985.181 Q1547.43 981.482 1551.97 981.727 Q1556.5 981.94 1560.59 986.032 M1556.7 988.16 Q1554.19 985.721 1551.36 985.607 Q1548.55 985.476 1546.32 987.702 Q1543.8 990.222 1543.7 993.169 Q1543.62 996.099 1545.98 998.914 L1556.7 988.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1575.62 985.345 L1585.34 995.067 L1582.31 998.095 L1557.01 972.79 L1560.04 969.762 L1562.82 972.545 Q1562.13 969.959 1562.79 967.733 Q1563.44 965.474 1565.45 963.461 Q1568.79 960.121 1573.52 960.694 Q1578.27 961.251 1582.59 965.572 Q1586.91 969.893 1587.47 974.64 Q1588.04 979.37 1584.7 982.709 Q1582.69 984.723 1580.45 985.394 Q1578.21 986.032 1575.62 985.345 M1579.47 968.698 Q1576.14 965.376 1572.89 964.868 Q1569.63 964.328 1567.24 966.718 Q1564.85 969.108 1565.37 972.381 Q1565.9 975.622 1569.22 978.945 Q1572.54 982.268 1575.8 982.808 Q1579.06 983.315 1581.45 980.925 Q1583.84 978.536 1583.31 975.295 Q1582.79 972.021 1579.47 968.698 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1576.18 943.213 L1581.38 948.418 L1587.58 942.215 L1589.92 944.555 L1583.72 950.759 L1593.67 960.711 Q1595.92 962.953 1597.16 962.986 Q1598.42 963.002 1600.3 961.12 L1603.4 958.026 L1605.92 960.547 L1602.82 963.641 Q1599.34 967.127 1596.72 967.16 Q1594.08 967.176 1590.64 963.739 L1580.69 953.787 L1578.48 955.997 L1576.14 953.656 L1578.35 951.446 L1573.15 946.241 L1576.18 943.213 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1615.64 930.986 L1617.11 932.459 L1603.26 946.307 Q1606.57 949.22 1609.88 949.188 Q1613.18 949.122 1616.18 946.127 Q1617.91 944.392 1619.11 942.346 Q1620.32 940.283 1621.07 937.828 L1623.92 940.676 Q1622.99 942.984 1621.65 945.046 Q1620.3 947.109 1618.55 948.86 Q1614.17 953.247 1609.04 953.263 Q1603.94 953.263 1599.58 948.909 Q1595.08 944.408 1594.87 939.35 Q1594.66 934.26 1598.78 930.135 Q1602.48 926.436 1607.01 926.681 Q1611.55 926.894 1615.64 930.986 M1611.74 933.114 Q1609.24 930.675 1606.41 930.561 Q1603.59 930.43 1601.37 932.656 Q1598.85 935.176 1598.75 938.123 Q1598.67 941.053 1601.02 943.868 L1611.74 933.114 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1629.96 906.876 Q1629.06 903.717 1629.67 901.18 Q1630.27 898.643 1632.4 896.515 Q1635.26 893.65 1638.83 894.109 Q1642.38 894.551 1646.08 898.25 L1657.15 909.315 L1654.12 912.343 L1643.15 901.376 Q1640.52 898.741 1638.31 898.397 Q1636.1 898.054 1634.18 899.969 Q1631.84 902.309 1632.04 905.223 Q1632.24 908.136 1634.92 910.821 L1645.28 921.182 L1642.25 924.21 L1631.29 913.243 Q1628.64 910.591 1626.44 910.264 Q1624.23 909.92 1622.28 911.868 Q1619.98 914.176 1620.19 917.106 Q1620.39 920.02 1623.05 922.688 L1633.41 933.049 L1630.39 936.077 L1612.05 917.744 L1615.08 914.716 L1617.93 917.564 Q1617.28 914.847 1617.91 912.605 Q1618.55 910.362 1620.53 908.382 Q1622.53 906.385 1624.94 906.008 Q1627.36 905.616 1629.96 906.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1667.17 880.998 Q1663.84 877.675 1660.59 877.168 Q1657.33 876.628 1654.94 879.017 Q1652.55 881.407 1653.07 884.681 Q1653.6 887.922 1656.92 891.244 Q1660.24 894.567 1663.5 895.107 Q1666.76 895.615 1669.15 893.225 Q1671.54 890.835 1671.01 887.594 Q1670.49 884.321 1667.17 880.998 M1650.52 884.844 Q1649.83 882.258 1650.49 880.032 Q1651.14 877.773 1653.15 875.76 Q1656.49 872.421 1661.22 872.994 Q1665.97 873.55 1670.29 877.872 Q1674.61 882.193 1675.17 886.94 Q1675.74 891.67 1672.4 895.009 Q1670.39 897.022 1668.15 897.693 Q1665.91 898.332 1663.32 897.644 L1666.07 900.394 L1663.04 903.422 L1637.57 877.953 L1640.6 874.925 L1650.52 884.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1690.2 856.429 L1691.67 857.902 L1677.82 871.75 Q1681.13 874.663 1684.43 874.631 Q1687.74 874.565 1690.74 871.57 Q1692.47 869.835 1693.67 867.789 Q1694.88 865.726 1695.63 863.271 L1698.48 866.119 Q1697.55 868.427 1696.2 870.49 Q1694.86 872.552 1693.11 874.303 Q1688.72 878.69 1683.6 878.706 Q1678.49 878.706 1674.14 874.352 Q1669.64 869.851 1669.42 864.793 Q1669.21 859.703 1673.34 855.578 Q1677.04 851.879 1681.57 852.125 Q1686.1 852.337 1690.2 856.429 M1686.3 858.557 Q1683.8 856.118 1680.96 856.004 Q1678.15 855.873 1675.92 858.099 Q1673.4 860.62 1673.3 863.566 Q1673.22 866.496 1675.58 869.311 L1686.3 858.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1700.16 835.265 Q1699.36 835.478 1698.63 835.953 Q1697.89 836.395 1697.17 837.115 Q1694.62 839.668 1694.91 842.713 Q1695.2 845.725 1698.31 848.835 L1707.97 858.492 L1704.94 861.52 L1686.61 843.188 L1689.64 840.159 L1692.49 843.007 Q1691.77 840.389 1692.49 838.064 Q1693.19 835.724 1695.37 833.547 Q1695.68 833.236 1696.1 832.908 Q1696.51 832.565 1697.05 832.188 L1700.16 835.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1733.93 949.531 Q1730.33 953.132 1730.88 957.944 Q1731.46 962.74 1736.09 967.373 Q1740.7 971.988 1745.5 972.561 Q1750.31 973.118 1753.91 969.517 Q1757.51 965.916 1756.92 961.136 Q1756.35 956.34 1751.74 951.725 Q1747.1 947.092 1742.31 946.52 Q1737.53 945.93 1733.93 949.531 M1731.24 946.847 Q1736.38 941.707 1742.91 942.084 Q1749.43 942.444 1755.22 948.238 Q1761 954.016 1761.38 960.547 Q1761.74 967.062 1756.6 972.201 Q1751.44 977.357 1744.91 977.013 Q1738.4 976.653 1732.6 970.859 Q1726.81 965.065 1726.45 958.55 Q1726.09 952.003 1731.24 946.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1768.02 924.57 L1770.84 927.385 Q1768.86 927.958 1767.22 928.907 Q1765.58 929.824 1764.27 931.133 Q1761.34 934.063 1761.59 937.55 Q1761.82 941.02 1765.17 944.375 Q1768.53 947.731 1772.02 947.976 Q1775.49 948.205 1778.42 945.276 Q1779.73 943.966 1780.66 942.346 Q1781.59 940.692 1782.16 938.712 L1784.95 941.495 Q1784.28 943.344 1783.21 944.997 Q1782.16 946.634 1780.64 948.156 Q1776.5 952.297 1771.46 952.134 Q1766.42 951.97 1762 947.551 Q1757.51 943.066 1757.4 938.041 Q1757.3 932.999 1761.59 928.711 Q1762.98 927.32 1764.6 926.289 Q1766.21 925.241 1768.02 924.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1770.33 910.444 L1775.54 915.649 L1781.74 909.446 L1784.08 911.786 L1777.88 917.99 L1787.83 927.942 Q1790.07 930.184 1791.31 930.217 Q1792.57 930.233 1794.46 928.351 L1797.55 925.257 L1800.07 927.778 L1796.98 930.872 Q1793.49 934.358 1790.87 934.391 Q1788.24 934.407 1784.8 930.97 L1774.85 921.018 L1772.64 923.228 L1770.3 920.887 L1772.51 918.677 L1767.3 913.472 L1770.33 910.444 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1794.91 900.492 Q1792.49 902.915 1792.98 906.221 Q1793.46 909.511 1796.75 912.801 Q1800.04 916.091 1803.33 916.599 Q1806.62 917.073 1809.06 914.634 Q1811.46 912.228 1810.97 908.922 Q1810.48 905.616 1807.21 902.342 Q1803.95 899.085 1800.64 898.594 Q1797.32 898.086 1794.91 900.492 M1792.36 897.939 Q1796.29 894.011 1801.09 894.322 Q1805.88 894.633 1810.4 899.15 Q1814.9 903.651 1815.23 908.464 Q1815.54 913.259 1811.61 917.188 Q1807.67 921.133 1802.87 920.822 Q1798.07 920.478 1793.57 915.977 Q1789.06 911.459 1788.73 906.68 Q1788.42 901.884 1792.36 897.939 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1828.55 880.998 Q1825.23 877.675 1821.97 877.168 Q1818.71 876.628 1816.32 879.017 Q1813.93 881.407 1814.46 884.681 Q1814.98 887.922 1818.31 891.244 Q1821.63 894.567 1824.89 895.107 Q1828.14 895.615 1830.53 893.225 Q1832.92 890.835 1832.4 887.594 Q1831.87 884.321 1828.55 880.998 M1811.91 884.844 Q1811.22 882.258 1811.87 880.032 Q1812.53 877.773 1814.54 875.76 Q1817.88 872.421 1822.61 872.994 Q1827.36 873.55 1831.68 877.872 Q1836 882.193 1836.56 886.94 Q1837.13 891.67 1833.79 895.009 Q1831.78 897.022 1829.53 897.693 Q1827.29 898.332 1824.7 897.644 L1827.45 900.394 L1824.43 903.422 L1798.96 877.953 L1801.99 874.925 L1811.91 884.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1851.58 856.429 L1853.05 857.902 L1839.21 871.75 Q1842.51 874.663 1845.82 874.631 Q1849.13 874.565 1852.12 871.57 Q1853.86 869.835 1855.05 867.789 Q1856.26 865.726 1857.02 863.271 L1859.86 866.119 Q1858.93 868.427 1857.59 870.49 Q1856.25 872.552 1854.49 874.303 Q1850.11 878.69 1844.99 878.706 Q1839.88 878.706 1835.52 874.352 Q1831.02 869.851 1830.81 864.793 Q1830.6 859.703 1834.72 855.578 Q1838.42 851.879 1842.96 852.125 Q1847.49 852.337 1851.58 856.429 M1847.69 858.557 Q1845.18 856.118 1842.35 856.004 Q1839.53 855.873 1837.31 858.099 Q1834.79 860.62 1834.69 863.566 Q1834.61 866.496 1836.96 869.311 L1847.69 858.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1861.55 835.265 Q1860.75 835.478 1860.01 835.953 Q1859.27 836.395 1858.55 837.115 Q1856 839.668 1856.3 842.713 Q1856.59 845.725 1859.7 848.835 L1869.36 858.492 L1866.33 861.52 L1848 843.188 L1851.02 840.159 L1853.87 843.007 Q1853.15 840.389 1853.87 838.064 Q1854.58 835.724 1856.75 833.547 Q1857.06 833.236 1857.49 832.908 Q1857.9 832.565 1858.44 832.188 L1861.55 835.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1842.92 997.441 L1847.37 992.989 L1878.65 1002.6 L1858.21 982.153 L1861.41 978.945 L1885.85 1003.38 L1881.4 1007.83 L1850.12 998.226 L1870.56 1018.67 L1867.36 1021.88 L1842.92 997.441 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1883.18 973.609 Q1880.76 976.031 1881.25 979.338 Q1881.73 982.628 1885.02 985.918 Q1888.31 989.208 1891.6 989.715 Q1894.89 990.19 1897.33 987.751 Q1899.73 985.345 1899.24 982.038 Q1898.75 978.732 1895.48 975.458 Q1892.22 972.201 1888.91 971.71 Q1885.59 971.203 1883.18 973.609 M1880.63 971.055 Q1884.56 967.127 1889.36 967.438 Q1894.15 967.749 1898.67 972.267 Q1903.17 976.768 1903.5 981.58 Q1903.81 986.376 1899.88 990.304 Q1895.93 994.249 1891.14 993.938 Q1886.34 993.594 1881.84 989.093 Q1877.32 984.575 1877 979.796 Q1876.69 975 1880.63 971.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1892.32 960.252 L1895.51 957.061 L1916.62 966.718 L1906.97 945.603 L1910.16 942.411 L1921.62 967.618 L1917.52 971.71 L1892.32 960.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1938.41 930.986 L1939.88 932.459 L1926.04 946.307 Q1929.34 949.22 1932.65 949.188 Q1935.96 949.122 1938.95 946.127 Q1940.69 944.392 1941.88 942.346 Q1943.09 940.283 1943.84 937.828 L1946.69 940.676 Q1945.76 942.984 1944.42 945.046 Q1943.08 947.109 1941.32 948.86 Q1936.94 953.247 1931.81 953.263 Q1926.71 953.263 1922.35 948.909 Q1917.85 944.408 1917.64 939.35 Q1917.43 934.26 1921.55 930.135 Q1925.25 926.436 1929.78 926.681 Q1934.32 926.894 1938.41 930.986 M1934.51 933.114 Q1932.01 930.675 1929.18 930.561 Q1926.36 930.43 1924.14 932.656 Q1921.62 935.176 1921.52 938.123 Q1921.44 941.053 1923.79 943.868 L1934.51 933.114 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1952.73 906.876 Q1951.83 903.717 1952.44 901.18 Q1953.04 898.643 1955.17 896.515 Q1958.04 893.65 1961.6 894.109 Q1965.16 894.551 1968.85 898.25 L1979.92 909.315 L1976.89 912.343 L1965.93 901.376 Q1963.29 898.741 1961.08 898.397 Q1958.87 898.054 1956.96 899.969 Q1954.61 902.309 1954.81 905.223 Q1955.01 908.136 1957.69 910.821 L1968.05 921.182 L1965.02 924.21 L1954.06 913.243 Q1951.41 910.591 1949.21 910.264 Q1947 909.92 1945.06 911.868 Q1942.75 914.176 1942.96 917.106 Q1943.16 920.02 1945.83 922.688 L1956.19 933.049 L1953.16 936.077 L1934.83 917.744 L1937.85 914.716 L1940.7 917.564 Q1940.05 914.847 1940.69 912.605 Q1941.32 910.362 1943.3 908.382 Q1945.3 906.385 1947.71 906.008 Q1950.13 905.616 1952.73 906.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1989.94 880.998 Q1986.61 877.675 1983.36 877.168 Q1980.1 876.628 1977.71 879.017 Q1975.32 881.407 1975.84 884.681 Q1976.37 887.922 1979.69 891.244 Q1983.01 894.567 1986.27 895.107 Q1989.53 895.615 1991.92 893.225 Q1994.31 890.835 1993.78 887.594 Q1993.26 884.321 1989.94 880.998 M1973.29 884.844 Q1972.6 882.258 1973.26 880.032 Q1973.91 877.773 1975.93 875.76 Q1979.27 872.421 1984 872.994 Q1988.74 873.55 1993.06 877.872 Q1997.38 882.193 1997.94 886.94 Q1998.51 891.67 1995.17 895.009 Q1993.16 897.022 1990.92 897.693 Q1988.68 898.332 1986.09 897.644 L1988.84 900.394 L1985.81 903.422 L1960.34 877.953 L1963.37 874.925 L1973.29 884.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2012.97 856.429 L2014.44 857.902 L2000.59 871.75 Q2003.9 874.663 2007.21 874.631 Q2010.51 874.565 2013.51 871.57 Q2015.24 869.835 2016.44 867.789 Q2017.65 865.726 2018.4 863.271 L2021.25 866.119 Q2020.32 868.427 2018.97 870.49 Q2017.63 872.552 2015.88 874.303 Q2011.49 878.69 2006.37 878.706 Q2001.26 878.706 1996.91 874.352 Q1992.41 869.851 1992.2 864.793 Q1991.98 859.703 1996.11 855.578 Q1999.81 851.879 2004.34 852.125 Q2008.88 852.337 2012.97 856.429 M2009.07 858.557 Q2006.57 856.118 2003.74 856.004 Q2000.92 855.873 1998.69 858.099 Q1996.17 860.62 1996.08 863.566 Q1995.99 866.496 1998.35 869.311 L2009.07 858.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2022.94 835.265 Q2022.13 835.478 2021.4 835.953 Q2020.66 836.395 2019.94 837.115 Q2017.39 839.668 2017.68 842.713 Q2017.98 845.725 2021.09 848.835 L2030.74 858.492 L2027.71 861.52 L2009.38 843.188 L2012.41 840.159 L2015.26 843.007 Q2014.54 840.389 2015.26 838.064 Q2015.96 835.724 2018.14 833.547 Q2018.45 833.236 2018.88 832.908 Q2019.29 832.565 2019.83 832.188 L2022.94 835.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2010.88 996.295 L2029.89 1015.3 L2033.88 1011.3 Q2038.94 1006.25 2038.99 1001.61 Q2039.05 996.966 2034.11 992.023 Q2029.2 987.112 2024.57 987.194 Q2019.94 987.243 2014.88 992.301 L2010.88 996.295 M2004.86 996.884 L2011.65 990.091 Q2018.76 982.988 2025.04 982.628 Q2031.31 982.251 2037.6 988.536 Q2043.92 994.855 2043.54 1001.16 Q2043.16 1007.46 2036.09 1014.53 L2029.3 1021.32 L2004.86 996.884 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2060.74 970.041 L2062.21 971.514 L2048.37 985.361 Q2051.67 988.275 2054.98 988.242 Q2058.29 988.176 2061.28 985.181 Q2063.02 983.446 2064.21 981.4 Q2065.42 979.338 2066.18 976.882 L2069.02 979.73 Q2068.09 982.038 2066.75 984.101 Q2065.41 986.163 2063.66 987.915 Q2059.27 992.301 2054.15 992.318 Q2049.04 992.318 2044.68 987.964 Q2040.18 983.462 2039.97 978.405 Q2039.76 973.314 2043.88 969.189 Q2047.58 965.49 2052.12 965.736 Q2056.65 965.948 2060.74 970.041 M2056.85 972.168 Q2054.34 969.73 2051.51 969.615 Q2048.69 969.484 2046.47 971.71 Q2043.95 974.231 2043.85 977.177 Q2043.77 980.107 2046.12 982.922 L2056.85 972.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2071.17 944.195 L2073.98 947.011 Q2072 947.583 2070.37 948.533 Q2068.73 949.449 2067.42 950.759 Q2064.49 953.689 2064.74 957.175 Q2064.96 960.645 2068.32 964.001 Q2071.68 967.356 2075.16 967.602 Q2078.63 967.831 2081.56 964.901 Q2082.87 963.591 2083.8 961.971 Q2084.74 960.318 2085.31 958.337 L2088.09 961.12 Q2087.42 962.969 2086.36 964.623 Q2085.31 966.259 2083.79 967.782 Q2079.65 971.923 2074.61 971.759 Q2069.56 971.595 2065.14 967.176 Q2060.66 962.691 2060.55 957.666 Q2060.45 952.625 2064.74 948.336 Q2066.13 946.945 2067.75 945.914 Q2069.35 944.866 2071.17 944.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2099.8 930.986 L2101.27 932.459 L2087.42 946.307 Q2090.73 949.22 2094.03 949.188 Q2097.34 949.122 2100.34 946.127 Q2102.07 944.392 2103.27 942.346 Q2104.48 940.283 2105.23 937.828 L2108.08 940.676 Q2107.15 942.984 2105.8 945.046 Q2104.46 947.109 2102.71 948.86 Q2098.32 953.247 2093.2 953.263 Q2088.09 953.263 2083.74 948.909 Q2079.24 944.408 2079.02 939.35 Q2078.81 934.26 2082.94 930.135 Q2086.64 926.436 2091.17 926.681 Q2095.7 926.894 2099.8 930.986 M2095.9 933.114 Q2093.4 930.675 2090.56 930.561 Q2087.75 930.43 2085.52 932.656 Q2083 935.176 2082.9 938.123 Q2082.82 941.053 2085.18 943.868 L2095.9 933.114 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2114.12 906.876 Q2113.22 903.717 2113.82 901.18 Q2114.43 898.643 2116.56 896.515 Q2119.42 893.65 2122.99 894.109 Q2126.54 894.551 2130.24 898.25 L2141.31 909.315 L2138.28 912.343 L2127.31 901.376 Q2124.68 898.741 2122.47 898.397 Q2120.26 898.054 2118.34 899.969 Q2116 902.309 2116.2 905.223 Q2116.39 908.136 2119.08 910.821 L2129.44 921.182 L2126.41 924.21 L2115.44 913.243 Q2112.79 910.591 2110.6 910.264 Q2108.39 909.92 2106.44 911.868 Q2104.13 914.176 2104.35 917.106 Q2104.54 920.02 2107.21 922.688 L2117.57 933.049 L2114.54 936.077 L2096.21 917.744 L2099.24 914.716 L2102.09 917.564 Q2101.43 914.847 2102.07 912.605 Q2102.71 910.362 2104.69 908.382 Q2106.69 906.385 2109.09 906.008 Q2111.52 905.616 2114.12 906.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2151.32 880.998 Q2148 877.675 2144.74 877.168 Q2141.49 876.628 2139.1 879.017 Q2136.71 881.407 2137.23 884.681 Q2137.75 887.922 2141.08 891.244 Q2144.4 894.567 2147.66 895.107 Q2150.91 895.615 2153.3 893.225 Q2155.69 890.835 2155.17 887.594 Q2154.65 884.321 2151.32 880.998 M2134.68 884.844 Q2133.99 882.258 2134.64 880.032 Q2135.3 877.773 2137.31 875.76 Q2140.65 872.421 2145.38 872.994 Q2150.13 873.55 2154.45 877.872 Q2158.77 882.193 2159.33 886.94 Q2159.9 891.67 2156.56 895.009 Q2154.55 897.022 2152.3 897.693 Q2150.06 898.332 2147.48 897.644 L2150.23 900.394 L2147.2 903.422 L2121.73 877.953 L2124.76 874.925 L2134.68 884.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2174.35 856.429 L2175.83 857.902 L2161.98 871.75 Q2165.28 874.663 2168.59 874.631 Q2171.9 874.565 2174.89 871.57 Q2176.63 869.835 2177.82 867.789 Q2179.03 865.726 2179.79 863.271 L2182.64 866.119 Q2181.7 868.427 2180.36 870.49 Q2179.02 872.552 2177.27 874.303 Q2172.88 878.69 2167.76 878.706 Q2162.65 878.706 2158.3 874.352 Q2153.79 869.851 2153.58 864.793 Q2153.37 859.703 2157.49 855.578 Q2161.19 851.879 2165.73 852.125 Q2170.26 852.337 2174.35 856.429 M2170.46 858.557 Q2167.95 856.118 2165.12 856.004 Q2162.31 855.873 2160.08 858.099 Q2157.56 860.62 2157.46 863.566 Q2157.38 866.496 2159.74 869.311 L2170.46 858.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2184.32 835.265 Q2183.52 835.478 2182.78 835.953 Q2182.05 836.395 2181.33 837.115 Q2178.77 839.668 2179.07 842.713 Q2179.36 845.725 2182.47 848.835 L2192.13 858.492 L2189.1 861.52 L2170.77 843.188 L2173.8 840.159 L2176.64 843.007 Q2175.92 840.389 2176.64 838.064 Q2177.35 835.724 2179.53 833.547 Q2179.84 833.236 2180.26 832.908 Q2180.67 832.565 2181.21 832.188 L2184.32 835.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,780.889 2352.76,780.889 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,571.396 2352.76,571.396 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,361.903 2352.76,361.903 \n", " \"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,152.41 2352.76,152.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,802.257 213.027,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,780.889 238.704,780.889 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,571.396 238.704,571.396 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,361.903 238.704,361.903 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,152.41 238.704,152.41 \n", " \"/>\n", "<path clip-path=\"url(#clip940)\" d=\"M165.083 766.688 Q161.472 766.688 159.643 770.252 Q157.838 773.794 157.838 780.924 Q157.838 788.03 159.643 791.595 Q161.472 795.137 165.083 795.137 Q168.717 795.137 170.523 791.595 Q172.352 788.03 172.352 780.924 Q172.352 773.794 170.523 770.252 Q168.717 766.688 165.083 766.688 M165.083 762.984 Q170.893 762.984 173.949 767.59 Q177.027 772.174 177.027 780.924 Q177.027 789.65 173.949 794.257 Q170.893 798.84 165.083 798.84 Q159.273 798.84 156.194 794.257 Q153.139 789.65 153.139 780.924 Q153.139 772.174 156.194 767.59 Q159.273 762.984 165.083 762.984 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M156.125 554.116 L174.481 554.116 L174.481 558.051 L160.407 558.051 L160.407 566.523 Q161.426 566.176 162.444 566.014 Q163.463 565.829 164.481 565.829 Q170.268 565.829 173.648 569 Q177.027 572.171 177.027 577.588 Q177.027 583.167 173.555 586.268 Q170.083 589.347 163.764 589.347 Q161.588 589.347 159.319 588.977 Q157.074 588.606 154.666 587.866 L154.666 583.167 Q156.75 584.301 158.972 584.856 Q161.194 585.412 163.671 585.412 Q167.676 585.412 170.014 583.305 Q172.352 581.199 172.352 577.588 Q172.352 573.977 170.014 571.87 Q167.676 569.764 163.671 569.764 Q161.796 569.764 159.921 570.181 Q158.069 570.597 156.125 571.477 L156.125 554.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M125.731 375.248 L133.37 375.248 L133.37 348.882 L125.06 350.549 L125.06 346.289 L133.324 344.623 L138 344.623 L138 375.248 L145.639 375.248 L145.639 379.183 L125.731 379.183 L125.731 375.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M165.083 347.701 Q161.472 347.701 159.643 351.266 Q157.838 354.808 157.838 361.937 Q157.838 369.044 159.643 372.609 Q161.472 376.15 165.083 376.15 Q168.717 376.15 170.523 372.609 Q172.352 369.044 172.352 361.937 Q172.352 354.808 170.523 351.266 Q168.717 347.701 165.083 347.701 M165.083 343.998 Q170.893 343.998 173.949 348.604 Q177.027 353.187 177.027 361.937 Q177.027 370.664 173.949 375.271 Q170.893 379.854 165.083 379.854 Q159.273 379.854 156.194 375.271 Q153.139 370.664 153.139 361.937 Q153.139 353.187 156.194 348.604 Q159.273 343.998 165.083 343.998 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M126.727 165.754 L134.366 165.754 L134.366 139.389 L126.056 141.056 L126.056 136.796 L134.319 135.13 L138.995 135.13 L138.995 165.754 L146.634 165.754 L146.634 169.69 L126.727 169.69 L126.727 165.754 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M156.125 135.13 L174.481 135.13 L174.481 139.065 L160.407 139.065 L160.407 147.537 Q161.426 147.19 162.444 147.028 Q163.463 146.843 164.481 146.843 Q170.268 146.843 173.648 150.014 Q177.027 153.185 177.027 158.602 Q177.027 164.18 173.555 167.282 Q170.083 170.361 163.764 170.361 Q161.588 170.361 159.319 169.991 Q157.074 169.62 154.666 168.879 L154.666 164.18 Q156.75 165.315 158.972 165.87 Q161.194 166.426 163.671 166.426 Q167.676 166.426 170.014 164.319 Q172.352 162.213 172.352 158.602 Q172.352 154.991 170.014 152.884 Q167.676 150.778 163.671 150.778 Q161.796 150.778 159.921 151.194 Q158.069 151.611 156.125 152.491 L156.125 135.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M38.5162 660.895 L38.5162 653.812 L71.042 636.572 L38.5162 636.572 L38.5162 631.468 L77.3962 631.468 L77.3962 638.552 L44.8703 655.791 L77.3962 655.791 L77.3962 660.895 L38.5162 660.895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M65.8858 621.703 L48.2296 621.703 L48.2296 616.911 L65.7035 616.911 Q69.8441 616.911 71.9274 615.297 Q73.9847 613.682 73.9847 610.453 Q73.9847 606.573 71.5108 604.333 Q69.0368 602.067 64.766 602.067 L48.2296 602.067 L48.2296 597.276 L77.3962 597.276 L77.3962 602.067 L72.917 602.067 Q75.5733 603.812 76.8753 606.13 Q78.1514 608.422 78.1514 611.468 Q78.1514 616.494 75.0264 619.099 Q71.9014 621.703 65.8858 621.703 M47.5265 609.646 L47.5265 609.646 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M53.8286 564.698 Q50.5994 562.901 49.063 560.401 Q47.5265 557.901 47.5265 554.516 Q47.5265 549.958 50.7296 547.484 Q53.9067 545.01 59.7921 545.01 L77.3962 545.01 L77.3962 549.828 L59.9483 549.828 Q55.7556 549.828 53.7244 551.312 Q51.6932 552.797 51.6932 555.844 Q51.6932 559.568 54.1671 561.729 Q56.6411 563.891 60.9119 563.891 L77.3962 563.891 L77.3962 568.708 L59.9483 568.708 Q55.7296 568.708 53.7244 570.193 Q51.6932 571.677 51.6932 574.776 Q51.6932 578.448 54.1932 580.609 Q56.6671 582.771 60.9119 582.771 L77.3962 582.771 L77.3962 587.588 L48.2296 587.588 L48.2296 582.771 L52.7609 582.771 Q50.0786 581.13 48.8026 578.838 Q47.5265 576.547 47.5265 573.396 Q47.5265 570.219 49.1411 568.005 Q50.7557 565.766 53.8286 564.698 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M62.8389 514.516 Q57.5525 514.516 54.5577 516.703 Q51.5369 518.865 51.5369 522.667 Q51.5369 526.469 54.5577 528.656 Q57.5525 530.818 62.8389 530.818 Q68.1254 530.818 71.1462 528.656 Q74.141 526.469 74.141 522.667 Q74.141 518.865 71.1462 516.703 Q68.1254 514.516 62.8389 514.516 M52.6567 530.818 Q50.0526 529.307 48.8026 527.016 Q47.5265 524.698 47.5265 521.495 Q47.5265 516.182 51.7453 512.875 Q55.964 509.542 62.8389 509.542 Q69.7139 509.542 73.9326 512.875 Q78.1514 516.182 78.1514 521.495 Q78.1514 524.698 76.9014 527.016 Q75.6253 529.307 73.0212 530.818 L77.3962 530.818 L77.3962 535.635 L36.8755 535.635 L36.8755 530.818 L52.6567 530.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M61.615 476.651 L63.9587 476.651 L63.9587 498.683 Q68.9066 498.37 71.5108 495.714 Q74.0889 493.032 74.0889 488.266 Q74.0889 485.506 73.4118 482.927 Q72.7347 480.323 71.3806 477.771 L75.9118 477.771 Q77.0055 480.349 77.5784 483.058 Q78.1514 485.766 78.1514 488.552 Q78.1514 495.532 74.0889 499.62 Q70.0264 503.683 63.0994 503.683 Q55.9379 503.683 51.7453 499.828 Q47.5265 495.948 47.5265 489.386 Q47.5265 483.5 51.3286 480.089 Q55.1046 476.651 61.615 476.651 M60.2087 481.443 Q56.2765 481.495 53.9327 483.657 Q51.589 485.792 51.589 489.334 Q51.589 493.344 53.8546 495.766 Q56.1202 498.162 60.2348 498.526 L60.2087 481.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M52.7088 451.886 Q52.24 452.693 52.0317 453.657 Q51.7973 454.594 51.7973 455.74 Q51.7973 459.803 54.4536 461.99 Q57.0838 464.151 62.0317 464.151 L77.3962 464.151 L77.3962 468.969 L48.2296 468.969 L48.2296 464.151 L52.7609 464.151 Q50.1046 462.641 48.8286 460.219 Q47.5265 457.797 47.5265 454.334 Q47.5265 453.839 47.6047 453.24 Q47.6567 452.641 47.7869 451.912 L52.7088 451.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M51.589 418.605 Q51.589 422.459 54.6098 424.699 Q57.6046 426.938 62.8389 426.938 Q68.0733 426.938 71.0941 424.725 Q74.0889 422.485 74.0889 418.605 Q74.0889 414.777 71.0681 412.537 Q68.0472 410.298 62.8389 410.298 Q57.6567 410.298 54.6359 412.537 Q51.589 414.777 51.589 418.605 M47.5265 418.605 Q47.5265 412.355 51.589 408.787 Q55.6515 405.22 62.8389 405.22 Q70.0004 405.22 74.0889 408.787 Q78.1514 412.355 78.1514 418.605 Q78.1514 424.881 74.0889 428.449 Q70.0004 431.99 62.8389 431.99 Q55.6515 431.99 51.589 428.449 Q47.5265 424.881 47.5265 418.605 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M36.8755 382.511 L40.8599 382.511 L40.8599 387.095 Q40.8599 389.673 41.9016 390.688 Q42.9432 391.678 45.6515 391.678 L48.2296 391.678 L48.2296 383.787 L51.9536 383.787 L51.9536 391.678 L77.3962 391.678 L77.3962 396.496 L51.9536 396.496 L51.9536 401.079 L48.2296 401.079 L48.2296 396.496 L46.1984 396.496 Q41.3286 396.496 39.1151 394.23 Q36.8755 391.964 36.8755 387.043 L36.8755 382.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M38.5162 361.34 L38.5162 336.756 L42.9432 336.756 L42.9432 356.079 L54.4536 356.079 L54.4536 337.564 L58.8806 337.564 L58.8806 356.079 L72.9691 356.079 L72.9691 336.288 L77.3962 336.288 L77.3962 361.34 L38.5162 361.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M48.2296 331.288 L48.2296 326.21 L72.7087 317.095 L48.2296 307.98 L48.2296 302.902 L77.3962 313.84 L77.3962 320.35 L48.2296 331.288 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M61.615 271.34 L63.9587 271.34 L63.9587 293.371 Q68.9066 293.059 71.5108 290.402 Q74.0889 287.72 74.0889 282.955 Q74.0889 280.194 73.4118 277.616 Q72.7347 275.012 71.3806 272.46 L75.9118 272.46 Q77.0055 275.038 77.5784 277.746 Q78.1514 280.455 78.1514 283.241 Q78.1514 290.22 74.0889 294.309 Q70.0264 298.371 63.0994 298.371 Q55.9379 298.371 51.7453 294.517 Q47.5265 290.637 47.5265 284.074 Q47.5265 278.189 51.3286 274.778 Q55.1046 271.34 61.615 271.34 M60.2087 276.132 Q56.2765 276.184 53.9327 278.345 Q51.589 280.481 51.589 284.022 Q51.589 288.033 53.8546 290.455 Q56.1202 292.85 60.2348 293.215 L60.2087 276.132 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M59.7921 239.231 L77.3962 239.231 L77.3962 244.022 L59.9483 244.022 Q55.8077 244.022 53.7505 245.637 Q51.6932 247.252 51.6932 250.481 Q51.6932 254.361 54.1671 256.601 Q56.6411 258.84 60.9119 258.84 L77.3962 258.84 L77.3962 263.658 L48.2296 263.658 L48.2296 258.84 L52.7609 258.84 Q50.1307 257.121 48.8286 254.804 Q47.5265 252.46 47.5265 249.413 Q47.5265 244.387 50.6515 241.809 Q53.7505 239.231 59.7921 239.231 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M39.9484 224.934 L48.2296 224.934 L48.2296 215.064 L51.9536 215.064 L51.9536 224.934 L67.7868 224.934 Q71.3545 224.934 72.3701 223.97 Q73.3858 222.981 73.3858 219.986 L73.3858 215.064 L77.3962 215.064 L77.3962 219.986 Q77.3962 225.533 75.3389 227.642 Q73.2556 229.752 67.7868 229.752 L51.9536 229.752 L51.9536 233.267 L48.2296 233.267 L48.2296 229.752 L39.9484 229.752 L39.9484 224.934 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M49.089 190.169 L53.6202 190.169 Q52.5786 192.2 52.0578 194.387 Q51.5369 196.575 51.5369 198.919 Q51.5369 202.486 52.6307 204.283 Q53.7244 206.054 55.9119 206.054 Q57.5786 206.054 58.5421 204.778 Q59.4796 203.502 60.339 199.648 L60.7035 198.007 Q61.7973 192.903 63.8025 190.768 Q65.7816 188.606 69.3493 188.606 Q73.4118 188.606 75.7816 191.835 Q78.1514 195.038 78.1514 200.663 Q78.1514 203.007 77.6826 205.559 Q77.2399 208.085 76.3285 210.898 L71.3806 210.898 Q72.7608 208.241 73.4639 205.663 Q74.141 203.085 74.141 200.559 Q74.141 197.174 72.9951 195.351 Q71.8233 193.528 69.7139 193.528 Q67.7608 193.528 66.7191 194.856 Q65.6775 196.158 64.7139 200.611 L64.3233 202.278 Q63.3858 206.731 61.4587 208.71 Q59.5056 210.689 56.1202 210.689 Q52.0057 210.689 49.7661 207.773 Q47.5265 204.856 47.5265 199.491 Q47.5265 196.835 47.9171 194.491 Q48.3078 192.148 49.089 190.169 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip942)\" d=\"\n", "M330.716 361.903 L330.716 780.889 L459.825 780.889 L459.825 361.903 L330.716 361.903 L330.716 361.903 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 330.716,361.903 330.716,780.889 459.825,780.889 459.825,361.903 330.716,361.903 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M492.102 655.193 L492.102 780.889 L621.211 780.889 L621.211 655.193 L492.102 655.193 L492.102 655.193 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 492.102,655.193 492.102,780.889 621.211,780.889 621.211,655.193 492.102,655.193 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M653.488 697.092 L653.488 780.889 L782.596 780.889 L782.596 697.092 L653.488 697.092 L653.488 697.092 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 653.488,697.092 653.488,780.889 782.596,780.889 782.596,697.092 653.488,697.092 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M814.873 780.889 L814.873 780.889 L943.982 780.889 L943.982 780.889 L814.873 780.889 L814.873 780.889 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 814.873,780.889 814.873,780.889 943.982,780.889 814.873,780.889 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M976.259 403.801 L976.259 780.889 L1105.37 780.889 L1105.37 403.801 L976.259 403.801 L976.259 403.801 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.259,403.801 976.259,780.889 1105.37,780.889 1105.37,403.801 976.259,403.801 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1137.64 738.99 L1137.64 780.889 L1266.75 780.889 L1266.75 738.99 L1137.64 738.99 L1137.64 738.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1137.64,738.99 1137.64,780.889 1266.75,780.889 1266.75,738.99 1137.64,738.99 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1299.03 613.294 L1299.03 780.889 L1428.14 780.889 L1428.14 613.294 L1299.03 613.294 L1299.03 613.294 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1299.03,613.294 1299.03,780.889 1428.14,780.889 1428.14,613.294 1299.03,613.294 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1460.42 68.6124 L1460.42 780.889 L1589.52 780.889 L1589.52 68.6124 L1460.42 68.6124 L1460.42 68.6124 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.42,68.6124 1460.42,780.889 1589.52,780.889 1589.52,68.6124 1460.42,68.6124 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1621.8 655.193 L1621.8 780.889 L1750.91 780.889 L1750.91 655.193 L1621.8 655.193 L1621.8 655.193 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1621.8,655.193 1621.8,780.889 1750.91,780.889 1750.91,655.193 1621.8,655.193 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1783.19 738.99 L1783.19 780.889 L1912.3 780.889 L1912.3 738.99 L1783.19 738.99 L1783.19 738.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1783.19,738.99 1783.19,780.889 1912.3,780.889 1912.3,738.99 1783.19,738.99 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M1944.57 780.889 L1944.57 780.889 L2073.68 780.889 L2073.68 780.889 L1944.57 780.889 L1944.57 780.889 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.57,780.889 1944.57,780.889 2073.68,780.889 1944.57,780.889 \n", " \"/>\n", "<path clip-path=\"url(#clip942)\" d=\"\n", "M2105.96 655.193 L2105.96 780.889 L2235.07 780.889 L2235.07 655.193 L2105.96 655.193 L2105.96 655.193 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2105.96,655.193 2105.96,780.889 2235.07,780.889 2235.07,655.193 2105.96,655.193 \n", " \"/>\n", "<path clip-path=\"url(#clip940)\" d=\"\n", "M213.027 2002.26 L2352.76 2002.26 L2352.76 1247.24 L213.027 1247.24 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip943\">\n", " <rect x=\"213\" y=\"1247\" width=\"2141\" height=\"756\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 395.271,2002.26 395.271,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 556.656,2002.26 556.656,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 718.042,2002.26 718.042,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 879.428,2002.26 879.428,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1040.81,2002.26 1040.81,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1202.2,2002.26 1202.2,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1363.58,2002.26 1363.58,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1524.97,2002.26 1524.97,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1686.36,2002.26 1686.36,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1847.74,2002.26 1847.74,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2009.13,2002.26 2009.13,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2170.51,2002.26 2170.51,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,2002.26 2352.76,2002.26 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 395.271,2002.26 395.271,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.656,2002.26 556.656,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 718.042,2002.26 718.042,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 879.428,2002.26 879.428,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1040.81,2002.26 1040.81,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1202.2,2002.26 1202.2,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1363.58,2002.26 1363.58,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1524.97,2002.26 1524.97,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1686.36,2002.26 1686.36,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1847.74,2002.26 1847.74,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2009.13,2002.26 2009.13,1993.2 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2170.51,2002.26 2170.51,1993.2 \n", " \"/>\n", "<path clip-path=\"url(#clip940)\" d=\"M277.364 2149.14 L280.671 2145.83 L303.406 2168.57 Q307.826 2172.99 308.137 2176.67 Q308.464 2180.34 304.748 2184.05 L303.488 2185.31 L300.705 2182.53 L301.737 2181.5 Q303.93 2179.3 303.603 2177.18 Q303.275 2175.05 300.1 2171.87 L277.364 2149.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M310.674 2146.27 Q307.023 2149.92 306.451 2152.17 Q305.878 2154.41 307.891 2156.42 Q309.495 2158.03 311.492 2157.93 Q313.489 2157.8 315.306 2155.98 Q317.81 2153.48 317.548 2150.2 Q317.286 2146.9 314.34 2143.95 L313.669 2143.28 L310.674 2146.27 M315.437 2139.02 L325.896 2149.48 L322.884 2152.49 L320.102 2149.71 Q320.74 2152.41 320.003 2154.75 Q319.25 2157.08 317.024 2159.3 Q314.209 2162.12 310.968 2162.22 Q307.727 2162.28 305.076 2159.63 Q301.982 2156.54 302.473 2152.9 Q302.981 2149.25 307.089 2145.14 L311.312 2140.92 L311.017 2140.63 Q308.939 2138.55 306.434 2138.79 Q303.93 2139.01 301.458 2141.48 Q299.887 2143.05 298.774 2144.92 Q297.661 2146.78 297.039 2148.91 L294.256 2146.13 Q295.271 2143.84 296.515 2141.97 Q297.743 2140.09 299.216 2138.61 Q303.193 2134.64 307.22 2134.73 Q311.246 2134.83 315.437 2139.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M336.273 2116.98 L347.338 2128.04 L344.326 2131.05 L333.36 2120.08 Q330.757 2117.48 328.449 2117.2 Q326.141 2116.93 324.112 2118.96 Q321.673 2121.39 321.82 2124.36 Q321.968 2127.32 324.652 2130 L335.013 2140.37 L331.985 2143.39 L313.653 2125.06 L316.681 2122.03 L319.529 2124.88 Q318.956 2122.15 319.594 2119.87 Q320.249 2117.58 322.164 2115.67 Q325.323 2112.51 328.908 2112.85 Q332.476 2113.18 336.273 2116.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M345.8 2115.11 L334.702 2104.01 L337.714 2101 L348.697 2111.98 Q351.299 2114.59 353.624 2114.88 Q355.931 2115.16 357.961 2113.13 Q360.4 2110.69 360.253 2107.73 Q360.122 2104.75 357.437 2102.06 L347.044 2091.67 L350.055 2088.66 L368.388 2106.99 L365.376 2110 L362.561 2107.19 Q363.133 2109.95 362.495 2112.23 Q361.857 2114.47 359.942 2116.39 Q356.783 2119.54 353.182 2119.22 Q349.581 2118.89 345.8 2115.11 M341.838 2095.99 L341.838 2095.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M373.707 2083.24 Q370.057 2086.89 369.484 2089.13 Q368.911 2091.38 370.925 2093.39 Q372.529 2094.99 374.526 2094.89 Q376.523 2094.76 378.339 2092.95 Q380.844 2090.44 380.582 2087.17 Q380.32 2083.86 377.374 2080.92 L376.703 2080.24 L373.707 2083.24 M378.47 2075.99 L388.93 2086.45 L385.918 2089.46 L383.135 2086.68 Q383.774 2089.38 383.037 2091.72 Q382.284 2094.04 380.058 2096.27 Q377.243 2099.08 374.002 2099.18 Q370.761 2099.25 368.109 2096.6 Q365.016 2093.5 365.507 2089.87 Q366.014 2086.22 370.123 2082.11 L374.346 2077.89 L374.051 2077.59 Q371.972 2075.51 369.468 2075.76 Q366.964 2075.97 364.492 2078.44 Q362.921 2080.02 361.808 2081.88 Q360.695 2083.75 360.073 2085.88 L357.29 2083.09 Q358.305 2080.8 359.549 2078.94 Q360.776 2077.05 362.25 2075.58 Q366.227 2071.6 370.254 2071.7 Q374.28 2071.8 378.47 2075.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M390.239 2054.11 Q389.437 2054.32 388.7 2054.79 Q387.964 2055.23 387.244 2055.95 Q384.69 2058.51 384.985 2061.55 Q385.28 2064.56 388.389 2067.67 L398.047 2077.33 L395.019 2080.36 L376.686 2062.03 L379.714 2059 L382.562 2061.85 Q381.842 2059.23 382.562 2056.9 Q383.266 2054.56 385.443 2052.39 Q385.754 2052.08 386.18 2051.75 Q386.589 2051.4 387.129 2051.03 L390.239 2054.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M418.245 2060.54 Q420.242 2065.09 420.029 2067.3 Q419.816 2069.51 417.787 2071.54 L415.38 2073.94 L412.86 2071.42 L414.628 2069.65 Q415.872 2068.41 415.97 2067.13 Q416.068 2065.86 414.709 2062.83 L413.875 2060.91 L388.422 2050.29 L391.614 2047.1 L411.681 2055.71 L403.072 2035.64 L406.263 2032.45 L418.245 2060.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M417.291 2170.6 L431.335 2156.55 L434.118 2159.34 L423.38 2170.07 L430.582 2177.28 L440.272 2167.59 L443.055 2170.37 L433.365 2180.06 L445.035 2191.73 L441.729 2195.03 L417.291 2170.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M464.808 2152.12 L466.281 2153.59 L452.434 2167.44 Q455.74 2170.35 459.047 2170.32 Q462.353 2170.25 465.348 2167.26 Q467.083 2165.52 468.278 2163.48 Q469.489 2161.41 470.242 2158.96 L473.09 2161.81 Q472.157 2164.12 470.815 2166.18 Q469.473 2168.24 467.722 2169.99 Q463.335 2174.38 458.212 2174.39 Q453.105 2174.39 448.751 2170.04 Q444.25 2165.54 444.037 2160.48 Q443.824 2155.39 447.949 2151.27 Q451.648 2147.57 456.182 2147.81 Q460.716 2148.03 464.808 2152.12 M460.913 2154.25 Q458.408 2151.81 455.577 2151.69 Q452.761 2151.56 450.535 2153.79 Q448.014 2156.31 447.916 2159.25 Q447.834 2162.18 450.191 2165 L460.913 2154.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M483.681 2134.78 Q480.358 2131.46 477.101 2130.95 Q473.843 2130.41 471.454 2132.8 Q469.064 2135.19 469.588 2138.47 Q470.111 2141.71 473.434 2145.03 Q476.757 2148.35 480.014 2148.89 Q483.271 2149.4 485.661 2147.01 Q488.051 2144.62 487.527 2141.38 Q487.003 2138.11 483.681 2134.78 M467.034 2138.63 Q466.347 2136.04 467.001 2133.82 Q467.656 2131.56 469.669 2129.55 Q473.009 2126.21 477.739 2126.78 Q482.486 2127.34 486.807 2131.66 Q491.128 2135.98 491.685 2140.73 Q492.258 2145.46 488.918 2148.79 Q486.905 2150.81 484.663 2151.48 Q482.42 2152.12 479.834 2151.43 L482.584 2154.18 L479.556 2157.21 L454.087 2131.74 L457.115 2128.71 L467.034 2138.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M496.055 2109.67 Q495.253 2109.89 494.516 2110.36 Q493.78 2110.8 493.06 2111.52 Q490.506 2114.08 490.801 2117.12 Q491.095 2120.13 494.205 2123.24 L503.863 2132.9 L500.834 2135.93 L482.502 2117.6 L485.53 2114.57 L488.378 2117.42 Q487.658 2114.8 488.378 2112.47 Q489.082 2110.13 491.259 2107.96 Q491.57 2107.65 491.996 2107.32 Q492.405 2106.97 492.945 2106.6 L496.055 2109.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M507.185 2115.11 L496.088 2104.01 L499.099 2101 L510.082 2111.98 Q512.685 2114.59 515.009 2114.88 Q517.317 2115.16 519.347 2113.13 Q521.786 2110.69 521.638 2107.73 Q521.507 2104.75 518.823 2102.06 L508.429 2091.67 L511.441 2088.66 L529.773 2106.99 L526.762 2110 L523.946 2107.19 Q524.519 2109.95 523.881 2112.23 Q523.242 2114.47 521.327 2116.39 Q518.168 2119.54 514.567 2119.22 Q510.966 2118.89 507.185 2115.11 M503.224 2095.99 L503.224 2095.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M535.093 2083.24 Q531.443 2086.89 530.87 2089.13 Q530.297 2091.38 532.31 2093.39 Q533.914 2094.99 535.911 2094.89 Q537.908 2094.76 539.725 2092.95 Q542.229 2090.44 541.968 2087.17 Q541.706 2083.86 538.759 2080.92 L538.088 2080.24 L535.093 2083.24 M539.856 2075.99 L550.315 2086.45 L547.304 2089.46 L544.521 2086.68 Q545.159 2089.38 544.423 2091.72 Q543.67 2094.04 541.444 2096.27 Q538.628 2099.08 535.388 2099.18 Q532.147 2099.25 529.495 2096.6 Q526.401 2093.5 526.892 2089.87 Q527.4 2086.22 531.508 2082.11 L535.731 2077.89 L535.437 2077.59 Q533.358 2075.51 530.854 2075.76 Q528.349 2075.97 525.878 2078.44 Q524.306 2080.02 523.193 2081.88 Q522.08 2083.75 521.458 2085.88 L518.676 2083.09 Q519.69 2080.8 520.934 2078.94 Q522.162 2077.05 523.635 2075.58 Q527.613 2071.6 531.639 2071.7 Q535.666 2071.8 539.856 2075.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M551.625 2054.11 Q550.823 2054.32 550.086 2054.79 Q549.35 2055.23 548.629 2055.95 Q546.076 2058.51 546.371 2061.55 Q546.665 2064.56 549.775 2067.67 L559.432 2077.33 L556.404 2080.36 L538.072 2062.03 L541.1 2059 L543.948 2061.85 Q543.228 2059.23 543.948 2056.9 Q544.652 2054.56 546.829 2052.39 Q547.14 2052.08 547.565 2051.75 Q547.975 2051.4 548.515 2051.03 L551.625 2054.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M579.631 2060.54 Q581.627 2065.09 581.415 2067.3 Q581.202 2069.51 579.172 2071.54 L576.766 2073.94 L574.245 2071.42 L576.013 2069.65 Q577.257 2068.41 577.355 2067.13 Q577.454 2065.86 576.095 2062.83 L575.26 2060.91 L549.808 2050.29 L553 2047.1 L573.067 2055.71 L564.457 2035.64 L567.649 2032.45 L579.631 2060.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M626.881 2122.39 L631.808 2117.47 L654.674 2127.86 L644.313 2104.96 L649.24 2100.03 L673.678 2124.47 L670.453 2127.7 L648.995 2106.24 L659.454 2129.3 L656.131 2132.62 L633.068 2122.16 L654.527 2143.62 L651.319 2146.83 L626.881 2122.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M679.227 2100.49 Q675.576 2104.14 675.004 2106.38 Q674.431 2108.63 676.444 2110.64 Q678.048 2112.24 680.045 2112.15 Q682.042 2112.02 683.859 2110.2 Q686.363 2107.69 686.101 2104.42 Q685.839 2101.11 682.893 2098.17 L682.222 2097.5 L679.227 2100.49 M683.99 2093.24 L694.449 2103.7 L691.437 2106.71 L688.655 2103.93 Q689.293 2106.63 688.556 2108.97 Q687.803 2111.3 685.577 2113.52 Q682.762 2116.34 679.521 2116.43 Q676.28 2116.5 673.629 2113.85 Q670.535 2110.76 671.026 2107.12 Q671.534 2103.47 675.642 2099.36 L679.865 2095.14 L679.57 2094.85 Q677.492 2092.77 674.987 2093.01 Q672.483 2093.22 670.011 2095.7 Q668.44 2097.27 667.327 2099.13 Q666.214 2101 665.592 2103.13 L662.809 2100.35 Q663.824 2098.05 665.068 2096.19 Q666.296 2094.31 667.769 2092.83 Q671.746 2088.85 675.773 2088.95 Q679.799 2089.05 683.99 2093.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M695.758 2071.36 Q694.956 2071.57 694.22 2072.04 Q693.483 2072.49 692.763 2073.21 Q690.21 2075.76 690.504 2078.8 Q690.799 2081.82 693.909 2084.93 L703.566 2094.58 L700.538 2097.61 L682.206 2079.28 L685.234 2076.25 L688.082 2079.1 Q687.361 2076.48 688.082 2074.16 Q688.786 2071.82 690.962 2069.64 Q691.273 2069.33 691.699 2069 Q692.108 2068.66 692.648 2068.28 L695.758 2071.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M709.262 2053.63 L712.077 2056.45 Q710.097 2057.02 708.46 2057.97 Q706.823 2058.88 705.514 2060.19 Q702.584 2063.12 702.829 2066.61 Q703.059 2070.08 706.414 2073.44 Q709.769 2076.79 713.256 2077.04 Q716.726 2077.27 719.656 2074.34 Q720.965 2073.03 721.898 2071.41 Q722.831 2069.75 723.404 2067.77 L726.187 2070.56 Q725.516 2072.4 724.452 2074.06 Q723.404 2075.69 721.882 2077.22 Q717.741 2081.36 712.699 2081.19 Q707.658 2081.03 703.239 2076.61 Q698.754 2072.13 698.639 2067.1 Q698.541 2062.06 702.829 2057.77 Q704.221 2056.38 705.841 2055.35 Q707.445 2054.3 709.262 2053.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M736.302 2039.72 L747.367 2050.78 L744.355 2053.79 L733.389 2042.83 Q730.786 2040.22 728.478 2039.95 Q726.17 2039.67 724.141 2041.7 Q721.702 2044.14 721.849 2047.1 Q721.996 2050.06 724.681 2052.75 L735.042 2063.11 L732.014 2066.14 L706.545 2040.67 L709.573 2037.64 L719.558 2047.62 Q718.985 2044.89 719.623 2042.61 Q720.278 2040.32 722.193 2038.41 Q725.352 2035.25 728.937 2035.59 Q732.505 2035.92 736.302 2039.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M825.554 2091.62 L833.23 2108.27 L842.216 2099.28 L825.554 2091.62 M820.43 2090.23 L824.179 2086.48 L857.93 2101.61 L854.492 2105.04 L845.997 2101 L834.982 2112.02 L839.024 2120.51 L835.538 2124 L820.43 2090.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M861.531 2092.5 L871.253 2102.23 L868.225 2105.26 L842.92 2079.95 L845.948 2076.92 L848.731 2079.7 Q848.043 2077.12 848.698 2074.89 Q849.353 2072.63 851.366 2070.62 Q854.705 2067.28 859.436 2067.85 Q864.182 2068.41 868.503 2072.73 Q872.825 2077.05 873.381 2081.8 Q873.954 2086.53 870.615 2089.87 Q868.602 2091.88 866.359 2092.55 Q864.117 2093.19 861.531 2092.5 M865.377 2075.86 Q862.054 2072.54 858.797 2072.03 Q855.54 2071.49 853.15 2073.88 Q850.76 2076.27 851.284 2079.54 Q851.808 2082.78 855.131 2086.1 Q858.453 2089.43 861.711 2089.97 Q864.968 2090.48 867.358 2088.09 Q869.747 2085.7 869.224 2082.45 Q868.7 2079.18 865.377 2075.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M877.751 2050.75 Q876.949 2050.96 876.213 2051.44 Q875.476 2051.88 874.756 2052.6 Q872.203 2055.15 872.497 2058.2 Q872.792 2061.21 875.902 2064.32 L885.559 2073.98 L882.531 2077 L864.199 2058.67 L867.227 2055.64 L870.075 2058.49 Q869.355 2055.87 870.075 2053.55 Q870.779 2051.21 872.956 2049.03 Q873.267 2048.72 873.692 2048.39 Q874.101 2048.05 874.642 2047.67 L877.751 2050.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M878.095 2044.78 L881.107 2041.76 L899.439 2060.1 L896.427 2063.11 L878.095 2044.78 M870.959 2037.64 L873.97 2034.63 L877.784 2038.44 L874.772 2041.45 L870.959 2037.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M880.272 2028.33 L883.284 2025.31 L908.753 2050.78 L905.741 2053.79 L880.272 2028.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M980.687 2091.36 L985.613 2086.43 L1008.48 2096.83 L998.119 2073.93 L1003.05 2069 L1027.48 2093.44 L1024.26 2096.66 L1002.8 2075.2 L1013.26 2098.27 L1009.94 2101.59 L986.874 2091.13 L1008.33 2112.59 L1005.12 2115.8 L980.687 2091.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1033.03 2069.46 Q1029.38 2073.11 1028.81 2075.35 Q1028.24 2077.59 1030.25 2079.61 Q1031.85 2081.21 1033.85 2081.11 Q1035.85 2080.98 1037.66 2079.16 Q1040.17 2076.66 1039.91 2073.39 Q1039.64 2070.08 1036.7 2067.13 L1036.03 2066.46 L1033.03 2069.46 M1037.79 2062.21 L1048.25 2072.67 L1045.24 2075.68 L1042.46 2072.9 Q1043.1 2075.6 1042.36 2077.94 Q1041.61 2080.26 1039.38 2082.49 Q1036.57 2085.3 1033.33 2085.4 Q1030.09 2085.47 1027.43 2082.81 Q1024.34 2079.72 1024.83 2076.09 Q1025.34 2072.44 1029.45 2068.33 L1033.67 2064.11 L1033.38 2063.81 Q1031.3 2061.73 1028.79 2061.98 Q1026.29 2062.19 1023.82 2064.66 Q1022.25 2066.23 1021.13 2068.1 Q1020.02 2069.97 1019.4 2072.09 L1016.61 2069.31 Q1017.63 2067.02 1018.87 2065.15 Q1020.1 2063.27 1021.57 2061.8 Q1025.55 2057.82 1029.58 2057.92 Q1033.6 2058.02 1037.79 2062.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1063.79 2060.54 Q1065.78 2065.09 1065.57 2067.3 Q1065.36 2069.51 1063.33 2071.54 L1060.92 2073.94 L1058.4 2071.42 L1060.17 2069.65 Q1061.41 2068.41 1061.51 2067.13 Q1061.61 2065.86 1060.25 2062.83 L1059.42 2060.91 L1033.96 2050.29 L1037.16 2047.1 L1057.22 2055.71 L1048.61 2035.64 L1051.81 2032.45 L1063.79 2060.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1139.16 2094.27 L1142.47 2090.97 L1165.2 2113.7 Q1169.62 2118.12 1169.93 2121.8 Q1170.26 2125.47 1166.54 2129.19 L1165.28 2130.45 L1162.5 2127.66 L1163.53 2126.63 Q1165.72 2124.44 1165.4 2122.31 Q1165.07 2120.18 1161.89 2117.01 L1139.16 2094.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1165.81 2102.03 L1154.71 2090.93 L1157.72 2087.92 L1168.7 2098.9 Q1171.31 2101.51 1173.63 2101.8 Q1175.94 2102.08 1177.97 2100.05 Q1180.41 2097.61 1180.26 2094.65 Q1180.13 2091.67 1177.44 2088.99 L1167.05 2078.59 L1170.06 2075.58 L1188.39 2093.91 L1185.38 2096.92 L1182.57 2094.11 Q1183.14 2096.87 1182.5 2099.15 Q1181.86 2101.39 1179.95 2103.31 Q1176.79 2106.47 1173.19 2106.14 Q1169.59 2105.81 1165.81 2102.03 M1161.84 2082.91 L1161.84 2082.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1198.77 2061.41 L1209.84 2072.47 L1206.82 2075.48 L1195.86 2064.52 Q1193.26 2061.91 1190.95 2061.63 Q1188.64 2061.36 1186.61 2063.39 Q1184.17 2065.82 1184.32 2068.79 Q1184.47 2071.75 1187.15 2074.43 L1197.51 2084.8 L1194.48 2087.82 L1176.15 2069.49 L1179.18 2066.46 L1182.03 2069.31 Q1181.45 2066.58 1182.09 2064.3 Q1182.75 2062.01 1184.66 2060.1 Q1187.82 2056.94 1191.41 2057.28 Q1194.97 2057.61 1198.77 2061.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1221.6 2040.86 L1223.08 2042.34 L1209.23 2056.18 Q1212.54 2059.1 1215.84 2059.06 Q1219.15 2059 1222.15 2056 Q1223.88 2054.27 1225.07 2052.22 Q1226.29 2050.16 1227.04 2047.71 L1229.89 2050.55 Q1228.95 2052.86 1227.61 2054.92 Q1226.27 2056.99 1224.52 2058.74 Q1220.13 2063.12 1215.01 2063.14 Q1209.9 2063.14 1205.55 2058.79 Q1201.05 2054.29 1200.83 2049.23 Q1200.62 2044.14 1204.75 2040.01 Q1208.44 2036.31 1212.98 2036.56 Q1217.51 2036.77 1221.6 2040.86 M1217.71 2042.99 Q1215.2 2040.55 1212.37 2040.44 Q1209.56 2040.31 1207.33 2042.53 Q1204.81 2045.05 1204.71 2048 Q1204.63 2050.93 1206.99 2053.74 L1217.71 2042.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1312.48 2082.34 L1315.78 2079.03 L1338.52 2101.77 Q1342.94 2106.19 1343.25 2109.87 Q1343.58 2113.54 1339.86 2117.25 L1338.6 2118.51 L1335.82 2115.73 L1336.85 2114.7 Q1339.04 2112.51 1338.71 2110.38 Q1338.39 2108.25 1335.21 2105.08 L1312.48 2082.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1339.12 2090.1 L1328.03 2079 L1331.04 2075.99 L1342.02 2086.97 Q1344.62 2089.57 1346.95 2089.87 Q1349.26 2090.15 1351.29 2088.12 Q1353.72 2085.68 1353.58 2082.72 Q1353.45 2079.74 1350.76 2077.05 L1340.37 2066.66 L1343.38 2063.65 L1361.71 2081.98 L1358.7 2084.99 L1355.88 2082.18 Q1356.46 2084.94 1355.82 2087.22 Q1355.18 2089.46 1353.27 2091.38 Q1350.11 2094.53 1346.51 2094.21 Q1342.91 2093.88 1339.12 2090.1 M1335.16 2070.98 L1335.16 2070.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1342.45 2050.31 L1345.46 2047.3 L1370.93 2072.76 L1367.92 2075.78 L1342.45 2050.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1386.56 2060.54 Q1388.56 2065.09 1388.34 2067.3 Q1388.13 2069.51 1386.1 2071.54 L1383.69 2073.94 L1381.17 2071.42 L1382.94 2069.65 Q1384.19 2068.41 1384.28 2067.13 Q1384.38 2065.86 1383.02 2062.83 L1382.19 2060.91 L1356.74 2050.29 L1359.93 2047.1 L1380 2055.71 L1371.39 2035.64 L1374.58 2032.45 L1386.56 2060.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1428.06 2134.65 L1435.74 2151.3 L1444.73 2142.31 L1428.06 2134.65 M1422.94 2133.26 L1426.69 2129.51 L1460.44 2144.64 L1457 2148.07 L1448.51 2144.03 L1437.49 2155.05 L1441.54 2163.54 L1438.05 2167.03 L1422.94 2133.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1456.33 2134.28 L1445.23 2123.18 L1448.25 2120.17 L1459.23 2131.15 Q1461.83 2133.75 1464.16 2134.05 Q1466.46 2134.33 1468.49 2132.3 Q1470.93 2129.86 1470.79 2126.89 Q1470.65 2123.92 1467.97 2121.23 L1457.58 2110.84 L1460.59 2107.83 L1478.92 2126.16 L1475.91 2129.17 L1473.09 2126.35 Q1473.67 2129.12 1473.03 2131.4 Q1472.39 2133.64 1470.47 2135.55 Q1467.32 2138.71 1463.71 2138.38 Q1460.11 2138.06 1456.33 2134.28 M1452.37 2115.16 L1452.37 2115.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1487.81 2098.51 Q1484.53 2095.24 1481.38 2094.8 Q1478.23 2094.34 1475.79 2096.78 Q1473.37 2099.2 1473.81 2102.36 Q1474.27 2105.5 1477.55 2108.77 Q1480.8 2112.03 1483.95 2112.49 Q1487.1 2112.93 1489.53 2110.51 Q1491.97 2108.07 1491.51 2104.93 Q1491.07 2101.77 1487.81 2098.51 M1497.92 2102.6 Q1502.6 2107.29 1502.8 2111.64 Q1503.01 2116.01 1498.73 2120.3 Q1497.14 2121.89 1495.48 2123.05 Q1493.85 2124.23 1492.03 2125.06 L1489.1 2122.13 Q1491.15 2121.53 1492.78 2120.58 Q1494.42 2119.63 1495.76 2118.28 Q1498.73 2115.32 1498.64 2112.29 Q1498.58 2109.28 1495.45 2106.16 L1493.96 2104.67 Q1494.65 2107.22 1494 2109.48 Q1493.34 2111.74 1491.31 2113.77 Q1487.94 2117.14 1483.31 2116.63 Q1478.67 2116.12 1474.44 2111.88 Q1470.18 2107.63 1469.67 2103 Q1469.16 2098.36 1472.54 2094.99 Q1474.57 2092.96 1476.82 2092.31 Q1479.08 2091.65 1481.64 2092.34 L1478.85 2089.56 L1481.87 2086.55 L1497.92 2102.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1498.86 2091.75 L1487.76 2080.65 L1490.77 2077.64 L1501.75 2088.63 Q1504.36 2091.23 1506.68 2091.52 Q1508.99 2091.8 1511.02 2089.77 Q1513.46 2087.33 1513.31 2084.37 Q1513.18 2081.39 1510.49 2078.71 L1500.1 2068.31 L1503.11 2065.3 L1521.44 2083.63 L1518.43 2086.64 L1515.62 2083.83 Q1516.19 2086.6 1515.55 2088.87 Q1514.91 2091.11 1513 2093.03 Q1509.84 2096.19 1506.24 2095.86 Q1502.64 2095.53 1498.86 2091.75 M1494.9 2072.63 L1494.9 2072.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1521.54 2047.95 L1524.39 2050.8 Q1522.46 2051.42 1520.76 2052.47 Q1519.05 2053.52 1517.58 2054.99 Q1515.34 2057.23 1514.9 2059.05 Q1514.47 2060.85 1515.85 2062.22 Q1516.89 2063.27 1518.3 2063.07 Q1519.69 2062.86 1522.66 2060.98 L1523.92 2060.18 Q1527.81 2057.66 1530.41 2057.58 Q1533.02 2057.46 1535.26 2059.7 Q1537.81 2062.26 1537.27 2065.78 Q1536.75 2069.28 1533.21 2072.81 Q1531.74 2074.29 1529.84 2075.6 Q1527.98 2076.91 1525.63 2078.1 L1522.52 2074.99 Q1525.06 2074.19 1527.12 2073.01 Q1529.17 2071.82 1530.76 2070.23 Q1532.89 2068.1 1533.31 2066.23 Q1533.72 2064.35 1532.39 2063.03 Q1531.17 2061.8 1529.68 2061.98 Q1528.2 2062.14 1524.8 2064.34 L1523.51 2065.14 Q1520.12 2067.35 1517.66 2067.38 Q1515.19 2067.4 1513.06 2065.27 Q1510.48 2062.68 1510.9 2059.44 Q1511.33 2056.2 1514.7 2052.83 Q1516.37 2051.16 1518.09 2049.93 Q1519.81 2048.7 1521.54 2047.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1524.55 2033.45 L1529.76 2038.65 L1535.96 2032.45 L1538.3 2034.79 L1532.1 2040.99 L1542.05 2050.95 Q1544.29 2053.19 1545.54 2053.22 Q1546.8 2053.24 1548.68 2051.36 L1551.77 2048.26 L1554.3 2050.78 L1551.2 2053.88 Q1547.72 2057.36 1545.1 2057.4 Q1542.46 2057.41 1539.02 2053.97 L1529.07 2044.02 L1526.86 2046.23 L1524.52 2043.89 L1526.73 2041.68 L1521.53 2036.48 L1524.55 2033.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1524.7 2194.49 L1527.92 2197.72 Q1525.14 2198.7 1523.03 2199.93 Q1520.92 2201.16 1519.36 2202.71 Q1516.66 2205.41 1516.24 2207.93 Q1515.83 2210.44 1517.76 2212.37 Q1519.38 2213.99 1521.18 2213.86 Q1522.98 2213.69 1526.2 2211.48 L1528.61 2209.9 Q1533.01 2206.9 1536.55 2206.93 Q1540.08 2206.93 1543.06 2209.91 Q1546.61 2213.47 1546.06 2217.69 Q1545.52 2221.89 1540.92 2226.49 Q1539.18 2228.23 1536.83 2229.8 Q1534.49 2231.36 1531.62 2232.68 L1528.22 2229.28 Q1531.36 2228.39 1533.86 2227.03 Q1536.37 2225.68 1538.23 2223.81 Q1541.07 2220.98 1541.49 2218.33 Q1541.92 2215.67 1539.85 2213.61 Q1538.05 2211.81 1535.93 2211.91 Q1533.81 2211.99 1530.79 2214.01 L1528.38 2215.63 Q1523.94 2218.59 1520.72 2218.67 Q1517.5 2218.75 1514.7 2215.95 Q1511.46 2212.71 1511.87 2208.57 Q1512.29 2204.41 1516.3 2200.4 Q1518.02 2198.68 1520.11 2197.21 Q1522.21 2195.74 1524.7 2194.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1560.59 2186.03 L1562.07 2187.51 L1548.22 2201.35 Q1551.53 2204.27 1554.83 2204.23 Q1558.14 2204.17 1561.13 2201.17 Q1562.87 2199.44 1564.06 2197.39 Q1565.27 2195.33 1566.03 2192.87 L1568.88 2195.72 Q1567.94 2198.03 1566.6 2200.09 Q1565.26 2202.15 1563.51 2203.91 Q1559.12 2208.29 1554 2208.31 Q1548.89 2208.31 1544.54 2203.96 Q1540.03 2199.45 1539.82 2194.4 Q1539.61 2189.31 1543.73 2185.18 Q1547.43 2181.48 1551.97 2181.73 Q1556.5 2181.94 1560.59 2186.03 M1556.7 2188.16 Q1554.19 2185.72 1551.36 2185.61 Q1548.55 2185.48 1546.32 2187.7 Q1543.8 2190.22 1543.7 2193.17 Q1543.62 2196.1 1545.98 2198.91 L1556.7 2188.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1575.62 2185.34 L1585.34 2195.07 L1582.31 2198.1 L1557.01 2172.79 L1560.04 2169.76 L1562.82 2172.54 Q1562.13 2169.96 1562.79 2167.73 Q1563.44 2165.47 1565.45 2163.46 Q1568.79 2160.12 1573.52 2160.69 Q1578.27 2161.25 1582.59 2165.57 Q1586.91 2169.89 1587.47 2174.64 Q1588.04 2179.37 1584.7 2182.71 Q1582.69 2184.72 1580.45 2185.39 Q1578.21 2186.03 1575.62 2185.34 M1579.47 2168.7 Q1576.14 2165.38 1572.89 2164.87 Q1569.63 2164.33 1567.24 2166.72 Q1564.85 2169.11 1565.37 2172.38 Q1565.9 2175.62 1569.22 2178.94 Q1572.54 2182.27 1575.8 2182.81 Q1579.06 2183.32 1581.45 2180.93 Q1583.84 2178.54 1583.31 2175.29 Q1582.79 2172.02 1579.47 2168.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1576.18 2143.21 L1581.38 2148.42 L1587.58 2142.21 L1589.92 2144.56 L1583.72 2150.76 L1593.67 2160.71 Q1595.92 2162.95 1597.16 2162.99 Q1598.42 2163 1600.3 2161.12 L1603.4 2158.03 L1605.92 2160.55 L1602.82 2163.64 Q1599.34 2167.13 1596.72 2167.16 Q1594.08 2167.18 1590.64 2163.74 L1580.69 2153.79 L1578.48 2156 L1576.14 2153.66 L1578.35 2151.45 L1573.15 2146.24 L1576.18 2143.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1615.64 2130.99 L1617.11 2132.46 L1603.26 2146.31 Q1606.57 2149.22 1609.88 2149.19 Q1613.18 2149.12 1616.18 2146.13 Q1617.91 2144.39 1619.11 2142.35 Q1620.32 2140.28 1621.07 2137.83 L1623.92 2140.68 Q1622.99 2142.98 1621.65 2145.05 Q1620.3 2147.11 1618.55 2148.86 Q1614.17 2153.25 1609.04 2153.26 Q1603.94 2153.26 1599.58 2148.91 Q1595.08 2144.41 1594.87 2139.35 Q1594.66 2134.26 1598.78 2130.14 Q1602.48 2126.44 1607.01 2126.68 Q1611.55 2126.89 1615.64 2130.99 M1611.74 2133.11 Q1609.24 2130.68 1606.41 2130.56 Q1603.59 2130.43 1601.37 2132.66 Q1598.85 2135.18 1598.75 2138.12 Q1598.67 2141.05 1601.02 2143.87 L1611.74 2133.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1629.96 2106.88 Q1629.06 2103.72 1629.67 2101.18 Q1630.27 2098.64 1632.4 2096.51 Q1635.26 2093.65 1638.83 2094.11 Q1642.38 2094.55 1646.08 2098.25 L1657.15 2109.31 L1654.12 2112.34 L1643.15 2101.38 Q1640.52 2098.74 1638.31 2098.4 Q1636.1 2098.05 1634.18 2099.97 Q1631.84 2102.31 1632.04 2105.22 Q1632.24 2108.14 1634.92 2110.82 L1645.28 2121.18 L1642.25 2124.21 L1631.29 2113.24 Q1628.64 2110.59 1626.44 2110.26 Q1624.23 2109.92 1622.28 2111.87 Q1619.98 2114.18 1620.19 2117.11 Q1620.39 2120.02 1623.05 2122.69 L1633.41 2133.05 L1630.39 2136.08 L1612.05 2117.74 L1615.08 2114.72 L1617.93 2117.56 Q1617.28 2114.85 1617.91 2112.6 Q1618.55 2110.36 1620.53 2108.38 Q1622.53 2106.38 1624.94 2106.01 Q1627.36 2105.62 1629.96 2106.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1667.17 2081 Q1663.84 2077.68 1660.59 2077.17 Q1657.33 2076.63 1654.94 2079.02 Q1652.55 2081.41 1653.07 2084.68 Q1653.6 2087.92 1656.92 2091.24 Q1660.24 2094.57 1663.5 2095.11 Q1666.76 2095.61 1669.15 2093.22 Q1671.54 2090.84 1671.01 2087.59 Q1670.49 2084.32 1667.17 2081 M1650.52 2084.84 Q1649.83 2082.26 1650.49 2080.03 Q1651.14 2077.77 1653.15 2075.76 Q1656.49 2072.42 1661.22 2072.99 Q1665.97 2073.55 1670.29 2077.87 Q1674.61 2082.19 1675.17 2086.94 Q1675.74 2091.67 1672.4 2095.01 Q1670.39 2097.02 1668.15 2097.69 Q1665.91 2098.33 1663.32 2097.64 L1666.07 2100.39 L1663.04 2103.42 L1637.57 2077.95 L1640.6 2074.93 L1650.52 2084.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1690.2 2056.43 L1691.67 2057.9 L1677.82 2071.75 Q1681.13 2074.66 1684.43 2074.63 Q1687.74 2074.57 1690.74 2071.57 Q1692.47 2069.83 1693.67 2067.79 Q1694.88 2065.73 1695.63 2063.27 L1698.48 2066.12 Q1697.55 2068.43 1696.2 2070.49 Q1694.86 2072.55 1693.11 2074.3 Q1688.72 2078.69 1683.6 2078.71 Q1678.49 2078.71 1674.14 2074.35 Q1669.64 2069.85 1669.42 2064.79 Q1669.21 2059.7 1673.34 2055.58 Q1677.04 2051.88 1681.57 2052.12 Q1686.1 2052.34 1690.2 2056.43 M1686.3 2058.56 Q1683.8 2056.12 1680.96 2056 Q1678.15 2055.87 1675.92 2058.1 Q1673.4 2060.62 1673.3 2063.57 Q1673.22 2066.5 1675.58 2069.31 L1686.3 2058.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1700.16 2035.27 Q1699.36 2035.48 1698.63 2035.95 Q1697.89 2036.39 1697.17 2037.11 Q1694.62 2039.67 1694.91 2042.71 Q1695.2 2045.72 1698.31 2048.83 L1707.97 2058.49 L1704.94 2061.52 L1686.61 2043.19 L1689.64 2040.16 L1692.49 2043.01 Q1691.77 2040.39 1692.49 2038.06 Q1693.19 2035.72 1695.37 2033.55 Q1695.68 2033.24 1696.1 2032.91 Q1696.51 2032.56 1697.05 2032.19 L1700.16 2035.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1733.93 2149.53 Q1730.33 2153.13 1730.88 2157.94 Q1731.46 2162.74 1736.09 2167.37 Q1740.7 2171.99 1745.5 2172.56 Q1750.31 2173.12 1753.91 2169.52 Q1757.51 2165.92 1756.92 2161.14 Q1756.35 2156.34 1751.74 2151.72 Q1747.1 2147.09 1742.31 2146.52 Q1737.53 2145.93 1733.93 2149.53 M1731.24 2146.85 Q1736.38 2141.71 1742.91 2142.08 Q1749.43 2142.44 1755.22 2148.24 Q1761 2154.02 1761.38 2160.55 Q1761.74 2167.06 1756.6 2172.2 Q1751.44 2177.36 1744.91 2177.01 Q1738.4 2176.65 1732.6 2170.86 Q1726.81 2165.06 1726.45 2158.55 Q1726.09 2152 1731.24 2146.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1768.02 2124.57 L1770.84 2127.39 Q1768.86 2127.96 1767.22 2128.91 Q1765.58 2129.82 1764.27 2131.13 Q1761.34 2134.06 1761.59 2137.55 Q1761.82 2141.02 1765.17 2144.38 Q1768.53 2147.73 1772.02 2147.98 Q1775.49 2148.21 1778.42 2145.28 Q1779.73 2143.97 1780.66 2142.35 Q1781.59 2140.69 1782.16 2138.71 L1784.95 2141.49 Q1784.28 2143.34 1783.21 2145 Q1782.16 2146.63 1780.64 2148.16 Q1776.5 2152.3 1771.46 2152.13 Q1766.42 2151.97 1762 2147.55 Q1757.51 2143.07 1757.4 2138.04 Q1757.3 2133 1761.59 2128.71 Q1762.98 2127.32 1764.6 2126.29 Q1766.21 2125.24 1768.02 2124.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1770.33 2110.44 L1775.54 2115.65 L1781.74 2109.45 L1784.08 2111.79 L1777.88 2117.99 L1787.83 2127.94 Q1790.07 2130.18 1791.31 2130.22 Q1792.57 2130.23 1794.46 2128.35 L1797.55 2125.26 L1800.07 2127.78 L1796.98 2130.87 Q1793.49 2134.36 1790.87 2134.39 Q1788.24 2134.41 1784.8 2130.97 L1774.85 2121.02 L1772.64 2123.23 L1770.3 2120.89 L1772.51 2118.68 L1767.3 2113.47 L1770.33 2110.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1794.91 2100.49 Q1792.49 2102.91 1792.98 2106.22 Q1793.46 2109.51 1796.75 2112.8 Q1800.04 2116.09 1803.33 2116.6 Q1806.62 2117.07 1809.06 2114.63 Q1811.46 2112.23 1810.97 2108.92 Q1810.48 2105.62 1807.21 2102.34 Q1803.95 2099.08 1800.64 2098.59 Q1797.32 2098.09 1794.91 2100.49 M1792.36 2097.94 Q1796.29 2094.01 1801.09 2094.32 Q1805.88 2094.63 1810.4 2099.15 Q1814.9 2103.65 1815.23 2108.46 Q1815.54 2113.26 1811.61 2117.19 Q1807.67 2121.13 1802.87 2120.82 Q1798.07 2120.48 1793.57 2115.98 Q1789.06 2111.46 1788.73 2106.68 Q1788.42 2101.88 1792.36 2097.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1828.55 2081 Q1825.23 2077.68 1821.97 2077.17 Q1818.71 2076.63 1816.32 2079.02 Q1813.93 2081.41 1814.46 2084.68 Q1814.98 2087.92 1818.31 2091.24 Q1821.63 2094.57 1824.89 2095.11 Q1828.14 2095.61 1830.53 2093.22 Q1832.92 2090.84 1832.4 2087.59 Q1831.87 2084.32 1828.55 2081 M1811.91 2084.84 Q1811.22 2082.26 1811.87 2080.03 Q1812.53 2077.77 1814.54 2075.76 Q1817.88 2072.42 1822.61 2072.99 Q1827.36 2073.55 1831.68 2077.87 Q1836 2082.19 1836.56 2086.94 Q1837.13 2091.67 1833.79 2095.01 Q1831.78 2097.02 1829.53 2097.69 Q1827.29 2098.33 1824.7 2097.64 L1827.45 2100.39 L1824.43 2103.42 L1798.96 2077.95 L1801.99 2074.93 L1811.91 2084.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1851.58 2056.43 L1853.05 2057.9 L1839.21 2071.75 Q1842.51 2074.66 1845.82 2074.63 Q1849.13 2074.57 1852.12 2071.57 Q1853.86 2069.83 1855.05 2067.79 Q1856.26 2065.73 1857.02 2063.27 L1859.86 2066.12 Q1858.93 2068.43 1857.59 2070.49 Q1856.25 2072.55 1854.49 2074.3 Q1850.11 2078.69 1844.99 2078.71 Q1839.88 2078.71 1835.52 2074.35 Q1831.02 2069.85 1830.81 2064.79 Q1830.6 2059.7 1834.72 2055.58 Q1838.42 2051.88 1842.96 2052.12 Q1847.49 2052.34 1851.58 2056.43 M1847.69 2058.56 Q1845.18 2056.12 1842.35 2056 Q1839.53 2055.87 1837.31 2058.1 Q1834.79 2060.62 1834.69 2063.57 Q1834.61 2066.5 1836.96 2069.31 L1847.69 2058.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1861.55 2035.27 Q1860.75 2035.48 1860.01 2035.95 Q1859.27 2036.39 1858.55 2037.11 Q1856 2039.67 1856.3 2042.71 Q1856.59 2045.72 1859.7 2048.83 L1869.36 2058.49 L1866.33 2061.52 L1848 2043.19 L1851.02 2040.16 L1853.87 2043.01 Q1853.15 2040.39 1853.87 2038.06 Q1854.58 2035.72 1856.75 2033.55 Q1857.06 2033.24 1857.49 2032.91 Q1857.9 2032.56 1858.44 2032.19 L1861.55 2035.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1842.92 2197.44 L1847.37 2192.99 L1878.65 2202.6 L1858.21 2182.15 L1861.41 2178.94 L1885.85 2203.38 L1881.4 2207.83 L1850.12 2198.23 L1870.56 2218.67 L1867.36 2221.88 L1842.92 2197.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1883.18 2173.61 Q1880.76 2176.03 1881.25 2179.34 Q1881.73 2182.63 1885.02 2185.92 Q1888.31 2189.21 1891.6 2189.72 Q1894.89 2190.19 1897.33 2187.75 Q1899.73 2185.34 1899.24 2182.04 Q1898.75 2178.73 1895.48 2175.46 Q1892.22 2172.2 1888.91 2171.71 Q1885.59 2171.2 1883.18 2173.61 M1880.63 2171.06 Q1884.56 2167.13 1889.36 2167.44 Q1894.15 2167.75 1898.67 2172.27 Q1903.17 2176.77 1903.5 2181.58 Q1903.81 2186.38 1899.88 2190.3 Q1895.93 2194.25 1891.14 2193.94 Q1886.34 2193.59 1881.84 2189.09 Q1877.32 2184.58 1877 2179.8 Q1876.69 2175 1880.63 2171.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1892.32 2160.25 L1895.51 2157.06 L1916.62 2166.72 L1906.97 2145.6 L1910.16 2142.41 L1921.62 2167.62 L1917.52 2171.71 L1892.32 2160.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1938.41 2130.99 L1939.88 2132.46 L1926.04 2146.31 Q1929.34 2149.22 1932.65 2149.19 Q1935.96 2149.12 1938.95 2146.13 Q1940.69 2144.39 1941.88 2142.35 Q1943.09 2140.28 1943.84 2137.83 L1946.69 2140.68 Q1945.76 2142.98 1944.42 2145.05 Q1943.08 2147.11 1941.32 2148.86 Q1936.94 2153.25 1931.81 2153.26 Q1926.71 2153.26 1922.35 2148.91 Q1917.85 2144.41 1917.64 2139.35 Q1917.43 2134.26 1921.55 2130.14 Q1925.25 2126.44 1929.78 2126.68 Q1934.32 2126.89 1938.41 2130.99 M1934.51 2133.11 Q1932.01 2130.68 1929.18 2130.56 Q1926.36 2130.43 1924.14 2132.66 Q1921.62 2135.18 1921.52 2138.12 Q1921.44 2141.05 1923.79 2143.87 L1934.51 2133.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1952.73 2106.88 Q1951.83 2103.72 1952.44 2101.18 Q1953.04 2098.64 1955.17 2096.51 Q1958.04 2093.65 1961.6 2094.11 Q1965.16 2094.55 1968.85 2098.25 L1979.92 2109.31 L1976.89 2112.34 L1965.93 2101.38 Q1963.29 2098.74 1961.08 2098.4 Q1958.87 2098.05 1956.96 2099.97 Q1954.61 2102.31 1954.81 2105.22 Q1955.01 2108.14 1957.69 2110.82 L1968.05 2121.18 L1965.02 2124.21 L1954.06 2113.24 Q1951.41 2110.59 1949.21 2110.26 Q1947 2109.92 1945.06 2111.87 Q1942.75 2114.18 1942.96 2117.11 Q1943.16 2120.02 1945.83 2122.69 L1956.19 2133.05 L1953.16 2136.08 L1934.83 2117.74 L1937.85 2114.72 L1940.7 2117.56 Q1940.05 2114.85 1940.69 2112.6 Q1941.32 2110.36 1943.3 2108.38 Q1945.3 2106.38 1947.71 2106.01 Q1950.13 2105.62 1952.73 2106.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M1989.94 2081 Q1986.61 2077.68 1983.36 2077.17 Q1980.1 2076.63 1977.71 2079.02 Q1975.32 2081.41 1975.84 2084.68 Q1976.37 2087.92 1979.69 2091.24 Q1983.01 2094.57 1986.27 2095.11 Q1989.53 2095.61 1991.92 2093.22 Q1994.31 2090.84 1993.78 2087.59 Q1993.26 2084.32 1989.94 2081 M1973.29 2084.84 Q1972.6 2082.26 1973.26 2080.03 Q1973.91 2077.77 1975.93 2075.76 Q1979.27 2072.42 1984 2072.99 Q1988.74 2073.55 1993.06 2077.87 Q1997.38 2082.19 1997.94 2086.94 Q1998.51 2091.67 1995.17 2095.01 Q1993.16 2097.02 1990.92 2097.69 Q1988.68 2098.33 1986.09 2097.64 L1988.84 2100.39 L1985.81 2103.42 L1960.34 2077.95 L1963.37 2074.93 L1973.29 2084.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2012.97 2056.43 L2014.44 2057.9 L2000.59 2071.75 Q2003.9 2074.66 2007.21 2074.63 Q2010.51 2074.57 2013.51 2071.57 Q2015.24 2069.83 2016.44 2067.79 Q2017.65 2065.73 2018.4 2063.27 L2021.25 2066.12 Q2020.32 2068.43 2018.97 2070.49 Q2017.63 2072.55 2015.88 2074.3 Q2011.49 2078.69 2006.37 2078.71 Q2001.26 2078.71 1996.91 2074.35 Q1992.41 2069.85 1992.2 2064.79 Q1991.98 2059.7 1996.11 2055.58 Q1999.81 2051.88 2004.34 2052.12 Q2008.88 2052.34 2012.97 2056.43 M2009.07 2058.56 Q2006.57 2056.12 2003.74 2056 Q2000.92 2055.87 1998.69 2058.1 Q1996.17 2060.62 1996.08 2063.57 Q1995.99 2066.5 1998.35 2069.31 L2009.07 2058.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2022.94 2035.27 Q2022.13 2035.48 2021.4 2035.95 Q2020.66 2036.39 2019.94 2037.11 Q2017.39 2039.67 2017.68 2042.71 Q2017.98 2045.72 2021.09 2048.83 L2030.74 2058.49 L2027.71 2061.52 L2009.38 2043.19 L2012.41 2040.16 L2015.26 2043.01 Q2014.54 2040.39 2015.26 2038.06 Q2015.96 2035.72 2018.14 2033.55 Q2018.45 2033.24 2018.88 2032.91 Q2019.29 2032.56 2019.83 2032.19 L2022.94 2035.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2010.88 2196.29 L2029.89 2215.3 L2033.88 2211.3 Q2038.94 2206.25 2038.99 2201.61 Q2039.05 2196.97 2034.11 2192.02 Q2029.2 2187.11 2024.57 2187.19 Q2019.94 2187.24 2014.88 2192.3 L2010.88 2196.29 M2004.86 2196.88 L2011.65 2190.09 Q2018.76 2182.99 2025.04 2182.63 Q2031.31 2182.25 2037.6 2188.54 Q2043.92 2194.85 2043.54 2201.16 Q2043.16 2207.46 2036.09 2214.53 L2029.3 2221.32 L2004.86 2196.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2060.74 2170.04 L2062.21 2171.51 L2048.37 2185.36 Q2051.67 2188.27 2054.98 2188.24 Q2058.29 2188.18 2061.28 2185.18 Q2063.02 2183.45 2064.21 2181.4 Q2065.42 2179.34 2066.18 2176.88 L2069.02 2179.73 Q2068.09 2182.04 2066.75 2184.1 Q2065.41 2186.16 2063.66 2187.91 Q2059.27 2192.3 2054.15 2192.32 Q2049.04 2192.32 2044.68 2187.96 Q2040.18 2183.46 2039.97 2178.4 Q2039.76 2173.31 2043.88 2169.19 Q2047.58 2165.49 2052.12 2165.74 Q2056.65 2165.95 2060.74 2170.04 M2056.85 2172.17 Q2054.34 2169.73 2051.51 2169.61 Q2048.69 2169.48 2046.47 2171.71 Q2043.95 2174.23 2043.85 2177.18 Q2043.77 2180.11 2046.12 2182.92 L2056.85 2172.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2071.17 2144.2 L2073.98 2147.01 Q2072 2147.58 2070.37 2148.53 Q2068.73 2149.45 2067.42 2150.76 Q2064.49 2153.69 2064.74 2157.18 Q2064.96 2160.65 2068.32 2164 Q2071.68 2167.36 2075.16 2167.6 Q2078.63 2167.83 2081.56 2164.9 Q2082.87 2163.59 2083.8 2161.97 Q2084.74 2160.32 2085.31 2158.34 L2088.09 2161.12 Q2087.42 2162.97 2086.36 2164.62 Q2085.31 2166.26 2083.79 2167.78 Q2079.65 2171.92 2074.61 2171.76 Q2069.56 2171.6 2065.14 2167.18 Q2060.66 2162.69 2060.55 2157.67 Q2060.45 2152.62 2064.74 2148.34 Q2066.13 2146.95 2067.75 2145.91 Q2069.35 2144.87 2071.17 2144.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2099.8 2130.99 L2101.27 2132.46 L2087.42 2146.31 Q2090.73 2149.22 2094.03 2149.19 Q2097.34 2149.12 2100.34 2146.13 Q2102.07 2144.39 2103.27 2142.35 Q2104.48 2140.28 2105.23 2137.83 L2108.08 2140.68 Q2107.15 2142.98 2105.8 2145.05 Q2104.46 2147.11 2102.71 2148.86 Q2098.32 2153.25 2093.2 2153.26 Q2088.09 2153.26 2083.74 2148.91 Q2079.24 2144.41 2079.02 2139.35 Q2078.81 2134.26 2082.94 2130.14 Q2086.64 2126.44 2091.17 2126.68 Q2095.7 2126.89 2099.8 2130.99 M2095.9 2133.11 Q2093.4 2130.68 2090.56 2130.56 Q2087.75 2130.43 2085.52 2132.66 Q2083 2135.18 2082.9 2138.12 Q2082.82 2141.05 2085.18 2143.87 L2095.9 2133.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2114.12 2106.88 Q2113.22 2103.72 2113.82 2101.18 Q2114.43 2098.64 2116.56 2096.51 Q2119.42 2093.65 2122.99 2094.11 Q2126.54 2094.55 2130.24 2098.25 L2141.31 2109.31 L2138.28 2112.34 L2127.31 2101.38 Q2124.68 2098.74 2122.47 2098.4 Q2120.26 2098.05 2118.34 2099.97 Q2116 2102.31 2116.2 2105.22 Q2116.39 2108.14 2119.08 2110.82 L2129.44 2121.18 L2126.41 2124.21 L2115.44 2113.24 Q2112.79 2110.59 2110.6 2110.26 Q2108.39 2109.92 2106.44 2111.87 Q2104.13 2114.18 2104.35 2117.11 Q2104.54 2120.02 2107.21 2122.69 L2117.57 2133.05 L2114.54 2136.08 L2096.21 2117.74 L2099.24 2114.72 L2102.09 2117.56 Q2101.43 2114.85 2102.07 2112.6 Q2102.71 2110.36 2104.69 2108.38 Q2106.69 2106.38 2109.09 2106.01 Q2111.52 2105.62 2114.12 2106.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2151.32 2081 Q2148 2077.68 2144.74 2077.17 Q2141.49 2076.63 2139.1 2079.02 Q2136.71 2081.41 2137.23 2084.68 Q2137.75 2087.92 2141.08 2091.24 Q2144.4 2094.57 2147.66 2095.11 Q2150.91 2095.61 2153.3 2093.22 Q2155.69 2090.84 2155.17 2087.59 Q2154.65 2084.32 2151.32 2081 M2134.68 2084.84 Q2133.99 2082.26 2134.64 2080.03 Q2135.3 2077.77 2137.31 2075.76 Q2140.65 2072.42 2145.38 2072.99 Q2150.13 2073.55 2154.45 2077.87 Q2158.77 2082.19 2159.33 2086.94 Q2159.9 2091.67 2156.56 2095.01 Q2154.55 2097.02 2152.3 2097.69 Q2150.06 2098.33 2147.48 2097.64 L2150.23 2100.39 L2147.2 2103.42 L2121.73 2077.95 L2124.76 2074.93 L2134.68 2084.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2174.35 2056.43 L2175.83 2057.9 L2161.98 2071.75 Q2165.28 2074.66 2168.59 2074.63 Q2171.9 2074.57 2174.89 2071.57 Q2176.63 2069.83 2177.82 2067.79 Q2179.03 2065.73 2179.79 2063.27 L2182.64 2066.12 Q2181.7 2068.43 2180.36 2070.49 Q2179.02 2072.55 2177.27 2074.3 Q2172.88 2078.69 2167.76 2078.71 Q2162.65 2078.71 2158.3 2074.35 Q2153.79 2069.85 2153.58 2064.79 Q2153.37 2059.7 2157.49 2055.58 Q2161.19 2051.88 2165.73 2052.12 Q2170.26 2052.34 2174.35 2056.43 M2170.46 2058.56 Q2167.95 2056.12 2165.12 2056 Q2162.31 2055.87 2160.08 2058.1 Q2157.56 2060.62 2157.46 2063.57 Q2157.38 2066.5 2159.74 2069.31 L2170.46 2058.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M2184.32 2035.27 Q2183.52 2035.48 2182.78 2035.95 Q2182.05 2036.39 2181.33 2037.11 Q2178.77 2039.67 2179.07 2042.71 Q2179.36 2045.72 2182.47 2048.83 L2192.13 2058.49 L2189.1 2061.52 L2170.77 2043.19 L2173.8 2040.16 L2176.64 2043.01 Q2175.92 2040.39 2176.64 2038.06 Q2177.35 2035.72 2179.53 2033.55 Q2179.84 2033.24 2180.26 2032.91 Q2180.67 2032.56 2181.21 2032.19 L2184.32 2035.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,1980.89 2352.76,1980.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,1802.45 2352.76,1802.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,1624.01 2352.76,1624.01 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,1445.57 2352.76,1445.57 \n", " \"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 213.027,1267.13 2352.76,1267.13 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,2002.26 213.027,1247.24 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,1980.89 238.704,1980.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,1802.45 238.704,1802.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,1624.01 238.704,1624.01 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,1445.57 238.704,1445.57 \n", " \"/>\n", "<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 213.027,1267.13 238.704,1267.13 \n", " \"/>\n", "<path clip-path=\"url(#clip940)\" d=\"M165.083 1966.69 Q161.472 1966.69 159.643 1970.25 Q157.838 1973.79 157.838 1980.92 Q157.838 1988.03 159.643 1991.59 Q161.472 1995.14 165.083 1995.14 Q168.717 1995.14 170.523 1991.59 Q172.352 1988.03 172.352 1980.92 Q172.352 1973.79 170.523 1970.25 Q168.717 1966.69 165.083 1966.69 M165.083 1962.98 Q170.893 1962.98 173.949 1967.59 Q177.027 1972.17 177.027 1980.92 Q177.027 1989.65 173.949 1994.26 Q170.893 1998.84 165.083 1998.84 Q159.273 1998.84 156.194 1994.26 Q153.139 1989.65 153.139 1980.92 Q153.139 1972.17 156.194 1967.59 Q159.273 1962.98 165.083 1962.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M160.708 1815.79 L177.027 1815.79 L177.027 1819.73 L155.083 1819.73 L155.083 1815.79 Q157.745 1813.04 162.328 1808.41 Q166.935 1803.76 168.115 1802.41 Q170.361 1799.89 171.24 1798.15 Q172.143 1796.39 172.143 1794.71 Q172.143 1791.95 170.199 1790.21 Q168.278 1788.48 165.176 1788.48 Q162.977 1788.48 160.523 1789.24 Q158.092 1790.01 155.315 1791.56 L155.315 1786.83 Q158.139 1785.7 160.592 1785.12 Q163.046 1784.54 165.083 1784.54 Q170.453 1784.54 173.648 1787.23 Q176.842 1789.91 176.842 1794.4 Q176.842 1796.53 176.032 1798.46 Q175.245 1800.35 173.139 1802.95 Q172.56 1803.62 169.458 1806.83 Q166.356 1810.03 160.708 1815.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M167.444 1610.8 L155.639 1629.25 L167.444 1629.25 L167.444 1610.8 M166.217 1606.73 L172.097 1606.73 L172.097 1629.25 L177.027 1629.25 L177.027 1633.14 L172.097 1633.14 L172.097 1641.29 L167.444 1641.29 L167.444 1633.14 L151.842 1633.14 L151.842 1628.63 L166.217 1606.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M165.5 1443.7 Q162.352 1443.7 160.5 1445.86 Q158.671 1448.01 158.671 1451.76 Q158.671 1455.49 160.5 1457.66 Q162.352 1459.81 165.5 1459.81 Q168.648 1459.81 170.477 1457.66 Q172.328 1455.49 172.328 1451.76 Q172.328 1448.01 170.477 1445.86 Q168.648 1443.7 165.5 1443.7 M174.782 1429.05 L174.782 1433.31 Q173.023 1432.48 171.217 1432.04 Q169.435 1431.6 167.676 1431.6 Q163.046 1431.6 160.592 1434.72 Q158.162 1437.85 157.815 1444.17 Q159.18 1442.15 161.241 1441.09 Q163.301 1440 165.778 1440 Q170.986 1440 173.995 1443.17 Q177.027 1446.32 177.027 1451.76 Q177.027 1457.08 173.879 1460.3 Q170.731 1463.52 165.5 1463.52 Q159.504 1463.52 156.333 1458.93 Q153.162 1454.33 153.162 1445.6 Q153.162 1437.41 157.051 1432.55 Q160.94 1427.66 167.49 1427.66 Q169.25 1427.66 171.032 1428.01 Q172.838 1428.36 174.782 1429.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M165.176 1267.99 Q161.842 1267.99 159.921 1269.78 Q158.023 1271.56 158.023 1274.68 Q158.023 1277.81 159.921 1279.59 Q161.842 1281.37 165.176 1281.37 Q168.509 1281.37 170.43 1279.59 Q172.352 1277.79 172.352 1274.68 Q172.352 1271.56 170.43 1269.78 Q168.532 1267.99 165.176 1267.99 M160.5 1266 Q157.491 1265.26 155.801 1263.2 Q154.134 1261.14 154.134 1258.18 Q154.134 1254.04 157.074 1251.63 Q160.037 1249.22 165.176 1249.22 Q170.338 1249.22 173.277 1251.63 Q176.217 1254.04 176.217 1258.18 Q176.217 1261.14 174.527 1263.2 Q172.861 1265.26 169.875 1266 Q173.254 1266.79 175.129 1269.08 Q177.027 1271.37 177.027 1274.68 Q177.027 1279.71 173.949 1282.39 Q170.893 1285.08 165.176 1285.08 Q159.458 1285.08 156.379 1282.39 Q153.324 1279.71 153.324 1274.68 Q153.324 1271.37 155.222 1269.08 Q157.12 1266.79 160.5 1266 M158.787 1258.62 Q158.787 1261.3 160.453 1262.81 Q162.143 1264.31 165.176 1264.31 Q168.185 1264.31 169.875 1262.81 Q171.588 1261.3 171.588 1258.62 Q171.588 1255.93 169.875 1254.43 Q168.185 1252.92 165.176 1252.92 Q162.143 1252.92 160.453 1254.43 Q158.787 1255.93 158.787 1258.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M70.9144 1896.47 L70.9144 1889.51 L94.4328 1880.69 L70.9144 1871.82 L70.9144 1864.85 L105.474 1864.85 L105.474 1869.41 L75.1274 1869.41 L98.8309 1878.33 L98.8309 1883.02 L75.1274 1891.94 L105.474 1891.94 L105.474 1896.47 L70.9144 1896.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M91.4467 1833.58 L93.53 1833.58 L93.53 1853.16 Q97.9282 1852.89 100.243 1850.52 Q102.535 1848.14 102.535 1843.9 Q102.535 1841.45 101.933 1839.16 Q101.331 1836.84 100.127 1834.58 L104.155 1834.58 Q105.127 1836.87 105.636 1839.27 Q106.146 1841.68 106.146 1844.16 Q106.146 1850.36 102.535 1854 Q98.9235 1857.61 92.7662 1857.61 Q86.4004 1857.61 82.6736 1854.18 Q78.9236 1850.73 78.9236 1844.9 Q78.9236 1839.67 82.3032 1836.64 Q85.6597 1833.58 91.4467 1833.58 M90.1967 1837.84 Q86.7014 1837.89 84.6181 1839.81 Q82.5347 1841.71 82.5347 1844.85 Q82.5347 1848.42 84.5486 1850.57 Q86.5625 1852.7 90.2199 1853.02 L90.1967 1837.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M83.4838 1809.53 L69.4561 1809.53 L69.4561 1805.27 L105.474 1805.27 L105.474 1809.53 L101.586 1809.53 Q103.9 1810.87 105.035 1812.93 Q106.146 1814.97 106.146 1817.84 Q106.146 1822.54 102.396 1825.5 Q98.6458 1828.44 92.5347 1828.44 Q86.4236 1828.44 82.6736 1825.5 Q78.9236 1822.54 78.9236 1817.84 Q78.9236 1814.97 80.0579 1812.93 Q81.169 1810.87 83.4838 1809.53 M92.5347 1824.04 Q97.2337 1824.04 99.9189 1822.12 Q102.581 1820.18 102.581 1816.8 Q102.581 1813.42 99.9189 1811.47 Q97.2337 1809.53 92.5347 1809.53 Q87.8356 1809.53 85.1736 1811.47 Q82.4884 1813.42 82.4884 1816.8 Q82.4884 1820.18 85.1736 1822.12 Q87.8356 1824.04 92.5347 1824.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M79.5486 1796.5 L79.5486 1792.24 L105.474 1792.24 L105.474 1796.5 L79.5486 1796.5 M69.4561 1796.5 L69.4561 1792.24 L74.8496 1792.24 L74.8496 1796.5 L69.4561 1796.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M92.4421 1771.54 Q92.4421 1776.71 93.6226 1778.7 Q94.8032 1780.69 97.6504 1780.69 Q99.9189 1780.69 101.261 1779.21 Q102.581 1777.7 102.581 1775.13 Q102.581 1771.59 100.081 1769.46 Q97.5578 1767.31 93.3912 1767.31 L92.4421 1767.31 L92.4421 1771.54 M90.6828 1763.05 L105.474 1763.05 L105.474 1767.31 L101.539 1767.31 Q103.9 1768.77 105.035 1770.94 Q106.146 1773.12 106.146 1776.27 Q106.146 1780.25 103.924 1782.61 Q101.678 1784.95 97.9282 1784.95 Q93.5532 1784.95 91.331 1782.03 Q89.1088 1779.09 89.1088 1773.28 L89.1088 1767.31 L88.6921 1767.31 Q85.7523 1767.31 84.1551 1769.25 Q82.5347 1771.17 82.5347 1774.67 Q82.5347 1776.89 83.0671 1779 Q83.5995 1781.1 84.6643 1783.05 L80.7292 1783.05 Q79.8264 1780.71 79.3866 1778.51 Q78.9236 1776.31 78.9236 1774.23 Q78.9236 1768.6 81.8403 1765.83 Q84.7569 1763.05 90.6828 1763.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M89.8264 1732.72 L105.474 1732.72 L105.474 1736.98 L89.9652 1736.98 Q86.2847 1736.98 84.456 1738.42 Q82.6273 1739.85 82.6273 1742.72 Q82.6273 1746.17 84.8264 1748.16 Q87.0254 1750.16 90.8217 1750.16 L105.474 1750.16 L105.474 1754.44 L79.5486 1754.44 L79.5486 1750.16 L83.5764 1750.16 Q81.2384 1748.63 80.081 1746.57 Q78.9236 1744.48 78.9236 1741.78 Q78.9236 1737.31 81.7014 1735.02 Q84.456 1732.72 89.8264 1732.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M83.4838 1692.1 L69.4561 1692.1 L69.4561 1687.84 L105.474 1687.84 L105.474 1692.1 L101.586 1692.1 Q103.9 1693.44 105.035 1695.5 Q106.146 1697.54 106.146 1700.41 Q106.146 1705.11 102.396 1708.07 Q98.6458 1711.01 92.5347 1711.01 Q86.4236 1711.01 82.6736 1708.07 Q78.9236 1705.11 78.9236 1700.41 Q78.9236 1697.54 80.0579 1695.5 Q81.169 1693.44 83.4838 1692.1 M92.5347 1706.61 Q97.2337 1706.61 99.9189 1704.69 Q102.581 1702.75 102.581 1699.37 Q102.581 1695.99 99.9189 1694.04 Q97.2337 1692.1 92.5347 1692.1 Q87.8356 1692.1 85.1736 1694.04 Q82.4884 1695.99 82.4884 1699.37 Q82.4884 1702.75 85.1736 1704.69 Q87.8356 1706.61 92.5347 1706.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M95.243 1679.51 L79.5486 1679.51 L79.5486 1675.25 L95.081 1675.25 Q98.7615 1675.25 100.613 1673.81 Q102.442 1672.38 102.442 1669.51 Q102.442 1666.06 100.243 1664.07 Q98.0439 1662.05 94.2476 1662.05 L79.5486 1662.05 L79.5486 1657.79 L105.474 1657.79 L105.474 1662.05 L101.493 1662.05 Q103.854 1663.6 105.011 1665.66 Q106.146 1667.7 106.146 1670.41 Q106.146 1674.88 103.368 1677.19 Q100.59 1679.51 95.243 1679.51 M78.9236 1668.79 L78.9236 1668.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M83.5301 1634 Q83.1134 1634.72 82.9282 1635.57 Q82.7199 1636.41 82.7199 1637.42 Q82.7199 1641.04 85.081 1642.98 Q87.419 1644.9 91.8171 1644.9 L105.474 1644.9 L105.474 1649.18 L79.5486 1649.18 L79.5486 1644.9 L83.5764 1644.9 Q81.2153 1643.56 80.081 1641.41 Q78.9236 1639.25 78.9236 1636.17 Q78.9236 1635.73 78.9931 1635.2 Q79.0394 1634.67 79.1551 1634.02 L83.5301 1634 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M92.4421 1617.75 Q92.4421 1622.91 93.6226 1624.9 Q94.8032 1626.89 97.6504 1626.89 Q99.9189 1626.89 101.261 1625.41 Q102.581 1623.91 102.581 1621.34 Q102.581 1617.79 100.081 1615.67 Q97.5578 1613.51 93.3912 1613.51 L92.4421 1613.51 L92.4421 1617.75 M90.6828 1609.25 L105.474 1609.25 L105.474 1613.51 L101.539 1613.51 Q103.9 1614.97 105.035 1617.15 Q106.146 1619.32 106.146 1622.47 Q106.146 1626.45 103.924 1628.81 Q101.678 1631.15 97.9282 1631.15 Q93.5532 1631.15 91.331 1628.23 Q89.1088 1625.29 89.1088 1619.48 L89.1088 1613.51 L88.6921 1613.51 Q85.7523 1613.51 84.1551 1615.46 Q82.5347 1617.38 82.5347 1620.87 Q82.5347 1623.1 83.0671 1625.2 Q83.5995 1627.31 84.6643 1629.25 L80.7292 1629.25 Q79.8264 1626.91 79.3866 1624.72 Q78.9236 1622.52 78.9236 1620.43 Q78.9236 1614.81 81.8403 1612.03 Q84.7569 1609.25 90.6828 1609.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M72.1876 1596.27 L79.5486 1596.27 L79.5486 1587.49 L82.8588 1587.49 L82.8588 1596.27 L96.9328 1596.27 Q100.104 1596.27 101.007 1595.41 Q101.91 1594.53 101.91 1591.87 L101.91 1587.49 L105.474 1587.49 L105.474 1591.87 Q105.474 1596.8 103.646 1598.67 Q101.794 1600.55 96.9328 1600.55 L82.8588 1600.55 L82.8588 1603.67 L79.5486 1603.67 L79.5486 1600.55 L72.1876 1600.55 L72.1876 1596.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M79.5486 1581.89 L79.5486 1577.63 L105.474 1577.63 L105.474 1581.89 L79.5486 1581.89 M69.4561 1581.89 L69.4561 1577.63 L74.8496 1577.63 L74.8496 1581.89 L69.4561 1581.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M82.5347 1558.67 Q82.5347 1562.1 85.2199 1564.09 Q87.8819 1566.08 92.5347 1566.08 Q97.1874 1566.08 99.8726 1564.11 Q102.535 1562.12 102.535 1558.67 Q102.535 1555.27 99.8495 1553.28 Q97.1643 1551.29 92.5347 1551.29 Q87.9282 1551.29 85.243 1553.28 Q82.5347 1555.27 82.5347 1558.67 M78.9236 1558.67 Q78.9236 1553.12 82.5347 1549.95 Q86.1458 1546.78 92.5347 1546.78 Q98.9004 1546.78 102.535 1549.95 Q106.146 1553.12 106.146 1558.67 Q106.146 1564.25 102.535 1567.42 Q98.9004 1570.57 92.5347 1570.57 Q86.1458 1570.57 82.5347 1567.42 Q78.9236 1564.25 78.9236 1558.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M89.8264 1518.17 L105.474 1518.17 L105.474 1522.42 L89.9652 1522.42 Q86.2847 1522.42 84.456 1523.86 Q82.6273 1525.3 82.6273 1528.17 Q82.6273 1531.61 84.8264 1533.61 Q87.0254 1535.6 90.8217 1535.6 L105.474 1535.6 L105.474 1539.88 L79.5486 1539.88 L79.5486 1535.6 L83.5764 1535.6 Q81.2384 1534.07 80.081 1532.01 Q78.9236 1529.92 78.9236 1527.22 Q78.9236 1522.75 81.7014 1520.46 Q84.456 1518.17 89.8264 1518.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M99.5948 1508.58 L99.5948 1503.7 L103.576 1503.7 L110.984 1507.49 L110.984 1510.48 L103.576 1508.58 L99.5948 1508.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M89.8264 1457.98 L105.474 1457.98 L105.474 1462.24 L89.9652 1462.24 Q86.2847 1462.24 84.456 1463.68 Q82.6273 1465.11 82.6273 1467.98 Q82.6273 1471.43 84.8264 1473.42 Q87.0254 1475.41 90.8217 1475.41 L105.474 1475.41 L105.474 1479.69 L69.4561 1479.69 L69.4561 1475.41 L83.5764 1475.41 Q81.2384 1473.88 80.081 1471.82 Q78.9236 1469.74 78.9236 1467.03 Q78.9236 1462.56 81.7014 1460.27 Q84.456 1457.98 89.8264 1457.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M82.5347 1439.44 Q82.5347 1442.87 85.2199 1444.86 Q87.8819 1446.85 92.5347 1446.85 Q97.1874 1446.85 99.8726 1444.88 Q102.535 1442.89 102.535 1439.44 Q102.535 1436.04 99.8495 1434.05 Q97.1643 1432.05 92.5347 1432.05 Q87.9282 1432.05 85.243 1434.05 Q82.5347 1436.04 82.5347 1439.44 M78.9236 1439.44 Q78.9236 1433.88 82.5347 1430.71 Q86.1458 1427.54 92.5347 1427.54 Q98.9004 1427.54 102.535 1430.71 Q106.146 1433.88 106.146 1439.44 Q106.146 1445.02 102.535 1448.19 Q98.9004 1451.34 92.5347 1451.34 Q86.1458 1451.34 82.5347 1448.19 Q78.9236 1445.02 78.9236 1439.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M95.243 1420.92 L79.5486 1420.92 L79.5486 1416.66 L95.081 1416.66 Q98.7615 1416.66 100.613 1415.23 Q102.442 1413.79 102.442 1410.92 Q102.442 1407.47 100.243 1405.48 Q98.0439 1403.47 94.2476 1403.47 L79.5486 1403.47 L79.5486 1399.21 L105.474 1399.21 L105.474 1403.47 L101.493 1403.47 Q103.854 1405.02 105.011 1407.08 Q106.146 1409.12 106.146 1411.82 Q106.146 1416.29 103.368 1418.61 Q100.59 1420.92 95.243 1420.92 M78.9236 1410.2 L78.9236 1410.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M83.5301 1375.41 Q83.1134 1376.13 82.9282 1376.99 Q82.7199 1377.82 82.7199 1378.84 Q82.7199 1382.45 85.081 1384.39 Q87.419 1386.31 91.8171 1386.31 L105.474 1386.31 L105.474 1390.6 L79.5486 1390.6 L79.5486 1386.31 L83.5764 1386.31 Q81.2153 1384.97 80.081 1382.82 Q78.9236 1380.67 78.9236 1377.59 Q78.9236 1377.15 78.9931 1376.62 Q79.0394 1376.08 79.1551 1375.43 L83.5301 1375.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M80.3125 1354.42 L84.3403 1354.42 Q83.4144 1356.22 82.9514 1358.17 Q82.4884 1360.11 82.4884 1362.19 Q82.4884 1365.37 83.4607 1366.96 Q84.4329 1368.54 86.3773 1368.54 Q87.8588 1368.54 88.7153 1367.4 Q89.5486 1366.27 90.3125 1362.84 L90.6365 1361.38 Q91.6088 1356.85 93.3912 1354.95 Q95.1504 1353.03 98.3217 1353.03 Q101.933 1353.03 104.039 1355.9 Q106.146 1358.75 106.146 1363.75 Q106.146 1365.83 105.729 1368.1 Q105.336 1370.34 104.525 1372.84 L100.127 1372.84 Q101.354 1370.48 101.979 1368.19 Q102.581 1365.9 102.581 1363.65 Q102.581 1360.64 101.562 1359.02 Q100.521 1357.4 98.6458 1357.4 Q96.9097 1357.4 95.9837 1358.58 Q95.0578 1359.74 94.2013 1363.7 L93.8541 1365.18 Q93.0208 1369.14 91.3078 1370.9 Q89.5717 1372.66 86.5625 1372.66 Q82.9051 1372.66 80.9144 1370.06 Q78.9236 1367.47 78.9236 1362.7 Q78.9236 1360.34 79.2709 1358.26 Q79.6181 1356.18 80.3125 1354.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip943)\" d=\"\n", "M330.716 1893.16 L330.716 1980.89 L459.825 1980.89 L459.825 1893.16 L330.716 1893.16 L330.716 1893.16 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 330.716,1893.16 330.716,1980.89 459.825,1980.89 459.825,1893.16 330.716,1893.16 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M492.102 1714.71 L492.102 1980.89 L621.211 1980.89 L621.211 1714.71 L492.102 1714.71 L492.102 1714.71 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 492.102,1714.71 492.102,1980.89 621.211,1980.89 621.211,1714.71 492.102,1714.71 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M653.488 1803.94 L653.488 1980.89 L782.596 1980.89 L782.596 1803.94 L653.488 1803.94 L653.488 1803.94 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 653.488,1803.94 653.488,1980.89 782.596,1980.89 782.596,1803.94 653.488,1803.94 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M814.873 1980.89 L814.873 1980.89 L943.982 1980.89 L943.982 1980.89 L814.873 1980.89 L814.873 1980.89 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 814.873,1980.89 814.873,1980.89 943.982,1980.89 814.873,1980.89 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M976.259 1714.71 L976.259 1980.89 L1105.37 1980.89 L1105.37 1714.71 L976.259 1714.71 L976.259 1714.71 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.259,1714.71 976.259,1980.89 1105.37,1980.89 1105.37,1714.71 976.259,1714.71 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1137.64 1268.61 L1137.64 1980.89 L1266.75 1980.89 L1266.75 1268.61 L1137.64 1268.61 L1137.64 1268.61 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1137.64,1268.61 1137.64,1980.89 1266.75,1980.89 1266.75,1268.61 1137.64,1268.61 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1299.03 1803.94 L1299.03 1980.89 L1428.14 1980.89 L1428.14 1803.94 L1299.03 1803.94 L1299.03 1803.94 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1299.03,1803.94 1299.03,1980.89 1428.14,1980.89 1428.14,1803.94 1299.03,1803.94 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1460.42 1803.94 L1460.42 1980.89 L1589.52 1980.89 L1589.52 1803.94 L1460.42 1803.94 L1460.42 1803.94 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.42,1803.94 1460.42,1980.89 1589.52,1980.89 1589.52,1803.94 1460.42,1803.94 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1621.8 1893.16 L1621.8 1980.89 L1750.91 1980.89 L1750.91 1893.16 L1621.8 1893.16 L1621.8 1893.16 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1621.8,1893.16 1621.8,1980.89 1750.91,1980.89 1750.91,1893.16 1621.8,1893.16 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1783.19 1893.16 L1783.19 1980.89 L1912.3 1980.89 L1912.3 1893.16 L1783.19 1893.16 L1783.19 1893.16 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1783.19,1893.16 1783.19,1980.89 1912.3,1980.89 1912.3,1893.16 1783.19,1893.16 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M1944.57 1980.89 L1944.57 1980.89 L2073.68 1980.89 L2073.68 1980.89 L1944.57 1980.89 L1944.57 1980.89 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.57,1980.89 1944.57,1980.89 2073.68,1980.89 1944.57,1980.89 \n", " \"/>\n", "<path clip-path=\"url(#clip943)\" d=\"\n", "M2105.96 1893.16 L2105.96 1980.89 L2235.07 1980.89 L2235.07 1893.16 L2105.96 1893.16 L2105.96 1893.16 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip943)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2105.96,1893.16 2105.96,1980.89 2235.07,1980.89 2235.07,1893.16 2105.96,1893.16 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "@pipe result_1hr |>\n", " groupby(_, :month) |>\n", " combine(_, nrow, :duration => median => :middle) |>\n", " begin\n", " months = [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"]\n", " counts = [ if i in _.month sum(_.nrow[ _.month .== i ]) else 0 end for i in 1:12 ]\n", " meds = [ if i in _.month sum(_.middle[ _.month .== i ]) else 0 end for i in 1:12 ]\n", " l = @layout [a ; b]\n", " p1 = bar(months, counts, lab=false, ylabel=\"Number of Events\", labelfontsize=9, xrotation=45)\n", " p2 = bar(months, meds, lab=false, ylabel=\"Median duration, hours\", labelfontsize=8, xrotation=45)\n", " plot(p1, p2, layout=l, size=(600,600))\n", " end" ] }, { "cell_type": "markdown", "id": "10379bb4-d549-4742-a157-8fcea4b51b0b", "metadata": {}, "source": [ "Filtering out only the extended periods, with a duration >5 hrs, we see that prolonged periods of excess pm2.5 appears to be a summer phenomena, especially August. Which is certainly consistent with my experience of noticeable smokey days, corresponding with wildfire season." ] }, { "cell_type": "code", "execution_count": 12, "id": "1f784f93-1e8c-460a-97f6-158e07ff63d9", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip980\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip980)\" d=\"\n", "M0 1600 L2400 1600 L2400 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip981\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip980)\" d=\"\n", "M166.805 1313.84 L2352.76 1313.84 L2352.76 47.2441 L166.805 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip982\">\n", " <rect x=\"166\" y=\"47\" width=\"2187\" height=\"1268\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 352.985,1313.84 352.985,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 517.857,1313.84 517.857,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 682.729,1313.84 682.729,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 847.601,1313.84 847.601,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1012.47,1313.84 1012.47,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1177.34,1313.84 1177.34,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1342.22,1313.84 1342.22,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1507.09,1313.84 1507.09,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1671.96,1313.84 1671.96,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1836.83,1313.84 1836.83,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2001.7,1313.84 2001.7,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2166.58,1313.84 2166.58,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1313.84 2352.76,1313.84 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 352.985,1313.84 352.985,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 517.857,1313.84 517.857,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.729,1313.84 682.729,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 847.601,1313.84 847.601,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1012.47,1313.84 1012.47,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1177.34,1313.84 1177.34,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1342.22,1313.84 1342.22,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1507.09,1313.84 1507.09,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1671.96,1313.84 1671.96,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1836.83,1313.84 1836.83,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2001.7,1313.84 2001.7,1298.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2166.58,1313.84 2166.58,1298.64 \n", " \"/>\n", "<path clip-path=\"url(#clip980)\" d=\"M235.079 1460.72 L238.385 1457.42 L261.121 1480.15 Q265.54 1484.57 265.851 1488.25 Q266.178 1491.92 262.463 1495.64 L261.203 1496.9 L258.42 1494.11 L259.451 1493.08 Q261.644 1490.89 261.317 1488.76 Q260.99 1486.63 257.814 1483.46 L235.079 1460.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M268.388 1457.86 Q264.738 1461.51 264.165 1463.75 Q263.592 1465.99 265.606 1468.01 Q267.21 1469.61 269.207 1469.51 Q271.203 1469.38 273.02 1467.56 Q275.525 1465.06 275.263 1461.79 Q275.001 1458.48 272.055 1455.53 L271.383 1454.86 L268.388 1457.86 M273.151 1450.61 L283.61 1461.07 L280.599 1464.08 L277.816 1461.29 Q278.455 1464 277.718 1466.34 Q276.965 1468.66 274.739 1470.89 Q271.924 1473.7 268.683 1473.8 Q265.442 1473.87 262.79 1471.21 Q259.697 1468.12 260.188 1464.49 Q260.695 1460.84 264.804 1456.73 L269.026 1452.51 L268.732 1452.21 Q266.653 1450.13 264.149 1450.38 Q261.644 1450.59 259.173 1453.06 Q257.602 1454.63 256.489 1456.5 Q255.375 1458.36 254.753 1460.49 L251.971 1457.71 Q252.986 1455.42 254.23 1453.55 Q255.457 1451.67 256.93 1450.2 Q260.908 1446.22 264.934 1446.32 Q268.961 1446.42 273.151 1450.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M293.988 1428.56 L305.053 1439.62 L302.041 1442.64 L291.074 1431.67 Q288.472 1429.07 286.164 1428.79 Q283.856 1428.51 281.826 1430.54 Q279.388 1432.98 279.535 1435.94 Q279.682 1438.9 282.367 1441.59 L292.728 1451.95 L289.699 1454.98 L271.367 1436.64 L274.395 1433.62 L277.243 1436.46 Q276.67 1433.73 277.309 1431.46 Q277.963 1429.16 279.879 1427.25 Q283.038 1424.09 286.622 1424.43 Q290.19 1424.76 293.988 1428.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M303.514 1426.69 L292.417 1415.6 L295.428 1412.58 L306.411 1423.57 Q309.014 1426.17 311.338 1426.46 Q313.646 1426.74 315.676 1424.71 Q318.114 1422.27 317.967 1419.31 Q317.836 1416.33 315.152 1413.65 L304.758 1403.25 L307.77 1400.24 L326.102 1418.57 L323.09 1421.59 L320.275 1418.77 Q320.848 1421.54 320.21 1423.81 Q319.571 1426.05 317.656 1427.97 Q314.497 1431.13 310.896 1430.8 Q307.295 1430.47 303.514 1426.69 M299.553 1407.57 L299.553 1407.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M331.422 1394.82 Q327.772 1398.47 327.199 1400.72 Q326.626 1402.96 328.639 1404.97 Q330.243 1406.58 332.24 1406.48 Q334.237 1406.35 336.054 1404.53 Q338.558 1402.03 338.296 1398.75 Q338.034 1395.45 335.088 1392.5 L334.417 1391.83 L331.422 1394.82 M336.185 1387.57 L346.644 1398.03 L343.632 1401.04 L340.85 1398.26 Q341.488 1400.96 340.752 1403.3 Q339.999 1405.63 337.773 1407.85 Q334.957 1410.67 331.716 1410.77 Q328.476 1410.83 325.824 1408.18 Q322.73 1405.09 323.221 1401.45 Q323.729 1397.8 327.837 1393.69 L332.06 1389.47 L331.766 1389.18 Q329.687 1387.1 327.182 1387.34 Q324.678 1387.56 322.207 1390.03 Q320.635 1391.6 319.522 1393.47 Q318.409 1395.33 317.787 1397.46 L315.005 1394.68 Q316.019 1392.39 317.263 1390.52 Q318.491 1388.64 319.964 1387.16 Q323.942 1383.19 327.968 1383.28 Q331.995 1383.38 336.185 1387.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M347.954 1365.69 Q347.152 1365.9 346.415 1366.38 Q345.678 1366.82 344.958 1367.54 Q342.405 1370.09 342.699 1373.14 Q342.994 1376.15 346.104 1379.26 L355.761 1388.92 L352.733 1391.94 L334.401 1373.61 L337.429 1370.58 L340.277 1373.43 Q339.557 1370.81 340.277 1368.49 Q340.981 1366.15 343.158 1363.97 Q343.469 1363.66 343.894 1363.33 Q344.303 1362.99 344.844 1362.61 L347.954 1365.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M375.959 1372.12 Q377.956 1376.67 377.744 1378.88 Q377.531 1381.09 375.501 1383.12 L373.095 1385.53 L370.574 1383.01 L372.342 1381.24 Q373.586 1379.99 373.684 1378.72 Q373.782 1377.44 372.424 1374.41 L371.589 1372.5 L346.137 1361.87 L349.329 1358.68 L369.396 1367.29 L360.786 1347.23 L363.978 1344.03 L375.959 1372.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M378.492 1482.18 L392.536 1468.14 L395.319 1470.92 L384.581 1481.66 L391.783 1488.86 L401.473 1479.17 L404.256 1481.95 L394.566 1491.64 L406.236 1503.31 L402.93 1506.62 L378.492 1482.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M426.009 1463.7 L427.482 1465.17 L413.635 1479.02 Q416.941 1481.94 420.247 1481.9 Q423.554 1481.84 426.549 1478.84 Q428.284 1477.11 429.479 1475.06 Q430.69 1473 431.443 1470.54 L434.291 1473.39 Q433.358 1475.7 432.016 1477.76 Q430.674 1479.82 428.922 1481.57 Q424.536 1485.96 419.413 1485.98 Q414.306 1485.98 409.952 1481.62 Q405.451 1477.12 405.238 1472.07 Q405.025 1466.97 409.15 1462.85 Q412.849 1459.15 417.383 1459.4 Q421.917 1459.61 426.009 1463.7 M422.113 1465.83 Q419.609 1463.39 416.777 1463.28 Q413.962 1463.14 411.736 1465.37 Q409.215 1467.89 409.117 1470.84 Q409.035 1473.77 411.392 1476.58 L422.113 1465.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M444.881 1446.37 Q441.559 1443.04 438.301 1442.54 Q435.044 1442 432.654 1444.39 Q430.265 1446.78 430.788 1450.05 Q431.312 1453.29 434.635 1456.61 Q437.958 1459.94 441.215 1460.48 Q444.472 1460.98 446.862 1458.59 Q449.252 1456.2 448.728 1452.96 Q448.204 1449.69 444.881 1446.37 M428.235 1450.21 Q427.548 1447.63 428.202 1445.4 Q428.857 1443.14 430.87 1441.13 Q434.209 1437.79 438.94 1438.36 Q443.687 1438.92 448.008 1443.24 Q452.329 1447.56 452.885 1452.31 Q453.458 1457.04 450.119 1460.38 Q448.106 1462.39 445.863 1463.06 Q443.621 1463.7 441.035 1463.01 L443.785 1465.76 L440.757 1468.79 L415.288 1443.32 L418.316 1440.29 L428.235 1450.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M457.256 1421.26 Q456.454 1421.47 455.717 1421.95 Q454.981 1422.39 454.26 1423.11 Q451.707 1425.66 452.002 1428.71 Q452.296 1431.72 455.406 1434.83 L465.063 1444.48 L462.035 1447.51 L443.703 1429.18 L446.731 1426.15 L449.579 1429 Q448.859 1426.38 449.579 1424.06 Q450.283 1421.72 452.46 1419.54 Q452.771 1419.23 453.196 1418.9 Q453.606 1418.56 454.146 1418.18 L457.256 1421.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M468.386 1426.69 L457.288 1415.6 L460.3 1412.58 L471.283 1423.57 Q473.886 1426.17 476.21 1426.46 Q478.518 1426.74 480.548 1424.71 Q482.986 1422.27 482.839 1419.31 Q482.708 1416.33 480.024 1413.65 L469.63 1403.25 L472.642 1400.24 L490.974 1418.57 L487.962 1421.59 L485.147 1418.77 Q485.72 1421.54 485.082 1423.81 Q484.443 1426.05 482.528 1427.97 Q479.369 1431.13 475.768 1430.8 Q472.167 1430.47 468.386 1426.69 M464.425 1407.57 L464.425 1407.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M496.294 1394.82 Q492.644 1398.47 492.071 1400.72 Q491.498 1402.96 493.511 1404.97 Q495.115 1406.58 497.112 1406.48 Q499.109 1406.35 500.926 1404.53 Q503.43 1402.03 503.168 1398.75 Q502.906 1395.45 499.96 1392.5 L499.289 1391.83 L496.294 1394.82 M501.057 1387.57 L511.516 1398.03 L508.504 1401.04 L505.722 1398.26 Q506.36 1400.96 505.624 1403.3 Q504.871 1405.63 502.645 1407.85 Q499.829 1410.67 496.588 1410.77 Q493.347 1410.83 490.696 1408.18 Q487.602 1405.09 488.093 1401.45 Q488.601 1397.8 492.709 1393.69 L496.932 1389.47 L496.637 1389.18 Q494.559 1387.1 492.054 1387.34 Q489.55 1387.56 487.078 1390.03 Q485.507 1391.6 484.394 1393.47 Q483.281 1395.33 482.659 1397.46 L479.876 1394.68 Q480.891 1392.39 482.135 1390.52 Q483.363 1388.64 484.836 1387.16 Q488.813 1383.19 492.84 1383.28 Q496.867 1383.38 501.057 1387.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M512.825 1365.69 Q512.023 1365.9 511.287 1366.38 Q510.55 1366.82 509.83 1367.54 Q507.277 1370.09 507.571 1373.14 Q507.866 1376.15 510.976 1379.26 L520.633 1388.92 L517.605 1391.94 L499.273 1373.61 L502.301 1370.58 L505.149 1373.43 Q504.429 1370.81 505.149 1368.49 Q505.853 1366.15 508.03 1363.97 Q508.341 1363.66 508.766 1363.33 Q509.175 1362.99 509.716 1362.61 L512.825 1365.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M540.831 1372.12 Q542.828 1376.67 542.615 1378.88 Q542.403 1381.09 540.373 1383.12 L537.967 1385.53 L535.446 1383.01 L537.214 1381.24 Q538.458 1379.99 538.556 1378.72 Q538.654 1377.44 537.296 1374.41 L536.461 1372.5 L511.009 1361.87 L514.2 1358.68 L534.268 1367.29 L525.658 1347.23 L528.85 1344.03 L540.831 1372.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M591.568 1433.98 L596.495 1429.05 L619.361 1439.44 L609 1416.54 L613.927 1411.62 L638.365 1436.06 L635.14 1439.28 L613.682 1417.82 L624.141 1440.88 L620.818 1444.21 L597.755 1433.75 L619.214 1455.21 L616.006 1458.41 L591.568 1433.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M643.914 1412.08 Q640.263 1415.73 639.691 1417.97 Q639.118 1420.21 641.131 1422.22 Q642.735 1423.83 644.732 1423.73 Q646.729 1423.6 648.546 1421.78 Q651.05 1419.28 650.788 1416 Q650.526 1412.7 647.58 1409.75 L646.909 1409.08 L643.914 1412.08 M648.677 1404.82 L659.136 1415.28 L656.124 1418.3 L653.342 1415.51 Q653.98 1418.21 653.243 1420.55 Q652.49 1422.88 650.264 1425.1 Q647.449 1427.92 644.208 1428.02 Q640.967 1428.08 638.316 1425.43 Q635.222 1422.34 635.713 1418.7 Q636.221 1415.05 640.329 1410.95 L644.552 1406.72 L644.257 1406.43 Q642.179 1404.35 639.674 1404.6 Q637.17 1404.81 634.698 1407.28 Q633.127 1408.85 632.014 1410.72 Q630.901 1412.58 630.279 1414.71 L627.496 1411.93 Q628.511 1409.64 629.755 1407.77 Q630.983 1405.89 632.456 1404.42 Q636.433 1400.44 640.46 1400.54 Q644.486 1400.63 648.677 1404.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M660.445 1382.94 Q659.643 1383.15 658.907 1383.63 Q658.17 1384.07 657.45 1384.79 Q654.897 1387.34 655.191 1390.39 Q655.486 1393.4 658.596 1396.51 L668.253 1406.17 L665.225 1409.2 L646.893 1390.86 L649.921 1387.83 L652.769 1390.68 Q652.049 1388.06 652.769 1385.74 Q653.473 1383.4 655.65 1381.22 Q655.96 1380.91 656.386 1380.58 Q656.795 1380.24 657.335 1379.86 L660.445 1382.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M673.949 1365.21 L676.764 1368.03 Q674.784 1368.6 673.147 1369.55 Q671.51 1370.47 670.201 1371.78 Q667.271 1374.71 667.516 1378.19 Q667.746 1381.66 671.101 1385.02 Q674.456 1388.37 677.943 1388.62 Q681.413 1388.85 684.343 1385.92 Q685.652 1384.61 686.585 1382.99 Q687.518 1381.34 688.091 1379.36 L690.874 1382.14 Q690.203 1383.99 689.139 1385.64 Q688.091 1387.28 686.569 1388.8 Q682.428 1392.94 677.386 1392.78 Q672.345 1392.61 667.926 1388.19 Q663.441 1383.71 663.326 1378.68 Q663.228 1373.64 667.516 1369.36 Q668.908 1367.96 670.528 1366.93 Q672.132 1365.89 673.949 1365.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M700.989 1351.3 L712.054 1362.37 L709.042 1365.38 L698.076 1354.41 Q695.473 1351.81 693.165 1351.53 Q690.857 1351.25 688.828 1353.28 Q686.389 1355.72 686.536 1358.68 Q686.683 1361.65 689.368 1364.33 L699.729 1374.69 L696.701 1377.72 L671.232 1352.25 L674.26 1349.22 L684.245 1359.21 Q683.672 1356.47 684.31 1354.2 Q684.965 1351.91 686.88 1349.99 Q690.039 1346.83 693.624 1347.18 Q697.192 1347.5 700.989 1351.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M793.727 1403.2 L801.403 1419.85 L810.39 1410.86 L793.727 1403.2 M788.604 1401.81 L792.352 1398.06 L826.103 1413.19 L822.666 1416.63 L814.171 1412.58 L803.155 1423.6 L807.198 1432.09 L803.711 1435.58 L788.604 1401.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M829.704 1404.09 L839.427 1413.81 L836.398 1416.84 L811.093 1391.53 L814.121 1388.51 L816.904 1391.29 Q816.217 1388.7 816.871 1386.48 Q817.526 1384.22 819.539 1382.2 Q822.878 1378.86 827.609 1379.44 Q832.356 1379.99 836.677 1384.32 Q840.998 1388.64 841.554 1393.38 Q842.127 1398.11 838.788 1401.45 Q836.775 1403.47 834.533 1404.14 Q832.29 1404.78 829.704 1404.09 M833.55 1387.44 Q830.228 1384.12 826.97 1383.61 Q823.713 1383.07 821.323 1385.46 Q818.934 1387.85 819.457 1391.12 Q819.981 1394.37 823.304 1397.69 Q826.627 1401.01 829.884 1401.55 Q833.141 1402.06 835.531 1399.67 Q837.921 1397.28 837.397 1394.04 Q836.873 1390.76 833.55 1387.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M845.925 1362.33 Q845.123 1362.55 844.386 1363.02 Q843.65 1363.46 842.929 1364.18 Q840.376 1366.74 840.671 1369.78 Q840.965 1372.79 844.075 1375.9 L853.732 1385.56 L850.704 1388.59 L832.372 1370.26 L835.4 1367.23 L838.248 1370.08 Q837.528 1367.46 838.248 1365.13 Q838.952 1362.79 841.129 1360.61 Q841.44 1360.3 841.865 1359.98 Q842.275 1359.63 842.815 1359.26 L845.925 1362.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M846.268 1356.36 L849.28 1353.35 L867.612 1371.68 L864.601 1374.69 L846.268 1356.36 M839.132 1349.22 L842.144 1346.21 L845.957 1350.02 L842.946 1353.04 L839.132 1349.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M848.445 1339.91 L851.457 1336.9 L876.926 1362.37 L873.914 1365.38 L848.445 1339.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M952.346 1402.94 L957.273 1398.02 L980.139 1408.41 L969.778 1385.51 L974.705 1380.58 L999.143 1405.02 L995.918 1408.25 L974.459 1386.79 L984.919 1409.85 L981.596 1413.17 L958.533 1402.71 L979.992 1424.17 L976.784 1427.38 L952.346 1402.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1004.69 1381.04 Q1001.04 1384.69 1000.47 1386.93 Q999.895 1389.18 1001.91 1391.19 Q1003.51 1392.79 1005.51 1392.7 Q1007.51 1392.57 1009.32 1390.75 Q1011.83 1388.24 1011.57 1384.97 Q1011.3 1381.66 1008.36 1378.72 L1007.69 1378.05 L1004.69 1381.04 M1009.45 1373.79 L1019.91 1384.25 L1016.9 1387.26 L1014.12 1384.48 Q1014.76 1387.18 1014.02 1389.52 Q1013.27 1391.84 1011.04 1394.07 Q1008.23 1396.89 1004.99 1396.98 Q1001.75 1397.05 999.093 1394.4 Q996 1391.3 996.491 1387.67 Q996.998 1384.02 1001.11 1379.91 L1005.33 1375.69 L1005.04 1375.39 Q1002.96 1373.32 1000.45 1373.56 Q997.948 1373.77 995.476 1376.25 Q993.905 1377.82 992.792 1379.68 Q991.679 1381.55 991.057 1383.68 L988.274 1380.89 Q989.289 1378.6 990.533 1376.74 Q991.76 1374.85 993.234 1373.38 Q997.211 1369.4 1001.24 1369.5 Q1005.26 1369.6 1009.45 1373.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1035.45 1372.12 Q1037.44 1376.67 1037.23 1378.88 Q1037.02 1381.09 1034.99 1383.12 L1032.58 1385.53 L1030.06 1383.01 L1031.83 1381.24 Q1033.07 1379.99 1033.17 1378.72 Q1033.27 1377.44 1031.91 1374.41 L1031.08 1372.5 L1005.62 1361.87 L1008.82 1358.68 L1028.88 1367.29 L1020.27 1347.23 L1023.47 1344.03 L1035.45 1372.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1114.3 1405.86 L1117.61 1402.55 L1140.35 1425.28 Q1144.77 1429.7 1145.08 1433.39 Q1145.4 1437.05 1141.69 1440.77 L1140.43 1442.03 L1137.65 1439.25 L1138.68 1438.22 Q1140.87 1436.02 1140.54 1433.89 Q1140.22 1431.77 1137.04 1428.59 L1114.3 1405.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1140.95 1413.61 L1129.85 1402.52 L1132.87 1399.51 L1143.85 1410.49 Q1146.45 1413.09 1148.78 1413.39 Q1151.08 1413.66 1153.11 1411.63 Q1155.55 1409.2 1155.4 1406.23 Q1155.27 1403.25 1152.59 1400.57 L1142.2 1390.18 L1145.21 1387.16 L1163.54 1405.5 L1160.53 1408.51 L1157.71 1405.69 Q1158.29 1408.46 1157.65 1410.73 Q1157.01 1412.98 1155.09 1414.89 Q1151.93 1418.05 1148.33 1417.72 Q1144.73 1417.4 1140.95 1413.61 M1136.99 1394.5 L1136.99 1394.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1173.92 1372.99 L1184.98 1384.05 L1181.97 1387.07 L1171 1376.1 Q1168.4 1373.5 1166.09 1373.22 Q1163.79 1372.94 1161.76 1374.97 Q1159.32 1377.41 1159.46 1380.37 Q1159.61 1383.33 1162.3 1386.02 L1172.66 1396.38 L1169.63 1399.41 L1151.3 1381.07 L1154.32 1378.05 L1157.17 1380.89 Q1156.6 1378.16 1157.24 1375.89 Q1157.89 1373.59 1159.81 1371.68 Q1162.97 1368.52 1166.55 1368.86 Q1170.12 1369.19 1173.92 1372.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1196.75 1352.45 L1198.22 1353.92 L1184.38 1367.77 Q1187.68 1370.68 1190.99 1370.65 Q1194.3 1370.58 1197.29 1367.59 Q1199.03 1365.85 1200.22 1363.81 Q1201.43 1361.74 1202.18 1359.29 L1205.03 1362.14 Q1204.1 1364.44 1202.76 1366.51 Q1201.42 1368.57 1199.66 1370.32 Q1195.28 1374.71 1190.15 1374.72 Q1185.05 1374.72 1180.69 1370.37 Q1176.19 1365.87 1175.98 1360.81 Q1175.77 1355.72 1179.89 1351.6 Q1183.59 1347.9 1188.12 1348.14 Q1192.66 1348.35 1196.75 1352.45 M1192.86 1354.57 Q1190.35 1352.14 1187.52 1352.02 Q1184.7 1351.89 1182.48 1354.12 Q1179.96 1356.64 1179.86 1359.58 Q1179.78 1362.51 1182.13 1365.33 L1192.86 1354.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1291.11 1393.92 L1294.42 1390.62 L1317.15 1413.35 Q1321.57 1417.77 1321.88 1421.45 Q1322.21 1425.12 1318.49 1428.84 L1317.23 1430.1 L1314.45 1427.31 L1315.48 1426.28 Q1317.67 1424.09 1317.35 1421.96 Q1317.02 1419.83 1313.84 1416.66 L1291.11 1393.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1317.76 1401.68 L1306.66 1390.58 L1309.67 1387.57 L1320.65 1398.56 Q1323.26 1401.16 1325.58 1401.45 Q1327.89 1401.73 1329.92 1399.7 Q1332.36 1397.26 1332.21 1394.3 Q1332.08 1391.32 1329.39 1388.64 L1319 1378.24 L1322.01 1375.23 L1340.34 1393.56 L1337.33 1396.58 L1334.52 1393.76 Q1335.09 1396.53 1334.45 1398.8 Q1333.81 1401.04 1331.9 1402.96 Q1328.74 1406.12 1325.14 1405.79 Q1321.54 1405.46 1317.76 1401.68 M1313.79 1382.56 L1313.79 1382.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1321.08 1361.89 L1324.09 1358.88 L1349.56 1384.35 L1346.55 1387.36 L1321.08 1361.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1365.19 1372.12 Q1367.19 1376.67 1366.97 1378.88 Q1366.76 1381.09 1364.73 1383.12 L1362.33 1385.53 L1359.81 1383.01 L1361.57 1381.24 Q1362.82 1379.99 1362.92 1378.72 Q1363.01 1377.44 1361.66 1374.41 L1360.82 1372.5 L1335.37 1361.87 L1338.56 1358.68 L1358.63 1367.29 L1350.02 1347.23 L1353.21 1344.03 L1365.19 1372.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1410.18 1446.24 L1417.86 1462.88 L1426.85 1453.9 L1410.18 1446.24 M1405.06 1444.84 L1408.81 1441.1 L1442.56 1456.22 L1439.12 1459.66 L1430.63 1455.62 L1419.61 1466.63 L1423.65 1475.13 L1420.17 1478.61 L1405.06 1444.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1438.45 1445.86 L1427.35 1434.76 L1430.36 1431.75 L1441.35 1442.73 Q1443.95 1445.34 1446.27 1445.63 Q1448.58 1445.91 1450.61 1443.88 Q1453.05 1441.44 1452.9 1438.48 Q1452.77 1435.5 1450.09 1432.81 L1439.69 1422.42 L1442.71 1419.41 L1461.04 1437.74 L1458.03 1440.75 L1455.21 1437.94 Q1455.78 1440.7 1455.15 1442.98 Q1454.51 1445.22 1452.59 1447.14 Q1449.43 1450.3 1445.83 1449.97 Q1442.23 1449.64 1438.45 1445.86 M1434.49 1426.74 L1434.49 1426.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1469.93 1410.1 Q1466.65 1406.82 1463.49 1406.38 Q1460.35 1405.92 1457.91 1408.36 Q1455.49 1410.78 1455.93 1413.94 Q1456.39 1417.08 1459.66 1420.36 Q1462.92 1423.62 1466.06 1424.07 Q1469.22 1424.52 1471.64 1422.09 Q1474.08 1419.65 1473.63 1416.51 Q1473.18 1413.35 1469.93 1410.1 M1480.04 1414.19 Q1484.72 1418.87 1484.92 1423.22 Q1485.13 1427.59 1480.84 1431.88 Q1479.26 1433.47 1477.6 1434.63 Q1475.97 1435.81 1474.15 1436.64 L1471.22 1433.71 Q1473.27 1433.11 1474.9 1432.16 Q1476.54 1431.21 1477.88 1429.87 Q1480.84 1426.91 1480.76 1423.88 Q1480.7 1420.87 1477.57 1417.74 L1476.08 1416.25 Q1476.77 1418.8 1476.11 1421.06 Q1475.46 1423.32 1473.43 1425.35 Q1470.06 1428.72 1465.42 1428.21 Q1460.79 1427.71 1456.55 1423.47 Q1452.3 1419.21 1451.79 1414.58 Q1451.28 1409.95 1454.65 1406.58 Q1456.68 1404.55 1458.94 1403.89 Q1461.2 1403.24 1463.76 1403.92 L1460.97 1401.14 L1463.98 1398.13 L1480.04 1414.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1480.97 1403.34 L1469.88 1392.24 L1472.89 1389.23 L1483.87 1400.21 Q1486.47 1402.81 1488.8 1403.11 Q1491.11 1403.38 1493.14 1401.35 Q1495.58 1398.92 1495.43 1395.95 Q1495.3 1392.97 1492.61 1390.29 L1482.22 1379.9 L1485.23 1376.88 L1503.56 1395.22 L1500.55 1398.23 L1497.74 1395.41 Q1498.31 1398.18 1497.67 1400.45 Q1497.03 1402.7 1495.12 1404.61 Q1491.96 1407.77 1488.36 1407.44 Q1484.76 1407.12 1480.97 1403.34 M1477.01 1384.22 L1477.01 1384.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1503.66 1359.53 L1506.51 1362.38 Q1504.58 1363 1502.88 1364.05 Q1501.17 1365.1 1499.7 1366.57 Q1497.46 1368.81 1497.02 1370.63 Q1496.59 1372.43 1497.96 1373.81 Q1499.01 1374.85 1500.42 1374.66 Q1501.81 1374.45 1504.77 1372.56 L1506.03 1371.76 Q1509.93 1369.24 1512.53 1369.16 Q1515.13 1369.04 1517.38 1371.29 Q1519.93 1373.84 1519.39 1377.36 Q1518.87 1380.86 1515.33 1384.4 Q1513.86 1385.87 1511.96 1387.18 Q1510.09 1388.49 1507.75 1389.68 L1504.64 1386.57 Q1507.18 1385.77 1509.24 1384.59 Q1511.29 1383.4 1512.88 1381.81 Q1515 1379.68 1515.43 1377.82 Q1515.84 1375.94 1514.51 1374.61 Q1513.29 1373.38 1511.8 1373.56 Q1510.32 1373.73 1506.92 1375.92 L1505.63 1376.72 Q1502.24 1378.93 1499.78 1378.96 Q1497.31 1378.98 1495.18 1376.85 Q1492.6 1374.27 1493.02 1371.02 Q1493.45 1367.78 1496.82 1364.41 Q1498.49 1362.74 1500.21 1361.51 Q1501.93 1360.29 1503.66 1359.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1506.67 1345.03 L1511.88 1350.24 L1518.08 1344.03 L1520.42 1346.37 L1514.22 1352.58 L1524.17 1362.53 Q1526.41 1364.77 1527.66 1364.8 Q1528.92 1364.82 1530.8 1362.94 L1533.89 1359.85 L1536.41 1362.37 L1533.32 1365.46 Q1529.83 1368.95 1527.21 1368.98 Q1524.58 1368.99 1521.14 1365.56 L1511.19 1355.61 L1508.98 1357.82 L1506.64 1355.47 L1508.85 1353.27 L1503.64 1348.06 L1506.67 1345.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1510.3 1506.08 L1513.53 1509.3 Q1510.74 1510.28 1508.63 1511.51 Q1506.52 1512.74 1504.97 1514.29 Q1502.27 1517 1501.84 1519.52 Q1501.43 1522.02 1503.36 1523.95 Q1504.98 1525.57 1506.78 1525.44 Q1508.58 1525.28 1511.81 1523.07 L1514.21 1521.48 Q1518.62 1518.49 1522.15 1518.52 Q1525.69 1518.52 1528.67 1521.5 Q1532.22 1525.05 1531.66 1529.27 Q1531.12 1533.48 1526.52 1538.08 Q1524.79 1539.81 1522.43 1541.38 Q1520.09 1542.94 1517.23 1544.26 L1513.82 1540.86 Q1516.96 1539.98 1519.47 1538.62 Q1521.97 1537.26 1523.84 1535.39 Q1526.67 1532.56 1527.1 1529.91 Q1527.52 1527.26 1525.46 1525.2 Q1523.66 1523.4 1521.53 1523.49 Q1519.42 1523.58 1516.39 1525.59 L1513.98 1527.21 Q1509.55 1530.17 1506.32 1530.25 Q1503.1 1530.34 1500.3 1527.54 Q1497.06 1524.3 1497.47 1520.15 Q1497.9 1516 1501.91 1511.99 Q1503.62 1510.27 1505.72 1508.8 Q1507.81 1507.32 1510.3 1506.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1546.2 1497.62 L1547.67 1499.09 L1533.82 1512.94 Q1537.13 1515.85 1540.44 1515.82 Q1543.74 1515.75 1546.74 1512.76 Q1548.47 1511.02 1549.67 1508.98 Q1550.88 1506.91 1551.63 1504.46 L1554.48 1507.31 Q1553.55 1509.61 1552.2 1511.68 Q1550.86 1513.74 1549.11 1515.49 Q1544.72 1519.88 1539.6 1519.89 Q1534.49 1519.89 1530.14 1515.54 Q1525.64 1511.04 1525.43 1505.98 Q1525.21 1500.89 1529.34 1496.76 Q1533.04 1493.07 1537.57 1493.31 Q1542.11 1493.52 1546.2 1497.62 M1542.3 1499.74 Q1539.8 1497.3 1536.97 1497.19 Q1534.15 1497.06 1531.92 1499.29 Q1529.4 1501.81 1529.31 1504.75 Q1529.22 1507.68 1531.58 1510.5 L1542.3 1499.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1561.22 1496.93 L1570.95 1506.65 L1567.92 1509.68 L1542.61 1484.37 L1545.64 1481.35 L1548.42 1484.13 Q1547.74 1481.54 1548.39 1479.32 Q1549.05 1477.06 1551.06 1475.04 Q1554.4 1471.7 1559.13 1472.28 Q1563.88 1472.83 1568.2 1477.16 Q1572.52 1481.48 1573.07 1486.22 Q1573.65 1490.95 1570.31 1494.29 Q1568.29 1496.31 1566.05 1496.98 Q1563.81 1497.62 1561.22 1496.93 M1565.07 1480.28 Q1561.75 1476.96 1558.49 1476.45 Q1555.23 1475.91 1552.84 1478.3 Q1550.45 1480.69 1550.98 1483.96 Q1551.5 1487.21 1554.82 1490.53 Q1558.15 1493.85 1561.4 1494.39 Q1564.66 1494.9 1567.05 1492.51 Q1569.44 1490.12 1568.92 1486.88 Q1568.39 1483.6 1565.07 1480.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1561.78 1454.8 L1566.98 1460 L1573.19 1453.8 L1575.53 1456.14 L1569.33 1462.34 L1579.28 1472.29 Q1581.52 1474.54 1582.76 1474.57 Q1584.02 1474.59 1585.91 1472.7 L1589 1469.61 L1591.52 1472.13 L1588.43 1475.22 Q1584.94 1478.71 1582.32 1478.74 Q1579.69 1478.76 1576.25 1475.32 L1566.3 1465.37 L1564.09 1467.58 L1561.75 1465.24 L1563.96 1463.03 L1558.75 1457.82 L1561.78 1454.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1601.24 1442.57 L1602.72 1444.04 L1588.87 1457.89 Q1592.18 1460.8 1595.48 1460.77 Q1598.79 1460.71 1601.78 1457.71 Q1603.52 1455.98 1604.71 1453.93 Q1605.92 1451.87 1606.68 1449.41 L1609.53 1452.26 Q1608.59 1454.57 1607.25 1456.63 Q1605.91 1458.69 1604.16 1460.44 Q1599.77 1464.83 1594.65 1464.85 Q1589.54 1464.85 1585.19 1460.49 Q1580.69 1455.99 1580.47 1450.93 Q1580.26 1445.84 1584.38 1441.72 Q1588.08 1438.02 1592.62 1438.26 Q1597.15 1438.48 1601.24 1442.57 M1597.35 1444.7 Q1594.84 1442.26 1592.01 1442.14 Q1589.2 1442.01 1586.97 1444.24 Q1584.45 1446.76 1584.35 1449.71 Q1584.27 1452.64 1586.63 1455.45 L1597.35 1444.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1615.57 1418.46 Q1614.67 1415.3 1615.27 1412.76 Q1615.88 1410.23 1618 1408.1 Q1620.87 1405.23 1624.44 1405.69 Q1627.99 1406.13 1631.69 1409.83 L1642.75 1420.9 L1639.72 1423.93 L1628.76 1412.96 Q1626.12 1410.32 1623.91 1409.98 Q1621.7 1409.64 1619.79 1411.55 Q1617.45 1413.89 1617.64 1416.81 Q1617.84 1419.72 1620.53 1422.4 L1630.89 1432.77 L1627.86 1435.79 L1616.89 1424.83 Q1614.24 1422.18 1612.05 1421.85 Q1609.84 1421.5 1607.89 1423.45 Q1605.58 1425.76 1605.79 1428.69 Q1605.99 1431.6 1608.66 1434.27 L1619.02 1444.63 L1615.99 1447.66 L1597.66 1429.33 L1600.69 1426.3 L1603.53 1429.15 Q1602.88 1426.43 1603.52 1424.19 Q1604.16 1421.95 1606.14 1419.97 Q1608.13 1417.97 1610.54 1417.59 Q1612.96 1417.2 1615.57 1418.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1652.77 1392.58 Q1649.45 1389.26 1646.19 1388.75 Q1642.93 1388.21 1640.54 1390.6 Q1638.15 1392.99 1638.68 1396.26 Q1639.2 1399.51 1642.52 1402.83 Q1645.85 1406.15 1649.1 1406.69 Q1652.36 1407.2 1654.75 1404.81 Q1657.14 1402.42 1656.62 1399.18 Q1656.09 1395.9 1652.77 1392.58 M1636.12 1396.43 Q1635.44 1393.84 1636.09 1391.62 Q1636.75 1389.36 1638.76 1387.34 Q1642.1 1384 1646.83 1384.58 Q1651.58 1385.13 1655.9 1389.46 Q1660.22 1393.78 1660.77 1398.52 Q1661.35 1403.25 1658.01 1406.59 Q1655.99 1408.61 1653.75 1409.28 Q1651.51 1409.92 1648.92 1409.23 L1651.67 1411.98 L1648.65 1415.01 L1623.18 1389.54 L1626.2 1386.51 L1636.12 1396.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1675.8 1368.01 L1677.27 1369.49 L1663.43 1383.33 Q1666.73 1386.25 1670.04 1386.21 Q1673.35 1386.15 1676.34 1383.15 Q1678.08 1381.42 1679.27 1379.37 Q1680.48 1377.31 1681.23 1374.85 L1684.08 1377.7 Q1683.15 1380.01 1681.81 1382.07 Q1680.47 1384.14 1678.71 1385.89 Q1674.33 1390.27 1669.2 1390.29 Q1664.1 1390.29 1659.74 1385.94 Q1655.24 1381.43 1655.03 1376.38 Q1654.82 1371.29 1658.94 1367.16 Q1662.64 1363.46 1667.17 1363.71 Q1671.71 1363.92 1675.8 1368.01 M1671.9 1370.14 Q1669.4 1367.7 1666.57 1367.59 Q1663.75 1367.46 1661.53 1369.68 Q1659.01 1372.2 1658.91 1375.15 Q1658.83 1378.08 1661.18 1380.89 L1671.9 1370.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1685.77 1346.85 Q1684.97 1347.06 1684.23 1347.54 Q1683.49 1347.98 1682.77 1348.7 Q1680.22 1351.25 1680.51 1354.3 Q1680.81 1357.31 1683.92 1360.42 L1693.58 1370.08 L1690.55 1373.1 L1672.22 1354.77 L1675.24 1351.74 L1678.09 1354.59 Q1677.37 1351.97 1678.09 1349.65 Q1678.8 1347.31 1680.97 1345.13 Q1681.28 1344.82 1681.71 1344.49 Q1682.12 1344.15 1682.66 1343.77 L1685.77 1346.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1723.02 1461.11 Q1719.42 1464.72 1719.97 1469.53 Q1720.55 1474.32 1725.18 1478.96 Q1729.79 1483.57 1734.59 1484.14 Q1739.4 1484.7 1743 1481.1 Q1746.6 1477.5 1746.02 1472.72 Q1745.44 1467.92 1740.83 1463.31 Q1736.19 1458.68 1731.4 1458.1 Q1726.62 1457.51 1723.02 1461.11 M1720.33 1458.43 Q1725.47 1453.29 1732 1453.67 Q1738.52 1454.03 1744.31 1459.82 Q1750.09 1465.6 1750.47 1472.13 Q1750.83 1478.65 1745.69 1483.78 Q1740.53 1488.94 1734 1488.6 Q1727.49 1488.24 1721.69 1482.44 Q1715.9 1476.65 1715.54 1470.13 Q1715.18 1463.59 1720.33 1458.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1757.11 1436.15 L1759.93 1438.97 Q1757.95 1439.54 1756.31 1440.49 Q1754.67 1441.41 1753.36 1442.72 Q1750.43 1445.65 1750.68 1449.13 Q1750.91 1452.6 1754.26 1455.96 Q1757.62 1459.31 1761.11 1459.56 Q1764.58 1459.79 1767.51 1456.86 Q1768.82 1455.55 1769.75 1453.93 Q1770.68 1452.28 1771.25 1450.3 L1774.04 1453.08 Q1773.37 1454.93 1772.3 1456.58 Q1771.25 1458.22 1769.73 1459.74 Q1765.59 1463.88 1760.55 1463.72 Q1755.51 1463.55 1751.09 1459.13 Q1746.6 1454.65 1746.49 1449.62 Q1746.39 1444.58 1750.68 1440.29 Q1752.07 1438.9 1753.69 1437.87 Q1755.3 1436.82 1757.11 1436.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1759.42 1422.03 L1764.63 1427.23 L1770.83 1421.03 L1773.17 1423.37 L1766.97 1429.57 L1776.92 1439.53 Q1779.16 1441.77 1780.4 1441.8 Q1781.67 1441.82 1783.55 1439.93 L1786.64 1436.84 L1789.16 1439.36 L1786.07 1442.46 Q1782.58 1445.94 1779.96 1445.97 Q1777.33 1445.99 1773.89 1442.55 L1763.94 1432.6 L1761.73 1434.81 L1759.39 1432.47 L1761.6 1430.26 L1756.39 1425.06 L1759.42 1422.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1784.01 1412.08 Q1781.58 1414.5 1782.07 1417.8 Q1782.55 1421.09 1785.84 1424.38 Q1789.13 1427.67 1792.42 1428.18 Q1795.71 1428.66 1798.15 1426.22 Q1800.55 1423.81 1800.06 1420.51 Q1799.57 1417.2 1796.3 1413.93 Q1793.04 1410.67 1789.73 1410.18 Q1786.41 1409.67 1784.01 1412.08 M1781.45 1409.52 Q1785.38 1405.59 1790.18 1405.91 Q1794.97 1406.22 1799.49 1410.73 Q1803.99 1415.23 1804.32 1420.05 Q1804.63 1424.84 1800.7 1428.77 Q1796.76 1432.72 1791.96 1432.41 Q1787.16 1432.06 1782.66 1427.56 Q1778.15 1423.04 1777.82 1418.26 Q1777.51 1413.47 1781.45 1409.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1817.64 1392.58 Q1814.32 1389.26 1811.06 1388.75 Q1807.8 1388.21 1805.42 1390.6 Q1803.03 1392.99 1803.55 1396.26 Q1804.07 1399.51 1807.4 1402.83 Q1810.72 1406.15 1813.98 1406.69 Q1817.23 1407.2 1819.62 1404.81 Q1822.01 1402.42 1821.49 1399.18 Q1820.96 1395.9 1817.64 1392.58 M1801 1396.43 Q1800.31 1393.84 1800.96 1391.62 Q1801.62 1389.36 1803.63 1387.34 Q1806.97 1384 1811.7 1384.58 Q1816.45 1385.13 1820.77 1389.46 Q1825.09 1393.78 1825.65 1398.52 Q1826.22 1403.25 1822.88 1406.59 Q1820.87 1408.61 1818.62 1409.28 Q1816.38 1409.92 1813.8 1409.23 L1816.55 1411.98 L1813.52 1415.01 L1788.05 1389.54 L1791.08 1386.51 L1801 1396.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1840.67 1368.01 L1842.15 1369.49 L1828.3 1383.33 Q1831.6 1386.25 1834.91 1386.21 Q1838.22 1386.15 1841.21 1383.15 Q1842.95 1381.42 1844.14 1379.37 Q1845.35 1377.31 1846.11 1374.85 L1848.95 1377.7 Q1848.02 1380.01 1846.68 1382.07 Q1845.34 1384.14 1843.59 1385.89 Q1839.2 1390.27 1834.08 1390.29 Q1828.97 1390.29 1824.62 1385.94 Q1820.11 1381.43 1819.9 1376.38 Q1819.69 1371.29 1823.81 1367.16 Q1827.51 1363.46 1832.05 1363.71 Q1836.58 1363.92 1840.67 1368.01 M1836.78 1370.14 Q1834.27 1367.7 1831.44 1367.59 Q1828.63 1367.46 1826.4 1369.68 Q1823.88 1372.2 1823.78 1375.15 Q1823.7 1378.08 1826.06 1380.89 L1836.78 1370.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1850.64 1346.85 Q1849.84 1347.06 1849.1 1347.54 Q1848.37 1347.98 1847.64 1348.7 Q1845.09 1351.25 1845.39 1354.3 Q1845.68 1357.31 1848.79 1360.42 L1858.45 1370.08 L1855.42 1373.1 L1837.09 1354.77 L1840.12 1351.74 L1842.96 1354.59 Q1842.24 1351.97 1842.96 1349.65 Q1843.67 1347.31 1845.84 1345.13 Q1846.16 1344.82 1846.58 1344.49 Q1846.99 1344.15 1847.53 1343.77 L1850.64 1346.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1835.5 1509.02 L1839.95 1504.57 L1871.23 1514.18 L1850.78 1493.74 L1853.99 1490.53 L1878.43 1514.97 L1873.98 1519.42 L1842.7 1509.81 L1863.14 1530.25 L1859.93 1533.46 L1835.5 1509.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1875.76 1485.19 Q1873.34 1487.61 1873.83 1490.92 Q1874.3 1494.21 1877.59 1497.5 Q1880.88 1500.79 1884.17 1501.3 Q1887.46 1501.77 1889.9 1499.33 Q1892.31 1496.93 1891.82 1493.62 Q1891.33 1490.32 1888.05 1487.04 Q1884.8 1483.78 1881.49 1483.29 Q1878.17 1482.79 1875.76 1485.19 M1873.21 1482.64 Q1877.14 1478.71 1881.93 1479.02 Q1886.73 1479.33 1891.25 1483.85 Q1895.75 1488.35 1896.07 1493.16 Q1896.39 1497.96 1892.46 1501.89 Q1888.51 1505.83 1883.72 1505.52 Q1878.92 1505.18 1874.42 1500.68 Q1869.9 1496.16 1869.57 1491.38 Q1869.26 1486.58 1873.21 1482.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1884.89 1471.84 L1888.09 1468.64 L1909.2 1478.3 L1899.54 1457.19 L1902.74 1453.99 L1914.19 1479.2 L1910.1 1483.29 L1884.89 1471.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1930.99 1442.57 L1932.46 1444.04 L1918.61 1457.89 Q1921.92 1460.8 1925.23 1460.77 Q1928.53 1460.71 1931.53 1457.71 Q1933.26 1455.98 1934.46 1453.93 Q1935.67 1451.87 1936.42 1449.41 L1939.27 1452.26 Q1938.34 1454.57 1936.99 1456.63 Q1935.65 1458.69 1933.9 1460.44 Q1929.51 1464.83 1924.39 1464.85 Q1919.28 1464.85 1914.93 1460.49 Q1910.43 1455.99 1910.22 1450.93 Q1910 1445.84 1914.13 1441.72 Q1917.83 1438.02 1922.36 1438.26 Q1926.9 1438.48 1930.99 1442.57 M1927.09 1444.7 Q1924.59 1442.26 1921.76 1442.14 Q1918.94 1442.01 1916.71 1444.24 Q1914.19 1446.76 1914.1 1449.71 Q1914.01 1452.64 1916.37 1455.45 L1927.09 1444.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1945.31 1418.46 Q1944.41 1415.3 1945.01 1412.76 Q1945.62 1410.23 1947.75 1408.1 Q1950.61 1405.23 1954.18 1405.69 Q1957.73 1406.13 1961.43 1409.83 L1972.5 1420.9 L1969.47 1423.93 L1958.5 1412.96 Q1955.87 1410.32 1953.66 1409.98 Q1951.45 1409.64 1949.53 1411.55 Q1947.19 1413.89 1947.39 1416.81 Q1947.58 1419.72 1950.27 1422.4 L1960.63 1432.77 L1957.6 1435.79 L1946.64 1424.83 Q1943.98 1422.18 1941.79 1421.85 Q1939.58 1421.5 1937.63 1423.45 Q1935.32 1425.76 1935.54 1428.69 Q1935.73 1431.6 1938.4 1434.27 L1948.76 1444.63 L1945.73 1447.66 L1927.4 1429.33 L1930.43 1426.3 L1933.28 1429.15 Q1932.62 1426.43 1933.26 1424.19 Q1933.9 1421.95 1935.88 1419.97 Q1937.88 1417.97 1940.28 1417.59 Q1942.71 1417.2 1945.31 1418.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M1982.51 1392.58 Q1979.19 1389.26 1975.93 1388.75 Q1972.68 1388.21 1970.29 1390.6 Q1967.9 1392.99 1968.42 1396.26 Q1968.94 1399.51 1972.27 1402.83 Q1975.59 1406.15 1978.85 1406.69 Q1982.1 1407.2 1984.49 1404.81 Q1986.88 1402.42 1986.36 1399.18 Q1985.84 1395.9 1982.51 1392.58 M1965.87 1396.43 Q1965.18 1393.84 1965.83 1391.62 Q1966.49 1389.36 1968.5 1387.34 Q1971.84 1384 1976.57 1384.58 Q1981.32 1385.13 1985.64 1389.46 Q1989.96 1393.78 1990.52 1398.52 Q1991.09 1403.25 1987.75 1406.59 Q1985.74 1408.61 1983.5 1409.28 Q1981.25 1409.92 1978.67 1409.23 L1981.42 1411.98 L1978.39 1415.01 L1952.92 1389.54 L1955.95 1386.51 L1965.87 1396.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2005.54 1368.01 L2007.02 1369.49 L1993.17 1383.33 Q1996.48 1386.25 1999.78 1386.21 Q2003.09 1386.15 2006.08 1383.15 Q2007.82 1381.42 2009.01 1379.37 Q2010.23 1377.31 2010.98 1374.85 L2013.83 1377.7 Q2012.89 1380.01 2011.55 1382.07 Q2010.21 1384.14 2008.46 1385.89 Q2004.07 1390.27 1998.95 1390.29 Q1993.84 1390.29 1989.49 1385.94 Q1984.99 1381.43 1984.77 1376.38 Q1984.56 1371.29 1988.68 1367.16 Q1992.38 1363.46 1996.92 1363.71 Q2001.45 1363.92 2005.54 1368.01 M2001.65 1370.14 Q1999.14 1367.7 1996.31 1367.59 Q1993.5 1367.46 1991.27 1369.68 Q1988.75 1372.2 1988.65 1375.15 Q1988.57 1378.08 1990.93 1380.89 L2001.65 1370.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2015.51 1346.85 Q2014.71 1347.06 2013.97 1347.54 Q2013.24 1347.98 2012.52 1348.7 Q2009.96 1351.25 2010.26 1354.3 Q2010.55 1357.31 2013.66 1360.42 L2023.32 1370.08 L2020.29 1373.1 L2001.96 1354.77 L2004.99 1351.74 L2007.84 1354.59 Q2007.12 1351.97 2007.84 1349.65 Q2008.54 1347.31 2010.72 1345.13 Q2011.03 1344.82 2011.45 1344.49 Q2011.86 1344.15 2012.4 1343.77 L2015.51 1346.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2006.95 1507.88 L2025.95 1526.88 L2029.94 1522.89 Q2035 1517.83 2035.05 1513.2 Q2035.12 1508.55 2030.17 1503.61 Q2025.26 1498.7 2020.63 1498.78 Q2016 1498.83 2010.94 1503.88 L2006.95 1507.88 M2000.92 1508.47 L2007.72 1501.68 Q2014.82 1494.57 2021.11 1494.21 Q2027.37 1493.83 2033.66 1500.12 Q2039.98 1506.44 2039.6 1512.74 Q2039.23 1519.04 2032.15 1526.11 L2025.36 1532.91 L2000.92 1508.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2056.8 1481.62 L2058.28 1483.1 L2044.43 1496.94 Q2047.74 1499.86 2051.04 1499.83 Q2054.35 1499.76 2057.34 1496.76 Q2059.08 1495.03 2060.27 1492.98 Q2061.49 1490.92 2062.24 1488.47 L2065.09 1491.31 Q2064.15 1493.62 2062.81 1495.68 Q2061.47 1497.75 2059.72 1499.5 Q2055.33 1503.88 2050.21 1503.9 Q2045.1 1503.9 2040.75 1499.55 Q2036.25 1495.05 2036.03 1489.99 Q2035.82 1484.9 2039.95 1480.77 Q2043.64 1477.07 2048.18 1477.32 Q2052.71 1477.53 2056.8 1481.62 M2052.91 1483.75 Q2050.4 1481.31 2047.57 1481.2 Q2044.76 1481.07 2042.53 1483.29 Q2040.01 1485.81 2039.91 1488.76 Q2039.83 1491.69 2042.19 1494.51 L2052.91 1483.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2067.23 1455.78 L2070.05 1458.59 Q2068.07 1459.17 2066.43 1460.12 Q2064.79 1461.03 2063.48 1462.34 Q2060.55 1465.27 2060.8 1468.76 Q2061.03 1472.23 2064.38 1475.58 Q2067.74 1478.94 2071.23 1479.19 Q2074.7 1479.41 2077.63 1476.48 Q2078.93 1475.18 2079.87 1473.55 Q2080.8 1471.9 2081.37 1469.92 L2084.16 1472.7 Q2083.48 1474.55 2082.42 1476.21 Q2081.37 1477.84 2079.85 1479.37 Q2075.71 1483.51 2070.67 1483.34 Q2065.63 1483.18 2061.21 1478.76 Q2056.72 1474.27 2056.61 1469.25 Q2056.51 1464.21 2060.8 1459.92 Q2062.19 1458.53 2063.81 1457.5 Q2065.41 1456.45 2067.23 1455.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2095.86 1442.57 L2097.33 1444.04 L2083.48 1457.89 Q2086.79 1460.8 2090.1 1460.77 Q2093.4 1460.71 2096.4 1457.71 Q2098.13 1455.98 2099.33 1453.93 Q2100.54 1451.87 2101.29 1449.41 L2104.14 1452.26 Q2103.21 1454.57 2101.87 1456.63 Q2100.52 1458.69 2098.77 1460.44 Q2094.39 1464.83 2089.26 1464.85 Q2084.16 1464.85 2079.8 1460.49 Q2075.3 1455.99 2075.09 1450.93 Q2074.88 1445.84 2079 1441.72 Q2082.7 1438.02 2087.23 1438.26 Q2091.77 1438.48 2095.86 1442.57 M2091.96 1444.7 Q2089.46 1442.26 2086.63 1442.14 Q2083.81 1442.01 2081.59 1444.24 Q2079.07 1446.76 2078.97 1449.71 Q2078.89 1452.64 2081.24 1455.45 L2091.96 1444.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2110.18 1418.46 Q2109.28 1415.3 2109.89 1412.76 Q2110.49 1410.23 2112.62 1408.1 Q2115.48 1405.23 2119.05 1405.69 Q2122.6 1406.13 2126.3 1409.83 L2137.37 1420.9 L2134.34 1423.93 L2123.37 1412.96 Q2120.74 1410.32 2118.53 1409.98 Q2116.32 1409.64 2114.4 1411.55 Q2112.06 1413.89 2112.26 1416.81 Q2112.46 1419.72 2115.14 1422.4 L2125.5 1432.77 L2122.47 1435.79 L2111.51 1424.83 Q2108.86 1422.18 2106.66 1421.85 Q2104.45 1421.5 2102.5 1423.45 Q2100.2 1425.76 2100.41 1428.69 Q2100.61 1431.6 2103.27 1434.27 L2113.63 1444.63 L2110.61 1447.66 L2092.27 1429.33 L2095.3 1426.3 L2098.15 1429.15 Q2097.5 1426.43 2098.13 1424.19 Q2098.77 1421.95 2100.75 1419.97 Q2102.75 1417.97 2105.16 1417.59 Q2107.58 1417.2 2110.18 1418.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2147.39 1392.58 Q2144.06 1389.26 2140.81 1388.75 Q2137.55 1388.21 2135.16 1390.6 Q2132.77 1392.99 2133.29 1396.26 Q2133.82 1399.51 2137.14 1402.83 Q2140.46 1406.15 2143.72 1406.69 Q2146.98 1407.2 2149.37 1404.81 Q2151.76 1402.42 2151.23 1399.18 Q2150.71 1395.9 2147.39 1392.58 M2130.74 1396.43 Q2130.05 1393.84 2130.71 1391.62 Q2131.36 1389.36 2133.37 1387.34 Q2136.71 1384 2141.44 1384.58 Q2146.19 1385.13 2150.51 1389.46 Q2154.83 1393.78 2155.39 1398.52 Q2155.96 1403.25 2152.62 1406.59 Q2150.61 1408.61 2148.37 1409.28 Q2146.13 1409.92 2143.54 1409.23 L2146.29 1411.98 L2143.26 1415.01 L2117.79 1389.54 L2120.82 1386.51 L2130.74 1396.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2170.42 1368.01 L2171.89 1369.49 L2158.04 1383.33 Q2161.35 1386.25 2164.65 1386.21 Q2167.96 1386.15 2170.96 1383.15 Q2172.69 1381.42 2173.89 1379.37 Q2175.1 1377.31 2175.85 1374.85 L2178.7 1377.7 Q2177.77 1380.01 2176.42 1382.07 Q2175.08 1384.14 2173.33 1385.89 Q2168.94 1390.27 2163.82 1390.29 Q2158.71 1390.29 2154.36 1385.94 Q2149.86 1381.43 2149.64 1376.38 Q2149.43 1371.29 2153.56 1367.16 Q2157.26 1363.46 2161.79 1363.71 Q2166.32 1363.92 2170.42 1368.01 M2166.52 1370.14 Q2164.02 1367.7 2161.18 1367.59 Q2158.37 1367.46 2156.14 1369.68 Q2153.62 1372.2 2153.52 1375.15 Q2153.44 1378.08 2155.8 1380.89 L2166.52 1370.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M2180.38 1346.85 Q2179.58 1347.06 2178.85 1347.54 Q2178.11 1347.98 2177.39 1348.7 Q2174.84 1351.25 2175.13 1354.3 Q2175.42 1357.31 2178.53 1360.42 L2188.19 1370.08 L2185.16 1373.1 L2166.83 1354.77 L2169.86 1351.74 L2172.71 1354.59 Q2171.99 1351.97 2172.71 1349.65 Q2173.41 1347.31 2175.59 1345.13 Q2175.9 1344.82 2176.32 1344.49 Q2176.73 1344.15 2177.27 1343.77 L2180.38 1346.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,1277.99 2352.76,1277.99 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,936.593 2352.76,936.593 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,595.192 2352.76,595.192 \n", " \"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 166.805,253.792 2352.76,253.792 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1313.84 166.805,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,1277.99 193.037,1277.99 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,936.593 193.037,936.593 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,595.192 193.037,595.192 \n", " \"/>\n", "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 166.805,253.792 193.037,253.792 \n", " \"/>\n", "<path clip-path=\"url(#clip980)\" d=\"M118.861 1263.79 Q115.25 1263.79 113.421 1267.36 Q111.615 1270.9 111.615 1278.03 Q111.615 1285.13 113.421 1288.7 Q115.25 1292.24 118.861 1292.24 Q122.495 1292.24 124.301 1288.7 Q126.129 1285.13 126.129 1278.03 Q126.129 1270.9 124.301 1267.36 Q122.495 1263.79 118.861 1263.79 M118.861 1260.09 Q124.671 1260.09 127.727 1264.7 Q130.805 1269.28 130.805 1278.03 Q130.805 1286.76 127.727 1291.36 Q124.671 1295.94 118.861 1295.94 Q113.051 1295.94 109.972 1291.36 Q106.916 1286.76 106.916 1278.03 Q106.916 1269.28 109.972 1264.7 Q113.051 1260.09 118.861 1260.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M114.486 949.938 L130.805 949.938 L130.805 953.873 L108.861 953.873 L108.861 949.938 Q111.523 947.183 116.106 942.554 Q120.713 937.901 121.893 936.558 Q124.139 934.035 125.018 932.299 Q125.921 930.54 125.921 928.85 Q125.921 926.095 123.977 924.359 Q122.055 922.623 118.953 922.623 Q116.754 922.623 114.301 923.387 Q111.87 924.151 109.092 925.702 L109.092 920.98 Q111.916 919.845 114.37 919.267 Q116.824 918.688 118.861 918.688 Q124.231 918.688 127.426 921.373 Q130.62 924.058 130.62 928.549 Q130.62 930.679 129.81 932.6 Q129.023 934.498 126.916 937.091 Q126.338 937.762 123.236 940.98 Q120.134 944.174 114.486 949.938 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M121.222 581.986 L109.416 600.435 L121.222 600.435 L121.222 581.986 M119.995 577.912 L125.875 577.912 L125.875 600.435 L130.805 600.435 L130.805 604.324 L125.875 604.324 L125.875 612.472 L121.222 612.472 L121.222 604.324 L105.62 604.324 L105.62 599.81 L119.995 577.912 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M119.277 251.928 Q116.129 251.928 114.278 254.081 Q112.449 256.234 112.449 259.984 Q112.449 263.71 114.278 265.886 Q116.129 268.039 119.277 268.039 Q122.426 268.039 124.254 265.886 Q126.106 263.71 126.106 259.984 Q126.106 256.234 124.254 254.081 Q122.426 251.928 119.277 251.928 M128.56 237.275 L128.56 241.535 Q126.801 240.701 124.995 240.262 Q123.213 239.822 121.453 239.822 Q116.824 239.822 114.37 242.947 Q111.94 246.072 111.592 252.391 Q112.958 250.377 115.018 249.312 Q117.078 248.224 119.555 248.224 Q124.764 248.224 127.773 251.396 Q130.805 254.544 130.805 259.984 Q130.805 265.308 127.657 268.525 Q124.509 271.743 119.277 271.743 Q113.282 271.743 110.111 267.16 Q106.94 262.553 106.94 253.826 Q106.94 245.632 110.828 240.771 Q114.717 235.887 121.268 235.887 Q123.027 235.887 124.81 236.234 Q126.615 236.581 128.56 237.275 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M19.0762 1158.74 L19.0762 1151.66 L51.602 1134.42 L19.0762 1134.42 L19.0762 1129.32 L57.9562 1129.32 L57.9562 1136.4 L25.4303 1153.64 L57.9562 1153.64 L57.9562 1158.74 L19.0762 1158.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M46.4458 1119.55 L28.7896 1119.55 L28.7896 1114.76 L46.2635 1114.76 Q50.4041 1114.76 52.4874 1113.14 Q54.5447 1111.53 54.5447 1108.3 Q54.5447 1104.42 52.0708 1102.18 Q49.5968 1099.92 45.326 1099.92 L28.7896 1099.92 L28.7896 1095.12 L57.9562 1095.12 L57.9562 1099.92 L53.477 1099.92 Q56.1333 1101.66 57.4353 1103.98 Q58.7114 1106.27 58.7114 1109.32 Q58.7114 1114.34 55.5864 1116.95 Q52.4614 1119.55 46.4458 1119.55 M28.0865 1107.49 L28.0865 1107.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M34.3886 1062.55 Q31.1594 1060.75 29.623 1058.25 Q28.0865 1055.75 28.0865 1052.36 Q28.0865 1047.81 31.2896 1045.33 Q34.4667 1042.86 40.3521 1042.86 L57.9562 1042.86 L57.9562 1047.68 L40.5083 1047.68 Q36.3156 1047.68 34.2844 1049.16 Q32.2532 1050.64 32.2532 1053.69 Q32.2532 1057.42 34.7271 1059.58 Q37.2011 1061.74 41.4719 1061.74 L57.9562 1061.74 L57.9562 1066.56 L40.5083 1066.56 Q36.2896 1066.56 34.2844 1068.04 Q32.2532 1069.52 32.2532 1072.62 Q32.2532 1076.3 34.7532 1078.46 Q37.2271 1080.62 41.4719 1080.62 L57.9562 1080.62 L57.9562 1085.44 L28.7896 1085.44 L28.7896 1080.62 L33.3209 1080.62 Q30.6386 1078.98 29.3626 1076.69 Q28.0865 1074.39 28.0865 1071.24 Q28.0865 1068.07 29.7011 1065.85 Q31.3157 1063.61 34.3886 1062.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M43.3989 1012.36 Q38.1125 1012.36 35.1177 1014.55 Q32.0969 1016.71 32.0969 1020.51 Q32.0969 1024.32 35.1177 1026.5 Q38.1125 1028.67 43.3989 1028.67 Q48.6854 1028.67 51.7062 1026.5 Q54.701 1024.32 54.701 1020.51 Q54.701 1016.71 51.7062 1014.55 Q48.6854 1012.36 43.3989 1012.36 M33.2167 1028.67 Q30.6126 1027.16 29.3626 1024.86 Q28.0865 1022.55 28.0865 1019.34 Q28.0865 1014.03 32.3053 1010.72 Q36.524 1007.39 43.3989 1007.39 Q50.2739 1007.39 54.4926 1010.72 Q58.7114 1014.03 58.7114 1019.34 Q58.7114 1022.55 57.4614 1024.86 Q56.1853 1027.16 53.5812 1028.67 L57.9562 1028.67 L57.9562 1033.48 L17.4355 1033.48 L17.4355 1028.67 L33.2167 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M42.175 974.499 L44.5187 974.499 L44.5187 996.53 Q49.4666 996.218 52.0708 993.562 Q54.6489 990.879 54.6489 986.114 Q54.6489 983.353 53.9718 980.775 Q53.2947 978.171 51.9406 975.619 L56.4718 975.619 Q57.5655 978.197 58.1384 980.905 Q58.7114 983.614 58.7114 986.4 Q58.7114 993.379 54.6489 997.468 Q50.5864 1001.53 43.6594 1001.53 Q36.4979 1001.53 32.3053 997.676 Q28.0865 993.796 28.0865 987.233 Q28.0865 981.348 31.8886 977.937 Q35.6646 974.499 42.175 974.499 M40.7687 979.291 Q36.8365 979.343 34.4927 981.504 Q32.149 983.64 32.149 987.181 Q32.149 991.192 34.4146 993.614 Q36.6802 996.009 40.7948 996.374 L40.7687 979.291 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M33.2688 949.734 Q32.8 950.541 32.5917 951.505 Q32.3573 952.442 32.3573 953.588 Q32.3573 957.65 35.0136 959.838 Q37.6438 961.999 42.5917 961.999 L57.9562 961.999 L57.9562 966.817 L28.7896 966.817 L28.7896 961.999 L33.3209 961.999 Q30.6646 960.489 29.3886 958.067 Q28.0865 955.645 28.0865 952.182 Q28.0865 951.687 28.1647 951.088 Q28.2167 950.489 28.3469 949.76 L33.2688 949.734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M32.149 916.453 Q32.149 920.307 35.1698 922.546 Q38.1646 924.786 43.3989 924.786 Q48.6333 924.786 51.6541 922.572 Q54.6489 920.333 54.6489 916.453 Q54.6489 912.625 51.6281 910.385 Q48.6072 908.145 43.3989 908.145 Q38.2167 908.145 35.1959 910.385 Q32.149 912.625 32.149 916.453 M28.0865 916.453 Q28.0865 910.203 32.149 906.635 Q36.2115 903.067 43.3989 903.067 Q50.5604 903.067 54.6489 906.635 Q58.7114 910.203 58.7114 916.453 Q58.7114 922.729 54.6489 926.296 Q50.5604 929.838 43.3989 929.838 Q36.2115 929.838 32.149 926.296 Q28.0865 922.729 28.0865 916.453 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M17.4355 880.359 L21.4199 880.359 L21.4199 884.942 Q21.4199 887.52 22.4616 888.536 Q23.5032 889.526 26.2115 889.526 L28.7896 889.526 L28.7896 881.635 L32.5136 881.635 L32.5136 889.526 L57.9562 889.526 L57.9562 894.343 L32.5136 894.343 L32.5136 898.927 L28.7896 898.927 L28.7896 894.343 L26.7584 894.343 Q21.8886 894.343 19.6751 892.078 Q17.4355 889.812 17.4355 884.89 L17.4355 880.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M19.0762 859.187 L19.0762 834.604 L23.5032 834.604 L23.5032 853.927 L35.0136 853.927 L35.0136 835.411 L39.4406 835.411 L39.4406 853.927 L53.5291 853.927 L53.5291 834.135 L57.9562 834.135 L57.9562 859.187 L19.0762 859.187 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M28.7896 829.135 L28.7896 824.057 L53.2687 814.943 L28.7896 805.828 L28.7896 800.75 L57.9562 811.688 L57.9562 818.198 L28.7896 829.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M42.175 769.188 L44.5187 769.188 L44.5187 791.219 Q49.4666 790.906 52.0708 788.25 Q54.6489 785.568 54.6489 780.802 Q54.6489 778.042 53.9718 775.464 Q53.2947 772.86 51.9406 770.308 L56.4718 770.308 Q57.5655 772.886 58.1384 775.594 Q58.7114 778.302 58.7114 781.089 Q58.7114 788.068 54.6489 792.156 Q50.5864 796.219 43.6594 796.219 Q36.4979 796.219 32.3053 792.365 Q28.0865 788.485 28.0865 781.922 Q28.0865 776.037 31.8886 772.625 Q35.6646 769.188 42.175 769.188 M40.7687 773.979 Q36.8365 774.032 34.4927 776.193 Q32.149 778.328 32.149 781.87 Q32.149 785.88 34.4146 788.302 Q36.6802 790.698 40.7948 791.063 L40.7687 773.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M40.3521 737.079 L57.9562 737.079 L57.9562 741.87 L40.5083 741.87 Q36.3677 741.87 34.3105 743.485 Q32.2532 745.099 32.2532 748.329 Q32.2532 752.209 34.7271 754.448 Q37.2011 756.688 41.4719 756.688 L57.9562 756.688 L57.9562 761.506 L28.7896 761.506 L28.7896 756.688 L33.3209 756.688 Q30.6907 754.969 29.3886 752.651 Q28.0865 750.308 28.0865 747.261 Q28.0865 742.235 31.2115 739.657 Q34.3105 737.079 40.3521 737.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M20.5084 722.782 L28.7896 722.782 L28.7896 712.912 L32.5136 712.912 L32.5136 722.782 L48.3468 722.782 Q51.9145 722.782 52.9301 721.818 Q53.9458 720.829 53.9458 717.834 L53.9458 712.912 L57.9562 712.912 L57.9562 717.834 Q57.9562 723.381 55.8989 725.49 Q53.8156 727.599 48.3468 727.599 L32.5136 727.599 L32.5136 731.115 L28.7896 731.115 L28.7896 727.599 L20.5084 727.599 L20.5084 722.782 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M29.649 688.016 L34.1802 688.016 Q33.1386 690.048 32.6178 692.235 Q32.0969 694.423 32.0969 696.766 Q32.0969 700.334 33.1907 702.131 Q34.2844 703.902 36.4719 703.902 Q38.1386 703.902 39.1021 702.626 Q40.0396 701.35 40.899 697.495 L41.2635 695.855 Q42.3573 690.751 44.3625 688.615 Q46.3416 686.454 49.9093 686.454 Q53.9718 686.454 56.3416 689.683 Q58.7114 692.886 58.7114 698.511 Q58.7114 700.855 58.2426 703.407 Q57.7999 705.933 56.8885 708.745 L51.9406 708.745 Q53.3208 706.089 54.0239 703.511 Q54.701 700.933 54.701 698.407 Q54.701 695.022 53.5551 693.199 Q52.3833 691.376 50.2739 691.376 Q48.3208 691.376 47.2791 692.704 Q46.2375 694.006 45.2739 698.459 L44.8833 700.126 Q43.9458 704.579 42.0187 706.558 Q40.0656 708.537 36.6802 708.537 Q32.5657 708.537 30.3261 705.62 Q28.0865 702.704 28.0865 697.339 Q28.0865 694.683 28.4771 692.339 Q28.8678 689.996 29.649 688.016 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M31.7063 661.246 L26.9667 661.246 L39.0761 627.86 L43.3989 627.86 L55.5083 661.246 L50.7687 661.246 L41.2635 634.423 L31.7063 661.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M19.0762 616.454 L19.0762 595.803 L23.5032 595.803 L23.5032 611.637 L33.0344 611.637 Q32.6438 610.491 32.4615 609.345 Q32.2532 608.199 32.2532 607.053 Q32.2532 600.543 35.8209 596.741 Q39.3885 592.939 45.4823 592.939 Q51.7583 592.939 55.2478 596.845 Q58.7114 600.751 58.7114 607.861 Q58.7114 610.308 58.2947 612.861 Q57.878 615.387 57.0447 618.095 L51.7583 618.095 Q53.0343 615.751 53.6593 613.251 Q54.2843 610.751 54.2843 607.965 Q54.2843 603.46 51.9145 600.829 Q49.5447 598.199 45.4823 598.199 Q41.4198 598.199 39.05 600.829 Q36.6802 603.46 36.6802 607.965 Q36.6802 610.074 37.149 612.183 Q37.6177 614.267 38.6073 616.454 L19.0762 616.454 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M40.3521 559.007 L57.9562 559.007 L57.9562 563.798 L40.5083 563.798 Q36.3677 563.798 34.3105 565.413 Q32.2532 567.027 32.2532 570.257 Q32.2532 574.137 34.7271 576.376 Q37.2011 578.616 41.4719 578.616 L57.9562 578.616 L57.9562 583.434 L17.4355 583.434 L17.4355 578.616 L33.3209 578.616 Q30.6907 576.897 29.3886 574.579 Q28.0865 572.236 28.0865 569.189 Q28.0865 564.163 31.2115 561.585 Q34.3105 559.007 40.3521 559.007 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M33.2688 532.548 Q32.8 533.356 32.5917 534.319 Q32.3573 535.257 32.3573 536.403 Q32.3573 540.465 35.0136 542.653 Q37.6438 544.814 42.5917 544.814 L57.9562 544.814 L57.9562 549.632 L28.7896 549.632 L28.7896 544.814 L33.3209 544.814 Q30.6646 543.304 29.3886 540.882 Q28.0865 538.46 28.0865 534.996 Q28.0865 534.502 28.1647 533.903 Q28.2167 533.304 28.3469 532.574 L33.2688 532.548 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M29.649 508.929 L34.1802 508.929 Q33.1386 510.96 32.6178 513.147 Q32.0969 515.335 32.0969 517.679 Q32.0969 521.246 33.1907 523.043 Q34.2844 524.814 36.4719 524.814 Q38.1386 524.814 39.1021 523.538 Q40.0396 522.262 40.899 518.408 L41.2635 516.767 Q42.3573 511.663 44.3625 509.528 Q46.3416 507.366 49.9093 507.366 Q53.9718 507.366 56.3416 510.595 Q58.7114 513.799 58.7114 519.424 Q58.7114 521.767 58.2426 524.319 Q57.7999 526.845 56.8885 529.658 L51.9406 529.658 Q53.3208 527.002 54.0239 524.423 Q54.701 521.845 54.701 519.319 Q54.701 515.934 53.5551 514.111 Q52.3833 512.288 50.2739 512.288 Q48.3208 512.288 47.2791 513.616 Q46.2375 514.918 45.2739 519.371 L44.8833 521.038 Q43.9458 525.491 42.0187 527.47 Q40.0656 529.449 36.6802 529.449 Q32.5657 529.449 30.3261 526.533 Q28.0865 523.616 28.0865 518.252 Q28.0865 515.595 28.4771 513.252 Q28.8678 510.908 29.649 508.929 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M28.7896 482.783 L28.7896 477.991 L57.9562 477.991 L57.9562 482.783 L28.7896 482.783 M17.4355 482.783 L17.4355 477.991 L23.5032 477.991 L23.5032 482.783 L17.4355 482.783 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M40.3521 443.721 L57.9562 443.721 L57.9562 448.512 L40.5083 448.512 Q36.3677 448.512 34.3105 450.127 Q32.2532 451.742 32.2532 454.971 Q32.2532 458.851 34.7271 461.09 Q37.2011 463.33 41.4719 463.33 L57.9562 463.33 L57.9562 468.148 L28.7896 468.148 L28.7896 463.33 L33.3209 463.33 Q30.6907 461.611 29.3886 459.294 Q28.0865 456.95 28.0865 453.903 Q28.0865 448.877 31.2115 446.299 Q34.3105 443.721 40.3521 443.721 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M33.2167 398.018 L17.4355 398.018 L17.4355 393.226 L57.9562 393.226 L57.9562 398.018 L53.5812 398.018 Q56.1853 399.528 57.4614 401.846 Q58.7114 404.138 58.7114 407.367 Q58.7114 412.653 54.4926 415.987 Q50.2739 419.294 43.3989 419.294 Q36.524 419.294 32.3053 415.987 Q28.0865 412.653 28.0865 407.367 Q28.0865 404.138 29.3626 401.846 Q30.6126 399.528 33.2167 398.018 M43.3989 414.346 Q48.6854 414.346 51.7062 412.184 Q54.701 409.997 54.701 406.195 Q54.701 402.393 51.7062 400.205 Q48.6854 398.018 43.3989 398.018 Q38.1125 398.018 35.1177 400.205 Q32.0969 402.393 32.0969 406.195 Q32.0969 409.997 35.1177 412.184 Q38.1125 414.346 43.3989 414.346 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M46.4458 383.851 L28.7896 383.851 L28.7896 379.06 L46.2635 379.06 Q50.4041 379.06 52.4874 377.445 Q54.5447 375.831 54.5447 372.601 Q54.5447 368.721 52.0708 366.482 Q49.5968 364.216 45.326 364.216 L28.7896 364.216 L28.7896 359.424 L57.9562 359.424 L57.9562 364.216 L53.477 364.216 Q56.1333 365.961 57.4353 368.278 Q58.7114 370.57 58.7114 373.617 Q58.7114 378.643 55.5864 381.247 Q52.4614 383.851 46.4458 383.851 M28.0865 371.794 L28.0865 371.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M33.2688 332.654 Q32.8 333.461 32.5917 334.424 Q32.3573 335.362 32.3573 336.508 Q32.3573 340.57 35.0136 342.758 Q37.6438 344.919 42.5917 344.919 L57.9562 344.919 L57.9562 349.737 L28.7896 349.737 L28.7896 344.919 L33.3209 344.919 Q30.6646 343.409 29.3886 340.987 Q28.0865 338.565 28.0865 335.102 Q28.0865 334.607 28.1647 334.008 Q28.2167 333.409 28.3469 332.68 L33.2688 332.654 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M43.2948 314.373 Q43.2948 320.18 44.6229 322.419 Q45.951 324.659 49.1541 324.659 Q51.7062 324.659 53.2166 322.992 Q54.701 321.3 54.701 318.409 Q54.701 314.425 51.8885 312.029 Q49.05 309.607 44.3625 309.607 L43.2948 309.607 L43.2948 314.373 M41.3156 304.815 L57.9562 304.815 L57.9562 309.607 L53.5291 309.607 Q56.1853 311.248 57.4614 313.695 Q58.7114 316.143 58.7114 319.685 Q58.7114 324.164 56.2114 326.82 Q53.6853 329.451 49.4666 329.451 Q44.5448 329.451 42.0448 326.169 Q39.5448 322.862 39.5448 316.326 L39.5448 309.607 L39.0761 309.607 Q35.7688 309.607 33.9719 311.794 Q32.149 313.956 32.149 317.888 Q32.149 320.388 32.748 322.758 Q33.3469 325.128 34.5448 327.315 L30.1178 327.315 Q29.1021 324.685 28.6074 322.211 Q28.0865 319.737 28.0865 317.393 Q28.0865 311.065 31.3678 307.94 Q34.649 304.815 41.3156 304.815 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M20.5084 290.206 L28.7896 290.206 L28.7896 280.336 L32.5136 280.336 L32.5136 290.206 L48.3468 290.206 Q51.9145 290.206 52.9301 289.242 Q53.9458 288.253 53.9458 285.258 L53.9458 280.336 L57.9562 280.336 L57.9562 285.258 Q57.9562 290.805 55.8989 292.914 Q53.8156 295.024 48.3468 295.024 L32.5136 295.024 L32.5136 298.539 L28.7896 298.539 L28.7896 295.024 L20.5084 295.024 L20.5084 290.206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M28.7896 274.034 L28.7896 269.243 L57.9562 269.243 L57.9562 274.034 L28.7896 274.034 M17.4355 274.034 L17.4355 269.243 L23.5032 269.243 L23.5032 274.034 L17.4355 274.034 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M32.149 247.915 Q32.149 251.769 35.1698 254.008 Q38.1646 256.248 43.3989 256.248 Q48.6333 256.248 51.6541 254.034 Q54.6489 251.795 54.6489 247.915 Q54.6489 244.086 51.6281 241.847 Q48.6072 239.607 43.3989 239.607 Q38.2167 239.607 35.1959 241.847 Q32.149 244.086 32.149 247.915 M28.0865 247.915 Q28.0865 241.665 32.149 238.097 Q36.2115 234.529 43.3989 234.529 Q50.5604 234.529 54.6489 238.097 Q58.7114 241.665 58.7114 247.915 Q58.7114 254.191 54.6489 257.758 Q50.5604 261.3 43.3989 261.3 Q36.2115 261.3 32.149 257.758 Q28.0865 254.191 28.0865 247.915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M40.3521 202.342 L57.9562 202.342 L57.9562 207.134 L40.5083 207.134 Q36.3677 207.134 34.3105 208.748 Q32.2532 210.363 32.2532 213.592 Q32.2532 217.472 34.7271 219.712 Q37.2011 221.951 41.4719 221.951 L57.9562 221.951 L57.9562 226.769 L28.7896 226.769 L28.7896 221.951 L33.3209 221.951 Q30.6907 220.232 29.3886 217.915 Q28.0865 215.571 28.0865 212.524 Q28.0865 207.498 31.2115 204.92 Q34.3105 202.342 40.3521 202.342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip982)\" d=\"\n", "M287.036 1277.99 L287.036 1277.99 L418.934 1277.99 L418.934 1277.99 L287.036 1277.99 L287.036 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 287.036,1277.99 287.036,1277.99 418.934,1277.99 287.036,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M451.908 1277.99 L451.908 1277.99 L583.806 1277.99 L583.806 1277.99 L451.908 1277.99 L451.908 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.908,1277.99 451.908,1277.99 583.806,1277.99 451.908,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M616.78 1277.99 L616.78 1277.99 L748.678 1277.99 L748.678 1277.99 L616.78 1277.99 L616.78 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.78,1277.99 616.78,1277.99 748.678,1277.99 616.78,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M781.652 1277.99 L781.652 1277.99 L913.55 1277.99 L913.55 1277.99 L781.652 1277.99 L781.652 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 781.652,1277.99 781.652,1277.99 913.55,1277.99 781.652,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M946.524 1107.29 L946.524 1277.99 L1078.42 1277.99 L1078.42 1107.29 L946.524 1107.29 L946.524 1107.29 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 946.524,1107.29 946.524,1277.99 1078.42,1277.99 1078.42,1107.29 946.524,1107.29 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1111.4 1107.29 L1111.4 1277.99 L1243.29 1277.99 L1243.29 1107.29 L1111.4 1107.29 L1111.4 1107.29 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1111.4,1107.29 1111.4,1277.99 1243.29,1277.99 1243.29,1107.29 1111.4,1107.29 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1276.27 1277.99 L1276.27 1277.99 L1408.17 1277.99 L1408.17 1277.99 L1276.27 1277.99 L1276.27 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1276.27,1277.99 1276.27,1277.99 1408.17,1277.99 1276.27,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1441.14 83.0912 L1441.14 1277.99 L1573.04 1277.99 L1573.04 83.0912 L1441.14 83.0912 L1441.14 83.0912 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1441.14,83.0912 1441.14,1277.99 1573.04,1277.99 1573.04,83.0912 1441.14,83.0912 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1606.01 1277.99 L1606.01 1277.99 L1737.91 1277.99 L1737.91 1277.99 L1606.01 1277.99 L1606.01 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.01,1277.99 1606.01,1277.99 1737.91,1277.99 1606.01,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1770.88 1277.99 L1770.88 1277.99 L1902.78 1277.99 L1902.78 1277.99 L1770.88 1277.99 L1770.88 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1770.88,1277.99 1770.88,1277.99 1902.78,1277.99 1770.88,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M1935.76 1277.99 L1935.76 1277.99 L2067.65 1277.99 L2067.65 1277.99 L1935.76 1277.99 L1935.76 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1935.76,1277.99 1935.76,1277.99 2067.65,1277.99 1935.76,1277.99 \n", " \"/>\n", "<path clip-path=\"url(#clip982)\" d=\"\n", "M2100.63 1277.99 L2100.63 1277.99 L2232.52 1277.99 L2232.52 1277.99 L2100.63 1277.99 L2100.63 1277.99 Z\n", " \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2100.63,1277.99 2100.63,1277.99 2232.52,1277.99 2100.63,1277.99 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "@pipe result_1hr |>\n", " groupby(_, :month) |>\n", " combine(_, :duration => count_if => :count) |>\n", " begin\n", " months = [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"]\n", " exceeds = [ if i in _.month sum(_.count[ _.month .== i ]) else 0 end for i in 1:12 ]\n", " l = @layout [a ; b]\n", " bar(months, exceeds, lab=false, ylabel=\"Number of Events >5hrs in duration\", labelfontsize=9, xrotation=45)\n", " end" ] }, { "cell_type": "markdown", "id": "52d269e0-fa6d-4b28-ac83-23174bd4ebe4", "metadata": {}, "source": [ "## Limitations and Opportunities\n", "\n", "An opportunity for further analysis would be to look for correlations between pm2.5 and other pollutants, say NOx, to allow one to exclude pm2.5s from vehicle emissions. That would still leave road dust, construction dust, and just farmers burning stubble, but I imagine that would go pretty far in terms of removing unrelated bad air quality days from the dataset. If one was only concerned with the most extreme cases, when the sky turns orange and visibility drops to only a few blocks, well that's visible from space and could presumably be pulled out a dataset of satellite images, taking care to distinguish smoke from cloud cover.\n", "\n", "I would like to see a longer dataset. The dataset I was looking at was relatively short, only twenty years, which doesn't allow me to answer the question of whether or not extended periods of wildfire smoke is truly a recent phenomenon versus a \"return to normal\", i.e. it could be that 2000-2010 were the abnormal years and that is equally consistent with this dataset. Just looking around the air data warehouse it doesn't look like this kind of air analysis was routine before the 2000s, but I could simply be ignorant of some other studies or datasets.\n", "\n", "Finally I picked pm2.5s since that is the variable responsible for the high risk AQHI levels, but there could be much better proxies for wildfire smoke that have better datasets. I can't think of anything off the top of my head, but I'm a chemical engineer not an air quality expert.\n" ] }, { "cell_type": "code", "execution_count": null, "id": "0ce63faa-99fe-4b61-b8b7-59d3d19dc07e", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Julia 1.6.1", "language": "julia", "name": "julia-1.6" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.6.1" } }, "nbformat": 4, "nbformat_minor": 5 }