Write report
This commit is contained in:
@@ -221,3 +221,4 @@ __marimo__/
|
||||
.streamlit/secrets.toml
|
||||
|
||||
*.pt
|
||||
Code/cpp/linked
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 2.2 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 817 KiB |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 825 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,78 @@
|
||||
import torch
|
||||
import pathlib
|
||||
import pandas as pd
|
||||
from aiRNN import dataloader, models, losses
|
||||
import numpy as np
|
||||
import copy
|
||||
|
||||
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
|
||||
|
||||
|
||||
def split_dataset(dataset, frac=0.8, seed=42):
|
||||
n = len(dataset)
|
||||
train_n = int(frac * n)
|
||||
return torch.utils.data.random_split(
|
||||
dataset,
|
||||
[train_n, n - train_n],
|
||||
generator=torch.Generator().manual_seed(seed),
|
||||
)
|
||||
|
||||
step = 10
|
||||
base_name = "LSTM"
|
||||
cls = models.ThreeInputLSTM
|
||||
hidden_size = 16
|
||||
rnn_size = 64
|
||||
hidden_layers = 0
|
||||
rnn_layers = 3
|
||||
rnn_dropout = 0.0
|
||||
altitude_weight = 1e-3
|
||||
warm = 900
|
||||
pred = 1600
|
||||
start_offset = 30 * 60 - warm
|
||||
end_offset = 30 * 60 - pred
|
||||
base_ds = dataloader.SaveDataset(
|
||||
torch.load("long_dataset.pt"),
|
||||
step=step,
|
||||
start_offset=start_offset,
|
||||
end_offset=end_offset,
|
||||
)
|
||||
train_ds, val_ds = split_dataset(base_ds)
|
||||
model = cls(
|
||||
time_in=2,
|
||||
feat_in=4,
|
||||
context_in=5,
|
||||
hidden_size=hidden_size,
|
||||
rnn_size=rnn_size,
|
||||
out_size=3,
|
||||
hidden_layers=hidden_layers,
|
||||
rnn_layers=rnn_layers,
|
||||
rnn_dropout=rnn_dropout,
|
||||
device=DEVICE,
|
||||
)
|
||||
|
||||
model.load_state_dict(torch.load("LSTM_wu900_ps150_aw0.001.pt"))
|
||||
model.to(DEVICE)
|
||||
model.eval()
|
||||
with torch.no_grad():
|
||||
val_loader = torch.utils.data.DataLoader(val_ds, batch_size=64, collate_fn=dataloader.collate_to_cpu, num_workers=4)
|
||||
results = []
|
||||
for X_f, X_t, y, X_c in val_loader:
|
||||
X_f = X_f.to(DEVICE)
|
||||
X_t = X_t.to(DEVICE)
|
||||
y = y.to(DEVICE)
|
||||
if X_c is not None:
|
||||
X_c = X_c.to(DEVICE)
|
||||
y_pred, _ = model(X_t, X_f, X_c, warm // step, pred // step)
|
||||
results.append((y.cpu(), y_pred.cpu()))
|
||||
y_true = torch.cat([r[0] for r in results], dim=0)
|
||||
y_pred = torch.cat([r[1] for r in results], dim=0)
|
||||
np_y_all = np.concatenate(
|
||||
[y_true.numpy().reshape(-1, 3), y_pred.numpy().reshape(-1, 3)], axis=1
|
||||
)
|
||||
np.savetxt(
|
||||
f"predictions_{base_name}_wu{warm}_ps{pred}_aw{altitude_weight}.csv",
|
||||
np_y_all,
|
||||
delimiter=",",
|
||||
header="true_x,true_y,true_z,pred_x,pred_y,pred_z",
|
||||
comments="",
|
||||
)
|
||||
@@ -12,7 +12,9 @@ dependencies = [
|
||||
"ipykernel>=7.1.0",
|
||||
"matplotlib>=3.10.7",
|
||||
"pandas>=2.3.3",
|
||||
"scipy>=1.16.3",
|
||||
"torch>=2.9.1",
|
||||
"tqdm>=4.67.1",
|
||||
"typer>=0.20.0",
|
||||
]
|
||||
|
||||
|
||||
Generated
+87
@@ -18,7 +18,9 @@ dependencies = [
|
||||
{ name = "ipykernel" },
|
||||
{ name = "matplotlib" },
|
||||
{ name = "pandas" },
|
||||
{ name = "scipy" },
|
||||
{ name = "torch" },
|
||||
{ name = "tqdm" },
|
||||
{ name = "typer" },
|
||||
]
|
||||
|
||||
@@ -31,7 +33,9 @@ requires-dist = [
|
||||
{ name = "ipykernel", specifier = ">=7.1.0" },
|
||||
{ name = "matplotlib", specifier = ">=3.10.7" },
|
||||
{ name = "pandas", specifier = ">=2.3.3" },
|
||||
{ name = "scipy", specifier = ">=1.16.3" },
|
||||
{ name = "torch", specifier = ">=2.9.1" },
|
||||
{ name = "tqdm", specifier = ">=4.67.1" },
|
||||
{ name = "typer", specifier = ">=0.20.0" },
|
||||
]
|
||||
|
||||
@@ -1924,6 +1928,77 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl", hash = "sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd", size = 243393, upload-time = "2025-10-09T14:16:51.245Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "scipy"
|
||||
version = "1.16.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "numpy" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb", size = 30597883, upload-time = "2025-10-28T17:38:54.068Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/9b/5f/6f37d7439de1455ce9c5a556b8d1db0979f03a796c030bafdf08d35b7bf9/scipy-1.16.3-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:40be6cf99e68b6c4321e9f8782e7d5ff8265af28ef2cd56e9c9b2638fa08ad97", size = 36630881, upload-time = "2025-10-28T17:31:47.104Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7c/89/d70e9f628749b7e4db2aa4cd89735502ff3f08f7b9b27d2e799485987cd9/scipy-1.16.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:8be1ca9170fcb6223cc7c27f4305d680ded114a1567c0bd2bfcbf947d1b17511", size = 28941012, upload-time = "2025-10-28T17:31:53.411Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/a8/0e7a9a6872a923505dbdf6bb93451edcac120363131c19013044a1e7cb0c/scipy-1.16.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bea0a62734d20d67608660f69dcda23e7f90fb4ca20974ab80b6ed40df87a005", size = 20931935, upload-time = "2025-10-28T17:31:57.361Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bd/c7/020fb72bd79ad798e4dbe53938543ecb96b3a9ac3fe274b7189e23e27353/scipy-1.16.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:2a207a6ce9c24f1951241f4693ede2d393f59c07abc159b2cb2be980820e01fb", size = 23534466, upload-time = "2025-10-28T17:32:01.875Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/be/a0/668c4609ce6dbf2f948e167836ccaf897f95fb63fa231c87da7558a374cd/scipy-1.16.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:532fb5ad6a87e9e9cd9c959b106b73145a03f04c7d57ea3e6f6bb60b86ab0876", size = 33593618, upload-time = "2025-10-28T17:32:06.902Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ca/6e/8942461cf2636cdae083e3eb72622a7fbbfa5cf559c7d13ab250a5dbdc01/scipy-1.16.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0151a0749efeaaab78711c78422d413c583b8cdd2011a3c1d6c794938ee9fdb2", size = 35899798, upload-time = "2025-10-28T17:32:12.665Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/79/e8/d0f33590364cdbd67f28ce79368b373889faa4ee959588beddf6daef9abe/scipy-1.16.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7180967113560cca57418a7bc719e30366b47959dd845a93206fbed693c867e", size = 36226154, upload-time = "2025-10-28T17:32:17.961Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/39/c1/1903de608c0c924a1749c590064e65810f8046e437aba6be365abc4f7557/scipy-1.16.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:deb3841c925eeddb6afc1e4e4a45e418d19ec7b87c5df177695224078e8ec733", size = 38878540, upload-time = "2025-10-28T17:32:23.907Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f1/d0/22ec7036ba0b0a35bccb7f25ab407382ed34af0b111475eb301c16f8a2e5/scipy-1.16.3-cp311-cp311-win_amd64.whl", hash = "sha256:53c3844d527213631e886621df5695d35e4f6a75f620dca412bcd292f6b87d78", size = 38722107, upload-time = "2025-10-28T17:32:29.921Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7b/60/8a00e5a524bb3bf8898db1650d350f50e6cffb9d7a491c561dc9826c7515/scipy-1.16.3-cp311-cp311-win_arm64.whl", hash = "sha256:9452781bd879b14b6f055b26643703551320aa8d79ae064a71df55c00286a184", size = 25506272, upload-time = "2025-10-28T17:32:34.577Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/40/41/5bf55c3f386b1643812f3a5674edf74b26184378ef0f3e7c7a09a7e2ca7f/scipy-1.16.3-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:81fc5827606858cf71446a5e98715ba0e11f0dbc83d71c7409d05486592a45d6", size = 36659043, upload-time = "2025-10-28T17:32:40.285Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1e/0f/65582071948cfc45d43e9870bf7ca5f0e0684e165d7c9ef4e50d783073eb/scipy-1.16.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:c97176013d404c7346bf57874eaac5187d969293bf40497140b0a2b2b7482e07", size = 28898986, upload-time = "2025-10-28T17:32:45.325Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/96/5e/36bf3f0ac298187d1ceadde9051177d6a4fe4d507e8f59067dc9dd39e650/scipy-1.16.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2b71d93c8a9936046866acebc915e2af2e292b883ed6e2cbe5c34beb094b82d9", size = 20889814, upload-time = "2025-10-28T17:32:49.277Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/80/35/178d9d0c35394d5d5211bbff7ac4f2986c5488b59506fef9e1de13ea28d3/scipy-1.16.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3d4a07a8e785d80289dfe66b7c27d8634a773020742ec7187b85ccc4b0e7b686", size = 23565795, upload-time = "2025-10-28T17:32:53.337Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/fa/46/d1146ff536d034d02f83c8afc3c4bab2eddb634624d6529a8512f3afc9da/scipy-1.16.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0553371015692a898e1aa858fed67a3576c34edefa6b7ebdb4e9dde49ce5c203", size = 33349476, upload-time = "2025-10-28T17:32:58.353Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/79/2e/415119c9ab3e62249e18c2b082c07aff907a273741b3f8160414b0e9193c/scipy-1.16.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:72d1717fd3b5e6ec747327ce9bda32d5463f472c9dce9f54499e81fbd50245a1", size = 35676692, upload-time = "2025-10-28T17:33:03.88Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/27/82/df26e44da78bf8d2aeaf7566082260cfa15955a5a6e96e6a29935b64132f/scipy-1.16.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fb2472e72e24d1530debe6ae078db70fb1605350c88a3d14bc401d6306dbffe", size = 36019345, upload-time = "2025-10-28T17:33:09.773Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/82/31/006cbb4b648ba379a95c87262c2855cd0d09453e500937f78b30f02fa1cd/scipy-1.16.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c5192722cffe15f9329a3948c4b1db789fbb1f05c97899187dcf009b283aea70", size = 38678975, upload-time = "2025-10-28T17:33:15.809Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c2/7f/acbd28c97e990b421af7d6d6cd416358c9c293fc958b8529e0bd5d2a2a19/scipy-1.16.3-cp312-cp312-win_amd64.whl", hash = "sha256:56edc65510d1331dae01ef9b658d428e33ed48b4f77b1d51caf479a0253f96dc", size = 38555926, upload-time = "2025-10-28T17:33:21.388Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ce/69/c5c7807fd007dad4f48e0a5f2153038dc96e8725d3345b9ee31b2b7bed46/scipy-1.16.3-cp312-cp312-win_arm64.whl", hash = "sha256:a8a26c78ef223d3e30920ef759e25625a0ecdd0d60e5a8818b7513c3e5384cf2", size = 25463014, upload-time = "2025-10-28T17:33:25.975Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/72/f1/57e8327ab1508272029e27eeef34f2302ffc156b69e7e233e906c2a5c379/scipy-1.16.3-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:d2ec56337675e61b312179a1ad124f5f570c00f920cc75e1000025451b88241c", size = 36617856, upload-time = "2025-10-28T17:33:31.375Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/13/7e63cfba8a7452eb756306aa2fd9b37a29a323b672b964b4fdeded9a3f21/scipy-1.16.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:16b8bc35a4cc24db80a0ec836a9286d0e31b2503cb2fd7ff7fb0e0374a97081d", size = 28874306, upload-time = "2025-10-28T17:33:36.516Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/15/65/3a9400efd0228a176e6ec3454b1fa998fbbb5a8defa1672c3f65706987db/scipy-1.16.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:5803c5fadd29de0cf27fa08ccbfe7a9e5d741bf63e4ab1085437266f12460ff9", size = 20865371, upload-time = "2025-10-28T17:33:42.094Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/33/d7/eda09adf009a9fb81827194d4dd02d2e4bc752cef16737cc4ef065234031/scipy-1.16.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:b81c27fc41954319a943d43b20e07c40bdcd3ff7cf013f4fb86286faefe546c4", size = 23524877, upload-time = "2025-10-28T17:33:48.483Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7d/6b/3f911e1ebc364cb81320223a3422aab7d26c9c7973109a9cd0f27c64c6c0/scipy-1.16.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0c3b4dd3d9b08dbce0f3440032c52e9e2ab9f96ade2d3943313dfe51a7056959", size = 33342103, upload-time = "2025-10-28T17:33:56.495Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/21/f6/4bfb5695d8941e5c570a04d9fcd0d36bce7511b7d78e6e75c8f9791f82d0/scipy-1.16.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7dc1360c06535ea6116a2220f760ae572db9f661aba2d88074fe30ec2aa1ff88", size = 35697297, upload-time = "2025-10-28T17:34:04.722Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/04/e1/6496dadbc80d8d896ff72511ecfe2316b50313bfc3ebf07a3f580f08bd8c/scipy-1.16.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:663b8d66a8748051c3ee9c96465fb417509315b99c71550fda2591d7dd634234", size = 36021756, upload-time = "2025-10-28T17:34:13.482Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/fe/bd/a8c7799e0136b987bda3e1b23d155bcb31aec68a4a472554df5f0937eef7/scipy-1.16.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eab43fae33a0c39006a88096cd7b4f4ef545ea0447d250d5ac18202d40b6611d", size = 38696566, upload-time = "2025-10-28T17:34:22.384Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/cd/01/1204382461fcbfeb05b6161b594f4007e78b6eba9b375382f79153172b4d/scipy-1.16.3-cp313-cp313-win_amd64.whl", hash = "sha256:062246acacbe9f8210de8e751b16fc37458213f124bef161a5a02c7a39284304", size = 38529877, upload-time = "2025-10-28T17:35:51.076Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7f/14/9d9fbcaa1260a94f4bb5b64ba9213ceb5d03cd88841fe9fd1ffd47a45b73/scipy-1.16.3-cp313-cp313-win_arm64.whl", hash = "sha256:50a3dbf286dbc7d84f176f9a1574c705f277cb6565069f88f60db9eafdbe3ee2", size = 25455366, upload-time = "2025-10-28T17:35:59.014Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e2/a3/9ec205bd49f42d45d77f1730dbad9ccf146244c1647605cf834b3a8c4f36/scipy-1.16.3-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:fb4b29f4cf8cc5a8d628bc8d8e26d12d7278cd1f219f22698a378c3d67db5e4b", size = 37027931, upload-time = "2025-10-28T17:34:31.451Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/25/06/ca9fd1f3a4589cbd825b1447e5db3a8ebb969c1eaf22c8579bd286f51b6d/scipy-1.16.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:8d09d72dc92742988b0e7750bddb8060b0c7079606c0d24a8cc8e9c9c11f9079", size = 29400081, upload-time = "2025-10-28T17:34:39.087Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/6a/56/933e68210d92657d93fb0e381683bc0e53a965048d7358ff5fbf9e6a1b17/scipy-1.16.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:03192a35e661470197556de24e7cb1330d84b35b94ead65c46ad6f16f6b28f2a", size = 21391244, upload-time = "2025-10-28T17:34:45.234Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/7e/779845db03dc1418e215726329674b40576879b91814568757ff0014ad65/scipy-1.16.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:57d01cb6f85e34f0946b33caa66e892aae072b64b034183f3d87c4025802a119", size = 23929753, upload-time = "2025-10-28T17:34:51.793Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4c/4b/f756cf8161d5365dcdef9e5f460ab226c068211030a175d2fc7f3f41ca64/scipy-1.16.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:96491a6a54e995f00a28a3c3badfff58fd093bf26cd5fb34a2188c8c756a3a2c", size = 33496912, upload-time = "2025-10-28T17:34:59.8Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/09/b5/222b1e49a58668f23839ca1542a6322bb095ab8d6590d4f71723869a6c2c/scipy-1.16.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cd13e354df9938598af2be05822c323e97132d5e6306b83a3b4ee6724c6e522e", size = 35802371, upload-time = "2025-10-28T17:35:08.173Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c1/8d/5964ef68bb31829bde27611f8c9deeac13764589fe74a75390242b64ca44/scipy-1.16.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63d3cdacb8a824a295191a723ee5e4ea7768ca5ca5f2838532d9f2e2b3ce2135", size = 36190477, upload-time = "2025-10-28T17:35:16.7Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ab/f2/b31d75cb9b5fa4dd39a0a931ee9b33e7f6f36f23be5ef560bf72e0f92f32/scipy-1.16.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e7efa2681ea410b10dde31a52b18b0154d66f2485328830e45fdf183af5aefc6", size = 38796678, upload-time = "2025-10-28T17:35:26.354Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b4/1e/b3723d8ff64ab548c38d87055483714fefe6ee20e0189b62352b5e015bb1/scipy-1.16.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2d1ae2cf0c350e7705168ff2429962a89ad90c2d49d1dd300686d8b2a5af22fc", size = 38640178, upload-time = "2025-10-28T17:35:35.304Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/8e/f3/d854ff38789aca9b0cc23008d607ced9de4f7ab14fa1ca4329f86b3758ca/scipy-1.16.3-cp313-cp313t-win_arm64.whl", hash = "sha256:0c623a54f7b79dd88ef56da19bc2873afec9673a48f3b85b18e4d402bdd29a5a", size = 25803246, upload-time = "2025-10-28T17:35:42.155Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/99/f6/99b10fd70f2d864c1e29a28bbcaa0c6340f9d8518396542d9ea3b4aaae15/scipy-1.16.3-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:875555ce62743e1d54f06cdf22c1e0bc47b91130ac40fe5d783b6dfa114beeb6", size = 36606469, upload-time = "2025-10-28T17:36:08.741Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4d/74/043b54f2319f48ea940dd025779fa28ee360e6b95acb7cd188fad4391c6b/scipy-1.16.3-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:bb61878c18a470021fb515a843dc7a76961a8daceaaaa8bad1332f1bf4b54657", size = 28872043, upload-time = "2025-10-28T17:36:16.599Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4d/e1/24b7e50cc1c4ee6ffbcb1f27fe9f4c8b40e7911675f6d2d20955f41c6348/scipy-1.16.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:f2622206f5559784fa5c4b53a950c3c7c1cf3e84ca1b9c4b6c03f062f289ca26", size = 20862952, upload-time = "2025-10-28T17:36:22.966Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/dd/3a/3e8c01a4d742b730df368e063787c6808597ccb38636ed821d10b39ca51b/scipy-1.16.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7f68154688c515cdb541a31ef8eb66d8cd1050605be9dcd74199cbd22ac739bc", size = 23508512, upload-time = "2025-10-28T17:36:29.731Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1f/60/c45a12b98ad591536bfe5330cb3cfe1850d7570259303563b1721564d458/scipy-1.16.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8b3c820ddb80029fe9f43d61b81d8b488d3ef8ca010d15122b152db77dc94c22", size = 33413639, upload-time = "2025-10-28T17:36:37.982Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/71/bc/35957d88645476307e4839712642896689df442f3e53b0fa016ecf8a3357/scipy-1.16.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d3837938ae715fc0fe3c39c0202de3a8853aff22ca66781ddc2ade7554b7e2cc", size = 35704729, upload-time = "2025-10-28T17:36:46.547Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3b/15/89105e659041b1ca11c386e9995aefacd513a78493656e57789f9d9eab61/scipy-1.16.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:aadd23f98f9cb069b3bd64ddc900c4d277778242e961751f77a8cb5c4b946fb0", size = 36086251, upload-time = "2025-10-28T17:36:55.161Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1a/87/c0ea673ac9c6cc50b3da2196d860273bc7389aa69b64efa8493bdd25b093/scipy-1.16.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b7c5f1bda1354d6a19bc6af73a649f8285ca63ac6b52e64e658a5a11d4d69800", size = 38716681, upload-time = "2025-10-28T17:37:04.1Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/91/06/837893227b043fb9b0d13e4bd7586982d8136cb249ffb3492930dab905b8/scipy-1.16.3-cp314-cp314-win_amd64.whl", hash = "sha256:e5d42a9472e7579e473879a1990327830493a7047506d58d73fc429b84c1d49d", size = 39358423, upload-time = "2025-10-28T17:38:20.005Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/95/03/28bce0355e4d34a7c034727505a02d19548549e190bedd13a721e35380b7/scipy-1.16.3-cp314-cp314-win_arm64.whl", hash = "sha256:6020470b9d00245926f2d5bb93b119ca0340f0d564eb6fbaad843eaebf9d690f", size = 26135027, upload-time = "2025-10-28T17:38:24.966Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b2/6f/69f1e2b682efe9de8fe9f91040f0cd32f13cfccba690512ba4c582b0bc29/scipy-1.16.3-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:e1d27cbcb4602680a49d787d90664fa4974063ac9d4134813332a8c53dbe667c", size = 37028379, upload-time = "2025-10-28T17:37:14.061Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7c/2d/e826f31624a5ebbab1cd93d30fd74349914753076ed0593e1d56a98c4fb4/scipy-1.16.3-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:9b9c9c07b6d56a35777a1b4cc8966118fb16cfd8daf6743867d17d36cfad2d40", size = 29400052, upload-time = "2025-10-28T17:37:21.709Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/69/27/d24feb80155f41fd1f156bf144e7e049b4e2b9dd06261a242905e3bc7a03/scipy-1.16.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:3a4c460301fb2cffb7f88528f30b3127742cff583603aa7dc964a52c463b385d", size = 21391183, upload-time = "2025-10-28T17:37:29.559Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f8/d3/1b229e433074c5738a24277eca520a2319aac7465eea7310ea6ae0e98ae2/scipy-1.16.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:f667a4542cc8917af1db06366d3f78a5c8e83badd56409f94d1eac8d8d9133fa", size = 23930174, upload-time = "2025-10-28T17:37:36.306Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/16/9d/d9e148b0ec680c0f042581a2be79a28a7ab66c0c4946697f9e7553ead337/scipy-1.16.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f379b54b77a597aa7ee5e697df0d66903e41b9c85a6dd7946159e356319158e8", size = 33497852, upload-time = "2025-10-28T17:37:42.228Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2f/22/4e5f7561e4f98b7bea63cf3fd7934bff1e3182e9f1626b089a679914d5c8/scipy-1.16.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4aff59800a3b7f786b70bfd6ab551001cb553244988d7d6b8299cb1ea653b353", size = 35798595, upload-time = "2025-10-28T17:37:48.102Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/83/42/6644d714c179429fc7196857866f219fef25238319b650bb32dde7bf7a48/scipy-1.16.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:da7763f55885045036fabcebd80144b757d3db06ab0861415d1c3b7c69042146", size = 36186269, upload-time = "2025-10-28T17:37:53.72Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ac/70/64b4d7ca92f9cf2e6fc6aaa2eecf80bb9b6b985043a9583f32f8177ea122/scipy-1.16.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ffa6eea95283b2b8079b821dc11f50a17d0571c92b43e2b5b12764dc5f9b285d", size = 38802779, upload-time = "2025-10-28T17:37:59.393Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/61/82/8d0e39f62764cce5ffd5284131e109f07cf8955aef9ab8ed4e3aa5e30539/scipy-1.16.3-cp314-cp314t-win_amd64.whl", hash = "sha256:d9f48cafc7ce94cf9b15c6bffdc443a81a27bf7075cf2dcd5c8b40f85d10c4e7", size = 39471128, upload-time = "2025-10-28T17:38:05.259Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/64/47/a494741db7280eae6dc033510c319e34d42dd41b7ac0c7ead39354d1a2b5/scipy-1.16.3-cp314-cp314t-win_arm64.whl", hash = "sha256:21d9d6b197227a12dcbf9633320a4e34c6b0e51c57268df255a0942983bac562", size = 26464127, upload-time = "2025-10-28T17:38:11.34Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "setuptools"
|
||||
version = "80.9.0"
|
||||
@@ -2052,6 +2127,18 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/5e/4f/e1f65e8f8c76d73658b33d33b81eed4322fb5085350e4328d5c956f0c8f9/tornado-6.5.2-cp39-abi3-win_arm64.whl", hash = "sha256:d6c33dc3672e3a1f3618eb63b7ef4683a7688e7b9e6e8f0d9aa5726360a004af", size = 444456, upload-time = "2025-08-08T18:26:59.207Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tqdm"
|
||||
version = "4.67.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "traitlets"
|
||||
version = "5.14.3"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,125 @@
|
||||
@misc{101LongShortTerm,
|
||||
title = {10.1. {{Long Short-Term Memory}} ({{LSTM}}) --- {{Dive}} into {{Deep Learning}} 1.0.3 Documentation},
|
||||
urldate = {2025-12-16},
|
||||
howpublished = {https://d2l.ai/chapter\_recurrent-modern/lstm.html},
|
||||
file = {/home/lars/Zotero/storage/9V8UN4KK/lstm.html}
|
||||
}
|
||||
|
||||
@misc{102GatedRecurrent,
|
||||
title = {10.2. {{Gated Recurrent Units}} ({{GRU}}) --- {{Dive}} into {{Deep Learning}} 1.0.3 Documentation},
|
||||
urldate = {2025-12-16},
|
||||
howpublished = {https://d2l.ai/chapter\_recurrent-modern/gru.html},
|
||||
file = {/home/lars/Zotero/storage/J2IRCC3J/gru.html}
|
||||
}
|
||||
|
||||
@misc{AdsblolGlobe_history_20242024,
|
||||
title = {Adsblol/Globe\_history\_2024: 2024 {{Historical}} Data for All Aircrafts Traces Known to Adsb.Lol. {{Openly}} Licensed.},
|
||||
urldate = {2025-12-15},
|
||||
howpublished = {https://github.com/adsblol/globe\_history\_2024},
|
||||
file = {/home/lars/Zotero/storage/WQPXFKQP/globe_history_2024.html}
|
||||
}
|
||||
|
||||
@misc{AdsblolGlobe_history_20252025,
|
||||
title = {Adsblol/Globe\_history\_2025},
|
||||
year = 2025,
|
||||
month = dec,
|
||||
urldate = {2025-12-15},
|
||||
abstract = {✈️🗄 2025 Historical data for all aircrafts traces known to adsb.lol. Openly licensed.},
|
||||
copyright = {ODbL-1.0},
|
||||
howpublished = {ADSB.lol}
|
||||
}
|
||||
|
||||
@misc{calzoneIntuitiveExplanationLSTM2025,
|
||||
title = {An {{Intuitive Explanation}} of {{LSTM}}},
|
||||
author = {Calzone, Ottavio},
|
||||
year = 2025,
|
||||
month = jul,
|
||||
journal = {Medium},
|
||||
urldate = {2025-12-15},
|
||||
abstract = {Recurrent Neural Networks},
|
||||
langid = {english},
|
||||
file = {/home/lars/Zotero/storage/S8WW57MP/an-intuitive-explanation-of-lstm-a035eb6ab42c.html}
|
||||
}
|
||||
|
||||
@misc{calzoneIntuitiveExplanationLSTM2025a,
|
||||
title = {An {{Intuitive Explanation}} of {{LSTM}}},
|
||||
author = {Calzone, Ottavio},
|
||||
year = 2025,
|
||||
month = jul,
|
||||
journal = {Medium},
|
||||
urldate = {2025-12-16},
|
||||
abstract = {Recurrent Neural Networks},
|
||||
langid = {english},
|
||||
file = {/home/lars/Zotero/storage/WKKE4DRU/an-intuitive-explanation-of-lstm-a035eb6ab42c.html}
|
||||
}
|
||||
|
||||
@misc{nntikz,
|
||||
title = {{{NNTikZ}}: {{TikZ}} Diagrams for Deep Learning and Neural Networks},
|
||||
author = {Love, Fraser},
|
||||
year = 2024,
|
||||
publisher = {GitHub}
|
||||
}
|
||||
|
||||
@article{riahimaneshAnalysisVulnerabilitiesAttacks2017,
|
||||
title = {Analysis of Vulnerabilities, Attacks, Countermeasures and Overall Risk of the {{Automatic Dependent Surveillance-Broadcast}} ({{ADS-B}}) System},
|
||||
author = {Riahi Manesh, Mohsen and Kaabouch, Naima},
|
||||
year = 2017,
|
||||
month = dec,
|
||||
journal = {International Journal of Critical Infrastructure Protection},
|
||||
volume = {19},
|
||||
pages = {16--31},
|
||||
issn = {1874-5482},
|
||||
doi = {10.1016/j.ijcip.2017.10.002},
|
||||
urldate = {2025-12-15},
|
||||
abstract = {The U.S. Federal Aviation Administration has mandated the use of the Automatic Dependent Surveillance-Broadcast (ADS-B) system by January 2020 as a key component of the NextGen Project, which is intended to upgrade the air traffic control infrastructure and operations. The ADS-B system seeks to replace legacy approaches such as primary and secondary radars by employing global satellite navigation systems to generate precise air pictures for air traffic management. The security of ADS-B is a major concern because the system broadcasts detailed information about aircraft, their positions, velocities and other data over unencrypted data links, making it easy to launch eavesdropping, jamming and message modification attacks on aircraft in flight. This paper discusses ADS-B vulnerabilities and attacks that leverage the ADS-B protocol stack. The paper also presents the security requirements, state-of-the-art attack detection techniques and countermeasures, along with an overall risk analysis of the ADS-B system.},
|
||||
keywords = {Air traffic control,Attacks,Automatic Dependent Surveillance-Broadcast (ADS-B),Countermeasures,Risk analysis,Vulnerabilities},
|
||||
file = {/home/lars/Zotero/storage/XZHRCQRW/Riahi Manesh and Kaabouch - 2017 - Analysis of vulnerabilities, attacks, countermeasures and overall risk of the Automatic Dependent Su.pdf;/home/lars/Zotero/storage/KKDTXYJ2/S1874548217300446.html}
|
||||
}
|
||||
|
||||
@article{shi4DFlightTrajectory2021,
|
||||
title = {4-{{D Flight Trajectory Prediction With Constrained LSTM Network}}},
|
||||
author = {Shi, Zhiyuan and Xu, Min and Pan, Quan},
|
||||
year = 2021,
|
||||
month = nov,
|
||||
journal = {IEEE Transactions on Intelligent Transportation Systems},
|
||||
volume = {22},
|
||||
number = {11},
|
||||
pages = {7242--7255},
|
||||
issn = {1558-0016},
|
||||
doi = {10.1109/TITS.2020.3004807},
|
||||
urldate = {2025-12-15},
|
||||
abstract = {The increasing aviation activities pose a challenge to ensure a safe and orderly flight. Trajectory prediction is one of the most important forecasting tasks in Air Traffic Management. Accurate prediction is reasonable for safe and orderly flight tasks in civil aviation monitoring. Points of interests play an important role in most land traffic prediction algorithms due to their abilities in positioning and marking. Compared with land traffic, the sparse way-points and shared airways make it difficult for flight trajectory prediction. A constrained Long Short-Term Memory network for flight trajectory prediction is proposed in this paper. According to the dynamic characteristics of the aircraft, we propose three kinds of constraints to climbing, cruising, and descending/approaching phases, in particular, they are Top of climb, Way-points, and Runway direction, correspondingly. Our model is able to keep long-term dependencies with dynamic physical constraints. Density-Based Spatial Clustering of Applications with Noise and Linear Least Squares are used in data segmentation and preprocessing. Sliding windows help maintain the continuity of trajectory. Four-dimensional spatial-temporal trajectory set consisting of spatial position and timestamps is used to prove the efficiency of our approach. Multiple ADS-B ground stations contribute to our experimental dataset. The widely used Long Short-Term Memory network, Markov Model, weighted Markov Model, Support Vector Machine, and Kalman Filter are used for comparison. Quantitative analysis demonstrates that our model outperforms the above-mentioned state-of-the-art models, and lays a good foundation for decision-making in different scenarios.},
|
||||
keywords = {Agriculture,constrained LSTM network,Decision making,Forestry,Internet,linear least squares,Product design,Psychology,Quality assessment,Trajectory prediction,trajectory segmentation}
|
||||
}
|
||||
|
||||
@inproceedings{shiLSTMbasedFlightTrajectory2018,
|
||||
title = {{{LSTM-based Flight Trajectory Prediction}}},
|
||||
booktitle = {2018 {{International Joint Conference}} on {{Neural Networks}} ({{IJCNN}})},
|
||||
author = {Shi, Zhiyuan and Xu, Min and Pan, Quan and Yan, Bing and Zhang, Haimin},
|
||||
year = 2018,
|
||||
month = jul,
|
||||
pages = {1--8},
|
||||
issn = {2161-4407},
|
||||
doi = {10.1109/IJCNN.2018.8489734},
|
||||
urldate = {2025-12-15},
|
||||
abstract = {Safety ranks the first in Air Traffic Management (ATM). Accurate trajectory prediction can help ATM to forecast potential dangers and effectively provide instructions for safely traveling. Most trajectory prediction algorithms work for land traffic, which rely on points of interest (POIs) and are only suitable for stationary road condition. Compared with land traffic prediction, flight trajectory prediction is very difficult because way-points are sparse and the flight envelopes are heavily affected by external factors. In this paper, we propose a flight trajectory prediction model based on a Long Short-Term Memory (LSTM) network. The four interacting layers of a repeating module in an LSTM enables it to connect the long-term dependencies to present predicting task. Applying sliding windows in LSTM maintains the continuity and avoids compromising the dynamic dependencies of adjacent states in the long-term sequences, which helps to improve accuracy of trajectory prediction. Taking time dimension into consideration, both 3-D (time stamp, latitude and longitude) and 4-D (time stamp, latitude, longitude and altitude) trajectories are predicted to prove the efficiency of our approach. The dataset we use was collected by ADS-B ground stations. We evaluate our model by widely used measurements, such as the mean absolute error (MAE), the mean relative error (MRE), the root mean square error (RMSE) and the dynamic warping time (DWT) methods. As Markov Model is the most popular in time series processing, comparisons among Markov Model (MM), weighted Markov Model (wMM) and our model are presented. Our model outperforms the existing models (MM and wMM) and provides a strong basis for abnormal detection and decision-making.},
|
||||
keywords = {Aircraft,Aircraft navigation,Atmospheric modeling,Delays,Forecasting,Predictive models,Trajectory},
|
||||
file = {/home/lars/Zotero/storage/5SHHA862/Shi et al. - 2018 - LSTM-based Flight Trajectory Prediction.pdf}
|
||||
}
|
||||
|
||||
@misc{zhangPhasedFlightTrajectory2022,
|
||||
title = {Phased {{Flight Trajectory Prediction}} with {{Deep Learning}}},
|
||||
author = {Zhang, Kai and Chen, Bowen},
|
||||
year = 2022,
|
||||
month = mar,
|
||||
number = {arXiv:2203.09033},
|
||||
eprint = {2203.09033},
|
||||
primaryclass = {cs},
|
||||
publisher = {arXiv},
|
||||
doi = {10.48550/arXiv.2203.09033},
|
||||
urldate = {2025-12-15},
|
||||
abstract = {The unprecedented increase of commercial airlines and private jets over the next ten years presents a challenge for air traffic control. Precise flight trajectory prediction is of great significance in air transportation management, which contributes to the decision-making for safe and orderly flights. Existing research and application mainly focus on the sequence generation based on historical trajectories, while the aircraft-aircraft interactions in crowded airspace especially the airspaces near busy airports have been largely ignored. On the other hand, there are distinct characteristics of aerodynamics for different flight phases, and the trajectory may be affected by various uncertainties such as weather and advisories from air traffic controllers. However, there is no literature fully considers all these issues. Therefore, we proposed a phased flight trajectory prediction framework. Multi-source and multi-modal datasets have been analyzed and mined using variants of recurrent neural network (RNN) mixture. To be specific, we first introduce spatio temporal graphs into the low-altitude airway prediction problem, and the motion constraints of an aircraft are embedded to the inference process for reliable forecasting results. In the en-route phase, the dual attention mechanism is employed to adaptively extract much more important features from overall datasets to learn the hidden patterns in dynamical environments. The experimental results demonstrate our proposed framework can outperform state-of-the-art methods for flight trajectory prediction for large passenger/transport airplanes.},
|
||||
archiveprefix = {arXiv},
|
||||
keywords = {Computer Science - Machine Learning},
|
||||
file = {/home/lars/Zotero/storage/HNZ8GXSA/Zhang and Chen - 2022 - Phased Flight Trajectory Prediction with Deep Learning.pdf;/home/lars/Zotero/storage/2XCUNEFX/2203.html}
|
||||
}
|
||||
@@ -0,0 +1,249 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="552" height="277.333333" viewBox="0 0 552 277.333333" version="1.1">
|
||||
<defs>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 313.652344 25.332031 L 317 25.332031 L 317 29 L 313.652344 29 Z M 313.652344 25.332031 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 313.652344 25.332031 L 317 25.332031 L 317 29 L 313.652344 29 Z M 313.652344 25.332031 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 210.066406 90.109375 L 220 90.109375 L 220 100 L 210.066406 100 Z M 210.066406 90.109375 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 213.050781 93.332031 L 217 93.332031 L 217 96.566406 L 213.050781 96.566406 Z M 213.050781 93.332031 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 210.066406 90.109375 L 220 90.109375 L 220 100 L 210.066406 100 Z M 210.066406 90.109375 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6">
|
||||
<path d="M 213.050781 93.332031 L 217 93.332031 L 217 96.566406 L 213.050781 96.566406 Z M 213.050781 93.332031 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7">
|
||||
<path d="M 383 68 L 386.667969 68 L 386.667969 71.792969 L 383 71.792969 Z M 383 68 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip8">
|
||||
<path d="M 383 68 L 386.667969 68 L 386.667969 71.792969 L 383 71.792969 Z M 383 68 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.000977 231.999023 L 464 231.999023 C 470.629883 231.999023 476 237.37207 476 243.999023 L 476 363.999023 C 476 370.628906 470.629883 375.999023 464 375.999023 L 292.000977 375.999023 C 285.371094 375.999023 280.000977 370.628906 280.000977 363.999023 L 280.000977 243.999023 C 280.000977 237.37207 285.371094 231.999023 292.000977 231.999023 Z M 292.000977 231.999023 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.202148 320.000977 L 354.204102 320.000977 L 354.204102 336 L 326.202148 336 Z M 326.202148 320.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 251.046875 126.90625 L 250.878906 127.804688 L 249.316406 127.804688 C 249.617188 128.234375 249.773438 128.777344 249.773438 129.429688 C 249.773438 130.445312 249.472656 131.339844 248.878906 132.117188 C 248.28125 132.898438 247.46875 133.28125 246.441406 133.28125 C 245.648438 133.28125 245.023438 133.054688 244.566406 132.59375 C 244.117188 132.125 243.898438 131.511719 243.898438 130.761719 C 243.898438 129.652344 244.203125 128.714844 244.816406 127.949219 C 245.441406 127.171875 246.242188 126.78125 247.234375 126.78125 C 247.550781 126.78125 247.84375 126.824219 248.109375 126.90625 Z M 244.960938 130.742188 C 244.960938 131.242188 245.09375 131.652344 245.359375 131.96875 C 245.617188 132.292969 245.984375 132.449219 246.441406 132.449219 C 247.148438 132.449219 247.703125 132.117188 248.109375 131.449219 C 248.507812 130.773438 248.710938 130.085938 248.710938 129.386719 C 248.710938 128.804688 248.578125 128.359375 248.316406 128.054688 C 248.066406 127.75 247.71875 127.59375 247.273438 127.59375 C 246.566406 127.59375 246.003906 127.917969 245.585938 128.554688 C 245.171875 129.195312 244.960938 129.921875 244.960938 130.742188 Z M 244.960938 130.742188 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 397.657227 246.342773 C 400.780273 249.46875 400.780273 254.53125 397.657227 257.657227 C 394.53125 260.780273 389.46875 260.780273 386.342773 257.657227 C 383.219727 254.53125 383.219727 249.46875 386.342773 246.342773 C 389.46875 243.219727 394.53125 243.219727 397.657227 246.342773 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.672852 300.459961 C 319.844727 301.631836 319.844727 303.530273 318.672852 304.702148 C 317.500977 305.874023 315.602539 305.874023 314.430664 304.702148 C 313.258789 303.530273 313.258789 301.631836 314.430664 300.459961 C 315.602539 299.288086 317.500977 299.288086 318.672852 300.459961 " transform="matrix(1.333333,0,0,1.333333,-106.666667,-376)"/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 316.921875 27.4375 C 316.921875 26.605469 316.234375 25.917969 315.398438 25.917969 C 314.566406 25.917969 313.878906 26.605469 313.878906 27.4375 C 313.878906 28.269531 314.566406 28.957031 315.398438 28.957031 C 316.234375 28.957031 316.921875 28.269531 316.921875 27.4375 Z M 316.921875 27.4375 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.672852 300.459961 C 319.844727 301.631836 319.844727 303.530273 318.672852 304.702148 C 317.500977 305.874023 315.602539 305.874023 314.430664 304.702148 C 313.258789 303.530273 313.258789 301.631836 314.430664 300.459961 C 315.602539 299.288086 317.500977 299.288086 318.672852 300.459961 " transform="matrix(1.333333,0,0,1.333333,-106.666667,-376)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 316.921875 27.4375 C 316.921875 26.605469 316.234375 25.917969 315.398438 25.917969 C 314.566406 25.917969 313.878906 26.605469 313.878906 27.4375 C 313.878906 28.269531 314.566406 28.957031 315.398438 28.957031 C 316.234375 28.957031 316.921875 28.269531 316.921875 27.4375 Z M 316.921875 27.4375 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.766602 251.601562 L 378.101562 251.979492 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.100586 251.991211 L 378.101562 251.979492 M 378.104492 250.479492 L 382.100586 251.991211 L 378.092773 253.479492 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.206055 296.926758 C 325.332031 300.049805 325.332031 305.112305 322.206055 308.238281 C 319.083008 311.364258 314.020508 311.364258 310.894531 308.238281 C 307.768555 305.112305 307.768555 300.049805 310.894531 296.926758 C 314.020508 293.800781 319.083008 293.800781 322.206055 296.926758 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.671173 300.461746 C 319.843048 301.633621 319.843048 303.532059 318.671173 304.703934 C 317.499298 305.875809 315.600861 305.875809 314.428986 304.703934 C 313.257111 303.532059 313.257111 301.633621 314.428986 300.461746 C 315.600861 299.289871 317.499298 299.289871 318.671173 300.461746 " transform="matrix(1.333333,0,0,1.333333,-207.265991,-308.557068)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 216.320312 94.878906 C 216.320312 94.046875 215.632812 93.359375 214.800781 93.359375 C 213.964844 93.359375 213.277344 94.046875 213.277344 94.878906 C 213.277344 95.714844 213.964844 96.402344 214.800781 96.402344 C 215.632812 96.402344 216.320312 95.714844 216.320312 94.878906 Z M 216.320312 94.878906 "/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.671173 300.461746 C 319.843048 301.633621 319.843048 303.532059 318.671173 304.703934 C 317.499298 305.875809 315.600861 305.875809 314.428986 304.703934 C 313.257111 303.532059 313.257111 301.633621 314.428986 300.461746 C 315.600861 299.289871 317.499298 299.289871 318.671173 300.461746 " transform="matrix(1.333333,0,0,1.333333,-207.265991,-308.557068)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 216.320312 94.878906 C 216.320312 94.046875 215.632812 93.359375 214.800781 93.359375 C 213.964844 93.359375 213.277344 94.046875 213.277344 94.878906 C 213.277344 95.714844 213.964844 96.402344 214.800781 96.402344 C 215.632812 96.402344 216.320312 95.714844 216.320312 94.878906 Z M 216.320312 94.878906 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.40625 251.660156 L 294.116211 251.885742 C 297.382812 251.950195 299.999023 254.616211 299.999023 257.885742 L 299.999023 345.999023 C 299.999023 349.3125 302.688477 351.999023 305.999023 351.999023 L 334.050781 351.999023 C 337.34375 351.999023 340.024414 349.344727 340.050781 346.051758 L 340.085938 341.897461 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.118164 337.898438 L 340.085938 341.897461 M 338.585938 341.885742 L 340.118164 337.898438 L 341.585938 341.915039 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.203125 320.000977 L 340.203125 309.480469 C 340.203125 306.37793 337.833008 303.785156 334.742188 303.503906 L 330.426758 303.114258 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.442383 302.753906 L 330.426758 303.114258 M 330.291992 304.608398 L 326.442383 302.753906 L 330.561523 301.620117 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.946289 320.000977 L 405.945312 320.000977 L 405.945312 336 L 377.946289 336 Z M 377.946289 320.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 320.035156 126.90625 L 319.871094 127.804688 L 318.308594 127.804688 C 318.609375 128.234375 318.765625 128.777344 318.765625 129.429688 C 318.765625 130.445312 318.464844 131.339844 317.871094 132.117188 C 317.269531 132.898438 316.457031 133.28125 315.433594 133.28125 C 314.640625 133.28125 314.015625 133.054688 313.558594 132.59375 C 313.109375 132.125 312.890625 131.511719 312.890625 130.761719 C 312.890625 129.652344 313.191406 128.714844 313.808594 127.949219 C 314.433594 127.171875 315.234375 126.78125 316.222656 126.78125 C 316.542969 126.78125 316.832031 126.824219 317.097656 126.90625 Z M 313.953125 130.742188 C 313.953125 131.242188 314.082031 131.652344 314.347656 131.96875 C 314.609375 132.292969 314.972656 132.449219 315.433594 132.449219 C 316.140625 132.449219 316.691406 132.117188 317.097656 131.449219 C 317.5 130.773438 317.703125 130.085938 317.703125 129.386719 C 317.703125 128.804688 317.566406 128.359375 317.308594 128.054688 C 317.058594 127.75 316.707031 127.59375 316.265625 127.59375 C 315.558594 127.59375 314.996094 127.917969 314.578125 128.554688 C 314.160156 129.195312 313.953125 129.921875 313.953125 130.742188 Z M 313.953125 130.742188 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.657227 278.34375 C 424.780273 281.469727 424.780273 286.532227 421.657227 289.655273 C 418.53125 292.78125 413.46875 292.78125 410.342773 289.655273 C 407.219727 286.532227 407.219727 281.469727 410.342773 278.34375 C 413.46875 275.217773 418.53125 275.217773 421.657227 278.34375 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 345.621094 74 L 345.621094 73.8125 C 344.722656 73.8125 344.472656 73.605469 344.472656 73.082031 L 344.472656 65.917969 L 344.371094 65.894531 L 342.222656 66.980469 L 342.222656 67.144531 L 342.535156 67.019531 C 342.765625 66.9375 342.972656 66.875 343.078125 66.875 C 343.347656 66.875 343.453125 67.0625 343.453125 67.480469 L 343.453125 72.855469 C 343.453125 73.519531 343.203125 73.769531 342.308594 73.8125 L 342.308594 74 Z M 345.621094 74 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 354.347656 71.355469 L 354.347656 70.5625 L 347.660156 70.5625 L 347.660156 71.355469 Z M 354.347656 71.355469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 263.929688 96.941406 L 263.929688 88.359375 L 267.742188 88.359375 C 268.503906 88.359375 269.085938 88.4375 269.492188 88.585938 C 269.894531 88.742188 270.210938 89.015625 270.449219 89.398438 C 270.683594 89.789062 270.804688 90.222656 270.804688 90.691406 C 270.804688 91.304688 270.601562 91.816406 270.199219 92.234375 C 269.808594 92.648438 269.207031 92.914062 268.386719 93.023438 C 268.679688 93.179688 268.910156 93.328125 269.074219 93.460938 C 269.410156 93.769531 269.722656 94.148438 270.011719 94.609375 L 271.511719 96.941406 L 270.074219 96.941406 L 268.929688 95.148438 C 268.605469 94.640625 268.335938 94.25 268.117188 93.984375 C 267.910156 93.707031 267.710938 93.515625 267.535156 93.398438 C 267.367188 93.289062 267.199219 93.210938 267.035156 93.171875 C 266.894531 93.144531 266.679688 93.128906 266.386719 93.128906 L 265.074219 93.128906 L 265.074219 96.941406 Z M 265.074219 92.148438 L 267.511719 92.148438 C 268.039062 92.148438 268.449219 92.097656 268.742188 91.984375 C 269.035156 91.875 269.253906 91.703125 269.410156 91.460938 C 269.558594 91.226562 269.636719 90.972656 269.636719 90.691406 C 269.636719 90.289062 269.480469 89.957031 269.179688 89.691406 C 268.886719 89.429688 268.417969 89.296875 267.785156 89.296875 L 265.074219 89.296875 Z M 265.074219 92.148438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 276.699219 94.941406 L 277.804688 95.066406 C 277.621094 95.707031 277.292969 96.207031 276.824219 96.566406 C 276.367188 96.914062 275.773438 97.085938 275.054688 97.085938 C 274.148438 97.085938 273.429688 96.8125 272.886719 96.253906 C 272.355469 95.6875 272.097656 94.894531 272.097656 93.878906 C 272.097656 92.835938 272.367188 92.035156 272.910156 91.460938 C 273.449219 90.878906 274.148438 90.585938 275.011719 90.585938 C 275.847656 90.585938 276.519531 90.875 277.035156 91.441406 C 277.558594 92 277.824219 92.789062 277.824219 93.816406 C 277.824219 93.890625 277.824219 93.984375 277.824219 94.109375 L 273.179688 94.109375 C 273.222656 94.789062 273.414062 95.3125 273.761719 95.671875 C 274.105469 96.035156 274.542969 96.210938 275.074219 96.210938 C 275.460938 96.210938 275.789062 96.117188 276.054688 95.921875 C 276.332031 95.710938 276.542969 95.390625 276.699219 94.941406 Z M 273.242188 93.234375 L 276.722656 93.234375 C 276.679688 92.707031 276.542969 92.3125 276.324219 92.046875 C 275.992188 91.644531 275.554688 91.441406 275.011719 91.441406 C 274.523438 91.441406 274.117188 91.609375 273.785156 91.941406 C 273.460938 92.265625 273.285156 92.691406 273.242188 93.234375 Z M 273.242188 93.234375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 278.707031 95.085938 L 279.75 94.921875 C 279.800781 95.335938 279.964844 95.660156 280.230469 95.878906 C 280.503906 96.101562 280.878906 96.210938 281.355469 96.210938 C 281.839844 96.210938 282.199219 96.117188 282.4375 95.921875 C 282.671875 95.726562 282.792969 95.5 282.792969 95.234375 C 282.792969 94.984375 282.6875 94.796875 282.480469 94.671875 C 282.324219 94.578125 281.964844 94.453125 281.394531 94.296875 C 280.613281 94.101562 280.074219 93.9375 279.769531 93.796875 C 279.480469 93.660156 279.253906 93.460938 279.105469 93.210938 C 278.949219 92.960938 278.875 92.6875 278.875 92.378906 C 278.875 92.101562 278.9375 91.847656 279.0625 91.609375 C 279.1875 91.375 279.359375 91.171875 279.582031 91.003906 C 279.75 90.894531 279.96875 90.796875 280.25 90.710938 C 280.542969 90.628906 280.84375 90.585938 281.167969 90.585938 C 281.652344 90.585938 282.074219 90.660156 282.4375 90.796875 C 282.8125 90.9375 283.089844 91.125 283.269531 91.359375 C 283.449219 91.597656 283.574219 91.914062 283.644531 92.316406 L 282.605469 92.460938 C 282.5625 92.144531 282.421875 91.894531 282.1875 91.710938 C 281.964844 91.535156 281.652344 91.441406 281.25 91.441406 C 280.761719 91.441406 280.417969 91.523438 280.207031 91.691406 C 280 91.847656 279.894531 92.035156 279.894531 92.253906 C 279.894531 92.394531 279.9375 92.515625 280.019531 92.609375 C 280.105469 92.734375 280.238281 92.832031 280.4375 92.898438 C 280.53125 92.941406 280.839844 93.035156 281.355469 93.171875 C 282.105469 93.367188 282.625 93.523438 282.917969 93.648438 C 283.21875 93.773438 283.457031 93.960938 283.625 94.210938 C 283.792969 94.453125 283.875 94.75 283.875 95.109375 C 283.875 95.472656 283.769531 95.804688 283.5625 96.109375 C 283.355469 96.414062 283.050781 96.660156 282.667969 96.835938 C 282.292969 97.003906 281.855469 97.085938 281.355469 97.085938 C 280.546875 97.085938 279.925781 96.921875 279.5 96.585938 C 279.082031 96.242188 278.816406 95.742188 278.707031 95.085938 Z M 278.707031 95.085938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 289.375 94.941406 L 290.480469 95.066406 C 290.296875 95.707031 289.96875 96.207031 289.5 96.566406 C 289.042969 96.914062 288.449219 97.085938 287.730469 97.085938 C 286.824219 97.085938 286.105469 96.8125 285.5625 96.253906 C 285.03125 95.6875 284.769531 94.894531 284.769531 93.878906 C 284.769531 92.835938 285.042969 92.035156 285.582031 91.460938 C 286.125 90.878906 286.824219 90.585938 287.6875 90.585938 C 288.519531 90.585938 289.191406 90.875 289.707031 91.441406 C 290.234375 92 290.5 92.789062 290.5 93.816406 C 290.5 93.890625 290.5 93.984375 290.5 94.109375 L 285.855469 94.109375 C 285.894531 94.789062 286.089844 95.3125 286.4375 95.671875 C 286.78125 96.035156 287.21875 96.210938 287.75 96.210938 C 288.136719 96.210938 288.464844 96.117188 288.730469 95.921875 C 289.003906 95.710938 289.21875 95.390625 289.375 94.941406 Z M 285.917969 93.234375 L 289.394531 93.234375 C 289.355469 92.707031 289.21875 92.3125 289 92.046875 C 288.667969 91.644531 288.230469 91.441406 287.6875 91.441406 C 287.199219 91.441406 286.792969 91.609375 286.457031 91.941406 C 286.136719 92.265625 285.957031 92.691406 285.917969 93.234375 Z M 285.917969 93.234375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 294.113281 96.003906 L 294.257812 96.921875 C 293.949219 96.988281 293.683594 97.023438 293.464844 97.023438 C 293.074219 97.023438 292.777344 96.960938 292.570312 96.835938 C 292.363281 96.710938 292.207031 96.554688 292.113281 96.359375 C 292.027344 96.164062 291.988281 95.753906 291.988281 95.128906 L 291.988281 91.546875 L 291.214844 91.546875 L 291.214844 90.710938 L 291.988281 90.710938 L 291.988281 89.171875 L 293.050781 88.546875 L 293.050781 90.710938 L 294.113281 90.710938 L 294.113281 91.546875 L 293.050781 91.546875 L 293.050781 95.171875 C 293.050781 95.476562 293.058594 95.671875 293.089844 95.753906 C 293.132812 95.835938 293.195312 95.910156 293.277344 95.960938 C 293.363281 96.019531 293.476562 96.046875 293.632812 96.046875 C 293.757812 96.046875 293.914062 96.035156 294.113281 96.003906 Z M 294.113281 96.003906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 267.59375 111.1875 L 268.613281 111.332031 C 268.65625 111.652344 268.769531 111.878906 268.96875 112.019531 C 269.230469 112.214844 269.59375 112.3125 270.050781 112.3125 C 270.535156 112.3125 270.910156 112.214844 271.175781 112.019531 C 271.4375 111.824219 271.617188 111.550781 271.71875 111.207031 C 271.769531 110.984375 271.789062 110.535156 271.78125 109.855469 C 271.320312 110.394531 270.75 110.667969 270.070312 110.667969 C 269.207031 110.667969 268.539062 110.363281 268.070312 109.75 C 267.613281 109.125 267.382812 108.386719 267.382812 107.519531 C 267.382812 106.925781 267.488281 106.375 267.695312 105.875 C 267.914062 105.375 268.230469 104.996094 268.632812 104.730469 C 269.035156 104.453125 269.515625 104.3125 270.070312 104.3125 C 270.804688 104.3125 271.410156 104.605469 271.882812 105.1875 L 271.882812 104.4375 L 272.863281 104.4375 L 272.863281 109.8125 C 272.863281 110.78125 272.757812 111.46875 272.550781 111.875 C 272.355469 112.277344 272.039062 112.59375 271.613281 112.832031 C 271.195312 113.066406 270.675781 113.1875 270.050781 113.1875 C 269.300781 113.1875 268.695312 113.019531 268.238281 112.6875 C 267.789062 112.355469 267.578125 111.855469 267.59375 111.1875 Z M 268.46875 107.4375 C 268.46875 108.261719 268.625 108.855469 268.945312 109.230469 C 269.265625 109.605469 269.664062 109.792969 270.15625 109.792969 C 270.640625 109.792969 271.050781 109.605469 271.382812 109.230469 C 271.71875 108.855469 271.882812 108.269531 271.882812 107.480469 C 271.882812 106.71875 271.707031 106.140625 271.363281 105.75 C 271.03125 105.363281 270.625 105.167969 270.15625 105.167969 C 269.679688 105.167969 269.28125 105.363281 268.945312 105.75 C 268.625 106.125 268.46875 106.6875 268.46875 107.4375 Z M 268.46875 107.4375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 278.515625 109.894531 C 278.125 110.230469 277.75 110.46875 277.390625 110.605469 C 277.027344 110.738281 276.640625 110.8125 276.226562 110.8125 C 275.542969 110.8125 275.015625 110.644531 274.640625 110.3125 C 274.277344 109.980469 274.101562 109.550781 274.101562 109.019531 C 274.101562 108.71875 274.167969 108.4375 274.308594 108.1875 C 274.445312 107.9375 274.625 107.738281 274.851562 107.582031 C 275.070312 107.433594 275.320312 107.3125 275.601562 107.230469 C 275.808594 107.1875 276.121094 107.140625 276.539062 107.082031 C 277.398438 106.988281 278.027344 106.863281 278.433594 106.707031 C 278.433594 106.574219 278.433594 106.480469 278.433594 106.4375 C 278.433594 106.011719 278.335938 105.707031 278.140625 105.542969 C 277.859375 105.292969 277.460938 105.167969 276.933594 105.167969 C 276.433594 105.167969 276.0625 105.261719 275.828125 105.4375 C 275.589844 105.605469 275.417969 105.910156 275.308594 106.355469 L 274.289062 106.230469 C 274.371094 105.785156 274.515625 105.433594 274.726562 105.167969 C 274.945312 104.890625 275.257812 104.683594 275.664062 104.542969 C 276.078125 104.390625 276.546875 104.3125 277.078125 104.3125 C 277.621094 104.3125 278.046875 104.375 278.371094 104.5 C 278.703125 104.625 278.945312 104.785156 279.101562 104.980469 C 279.265625 105.160156 279.375 105.394531 279.433594 105.6875 C 279.476562 105.871094 279.496094 106.1875 279.496094 106.644531 L 279.496094 108.0625 C 279.496094 109.035156 279.515625 109.65625 279.558594 109.917969 C 279.601562 110.183594 279.6875 110.433594 279.828125 110.667969 L 278.726562 110.667969 C 278.609375 110.449219 278.542969 110.1875 278.515625 109.894531 Z M 278.433594 107.542969 C 278.042969 107.699219 277.464844 107.828125 276.703125 107.9375 C 276.273438 108.011719 275.964844 108.082031 275.789062 108.167969 C 275.605469 108.238281 275.464844 108.347656 275.371094 108.5 C 275.273438 108.65625 275.226562 108.824219 275.226562 109 C 275.226562 109.28125 275.328125 109.515625 275.539062 109.707031 C 275.746094 109.890625 276.058594 109.980469 276.476562 109.980469 C 276.875 109.980469 277.234375 109.890625 277.558594 109.707031 C 277.875 109.53125 278.109375 109.285156 278.265625 108.980469 C 278.375 108.746094 278.433594 108.394531 278.433594 107.9375 Z M 278.433594 107.542969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 283.441406 109.730469 L 283.585938 110.644531 C 283.28125 110.714844 283.015625 110.75 282.796875 110.75 C 282.40625 110.75 282.109375 110.6875 281.898438 110.5625 C 281.691406 110.4375 281.535156 110.28125 281.441406 110.082031 C 281.359375 109.890625 281.316406 109.480469 281.316406 108.855469 L 281.316406 105.269531 L 280.546875 105.269531 L 280.546875 104.4375 L 281.316406 104.4375 L 281.316406 102.894531 L 282.378906 102.269531 L 282.378906 104.4375 L 283.441406 104.4375 L 283.441406 105.269531 L 282.378906 105.269531 L 282.378906 108.894531 C 282.378906 109.203125 282.390625 109.394531 282.421875 109.480469 C 282.460938 109.5625 282.523438 109.636719 282.609375 109.6875 C 282.691406 109.746094 282.804688 109.769531 282.960938 109.769531 C 283.085938 109.769531 283.242188 109.761719 283.441406 109.730469 Z M 283.441406 109.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 288.71875 108.667969 L 289.820312 108.792969 C 289.640625 109.433594 289.3125 109.933594 288.84375 110.292969 C 288.382812 110.640625 287.789062 110.8125 287.070312 110.8125 C 286.164062 110.8125 285.445312 110.535156 284.90625 109.980469 C 284.375 109.410156 284.113281 108.621094 284.113281 107.605469 C 284.113281 106.5625 284.382812 105.761719 284.925781 105.1875 C 285.46875 104.605469 286.164062 104.3125 287.03125 104.3125 C 287.863281 104.3125 288.535156 104.597656 289.050781 105.167969 C 289.578125 105.722656 289.84375 106.515625 289.84375 107.542969 C 289.84375 107.613281 289.84375 107.707031 289.84375 107.832031 L 285.195312 107.832031 C 285.238281 108.515625 285.429688 109.035156 285.78125 109.394531 C 286.125 109.761719 286.5625 109.9375 287.09375 109.9375 C 287.476562 109.9375 287.804688 109.84375 288.070312 109.644531 C 288.347656 109.4375 288.5625 109.113281 288.71875 108.667969 Z M 285.257812 106.957031 L 288.738281 106.957031 C 288.695312 106.433594 288.5625 106.035156 288.34375 105.769531 C 288.007812 105.371094 287.570312 105.167969 287.03125 105.167969 C 286.539062 105.167969 286.132812 105.332031 285.800781 105.667969 C 285.476562 105.988281 285.300781 106.417969 285.257812 106.957031 Z M 285.257812 106.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 281.804688 125.726562 L 281.804688 125.433594 C 281.597656 125.433594 281.390625 125.308594 281.285156 125.164062 L 278.890625 121.765625 C 279.597656 121.578125 279.910156 121.390625 280.242188 121.101562 C 280.597656 120.765625 280.785156 120.226562 280.785156 119.683594 C 280.785156 118.289062 279.578125 117.621094 277.222656 117.621094 L 273.535156 117.621094 L 273.535156 117.914062 C 274.429688 117.976562 274.597656 118.183594 274.597656 119.121094 L 274.597656 124.289062 C 274.597656 125.226562 274.472656 125.308594 273.535156 125.433594 L 273.535156 125.726562 L 277.597656 125.726562 L 277.597656 125.433594 C 276.660156 125.308594 276.535156 125.203125 276.535156 124.328125 L 276.535156 121.976562 L 276.867188 121.976562 L 279.347656 125.726562 Z M 276.535156 118.558594 C 276.535156 118.164062 276.703125 118.015625 277.179688 118.015625 C 278.285156 118.015625 278.722656 118.515625 278.722656 119.789062 C 278.722656 121.265625 278.097656 121.578125 276.535156 121.578125 Z M 276.535156 118.558594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 284.261719 126.308594 L 283.617188 126.308594 L 283.84375 125.476562 C 283.84375 125.453125 283.84375 125.414062 283.84375 125.414062 C 283.84375 125.371094 283.824219 125.351562 283.78125 125.351562 C 283.742188 125.351562 283.699219 125.371094 283.65625 125.433594 C 283.367188 125.871094 282.84375 126.246094 282.59375 126.308594 C 282.40625 126.351562 282.34375 126.414062 282.34375 126.515625 C 282.34375 126.515625 282.34375 126.539062 282.34375 126.558594 L 282.949219 126.558594 L 282.324219 128.933594 C 282.261719 129.183594 282.199219 129.433594 282.199219 129.515625 C 282.199219 129.726562 282.34375 129.808594 282.554688 129.808594 C 282.96875 129.808594 283.21875 129.578125 283.699219 128.851562 L 283.59375 128.789062 C 283.199219 129.289062 283.074219 129.414062 282.949219 129.414062 C 282.886719 129.414062 282.824219 129.390625 282.824219 129.289062 C 282.824219 129.265625 282.84375 129.203125 282.84375 129.183594 L 283.53125 126.558594 L 284.21875 126.558594 Z M 284.261719 126.308594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 335.214844 89.691406 L 336.359375 89.691406 L 336.359375 94.648438 C 336.359375 95.515625 336.257812 96.203125 336.046875 96.710938 C 335.851562 97.210938 335.496094 97.625 334.984375 97.941406 C 334.484375 98.265625 333.820312 98.421875 332.984375 98.421875 C 332.179688 98.421875 331.515625 98.28125 331.007812 98.003906 C 330.507812 97.726562 330.140625 97.328125 329.921875 96.796875 C 329.699219 96.269531 329.589844 95.554688 329.589844 94.648438 L 329.589844 89.691406 L 330.734375 89.691406 L 330.734375 94.648438 C 330.734375 95.390625 330.804688 95.9375 330.945312 96.296875 C 331.078125 96.644531 331.320312 96.914062 331.652344 97.109375 C 331.984375 97.304688 332.402344 97.398438 332.902344 97.398438 C 333.734375 97.398438 334.324219 97.210938 334.671875 96.835938 C 335.03125 96.453125 335.214844 95.722656 335.214844 94.648438 Z M 335.214844 89.691406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 338.109375 100.648438 L 338.109375 92.046875 L 339.070312 92.046875 L 339.070312 92.859375 C 339.289062 92.539062 339.539062 92.304688 339.820312 92.148438 C 340.109375 92 340.464844 91.921875 340.882812 91.921875 C 341.40625 91.921875 341.871094 92.0625 342.277344 92.335938 C 342.679688 92.601562 342.984375 92.984375 343.195312 93.484375 C 343.402344 93.984375 343.507812 94.523438 343.507812 95.109375 C 343.507812 95.75 343.386719 96.328125 343.152344 96.835938 C 342.929688 97.351562 342.601562 97.75 342.171875 98.023438 C 341.742188 98.285156 341.28125 98.421875 340.796875 98.421875 C 340.449219 98.421875 340.136719 98.34375 339.859375 98.191406 C 339.578125 98.039062 339.351562 97.851562 339.171875 97.628906 L 339.171875 100.648438 Z M 339.070312 95.191406 C 339.070312 96 339.226562 96.597656 339.546875 96.984375 C 339.882812 97.359375 340.277344 97.546875 340.734375 97.546875 C 341.195312 97.546875 341.589844 97.351562 341.921875 96.960938 C 342.265625 96.5625 342.445312 95.941406 342.445312 95.109375 C 342.445312 94.316406 342.277344 93.726562 341.945312 93.335938 C 341.621094 92.9375 341.234375 92.734375 340.777344 92.734375 C 340.328125 92.734375 339.933594 92.953125 339.589844 93.378906 C 339.242188 93.796875 339.070312 94.398438 339.070312 95.191406 Z M 339.070312 95.191406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 348.828125 98.273438 L 348.828125 97.484375 C 348.421875 98.109375 347.835938 98.421875 347.078125 98.421875 C 346.585938 98.421875 346.140625 98.28125 345.722656 98.003906 C 345.304688 97.726562 344.976562 97.347656 344.742188 96.859375 C 344.519531 96.375 344.410156 95.8125 344.410156 95.171875 C 344.410156 94.546875 344.515625 93.984375 344.722656 93.484375 C 344.929688 92.972656 345.234375 92.582031 345.640625 92.316406 C 346.054688 92.054688 346.519531 91.921875 347.035156 91.921875 C 347.410156 91.921875 347.742188 92 348.035156 92.148438 C 348.328125 92.304688 348.5625 92.515625 348.742188 92.773438 L 348.742188 89.691406 L 349.804688 89.691406 L 349.804688 98.273438 Z M 345.492188 95.171875 C 345.492188 95.960938 345.660156 96.5625 345.992188 96.960938 C 346.328125 97.351562 346.722656 97.546875 347.179688 97.546875 C 347.640625 97.546875 348.023438 97.359375 348.347656 96.984375 C 348.679688 96.609375 348.847656 96.035156 348.847656 95.253906 C 348.847656 94.410156 348.679688 93.785156 348.347656 93.378906 C 348.015625 92.976562 347.609375 92.773438 347.140625 92.773438 C 346.664062 92.773438 346.269531 92.972656 345.953125 93.359375 C 345.644531 93.75 345.492188 94.351562 345.492188 95.171875 Z M 345.492188 95.171875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 355.523438 97.503906 C 355.132812 97.835938 354.757812 98.078125 354.398438 98.210938 C 354.03125 98.347656 353.648438 98.421875 353.230469 98.421875 C 352.546875 98.421875 352.023438 98.253906 351.648438 97.921875 C 351.28125 97.585938 351.105469 97.160156 351.105469 96.628906 C 351.105469 96.328125 351.171875 96.046875 351.3125 95.796875 C 351.449219 95.546875 351.632812 95.347656 351.855469 95.191406 C 352.074219 95.039062 352.324219 94.921875 352.605469 94.835938 C 352.8125 94.796875 353.125 94.75 353.542969 94.691406 C 354.402344 94.597656 355.03125 94.472656 355.4375 94.316406 C 355.4375 94.179688 355.4375 94.085938 355.4375 94.046875 C 355.4375 93.617188 355.339844 93.316406 355.148438 93.148438 C 354.867188 92.898438 354.464844 92.773438 353.9375 92.773438 C 353.4375 92.773438 353.070312 92.867188 352.835938 93.046875 C 352.59375 93.210938 352.421875 93.519531 352.3125 93.960938 L 351.292969 93.835938 C 351.375 93.394531 351.523438 93.039062 351.730469 92.773438 C 351.949219 92.5 352.261719 92.289062 352.667969 92.148438 C 353.085938 92 353.554688 91.921875 354.085938 91.921875 C 354.625 91.921875 355.054688 91.984375 355.375 92.109375 C 355.710938 92.234375 355.949219 92.394531 356.105469 92.585938 C 356.273438 92.769531 356.382812 93.003906 356.4375 93.296875 C 356.480469 93.476562 356.5 93.796875 356.5 94.253906 L 356.5 95.671875 C 356.5 96.644531 356.523438 97.265625 356.5625 97.523438 C 356.605469 97.789062 356.695312 98.039062 356.835938 98.273438 L 355.730469 98.273438 C 355.617188 98.054688 355.546875 97.796875 355.523438 97.503906 Z M 355.4375 95.148438 C 355.046875 95.304688 354.46875 95.4375 353.710938 95.546875 C 353.277344 95.617188 352.96875 95.691406 352.792969 95.773438 C 352.609375 95.847656 352.46875 95.957031 352.375 96.109375 C 352.277344 96.265625 352.230469 96.429688 352.230469 96.609375 C 352.230469 96.890625 352.335938 97.125 352.542969 97.316406 C 352.75 97.5 353.0625 97.585938 353.480469 97.585938 C 353.882812 97.585938 354.242188 97.5 354.5625 97.316406 C 354.882812 97.140625 355.117188 96.894531 355.273438 96.585938 C 355.382812 96.351562 355.4375 96.003906 355.4375 95.546875 Z M 355.4375 95.148438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 360.445312 97.335938 L 360.59375 98.253906 C 360.285156 98.320312 360.019531 98.359375 359.800781 98.359375 C 359.410156 98.359375 359.113281 98.296875 358.90625 98.171875 C 358.695312 98.046875 358.539062 97.890625 358.445312 97.691406 C 358.363281 97.5 358.320312 97.085938 358.320312 96.460938 L 358.320312 92.878906 L 357.550781 92.878906 L 357.550781 92.046875 L 358.320312 92.046875 L 358.320312 90.503906 L 359.382812 89.878906 L 359.382812 92.046875 L 360.445312 92.046875 L 360.445312 92.878906 L 359.382812 92.878906 L 359.382812 96.503906 C 359.382812 96.8125 359.394531 97.003906 359.425781 97.085938 C 359.46875 97.171875 359.53125 97.242188 359.613281 97.296875 C 359.695312 97.351562 359.8125 97.378906 359.96875 97.378906 C 360.09375 97.378906 360.25 97.367188 360.445312 97.335938 Z M 360.445312 97.335938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 365.722656 96.273438 L 366.828125 96.398438 C 366.644531 97.039062 366.316406 97.539062 365.847656 97.898438 C 365.390625 98.25 364.796875 98.421875 364.078125 98.421875 C 363.171875 98.421875 362.453125 98.144531 361.910156 97.585938 C 361.378906 97.019531 361.117188 96.226562 361.117188 95.210938 C 361.117188 94.171875 361.390625 93.367188 361.929688 92.796875 C 362.472656 92.210938 363.171875 91.921875 364.035156 91.921875 C 364.867188 91.921875 365.539062 92.207031 366.054688 92.773438 C 366.582031 93.332031 366.847656 94.125 366.847656 95.148438 C 366.847656 95.222656 366.847656 95.316406 366.847656 95.441406 L 362.203125 95.441406 C 362.242188 96.125 362.4375 96.644531 362.785156 97.003906 C 363.128906 97.367188 363.566406 97.546875 364.097656 97.546875 C 364.484375 97.546875 364.8125 97.453125 365.078125 97.253906 C 365.351562 97.046875 365.566406 96.722656 365.722656 96.273438 Z M 362.265625 94.566406 L 365.742188 94.566406 C 365.703125 94.039062 365.566406 93.644531 365.347656 93.378906 C 365.015625 92.976562 364.578125 92.773438 364.035156 92.773438 C 363.546875 92.773438 363.140625 92.941406 362.804688 93.273438 C 362.484375 93.597656 362.304688 94.023438 362.265625 94.566406 Z M 362.265625 94.566406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 336.925781 112.519531 L 337.945312 112.667969 C 337.988281 112.984375 338.105469 113.214844 338.300781 113.355469 C 338.5625 113.546875 338.925781 113.644531 339.382812 113.644531 C 339.867188 113.644531 340.242188 113.546875 340.507812 113.355469 C 340.769531 113.15625 340.953125 112.886719 341.050781 112.542969 C 341.105469 112.316406 341.125 111.871094 341.113281 111.1875 C 340.65625 111.730469 340.082031 112 339.40625 112 C 338.539062 112 337.875 111.699219 337.40625 111.082031 C 336.945312 110.457031 336.71875 109.71875 336.71875 108.855469 C 336.71875 108.261719 336.820312 107.707031 337.03125 107.207031 C 337.25 106.707031 337.5625 106.328125 337.96875 106.0625 C 338.367188 105.785156 338.847656 105.644531 339.40625 105.644531 C 340.140625 105.644531 340.742188 105.9375 341.21875 106.519531 L 341.21875 105.769531 L 342.195312 105.769531 L 342.195312 111.144531 C 342.195312 112.113281 342.09375 112.800781 341.882812 113.207031 C 341.6875 113.609375 341.375 113.925781 340.945312 114.167969 C 340.53125 114.402344 340.007812 114.519531 339.382812 114.519531 C 338.632812 114.519531 338.03125 114.355469 337.570312 114.019531 C 337.125 113.6875 336.910156 113.1875 336.925781 112.519531 Z M 337.800781 108.769531 C 337.800781 109.59375 337.957031 110.1875 338.28125 110.5625 C 338.597656 110.9375 339 111.125 339.488281 111.125 C 339.972656 111.125 340.382812 110.9375 340.71875 110.5625 C 341.050781 110.1875 341.21875 109.605469 341.21875 108.8125 C 341.21875 108.050781 341.039062 107.472656 340.695312 107.082031 C 340.363281 106.699219 339.957031 106.5 339.488281 106.5 C 339.015625 106.5 338.613281 106.699219 338.28125 107.082031 C 337.957031 107.457031 337.800781 108.019531 337.800781 108.769531 Z M 337.800781 108.769531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 347.851562 111.230469 C 347.460938 111.5625 347.085938 111.800781 346.726562 111.9375 C 346.359375 112.074219 345.976562 112.144531 345.558594 112.144531 C 344.875 112.144531 344.351562 111.980469 343.976562 111.644531 C 343.609375 111.3125 343.433594 110.886719 343.433594 110.355469 C 343.433594 110.050781 343.5 109.769531 343.640625 109.519531 C 343.777344 109.269531 343.960938 109.074219 344.183594 108.917969 C 344.402344 108.765625 344.652344 108.644531 344.933594 108.5625 C 345.140625 108.519531 345.453125 108.472656 345.871094 108.417969 C 346.730469 108.324219 347.359375 108.199219 347.765625 108.042969 C 347.765625 107.90625 347.765625 107.8125 347.765625 107.769531 C 347.765625 107.34375 347.667969 107.042969 347.476562 106.875 C 347.195312 106.625 346.792969 106.5 346.265625 106.5 C 345.765625 106.5 345.398438 106.59375 345.164062 106.769531 C 344.921875 106.9375 344.75 107.246094 344.640625 107.6875 L 343.621094 107.5625 C 343.703125 107.121094 343.851562 106.765625 344.058594 106.5 C 344.277344 106.222656 344.589844 106.015625 344.996094 105.875 C 345.414062 105.722656 345.882812 105.644531 346.414062 105.644531 C 346.953125 105.644531 347.382812 105.707031 347.703125 105.832031 C 348.039062 105.957031 348.277344 106.121094 348.433594 106.3125 C 348.601562 106.496094 348.710938 106.730469 348.765625 107.019531 C 348.808594 107.203125 348.828125 107.519531 348.828125 107.980469 L 348.828125 109.394531 C 348.828125 110.371094 348.851562 110.988281 348.890625 111.25 C 348.933594 111.515625 349.023438 111.765625 349.164062 112 L 348.058594 112 C 347.945312 111.78125 347.875 111.519531 347.851562 111.230469 Z M 347.765625 108.875 C 347.375 109.03125 346.796875 109.160156 346.039062 109.269531 C 345.605469 109.34375 345.296875 109.417969 345.121094 109.5 C 344.9375 109.574219 344.796875 109.683594 344.703125 109.832031 C 344.605469 109.988281 344.558594 110.15625 344.558594 110.332031 C 344.558594 110.613281 344.664062 110.847656 344.871094 111.042969 C 345.078125 111.222656 345.390625 111.3125 345.808594 111.3125 C 346.210938 111.3125 346.570312 111.222656 346.890625 111.042969 C 347.210938 110.863281 347.445312 110.621094 347.601562 110.3125 C 347.710938 110.078125 347.765625 109.730469 347.765625 109.269531 Z M 347.765625 108.875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 352.773438 111.0625 L 352.921875 111.980469 C 352.613281 112.046875 352.347656 112.082031 352.128906 112.082031 C 351.738281 112.082031 351.441406 112.019531 351.234375 111.894531 C 351.023438 111.769531 350.867188 111.613281 350.773438 111.417969 C 350.691406 111.222656 350.648438 110.8125 350.648438 110.1875 L 350.648438 106.605469 L 349.878906 106.605469 L 349.878906 105.769531 L 350.648438 105.769531 L 350.648438 104.230469 L 351.710938 103.605469 L 351.710938 105.769531 L 352.773438 105.769531 L 352.773438 106.605469 L 351.710938 106.605469 L 351.710938 110.230469 C 351.710938 110.535156 351.722656 110.730469 351.753906 110.8125 C 351.796875 110.894531 351.859375 110.96875 351.941406 111.019531 C 352.023438 111.078125 352.140625 111.105469 352.296875 111.105469 C 352.421875 111.105469 352.578125 111.09375 352.773438 111.0625 Z M 352.773438 111.0625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 358.050781 110 L 359.15625 110.125 C 358.972656 110.765625 358.644531 111.265625 358.175781 111.625 C 357.71875 111.972656 357.125 112.144531 356.40625 112.144531 C 355.5 112.144531 354.78125 111.871094 354.238281 111.3125 C 353.707031 110.746094 353.445312 109.953125 353.445312 108.9375 C 353.445312 107.894531 353.71875 107.09375 354.257812 106.519531 C 354.800781 105.9375 355.5 105.644531 356.363281 105.644531 C 357.195312 105.644531 357.867188 105.933594 358.382812 106.5 C 358.910156 107.058594 359.175781 107.847656 359.175781 108.875 C 359.175781 108.949219 359.175781 109.042969 359.175781 109.167969 L 354.53125 109.167969 C 354.570312 109.847656 354.765625 110.371094 355.113281 110.730469 C 355.457031 111.09375 355.894531 111.269531 356.425781 111.269531 C 356.8125 111.269531 357.140625 111.175781 357.40625 110.980469 C 357.679688 110.769531 357.894531 110.449219 358.050781 110 Z M 354.59375 108.292969 L 358.070312 108.292969 C 358.03125 107.765625 357.894531 107.371094 357.675781 107.105469 C 357.34375 106.703125 356.90625 106.5 356.363281 106.5 C 355.875 106.5 355.46875 106.667969 355.132812 107 C 354.8125 107.324219 354.632812 107.75 354.59375 108.292969 Z M 354.59375 108.292969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 350.488281 124.164062 L 350.175781 124.164062 C 349.84375 125.183594 349.675781 125.683594 349.011719 126.164062 C 348.511719 126.515625 347.71875 126.640625 346.574219 126.640625 L 345.59375 126.640625 L 350.136719 119.140625 L 350.136719 118.953125 L 343.863281 118.953125 L 343.59375 121.433594 L 343.925781 121.433594 C 344.46875 119.703125 344.96875 119.476562 346.800781 119.414062 L 347.800781 119.371094 L 343.21875 126.871094 L 343.21875 127.058594 L 350.175781 127.058594 Z M 350.488281 124.164062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 353.265625 127.640625 L 352.621094 127.640625 L 352.847656 126.808594 C 352.847656 126.789062 352.847656 126.746094 352.847656 126.746094 C 352.847656 126.703125 352.828125 126.683594 352.785156 126.683594 C 352.746094 126.683594 352.703125 126.703125 352.660156 126.765625 C 352.371094 127.203125 351.847656 127.578125 351.597656 127.640625 C 351.410156 127.683594 351.347656 127.746094 351.347656 127.851562 C 351.347656 127.851562 351.347656 127.871094 351.347656 127.890625 L 351.953125 127.890625 L 351.328125 130.265625 C 351.265625 130.515625 351.203125 130.765625 351.203125 130.851562 C 351.203125 131.058594 351.347656 131.140625 351.558594 131.140625 C 351.972656 131.140625 352.222656 130.914062 352.703125 130.183594 L 352.597656 130.121094 C 352.203125 130.621094 352.078125 130.746094 351.953125 130.746094 C 351.890625 130.746094 351.828125 130.726562 351.828125 130.621094 C 351.828125 130.601562 351.847656 130.539062 351.847656 130.515625 L 352.535156 127.890625 L 353.222656 127.890625 Z M 353.265625 127.640625 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.551758 310.582031 L 316.0625 357.9375 C 316.027344 361.250977 318.6875 363.963867 322.000977 363.999023 C 322.018555 363.999023 322.041992 363.999023 322.0625 363.999023 L 334.964844 363.999023 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.52832 351.999023 L 386 351.999023 C 389.313477 351.999023 392 349.3125 392 345.999023 L 392 341.897461 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392 337.898438 L 392 341.897461 M 390.5 341.897461 L 392 337.898438 L 393.5 341.897461 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.040039 384.500977 L 300.007812 358.007812 C 300.004883 354.691406 302.688477 352.004883 305.999023 351.999023 C 306.004883 351.999023 306.004883 351.999023 306.007812 351.999023 L 327.78125 351.999023 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 430.276367 320.000977 L 458.27832 320.000977 L 458.27832 336 L 430.276367 336 Z M 430.276367 320.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 377.128906 132.199219 L 377.277344 133.117188 C 376.96875 133.183594 376.703125 133.21875 376.484375 133.21875 C 376.09375 133.21875 375.796875 133.15625 375.589844 133.03125 C 375.378906 132.90625 375.222656 132.75 375.128906 132.554688 C 375.046875 132.359375 375.003906 131.949219 375.003906 131.324219 L 375.003906 127.742188 L 374.234375 127.742188 L 374.234375 126.90625 L 375.003906 126.90625 L 375.003906 125.367188 L 376.066406 124.742188 L 376.066406 126.90625 L 377.128906 126.90625 L 377.128906 127.742188 L 376.066406 127.742188 L 376.066406 131.367188 C 376.066406 131.671875 376.078125 131.867188 376.109375 131.949219 C 376.152344 132.03125 376.214844 132.105469 376.296875 132.15625 C 376.378906 132.214844 376.496094 132.242188 376.652344 132.242188 C 376.777344 132.242188 376.933594 132.230469 377.128906 132.199219 Z M 377.128906 132.199219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 382.214844 132.367188 C 381.824219 132.699219 381.449219 132.9375 381.089844 133.074219 C 380.722656 133.210938 380.339844 133.28125 379.921875 133.28125 C 379.238281 133.28125 378.714844 133.117188 378.339844 132.78125 C 377.972656 132.449219 377.796875 132.023438 377.796875 131.492188 C 377.796875 131.1875 377.863281 130.90625 378.003906 130.65625 C 378.140625 130.40625 378.324219 130.210938 378.546875 130.054688 C 378.765625 129.902344 379.015625 129.78125 379.296875 129.699219 C 379.503906 129.65625 379.816406 129.609375 380.234375 129.554688 C 381.09375 129.460938 381.722656 129.335938 382.128906 129.179688 C 382.128906 129.042969 382.128906 128.949219 382.128906 128.90625 C 382.128906 128.480469 382.03125 128.179688 381.839844 128.011719 C 381.558594 127.761719 381.15625 127.636719 380.628906 127.636719 C 380.128906 127.636719 379.761719 127.730469 379.527344 127.90625 C 379.285156 128.074219 379.113281 128.382812 379.003906 128.824219 L 377.984375 128.699219 C 378.066406 128.257812 378.214844 127.902344 378.421875 127.636719 C 378.640625 127.359375 378.953125 127.152344 379.359375 127.011719 C 379.777344 126.859375 380.246094 126.78125 380.777344 126.78125 C 381.316406 126.78125 381.746094 126.84375 382.066406 126.96875 C 382.402344 127.09375 382.640625 127.257812 382.796875 127.449219 C 382.964844 127.632812 383.074219 127.867188 383.128906 128.15625 C 383.171875 128.339844 383.191406 128.65625 383.191406 129.117188 L 383.191406 130.53125 C 383.191406 131.507812 383.214844 132.125 383.253906 132.386719 C 383.296875 132.652344 383.386719 132.902344 383.527344 133.136719 L 382.421875 133.136719 C 382.308594 132.917969 382.238281 132.65625 382.214844 132.367188 Z M 382.128906 130.011719 C 381.738281 130.167969 381.160156 130.296875 380.402344 130.40625 C 379.96875 130.480469 379.660156 130.554688 379.484375 130.636719 C 379.300781 130.710938 379.160156 130.820312 379.066406 130.96875 C 378.96875 131.125 378.921875 131.292969 378.921875 131.46875 C 378.921875 131.75 379.027344 131.984375 379.234375 132.179688 C 379.441406 132.359375 379.753906 132.449219 380.171875 132.449219 C 380.574219 132.449219 380.933594 132.359375 381.253906 132.179688 C 381.574219 132 381.808594 131.757812 381.964844 131.449219 C 382.074219 131.214844 382.128906 130.867188 382.128906 130.40625 Z M 382.128906 130.011719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 384.820312 133.136719 L 384.820312 126.90625 L 385.78125 126.90625 L 385.78125 127.804688 C 386.222656 127.125 386.882812 126.78125 387.757812 126.78125 C 388.132812 126.78125 388.472656 126.855469 388.78125 126.992188 C 389.097656 127.117188 389.332031 127.292969 389.488281 127.511719 C 389.640625 127.71875 389.75 127.980469 389.820312 128.28125 C 389.863281 128.480469 389.882812 128.820312 389.882812 129.304688 L 389.882812 133.136719 L 388.820312 133.136719 L 388.820312 129.34375 C 388.820312 128.917969 388.78125 128.59375 388.695312 128.386719 C 388.613281 128.179688 388.46875 128.011719 388.257812 127.886719 C 388.050781 127.75 387.804688 127.679688 387.53125 127.679688 C 387.082031 127.679688 386.695312 127.824219 386.363281 128.117188 C 386.039062 128.398438 385.882812 128.9375 385.882812 129.742188 L 385.882812 133.136719 Z M 384.820312 133.136719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 391.492188 133.136719 L 391.492188 124.554688 L 392.554688 124.554688 L 392.554688 127.636719 C 393.039062 127.070312 393.65625 126.78125 394.40625 126.78125 C 394.867188 126.78125 395.261719 126.875 395.59375 127.054688 C 395.9375 127.234375 396.183594 127.484375 396.324219 127.804688 C 396.476562 128.125 396.554688 128.589844 396.554688 129.199219 L 396.554688 133.136719 L 395.511719 133.136719 L 395.511719 129.199219 C 395.511719 128.671875 395.390625 128.292969 395.15625 128.054688 C 394.933594 127.804688 394.617188 127.679688 394.199219 127.679688 C 393.875 127.679688 393.578125 127.761719 393.304688 127.929688 C 393.023438 128.085938 392.828125 128.296875 392.71875 128.574219 C 392.605469 128.855469 392.554688 129.242188 392.554688 129.742188 L 392.554688 133.136719 Z M 391.492188 133.136719 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 449.65625 278.34375 C 452.782227 281.469727 452.782227 286.532227 449.65625 289.655273 C 446.530273 292.78125 441.467773 292.78125 438.344727 289.655273 C 435.21875 286.532227 435.21875 281.469727 438.344727 278.34375 C 441.467773 275.217773 446.530273 275.217773 449.65625 278.34375 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.671875 300.460938 C 319.84375 301.632812 319.84375 303.53125 318.671875 304.703125 C 317.5 305.875 315.601562 305.875 314.429688 304.703125 C 313.257812 303.53125 313.257812 301.632812 314.429688 300.460938 C 315.601562 299.289062 317.5 299.289062 318.671875 300.460938 " transform="matrix(1.333333,0,0,1.333333,-37.333333,-333.333333)"/>
|
||||
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 386.253906 70.105469 C 386.253906 69.269531 385.566406 68.582031 384.734375 68.582031 C 383.898438 68.582031 383.210938 69.269531 383.210938 70.105469 C 383.210938 70.9375 383.898438 71.625 384.734375 71.625 C 385.566406 71.625 386.253906 70.9375 386.253906 70.105469 Z M 386.253906 70.105469 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.671875 300.460938 C 319.84375 301.632812 319.84375 303.53125 318.671875 304.703125 C 317.5 305.875 315.601562 305.875 314.429688 304.703125 C 313.257812 303.53125 313.257812 301.632812 314.429688 300.460938 C 315.601562 299.289062 317.5 299.289062 318.671875 300.460938 " transform="matrix(1.333333,0,0,1.333333,-37.333333,-333.333333)"/>
|
||||
<g clip-path="url(#clip8)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 386.253906 70.105469 C 386.253906 69.269531 385.566406 68.582031 384.734375 68.582031 C 383.898438 68.582031 383.210938 69.269531 383.210938 70.105469 C 383.210938 70.9375 383.898438 71.625 384.734375 71.625 C 385.566406 71.625 386.253906 70.9375 386.253906 70.105469 Z M 386.253906 70.105469 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.21582 320.000977 L 444.045898 297.899414 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.016602 293.897461 L 444.045898 297.899414 M 442.545898 297.911133 L 444.016602 293.897461 L 445.545898 297.887695 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.02832 375.914062 C 300.010742 369.348633 305.319336 364.016602 311.887695 363.999023 C 311.893555 363.999023 311.905273 363.999023 311.914062 363.999023 L 432.092773 363.999023 C 438.68457 363.999023 444.040039 358.68457 444.092773 352.092773 L 444.171875 341.897461 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.204102 337.898438 L 444.171875 341.897461 M 442.671875 341.885742 L 444.204102 337.898438 L 445.671875 341.90918 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.418945 251.739258 L 310.223633 251.856445 C 313.449219 251.938477 316.030273 254.551758 316.074219 257.777344 L 316.472656 288.682617 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.52832 292.68457 L 316.472656 288.682617 M 317.972656 288.665039 L 316.52832 292.68457 L 314.972656 288.703125 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 173.117188 216.105469 L 173.117188 224.667969 L 174.097656 224.667969 L 174.097656 216.105469 Z M 173.117188 216.105469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 178.667969 218.292969 C 178.273438 218.292969 177.898438 218.394531 177.566406 218.582031 C 177.210938 218.769531 176.941406 219.019531 176.730469 219.375 L 176.730469 218.457031 L 175.773438 218.457031 L 175.773438 224.667969 L 176.730469 224.667969 L 176.730469 220.917969 C 176.773438 220.355469 176.941406 219.917969 177.273438 219.582031 C 177.585938 219.269531 177.960938 219.105469 178.398438 219.105469 C 179.480469 219.105469 180.023438 219.707031 180.023438 220.917969 L 180.023438 224.667969 L 180.980469 224.667969 L 180.980469 220.855469 C 180.980469 219.144531 180.210938 218.292969 178.667969 218.292969 Z M 178.667969 218.292969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 185.441406 218.292969 C 184.503906 218.292969 183.816406 218.6875 183.378906 219.480469 L 183.378906 218.457031 L 182.480469 218.457031 L 182.480469 227.042969 L 183.441406 227.042969 L 183.441406 223.542969 C 183.917969 224.394531 184.605469 224.832031 185.480469 224.832031 C 186.378906 224.832031 187.066406 224.5 187.566406 223.855469 C 188.023438 223.25 188.253906 222.5 188.253906 221.582031 C 188.253906 220.644531 188.023438 219.894531 187.542969 219.292969 C 187.042969 218.625 186.335938 218.292969 185.441406 218.292969 Z M 185.316406 219.082031 C 185.980469 219.082031 186.480469 219.332031 186.835938 219.832031 C 187.128906 220.269531 187.273438 220.855469 187.273438 221.582031 C 187.273438 222.332031 187.128906 222.917969 186.816406 223.355469 C 186.460938 223.8125 185.960938 224.042969 185.273438 224.042969 C 184.710938 224.042969 184.273438 223.8125 183.917969 223.375 C 183.566406 222.9375 183.398438 222.355469 183.398438 221.644531 L 183.398438 221.519531 C 183.398438 220.832031 183.566406 220.25 183.878906 219.8125 C 184.210938 219.332031 184.691406 219.082031 185.316406 219.082031 Z M 185.316406 219.082031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.511719 218.457031 L 189.511719 222.3125 C 189.511719 223.980469 190.242188 224.832031 191.761719 224.832031 C 192.597656 224.832031 193.285156 224.457031 193.785156 223.707031 L 193.785156 224.667969 L 194.742188 224.667969 L 194.742188 218.457031 L 193.785156 218.457031 L 193.785156 222.25 C 193.699219 222.769531 193.511719 223.207031 193.160156 223.542969 C 192.847656 223.855469 192.472656 224.019531 192.054688 224.019531 C 191.492188 224.019531 191.097656 223.855469 190.847656 223.582031 C 190.597656 223.292969 190.472656 222.832031 190.472656 222.25 L 190.472656 218.457031 Z M 189.511719 218.457031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 197.878906 216.457031 L 196.941406 216.855469 L 196.941406 218.457031 L 195.691406 218.457031 L 195.691406 219.269531 L 196.941406 219.269531 L 196.941406 223.207031 C 196.941406 223.6875 197.023438 224.019531 197.234375 224.269531 C 197.441406 224.542969 197.816406 224.667969 198.335938 224.667969 L 199.253906 224.667969 L 199.253906 223.855469 L 198.460938 223.855469 C 198.253906 223.855469 198.109375 223.8125 198.023438 223.707031 C 197.921875 223.605469 197.878906 223.4375 197.878906 223.207031 L 197.878906 219.269531 L 199.421875 219.269531 L 199.421875 218.457031 L 197.878906 218.457031 Z M 197.878906 216.457031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 212.136719 224.667969 L 212.136719 224.375 C 211.71875 224.355469 211.53125 224.207031 210.96875 223.332031 L 208.78125 219.9375 L 209.738281 218.605469 C 210.78125 217.144531 211.09375 216.9375 211.988281 216.855469 L 211.988281 216.5625 L 208.988281 216.5625 L 208.988281 216.855469 L 209.238281 216.875 C 209.699219 216.917969 209.863281 217.019531 209.863281 217.292969 C 209.863281 217.5625 209.71875 217.792969 209.15625 218.5625 L 208.488281 219.5 L 207.324219 217.6875 C 207.175781 217.457031 207.15625 217.394531 207.15625 217.25 C 207.15625 217 207.28125 216.894531 207.71875 216.875 L 208.09375 216.855469 L 208.09375 216.5625 L 203.949219 216.5625 L 203.949219 216.855469 C 204.386719 216.894531 204.53125 217.019531 204.90625 217.542969 L 207.28125 221.042969 L 205.175781 223.6875 C 204.824219 224.144531 204.53125 224.292969 203.925781 224.375 L 203.925781 224.667969 L 206.925781 224.667969 L 206.925781 224.375 C 206.199219 224.292969 205.96875 224.167969 205.96875 223.855469 C 205.96875 223.605469 206.199219 223.230469 207.09375 222.019531 L 207.550781 221.417969 L 208.761719 223.355469 C 208.90625 223.582031 209.011719 223.855469 209.011719 224 C 209.011719 224.207031 208.800781 224.3125 208.386719 224.332031 L 208.050781 224.375 L 208.050781 224.667969 Z M 212.136719 224.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 214.777344 225.25 L 214.132812 225.25 L 214.363281 224.417969 C 214.363281 224.394531 214.363281 224.355469 214.363281 224.355469 C 214.363281 224.3125 214.339844 224.292969 214.300781 224.292969 C 214.257812 224.292969 214.214844 224.3125 214.175781 224.375 C 213.882812 224.8125 213.363281 225.1875 213.113281 225.25 C 212.925781 225.292969 212.863281 225.355469 212.863281 225.457031 C 212.863281 225.457031 212.863281 225.480469 212.863281 225.5 L 213.464844 225.5 L 212.839844 227.875 C 212.777344 228.125 212.714844 228.375 212.714844 228.457031 C 212.714844 228.667969 212.863281 228.75 213.070312 228.75 C 213.488281 228.75 213.738281 228.519531 214.214844 227.792969 L 214.113281 227.730469 C 213.714844 228.230469 213.589844 228.355469 213.464844 228.355469 C 213.402344 228.355469 213.339844 228.332031 213.339844 228.230469 C 213.339844 228.207031 213.363281 228.144531 213.363281 228.125 L 214.050781 225.5 L 214.738281 225.5 Z M 214.777344 225.25 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 73.269531 21.136719 L 73.269531 12.554688 L 74.414062 12.554688 L 74.414062 16.074219 L 78.875 16.074219 L 78.875 12.554688 L 80.019531 12.554688 L 80.019531 21.136719 L 78.875 21.136719 L 78.875 17.09375 L 74.414062 17.09375 L 74.414062 21.136719 Z M 73.269531 21.136719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 81.769531 13.761719 L 81.769531 12.554688 L 82.832031 12.554688 L 82.832031 13.761719 Z M 81.769531 21.136719 L 81.769531 14.90625 L 82.832031 14.90625 L 82.832031 21.136719 Z M 81.769531 21.136719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.476562 21.136719 L 88.476562 20.34375 C 88.070312 20.96875 87.488281 21.28125 86.726562 21.28125 C 86.238281 21.28125 85.789062 21.140625 85.375 20.867188 C 84.957031 20.589844 84.628906 20.210938 84.394531 19.71875 C 84.171875 19.234375 84.0625 18.671875 84.0625 18.03125 C 84.0625 17.40625 84.164062 16.84375 84.375 16.34375 C 84.582031 15.835938 84.882812 15.445312 85.289062 15.179688 C 85.707031 14.917969 86.171875 14.78125 86.6875 14.78125 C 87.0625 14.78125 87.394531 14.859375 87.6875 15.011719 C 87.976562 15.167969 88.210938 15.375 88.394531 15.636719 L 88.394531 12.554688 L 89.457031 12.554688 L 89.457031 21.136719 Z M 85.144531 18.03125 C 85.144531 18.824219 85.3125 19.421875 85.644531 19.824219 C 85.976562 20.214844 86.375 20.40625 86.832031 20.40625 C 87.289062 20.40625 87.675781 20.21875 88 19.84375 C 88.332031 19.46875 88.5 18.898438 88.5 18.117188 C 88.5 17.273438 88.332031 16.648438 88 16.242188 C 87.664062 15.839844 87.257812 15.636719 86.789062 15.636719 C 86.316406 15.636719 85.921875 15.835938 85.601562 16.21875 C 85.296875 16.609375 85.144531 17.214844 85.144531 18.03125 Z M 85.144531 18.03125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 95.152344 21.136719 L 95.152344 20.34375 C 94.746094 20.96875 94.164062 21.28125 93.402344 21.28125 C 92.914062 21.28125 92.464844 21.140625 92.046875 20.867188 C 91.632812 20.589844 91.304688 20.210938 91.070312 19.71875 C 90.84375 19.234375 90.734375 18.671875 90.734375 18.03125 C 90.734375 17.40625 90.839844 16.84375 91.046875 16.34375 C 91.257812 15.835938 91.558594 15.445312 91.964844 15.179688 C 92.382812 14.917969 92.84375 14.78125 93.359375 14.78125 C 93.734375 14.78125 94.070312 14.859375 94.359375 15.011719 C 94.652344 15.167969 94.886719 15.375 95.070312 15.636719 L 95.070312 12.554688 L 96.132812 12.554688 L 96.132812 21.136719 Z M 91.820312 18.03125 C 91.820312 18.824219 91.984375 19.421875 92.320312 19.824219 C 92.652344 20.214844 93.046875 20.40625 93.507812 20.40625 C 93.964844 20.40625 94.351562 20.21875 94.671875 19.84375 C 95.007812 19.46875 95.171875 18.898438 95.171875 18.117188 C 95.171875 17.273438 95.007812 16.648438 94.671875 16.242188 C 94.339844 15.839844 93.933594 15.636719 93.464844 15.636719 C 92.992188 15.636719 92.59375 15.835938 92.277344 16.21875 C 91.96875 16.609375 91.820312 17.214844 91.820312 18.03125 Z M 91.820312 18.03125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.035156 19.136719 L 103.140625 19.261719 C 102.957031 19.902344 102.628906 20.402344 102.160156 20.761719 C 101.703125 21.109375 101.109375 21.28125 100.390625 21.28125 C 99.484375 21.28125 98.765625 21.007812 98.222656 20.449219 C 97.691406 19.882812 97.429688 19.089844 97.429688 18.074219 C 97.429688 17.03125 97.703125 16.230469 98.242188 15.65625 C 98.785156 15.074219 99.484375 14.78125 100.347656 14.78125 C 101.179688 14.78125 101.851562 15.070312 102.367188 15.636719 C 102.894531 16.195312 103.160156 16.984375 103.160156 18.011719 C 103.160156 18.085938 103.160156 18.179688 103.160156 18.304688 L 98.515625 18.304688 C 98.554688 18.984375 98.75 19.507812 99.097656 19.867188 C 99.441406 20.230469 99.878906 20.40625 100.410156 20.40625 C 100.796875 20.40625 101.125 20.3125 101.390625 20.117188 C 101.664062 19.90625 101.878906 19.585938 102.035156 19.136719 Z M 98.578125 17.429688 L 102.054688 17.429688 C 102.015625 16.902344 101.878906 16.507812 101.660156 16.242188 C 101.328125 15.839844 100.890625 15.636719 100.347656 15.636719 C 99.859375 15.636719 99.453125 15.804688 99.117188 16.136719 C 98.796875 16.460938 98.617188 16.886719 98.578125 17.429688 Z M 98.578125 17.429688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 104.460938 21.136719 L 104.460938 14.90625 L 105.417969 14.90625 L 105.417969 15.804688 C 105.859375 15.125 106.523438 14.78125 107.398438 14.78125 C 107.773438 14.78125 108.109375 14.855469 108.417969 14.992188 C 108.734375 15.117188 108.96875 15.292969 109.125 15.511719 C 109.277344 15.71875 109.386719 15.980469 109.460938 16.28125 C 109.5 16.480469 109.523438 16.820312 109.523438 17.304688 L 109.523438 21.136719 L 108.460938 21.136719 L 108.460938 17.34375 C 108.460938 16.917969 108.417969 16.59375 108.335938 16.386719 C 108.25 16.179688 108.105469 16.011719 107.898438 15.886719 C 107.6875 15.75 107.445312 15.679688 107.167969 15.679688 C 106.71875 15.679688 106.335938 15.824219 106 16.117188 C 105.679688 16.398438 105.523438 16.9375 105.523438 17.742188 L 105.523438 21.136719 Z M 104.460938 21.136719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 114.050781 19.28125 L 115.09375 19.117188 C 115.144531 19.53125 115.304688 19.855469 115.570312 20.074219 C 115.847656 20.296875 116.222656 20.40625 116.695312 20.40625 C 117.179688 20.40625 117.539062 20.3125 117.78125 20.117188 C 118.015625 19.921875 118.132812 19.695312 118.132812 19.429688 C 118.132812 19.179688 118.03125 18.992188 117.820312 18.867188 C 117.664062 18.773438 117.304688 18.648438 116.738281 18.492188 C 115.957031 18.296875 115.414062 18.132812 115.113281 17.992188 C 114.820312 17.855469 114.597656 17.65625 114.445312 17.40625 C 114.289062 17.15625 114.21875 16.882812 114.21875 16.574219 C 114.21875 16.296875 114.28125 16.042969 114.40625 15.804688 C 114.53125 15.570312 114.703125 15.367188 114.925781 15.199219 C 115.09375 15.089844 115.3125 14.992188 115.59375 14.90625 C 115.882812 14.824219 116.1875 14.78125 116.507812 14.78125 C 116.992188 14.78125 117.414062 14.855469 117.78125 14.992188 C 118.15625 15.132812 118.429688 15.320312 118.613281 15.554688 C 118.789062 15.792969 118.914062 16.109375 118.988281 16.511719 L 117.945312 16.65625 C 117.90625 16.339844 117.765625 16.089844 117.53125 15.90625 C 117.304688 15.730469 116.992188 15.636719 116.59375 15.636719 C 116.101562 15.636719 115.757812 15.71875 115.550781 15.886719 C 115.34375 16.042969 115.238281 16.230469 115.238281 16.449219 C 115.238281 16.589844 115.28125 16.710938 115.363281 16.804688 C 115.445312 16.929688 115.582031 17.027344 115.78125 17.09375 C 115.875 17.136719 116.179688 17.230469 116.695312 17.367188 C 117.445312 17.5625 117.96875 17.71875 118.257812 17.84375 C 118.5625 17.96875 118.800781 18.15625 118.96875 18.40625 C 119.132812 18.648438 119.21875 18.945312 119.21875 19.304688 C 119.21875 19.667969 119.113281 20 118.90625 20.304688 C 118.695312 20.609375 118.394531 20.855469 118.007812 21.03125 C 117.632812 21.199219 117.195312 21.28125 116.695312 21.28125 C 115.890625 21.28125 115.269531 21.117188 114.84375 20.78125 C 114.425781 20.4375 114.160156 19.9375 114.050781 19.28125 Z M 114.050781 19.28125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 122.78125 20.199219 L 122.925781 21.117188 C 122.617188 21.183594 122.351562 21.21875 122.132812 21.21875 C 121.742188 21.21875 121.445312 21.15625 121.238281 21.03125 C 121.03125 20.90625 120.875 20.75 120.78125 20.554688 C 120.695312 20.359375 120.65625 19.949219 120.65625 19.324219 L 120.65625 15.742188 L 119.882812 15.742188 L 119.882812 14.90625 L 120.65625 14.90625 L 120.65625 13.367188 L 121.71875 12.742188 L 121.71875 14.90625 L 122.78125 14.90625 L 122.78125 15.742188 L 121.71875 15.742188 L 121.71875 19.367188 C 121.71875 19.671875 121.726562 19.867188 121.757812 19.949219 C 121.800781 20.03125 121.863281 20.105469 121.945312 20.15625 C 122.03125 20.214844 122.144531 20.242188 122.300781 20.242188 C 122.425781 20.242188 122.582031 20.230469 122.78125 20.199219 Z M 122.78125 20.199219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 127.863281 20.367188 C 127.472656 20.699219 127.097656 20.9375 126.738281 21.074219 C 126.375 21.210938 125.988281 21.28125 125.570312 21.28125 C 124.890625 21.28125 124.363281 21.117188 123.988281 20.78125 C 123.625 20.449219 123.445312 20.023438 123.445312 19.492188 C 123.445312 19.1875 123.515625 18.90625 123.65625 18.65625 C 123.789062 18.40625 123.972656 18.210938 124.195312 18.054688 C 124.414062 17.902344 124.664062 17.78125 124.945312 17.699219 C 125.15625 17.65625 125.46875 17.609375 125.882812 17.554688 C 126.742188 17.460938 127.375 17.335938 127.78125 17.179688 C 127.78125 17.042969 127.78125 16.949219 127.78125 16.90625 C 127.78125 16.480469 127.679688 16.179688 127.488281 16.011719 C 127.207031 15.761719 126.804688 15.636719 126.28125 15.636719 C 125.78125 15.636719 125.410156 15.730469 125.175781 15.90625 C 124.9375 16.074219 124.765625 16.382812 124.65625 16.824219 L 123.632812 16.699219 C 123.71875 16.257812 123.863281 15.902344 124.070312 15.636719 C 124.289062 15.359375 124.601562 15.152344 125.007812 15.011719 C 125.425781 14.859375 125.894531 14.78125 126.425781 14.78125 C 126.96875 14.78125 127.394531 14.84375 127.71875 14.96875 C 128.050781 15.09375 128.289062 15.257812 128.445312 15.449219 C 128.613281 15.632812 128.722656 15.867188 128.78125 16.15625 C 128.820312 16.339844 128.84375 16.65625 128.84375 17.117188 L 128.84375 18.53125 C 128.84375 19.507812 128.863281 20.125 128.90625 20.386719 C 128.945312 20.652344 129.035156 20.902344 129.175781 21.136719 L 128.070312 21.136719 C 127.957031 20.917969 127.890625 20.65625 127.863281 20.367188 Z M 127.78125 18.011719 C 127.390625 18.167969 126.8125 18.296875 126.050781 18.40625 C 125.617188 18.480469 125.3125 18.554688 125.132812 18.636719 C 124.953125 18.710938 124.8125 18.820312 124.71875 18.96875 C 124.617188 19.125 124.570312 19.292969 124.570312 19.46875 C 124.570312 19.75 124.675781 19.984375 124.882812 20.179688 C 125.09375 20.359375 125.40625 20.449219 125.820312 20.449219 C 126.222656 20.449219 126.582031 20.359375 126.90625 20.179688 C 127.222656 20 127.457031 19.757812 127.613281 19.449219 C 127.722656 19.214844 127.78125 18.867188 127.78125 18.40625 Z M 127.78125 18.011719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 132.789062 20.199219 L 132.933594 21.117188 C 132.625 21.183594 132.359375 21.21875 132.140625 21.21875 C 131.75 21.21875 131.453125 21.15625 131.246094 21.03125 C 131.039062 20.90625 130.882812 20.75 130.789062 20.554688 C 130.703125 20.359375 130.664062 19.949219 130.664062 19.324219 L 130.664062 15.742188 L 129.890625 15.742188 L 129.890625 14.90625 L 130.664062 14.90625 L 130.664062 13.367188 L 131.726562 12.742188 L 131.726562 14.90625 L 132.789062 14.90625 L 132.789062 15.742188 L 131.726562 15.742188 L 131.726562 19.367188 C 131.726562 19.671875 131.734375 19.867188 131.765625 19.949219 C 131.808594 20.03125 131.871094 20.105469 131.953125 20.15625 C 132.039062 20.214844 132.152344 20.242188 132.308594 20.242188 C 132.433594 20.242188 132.589844 20.230469 132.789062 20.199219 Z M 132.789062 20.199219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 138.058594 19.136719 L 139.164062 19.261719 C 138.980469 19.902344 138.652344 20.402344 138.183594 20.761719 C 137.726562 21.109375 137.132812 21.28125 136.414062 21.28125 C 135.507812 21.28125 134.789062 21.007812 134.246094 20.449219 C 133.714844 19.882812 133.453125 19.089844 133.453125 18.074219 C 133.453125 17.03125 133.726562 16.230469 134.265625 15.65625 C 134.808594 15.074219 135.507812 14.78125 136.371094 14.78125 C 137.203125 14.78125 137.875 15.070312 138.390625 15.636719 C 138.917969 16.195312 139.183594 16.984375 139.183594 18.011719 C 139.183594 18.085938 139.183594 18.179688 139.183594 18.304688 L 134.539062 18.304688 C 134.578125 18.984375 134.773438 19.507812 135.121094 19.867188 C 135.464844 20.230469 135.902344 20.40625 136.433594 20.40625 C 136.820312 20.40625 137.148438 20.3125 137.414062 20.117188 C 137.6875 19.90625 137.902344 19.585938 138.058594 19.136719 Z M 134.601562 17.429688 L 138.078125 17.429688 C 138.039062 16.902344 137.902344 16.507812 137.683594 16.242188 C 137.351562 15.839844 136.914062 15.636719 136.371094 15.636719 C 135.882812 15.636719 135.476562 15.804688 135.140625 16.136719 C 134.820312 16.460938 134.640625 16.886719 134.601562 17.429688 Z M 134.601562 17.429688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 104.585938 36.195312 L 104.585938 35.90625 C 103.730469 35.78125 103.523438 35.65625 103.523438 35.03125 L 103.523438 29.28125 C 103.523438 28.632812 103.773438 28.445312 104.585938 28.382812 L 104.585938 28.09375 L 100.523438 28.09375 L 100.523438 28.382812 C 101.355469 28.445312 101.585938 28.59375 101.585938 29.28125 L 101.585938 31.71875 L 98.6875 31.71875 L 98.6875 29.28125 C 98.6875 28.59375 98.917969 28.445312 99.773438 28.382812 L 99.773438 28.09375 L 95.730469 28.09375 L 95.730469 28.382812 C 96.542969 28.445312 96.75 28.613281 96.75 29.28125 L 96.75 35.03125 C 96.75 35.65625 96.5625 35.78125 95.730469 35.90625 L 95.730469 36.195312 L 99.773438 36.195312 L 99.773438 35.90625 C 98.898438 35.800781 98.6875 35.65625 98.6875 35.03125 L 98.6875 32.28125 L 101.585938 32.28125 L 101.585938 35.03125 C 101.585938 35.632812 101.398438 35.800781 100.523438 35.90625 L 100.523438 36.195312 Z M 104.585938 36.195312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 107.191406 36.78125 L 106.546875 36.78125 L 106.773438 35.945312 C 106.773438 35.925781 106.773438 35.882812 106.773438 35.882812 C 106.773438 35.84375 106.753906 35.820312 106.710938 35.820312 C 106.671875 35.820312 106.628906 35.84375 106.585938 35.90625 C 106.296875 36.34375 105.773438 36.71875 105.523438 36.78125 C 105.335938 36.820312 105.273438 36.882812 105.273438 36.988281 C 105.273438 36.988281 105.273438 37.007812 105.273438 37.03125 L 105.878906 37.03125 L 105.253906 39.40625 C 105.191406 39.65625 105.128906 39.90625 105.128906 39.988281 C 105.128906 40.195312 105.273438 40.28125 105.484375 40.28125 C 105.898438 40.28125 106.148438 40.050781 106.628906 39.320312 L 106.523438 39.257812 C 106.128906 39.757812 106.003906 39.882812 105.878906 39.882812 C 105.816406 39.882812 105.753906 39.863281 105.753906 39.757812 C 105.753906 39.738281 105.773438 39.675781 105.773438 39.65625 L 106.460938 37.03125 L 107.148438 37.03125 Z M 107.191406 36.78125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 112 38.445312 L 112 37.90625 L 107.5625 37.90625 L 107.5625 38.445312 Z M 112 38.445312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 115.664062 40.195312 L 115.664062 40.070312 C 115.0625 40.070312 114.914062 39.925781 114.914062 39.59375 L 114.914062 34.820312 L 114.832031 34.78125 L 113.414062 35.507812 L 113.414062 35.632812 L 113.625 35.550781 C 113.769531 35.488281 113.894531 35.445312 113.976562 35.445312 C 114.144531 35.445312 114.226562 35.570312 114.226562 35.84375 L 114.226562 39.445312 C 114.226562 39.882812 114.0625 40.050781 113.457031 40.070312 L 113.457031 40.195312 Z M 115.664062 40.195312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 470.65625 30.253906 L 470.65625 29.960938 C 469.804688 29.835938 469.59375 29.710938 469.59375 29.085938 L 469.59375 23.335938 C 469.59375 22.691406 469.84375 22.503906 470.65625 22.441406 L 470.65625 22.148438 L 466.59375 22.148438 L 466.59375 22.441406 C 467.429688 22.503906 467.65625 22.648438 467.65625 23.335938 L 467.65625 25.773438 L 464.761719 25.773438 L 464.761719 23.335938 C 464.761719 22.648438 464.992188 22.503906 465.84375 22.441406 L 465.84375 22.148438 L 461.804688 22.148438 L 461.804688 22.441406 C 462.617188 22.503906 462.824219 22.667969 462.824219 23.335938 L 462.824219 29.085938 C 462.824219 29.710938 462.636719 29.835938 461.804688 29.960938 L 461.804688 30.253906 L 465.84375 30.253906 L 465.84375 29.960938 C 464.96875 29.855469 464.761719 29.710938 464.761719 29.085938 L 464.761719 26.335938 L 467.65625 26.335938 L 467.65625 29.085938 C 467.65625 29.691406 467.46875 29.855469 466.59375 29.960938 L 466.59375 30.253906 Z M 470.65625 30.253906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 473.265625 30.835938 L 472.617188 30.835938 L 472.847656 30.003906 C 472.847656 29.980469 472.847656 29.941406 472.847656 29.941406 C 472.847656 29.898438 472.828125 29.878906 472.785156 29.878906 C 472.742188 29.878906 472.703125 29.898438 472.660156 29.960938 C 472.367188 30.398438 471.847656 30.773438 471.597656 30.835938 C 471.410156 30.878906 471.347656 30.941406 471.347656 31.042969 C 471.347656 31.042969 471.347656 31.066406 471.347656 31.085938 L 471.953125 31.085938 L 471.328125 33.460938 C 471.265625 33.710938 471.203125 33.960938 471.203125 34.042969 C 471.203125 34.253906 471.347656 34.335938 471.554688 34.335938 C 471.972656 34.335938 472.222656 34.105469 472.703125 33.378906 L 472.597656 33.316406 C 472.203125 33.816406 472.078125 33.941406 471.953125 33.941406 C 471.890625 33.941406 471.828125 33.917969 471.828125 33.816406 C 471.828125 33.792969 471.847656 33.730469 471.847656 33.710938 L 472.535156 31.085938 L 473.222656 31.085938 Z M 473.265625 30.835938 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.999023 416.000977 L 184.000977 416.000977 L 184.000977 432 L 155.999023 432 Z M 155.999023 416.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 24.109375 254.90625 L 23.945312 255.804688 L 22.382812 255.804688 C 22.683594 256.234375 22.839844 256.777344 22.839844 257.429688 C 22.839844 258.445312 22.539062 259.339844 21.945312 260.117188 C 21.34375 260.898438 20.53125 261.28125 19.507812 261.28125 C 18.714844 261.28125 18.089844 261.054688 17.632812 260.59375 C 17.183594 260.125 16.964844 259.511719 16.964844 258.761719 C 16.964844 257.652344 17.265625 256.714844 17.882812 255.949219 C 18.507812 255.171875 19.308594 254.78125 20.296875 254.78125 C 20.617188 254.78125 20.90625 254.824219 21.171875 254.90625 Z M 18.027344 258.742188 C 18.027344 259.242188 18.15625 259.652344 18.421875 259.96875 C 18.683594 260.292969 19.046875 260.449219 19.507812 260.449219 C 20.214844 260.449219 20.765625 260.117188 21.171875 259.449219 C 21.574219 258.773438 21.777344 258.085938 21.777344 257.386719 C 21.777344 256.804688 21.640625 256.359375 21.382812 256.054688 C 21.132812 255.75 20.78125 255.59375 20.339844 255.59375 C 19.632812 255.59375 19.070312 255.917969 18.652344 256.554688 C 18.234375 257.195312 18.027344 257.921875 18.027344 258.742188 Z M 18.027344 258.742188 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 476 420 L 498.101562 420 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 502.100586 420 L 498.101562 420 M 498.101562 418.5 L 502.100586 420 L 498.101562 421.5 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 485 432 L 485 426 C 485 422.686523 487.686523 420 491 420 L 501.790039 420 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.999023 431.000977 L 418.100586 431.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 422.102539 431.000977 L 418.100586 431.000977 M 418.100586 429.500977 L 422.102539 431.000977 L 418.100586 432.500977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.999023 431.000977 L 401.999023 431.000977 C 405.3125 431.000977 407.999023 428.311523 407.999023 425.000977 L 407.999023 420.899414 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.999023 416.897461 L 407.999023 420.899414 M 406.499023 420.899414 L 407.999023 416.897461 L 409.499023 420.899414 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.65625 418.344727 C 308.782227 421.467773 308.782227 426.530273 305.65625 429.65625 C 302.530273 432.782227 297.467773 432.782227 294.344727 429.65625 C 291.21875 426.530273 291.21875 421.467773 294.344727 418.344727 C 297.467773 415.21875 302.530273 415.21875 305.65625 418.344727 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 218.277344 253.609375 L 218.277344 245.023438 L 224.484375 245.023438 L 224.484375 246.023438 L 219.402344 246.023438 L 219.402344 248.671875 L 224.152344 248.671875 L 224.152344 249.671875 L 219.402344 249.671875 L 219.402344 252.585938 L 224.671875 252.585938 L 224.671875 253.609375 Z M 218.277344 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 226.09375 253.609375 L 226.09375 245.023438 L 227.136719 245.023438 L 227.136719 253.609375 Z M 226.09375 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 233.03125 251.609375 L 234.136719 251.734375 C 233.953125 252.375 233.625 252.875 233.15625 253.234375 C 232.699219 253.582031 232.105469 253.753906 231.386719 253.753906 C 230.480469 253.753906 229.761719 253.476562 229.21875 252.921875 C 228.6875 252.351562 228.425781 251.5625 228.425781 250.546875 C 228.425781 249.503906 228.699219 248.703125 229.238281 248.128906 C 229.78125 247.546875 230.480469 247.253906 231.34375 247.253906 C 232.175781 247.253906 232.847656 247.539062 233.363281 248.109375 C 233.890625 248.664062 234.15625 249.457031 234.15625 250.484375 C 234.15625 250.554688 234.15625 250.648438 234.15625 250.773438 L 229.511719 250.773438 C 229.550781 251.457031 229.746094 251.976562 230.09375 252.335938 C 230.4375 252.703125 230.875 252.878906 231.40625 252.878906 C 231.792969 252.878906 232.121094 252.785156 232.386719 252.585938 C 232.660156 252.378906 232.875 252.054688 233.03125 251.609375 Z M 229.574219 249.898438 L 233.050781 249.898438 C 233.011719 249.375 232.875 248.976562 232.65625 248.710938 C 232.324219 248.3125 231.886719 248.109375 231.34375 248.109375 C 230.855469 248.109375 230.449219 248.273438 230.113281 248.609375 C 229.792969 248.929688 229.613281 249.359375 229.574219 249.898438 Z M 229.574219 249.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.457031 253.609375 L 235.457031 247.378906 L 236.394531 247.378906 L 236.394531 248.253906 C 236.585938 247.953125 236.839844 247.707031 237.164062 247.523438 C 237.496094 247.347656 237.871094 247.253906 238.289062 247.253906 C 238.746094 247.253906 239.121094 247.351562 239.414062 247.546875 C 239.707031 247.726562 239.914062 247.992188 240.039062 248.335938 C 240.539062 247.617188 241.175781 247.253906 241.957031 247.253906 C 242.582031 247.253906 243.058594 247.429688 243.394531 247.773438 C 243.726562 248.109375 243.894531 248.628906 243.894531 249.335938 L 243.894531 253.609375 L 242.832031 253.609375 L 242.832031 249.691406 C 242.832031 249.265625 242.792969 248.957031 242.726562 248.773438 C 242.667969 248.597656 242.550781 248.453125 242.371094 248.335938 C 242.191406 248.210938 241.976562 248.148438 241.726562 248.148438 C 241.292969 248.148438 240.933594 248.296875 240.644531 248.585938 C 240.351562 248.878906 240.207031 249.347656 240.207031 249.984375 L 240.207031 253.609375 L 239.144531 253.609375 L 239.144531 249.566406 C 239.144531 249.097656 239.058594 248.742188 238.894531 248.503906 C 238.726562 248.269531 238.445312 248.148438 238.058594 248.148438 C 237.753906 248.148438 237.476562 248.234375 237.226562 248.398438 C 236.976562 248.554688 236.792969 248.785156 236.683594 249.085938 C 236.570312 249.378906 236.519531 249.8125 236.519531 250.378906 L 236.519531 253.609375 Z M 235.457031 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 249.703125 251.609375 L 250.804688 251.734375 C 250.625 252.375 250.296875 252.875 249.828125 253.234375 C 249.367188 253.582031 248.773438 253.753906 248.054688 253.753906 C 247.148438 253.753906 246.429688 253.476562 245.890625 252.921875 C 245.359375 252.351562 245.097656 251.5625 245.097656 250.546875 C 245.097656 249.503906 245.367188 248.703125 245.910156 248.128906 C 246.453125 247.546875 247.148438 247.253906 248.015625 247.253906 C 248.847656 247.253906 249.519531 247.539062 250.035156 248.109375 C 250.5625 248.664062 250.828125 249.457031 250.828125 250.484375 C 250.828125 250.554688 250.828125 250.648438 250.828125 250.773438 L 246.179688 250.773438 C 246.222656 251.457031 246.414062 251.976562 246.765625 252.335938 C 247.109375 252.703125 247.546875 252.878906 248.078125 252.878906 C 248.460938 252.878906 248.789062 252.785156 249.054688 252.585938 C 249.332031 252.378906 249.546875 252.054688 249.703125 251.609375 Z M 246.242188 249.898438 L 249.722656 249.898438 C 249.679688 249.375 249.546875 248.976562 249.328125 248.710938 C 248.992188 248.3125 248.554688 248.109375 248.015625 248.109375 C 247.523438 248.109375 247.117188 248.273438 246.785156 248.609375 C 246.460938 248.929688 246.285156 249.359375 246.242188 249.898438 Z M 246.242188 249.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 252.125 253.609375 L 252.125 247.378906 L 253.085938 247.378906 L 253.085938 248.273438 C 253.527344 247.597656 254.1875 247.253906 255.0625 247.253906 C 255.4375 247.253906 255.777344 247.328125 256.085938 247.460938 C 256.402344 247.585938 256.636719 247.765625 256.792969 247.984375 C 256.945312 248.191406 257.054688 248.453125 257.125 248.753906 C 257.167969 248.953125 257.1875 249.289062 257.1875 249.773438 L 257.1875 253.609375 L 256.125 253.609375 L 256.125 249.816406 C 256.125 249.390625 256.085938 249.066406 256 248.859375 C 255.917969 248.648438 255.773438 248.484375 255.5625 248.359375 C 255.355469 248.222656 255.109375 248.148438 254.835938 248.148438 C 254.386719 248.148438 254 248.296875 253.667969 248.585938 C 253.34375 248.867188 253.1875 249.410156 253.1875 250.210938 L 253.1875 253.609375 Z M 252.125 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 261.113281 252.671875 L 261.257812 253.585938 C 260.953125 253.65625 260.6875 253.691406 260.46875 253.691406 C 260.078125 253.691406 259.78125 253.628906 259.570312 253.503906 C 259.363281 253.378906 259.207031 253.222656 259.113281 253.023438 C 259.03125 252.832031 258.988281 252.421875 258.988281 251.796875 L 258.988281 248.210938 L 258.21875 248.210938 L 258.21875 247.378906 L 258.988281 247.378906 L 258.988281 245.835938 L 260.050781 245.210938 L 260.050781 247.378906 L 261.113281 247.378906 L 261.113281 248.210938 L 260.050781 248.210938 L 260.050781 251.835938 C 260.050781 252.144531 260.0625 252.335938 260.09375 252.421875 C 260.132812 252.503906 260.195312 252.578125 260.28125 252.628906 C 260.363281 252.6875 260.476562 252.710938 260.632812 252.710938 C 260.757812 252.710938 260.914062 252.703125 261.113281 252.671875 Z M 261.113281 252.671875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 263.28125 253.609375 L 261.382812 247.378906 L 262.46875 247.378906 L 263.46875 250.984375 L 263.820312 252.316406 C 263.832031 252.25 263.945312 251.816406 264.15625 251.023438 L 265.132812 247.378906 L 266.21875 247.378906 L 267.15625 251.003906 L 267.46875 252.191406 L 267.820312 250.984375 L 268.882812 247.378906 L 269.90625 247.378906 L 267.96875 253.609375 L 266.882812 253.609375 L 265.882812 249.878906 L 265.632812 248.816406 L 264.382812 253.609375 Z M 263.28125 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.800781 246.234375 L 270.800781 245.023438 L 271.863281 245.023438 L 271.863281 246.234375 Z M 270.800781 253.609375 L 270.800781 247.378906 L 271.863281 247.378906 L 271.863281 253.609375 Z M 270.800781 253.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 273.050781 251.753906 L 274.09375 251.585938 C 274.144531 252.003906 274.304688 252.328125 274.570312 252.546875 C 274.847656 252.769531 275.222656 252.878906 275.695312 252.878906 C 276.179688 252.878906 276.539062 252.785156 276.78125 252.585938 C 277.015625 252.394531 277.132812 252.164062 277.132812 251.898438 C 277.132812 251.648438 277.03125 251.460938 276.820312 251.335938 C 276.664062 251.242188 276.304688 251.117188 275.738281 250.960938 C 274.957031 250.769531 274.414062 250.601562 274.113281 250.460938 C 273.820312 250.328125 273.597656 250.128906 273.445312 249.878906 C 273.289062 249.628906 273.21875 249.351562 273.21875 249.046875 C 273.21875 248.769531 273.28125 248.515625 273.40625 248.273438 C 273.53125 248.039062 273.703125 247.835938 273.925781 247.671875 C 274.09375 247.5625 274.3125 247.460938 274.59375 247.378906 C 274.882812 247.296875 275.1875 247.253906 275.507812 247.253906 C 275.992188 247.253906 276.414062 247.328125 276.78125 247.460938 C 277.15625 247.601562 277.429688 247.789062 277.613281 248.023438 C 277.789062 248.265625 277.914062 248.582031 277.988281 248.984375 L 276.945312 249.128906 C 276.90625 248.8125 276.765625 248.5625 276.53125 248.378906 C 276.304688 248.203125 275.992188 248.109375 275.59375 248.109375 C 275.101562 248.109375 274.757812 248.191406 274.550781 248.359375 C 274.34375 248.515625 274.238281 248.703125 274.238281 248.921875 C 274.238281 249.0625 274.28125 249.179688 274.363281 249.273438 C 274.445312 249.398438 274.582031 249.5 274.78125 249.566406 C 274.875 249.609375 275.179688 249.703125 275.695312 249.835938 C 276.445312 250.035156 276.96875 250.191406 277.257812 250.316406 C 277.5625 250.441406 277.800781 250.628906 277.96875 250.878906 C 278.132812 251.117188 278.21875 251.414062 278.21875 251.773438 C 278.21875 252.140625 278.113281 252.472656 277.90625 252.773438 C 277.695312 253.082031 277.394531 253.328125 277.007812 253.503906 C 276.632812 253.671875 276.195312 253.753906 275.695312 253.753906 C 274.890625 253.753906 274.269531 253.585938 273.84375 253.253906 C 273.425781 252.910156 273.160156 252.410156 273.050781 251.753906 Z M 273.050781 251.753906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 283.71875 251.609375 L 284.820312 251.734375 C 284.640625 252.375 284.3125 252.875 283.84375 253.234375 C 283.382812 253.582031 282.789062 253.753906 282.070312 253.753906 C 281.164062 253.753906 280.445312 253.476562 279.90625 252.921875 C 279.375 252.351562 279.113281 251.5625 279.113281 250.546875 C 279.113281 249.503906 279.382812 248.703125 279.925781 248.128906 C 280.46875 247.546875 281.164062 247.253906 282.03125 247.253906 C 282.863281 247.253906 283.535156 247.539062 284.050781 248.109375 C 284.578125 248.664062 284.84375 249.457031 284.84375 250.484375 C 284.84375 250.554688 284.84375 250.648438 284.84375 250.773438 L 280.195312 250.773438 C 280.238281 251.457031 280.429688 251.976562 280.78125 252.335938 C 281.125 252.703125 281.5625 252.878906 282.09375 252.878906 C 282.476562 252.878906 282.804688 252.785156 283.070312 252.585938 C 283.347656 252.378906 283.5625 252.054688 283.71875 251.609375 Z M 280.257812 249.898438 L 283.738281 249.898438 C 283.695312 249.375 283.5625 248.976562 283.34375 248.710938 C 283.007812 248.3125 282.570312 248.109375 282.03125 248.109375 C 281.539062 248.109375 281.132812 248.273438 280.800781 248.609375 C 280.476562 248.929688 280.300781 249.359375 280.257812 249.898438 Z M 280.257812 249.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 229.382812 264.230469 C 229.382812 263.078125 229.699219 262.222656 230.339844 261.667969 C 230.882812 261.207031 231.53125 260.980469 232.296875 260.980469 C 233.15625 260.980469 233.859375 261.261719 234.402344 261.8125 C 234.945312 262.371094 235.214844 263.140625 235.214844 264.125 C 235.214844 264.933594 235.089844 265.5625 234.839844 266.019531 C 234.601562 266.480469 234.257812 266.84375 233.796875 267.105469 C 233.339844 267.355469 232.839844 267.480469 232.296875 267.480469 C 231.421875 267.480469 230.714844 267.203125 230.171875 266.644531 C 229.640625 266.078125 229.382812 265.269531 229.382812 264.230469 Z M 230.464844 264.230469 C 230.464844 265.019531 230.636719 265.621094 230.984375 266.019531 C 231.328125 266.410156 231.765625 266.605469 232.296875 266.605469 C 232.824219 266.605469 233.261719 266.410156 233.609375 266.019531 C 233.953125 265.621094 234.132812 265.011719 234.132812 264.1875 C 234.132812 263.425781 233.953125 262.84375 233.609375 262.4375 C 233.261719 262.035156 232.824219 261.832031 232.296875 261.832031 C 231.765625 261.832031 231.328125 262.035156 230.984375 262.4375 C 230.636719 262.828125 230.464844 263.425781 230.464844 264.230469 Z M 230.464844 264.230469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 236.453125 269.707031 L 236.453125 261.105469 L 237.410156 261.105469 L 237.410156 261.917969 C 237.628906 261.597656 237.878906 261.363281 238.160156 261.207031 C 238.453125 261.058594 238.804688 260.980469 239.222656 260.980469 C 239.75 260.980469 240.210938 261.121094 240.617188 261.394531 C 241.019531 261.660156 241.328125 262.042969 241.535156 262.542969 C 241.742188 263.042969 241.847656 263.582031 241.847656 264.167969 C 241.847656 264.808594 241.726562 265.386719 241.492188 265.894531 C 241.269531 266.410156 240.941406 266.808594 240.515625 267.082031 C 240.082031 267.34375 239.625 267.480469 239.140625 267.480469 C 238.789062 267.480469 238.476562 267.402344 238.203125 267.25 C 237.921875 267.097656 237.691406 266.910156 237.515625 266.6875 L 237.515625 269.707031 Z M 237.410156 264.25 C 237.410156 265.058594 237.566406 265.65625 237.890625 266.042969 C 238.222656 266.417969 238.617188 266.605469 239.078125 266.605469 C 239.535156 266.605469 239.929688 266.410156 240.265625 266.019531 C 240.609375 265.621094 240.785156 265 240.785156 264.167969 C 240.785156 263.375 240.617188 262.785156 240.285156 262.394531 C 239.960938 261.996094 239.578125 261.792969 239.117188 261.792969 C 238.671875 261.792969 238.273438 262.011719 237.929688 262.4375 C 237.582031 262.855469 237.410156 263.457031 237.410156 264.25 Z M 237.410156 264.25 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.375 265.332031 L 248.480469 265.457031 C 248.296875 266.097656 247.96875 266.597656 247.5 266.957031 C 247.042969 267.308594 246.449219 267.480469 245.730469 267.480469 C 244.824219 267.480469 244.105469 267.203125 243.5625 266.644531 C 243.03125 266.078125 242.773438 265.285156 242.773438 264.269531 C 242.773438 263.230469 243.042969 262.425781 243.585938 261.855469 C 244.125 261.269531 244.824219 260.980469 245.6875 260.980469 C 246.523438 260.980469 247.195312 261.265625 247.710938 261.832031 C 248.234375 262.390625 248.5 263.183594 248.5 264.207031 C 248.5 264.28125 248.5 264.375 248.5 264.5 L 243.855469 264.5 C 243.898438 265.183594 244.089844 265.703125 244.4375 266.0625 C 244.78125 266.425781 245.21875 266.605469 245.75 266.605469 C 246.136719 266.605469 246.464844 266.511719 246.730469 266.3125 C 247.007812 266.105469 247.21875 265.78125 247.375 265.332031 Z M 243.917969 263.625 L 247.398438 263.625 C 247.355469 263.097656 247.21875 262.703125 247 262.4375 C 246.667969 262.035156 246.230469 261.832031 245.6875 261.832031 C 245.199219 261.832031 244.792969 262 244.460938 262.332031 C 244.136719 262.65625 243.960938 263.082031 243.917969 263.625 Z M 243.917969 263.625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 249.78125 267.332031 L 249.78125 261.105469 L 250.738281 261.105469 L 250.738281 262.0625 C 250.972656 261.621094 251.195312 261.328125 251.40625 261.1875 C 251.613281 261.050781 251.84375 260.980469 252.09375 260.980469 C 252.4375 260.980469 252.800781 261.09375 253.175781 261.3125 L 252.800781 262.292969 C 252.550781 262.140625 252.289062 262.0625 252.03125 262.0625 C 251.804688 262.0625 251.597656 262.136719 251.40625 262.269531 C 251.222656 262.410156 251.09375 262.605469 251.007812 262.855469 C 250.894531 263.230469 250.84375 263.640625 250.84375 264.082031 L 250.84375 267.332031 Z M 249.78125 267.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 257.859375 266.5625 C 257.46875 266.894531 257.09375 267.136719 256.734375 267.269531 C 256.371094 267.40625 255.984375 267.480469 255.566406 267.480469 C 254.886719 267.480469 254.359375 267.3125 253.984375 266.980469 C 253.621094 266.644531 253.441406 266.21875 253.441406 265.6875 C 253.441406 265.386719 253.511719 265.105469 253.652344 264.855469 C 253.785156 264.605469 253.96875 264.40625 254.191406 264.25 C 254.410156 264.097656 254.660156 263.980469 254.941406 263.894531 C 255.152344 263.855469 255.464844 263.808594 255.878906 263.75 C 256.738281 263.65625 257.371094 263.53125 257.777344 263.375 C 257.777344 263.238281 257.777344 263.144531 257.777344 263.105469 C 257.777344 262.675781 257.675781 262.375 257.484375 262.207031 C 257.203125 261.957031 256.800781 261.832031 256.277344 261.832031 C 255.777344 261.832031 255.40625 261.925781 255.171875 262.105469 C 254.933594 262.269531 254.761719 262.578125 254.652344 263.019531 L 253.628906 262.894531 C 253.714844 262.453125 253.859375 262.097656 254.066406 261.832031 C 254.285156 261.558594 254.597656 261.347656 255.003906 261.207031 C 255.421875 261.058594 255.890625 260.980469 256.421875 260.980469 C 256.964844 260.980469 257.390625 261.042969 257.714844 261.167969 C 258.046875 261.292969 258.285156 261.453125 258.441406 261.644531 C 258.609375 261.828125 258.71875 262.0625 258.777344 262.355469 C 258.816406 262.535156 258.839844 262.855469 258.839844 263.3125 L 258.839844 264.730469 C 258.839844 265.703125 258.859375 266.324219 258.902344 266.582031 C 258.941406 266.847656 259.03125 267.097656 259.171875 267.332031 L 258.066406 267.332031 C 257.953125 267.113281 257.886719 266.855469 257.859375 266.5625 Z M 257.777344 264.207031 C 257.386719 264.363281 256.808594 264.496094 256.046875 264.605469 C 255.613281 264.675781 255.308594 264.75 255.128906 264.832031 C 254.949219 264.90625 254.808594 265.015625 254.714844 265.167969 C 254.613281 265.324219 254.566406 265.488281 254.566406 265.667969 C 254.566406 265.949219 254.671875 266.183594 254.878906 266.375 C 255.089844 266.558594 255.402344 266.644531 255.816406 266.644531 C 256.21875 266.644531 256.578125 266.558594 256.902344 266.375 C 257.21875 266.199219 257.453125 265.953125 257.609375 265.644531 C 257.71875 265.410156 257.777344 265.0625 257.777344 264.605469 Z M 257.777344 264.207031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 262.785156 266.394531 L 262.929688 267.3125 C 262.621094 267.378906 262.355469 267.417969 262.136719 267.417969 C 261.746094 267.417969 261.449219 267.355469 261.242188 267.230469 C 261.035156 267.105469 260.878906 266.949219 260.785156 266.75 C 260.699219 266.558594 260.660156 266.144531 260.660156 265.519531 L 260.660156 261.9375 L 259.886719 261.9375 L 259.886719 261.105469 L 260.660156 261.105469 L 260.660156 259.5625 L 261.722656 258.9375 L 261.722656 261.105469 L 262.785156 261.105469 L 262.785156 261.9375 L 261.722656 261.9375 L 261.722656 265.5625 C 261.722656 265.871094 261.730469 266.0625 261.761719 266.144531 C 261.804688 266.230469 261.867188 266.300781 261.949219 266.355469 C 262.035156 266.410156 262.148438 266.4375 262.304688 266.4375 C 262.429688 266.4375 262.585938 266.425781 262.785156 266.394531 Z M 262.785156 266.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 263.410156 264.230469 C 263.410156 263.078125 263.726562 262.222656 264.367188 261.667969 C 264.910156 261.207031 265.558594 260.980469 266.324219 260.980469 C 267.183594 260.980469 267.886719 261.261719 268.429688 261.8125 C 268.972656 262.371094 269.242188 263.140625 269.242188 264.125 C 269.242188 264.933594 269.117188 265.5625 268.867188 266.019531 C 268.628906 266.480469 268.285156 266.84375 267.824219 267.105469 C 267.367188 267.355469 266.867188 267.480469 266.324219 267.480469 C 265.449219 267.480469 264.742188 267.203125 264.199219 266.644531 C 263.667969 266.078125 263.410156 265.269531 263.410156 264.230469 Z M 264.492188 264.230469 C 264.492188 265.019531 264.664062 265.621094 265.011719 266.019531 C 265.355469 266.410156 265.792969 266.605469 266.324219 266.605469 C 266.851562 266.605469 267.289062 266.410156 267.636719 266.019531 C 267.980469 265.621094 268.160156 265.011719 268.160156 264.1875 C 268.160156 263.425781 267.980469 262.84375 267.636719 262.4375 C 267.289062 262.035156 266.851562 261.832031 266.324219 261.832031 C 265.792969 261.832031 265.355469 262.035156 265.011719 262.4375 C 264.664062 262.828125 264.492188 263.425781 264.492188 264.230469 Z M 264.492188 264.230469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.457031 267.332031 L 270.457031 261.105469 L 271.417969 261.105469 L 271.417969 262.0625 C 271.652344 261.621094 271.875 261.328125 272.082031 261.1875 C 272.292969 261.050781 272.519531 260.980469 272.769531 260.980469 C 273.113281 260.980469 273.480469 261.09375 273.855469 261.3125 L 273.480469 262.292969 C 273.230469 262.140625 272.96875 262.0625 272.707031 262.0625 C 272.484375 262.0625 272.277344 262.136719 272.082031 262.269531 C 271.902344 262.410156 271.769531 262.605469 271.6875 262.855469 C 271.574219 263.230469 271.519531 263.640625 271.519531 264.082031 L 271.519531 267.332031 Z M 270.457031 267.332031 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.950195 320.000977 L 391.99707 265.898438 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392 261.899414 L 391.99707 265.898438 M 390.49707 265.898438 L 392 261.899414 L 393.49707 265.901367 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 424.000977 284.000977 L 430.100586 284.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 434.102539 284.000977 L 430.100586 284.000977 M 430.100586 282.500977 L 434.102539 284.000977 L 430.100586 285.500977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 461.042969 109.476562 L 462.167969 109.765625 C 461.925781 110.699219 461.5 111.414062 460.875 111.914062 C 460.261719 112.402344 459.503906 112.640625 458.605469 112.640625 C 457.6875 112.640625 456.9375 112.453125 456.355469 112.078125 C 455.769531 111.703125 455.324219 111.164062 455.019531 110.453125 C 454.730469 109.734375 454.582031 108.964844 454.582031 108.140625 C 454.582031 107.242188 454.75 106.453125 455.082031 105.789062 C 455.425781 105.121094 455.917969 104.621094 456.542969 104.289062 C 457.175781 103.945312 457.875 103.765625 458.625 103.765625 C 459.484375 103.765625 460.207031 103.992188 460.792969 104.433594 C 461.386719 104.867188 461.796875 105.476562 462.019531 106.265625 L 460.894531 106.515625 C 460.699219 105.890625 460.417969 105.445312 460.042969 105.164062 C 459.667969 104.871094 459.1875 104.726562 458.605469 104.726562 C 457.949219 104.726562 457.402344 104.886719 456.957031 105.203125 C 456.511719 105.527344 456.199219 105.953125 456.019531 106.496094 C 455.839844 107.027344 455.75 107.570312 455.75 108.121094 C 455.75 108.859375 455.855469 109.507812 456.0625 110.058594 C 456.28125 110.601562 456.613281 111.007812 457.0625 111.265625 C 457.503906 111.53125 457.988281 111.664062 458.519531 111.664062 C 459.15625 111.664062 459.691406 111.484375 460.125 111.121094 C 460.566406 110.746094 460.875 110.199219 461.042969 109.476562 Z M 461.042969 109.476562 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 467.5 111.726562 C 467.109375 112.058594 466.734375 112.296875 466.375 112.433594 C 466.011719 112.570312 465.625 112.640625 465.207031 112.640625 C 464.523438 112.640625 464 112.476562 463.625 112.140625 C 463.261719 111.808594 463.082031 111.382812 463.082031 110.851562 C 463.082031 110.546875 463.148438 110.265625 463.289062 110.015625 C 463.425781 109.765625 463.609375 109.570312 463.832031 109.414062 C 464.050781 109.261719 464.300781 109.140625 464.582031 109.058594 C 464.789062 109.015625 465.101562 108.96875 465.519531 108.914062 C 466.378906 108.820312 467.011719 108.695312 467.414062 108.539062 C 467.414062 108.402344 467.414062 108.308594 467.414062 108.265625 C 467.414062 107.839844 467.316406 107.539062 467.125 107.371094 C 466.84375 107.121094 466.441406 106.996094 465.914062 106.996094 C 465.414062 106.996094 465.046875 107.089844 464.8125 107.265625 C 464.570312 107.433594 464.398438 107.742188 464.289062 108.183594 L 463.269531 108.058594 C 463.351562 107.617188 463.5 107.261719 463.707031 106.996094 C 463.925781 106.71875 464.238281 106.511719 464.644531 106.371094 C 465.0625 106.21875 465.53125 106.140625 466.0625 106.140625 C 466.601562 106.140625 467.03125 106.203125 467.351562 106.328125 C 467.6875 106.453125 467.925781 106.617188 468.082031 106.808594 C 468.25 106.992188 468.359375 107.226562 468.414062 107.515625 C 468.457031 107.699219 468.476562 108.015625 468.476562 108.476562 L 468.476562 109.890625 C 468.476562 110.867188 468.5 111.484375 468.539062 111.746094 C 468.582031 112.011719 468.671875 112.261719 468.8125 112.496094 L 467.707031 112.496094 C 467.59375 112.277344 467.523438 112.015625 467.5 111.726562 Z M 467.414062 109.371094 C 467.023438 109.527344 466.445312 109.65625 465.6875 109.765625 C 465.253906 109.839844 464.945312 109.914062 464.769531 109.996094 C 464.585938 110.070312 464.445312 110.179688 464.351562 110.328125 C 464.253906 110.484375 464.207031 110.652344 464.207031 110.828125 C 464.207031 111.109375 464.3125 111.34375 464.519531 111.539062 C 464.726562 111.71875 465.039062 111.808594 465.457031 111.808594 C 465.859375 111.808594 466.21875 111.71875 466.539062 111.539062 C 466.859375 111.359375 467.09375 111.117188 467.25 110.808594 C 467.359375 110.574219 467.414062 110.226562 467.414062 109.765625 Z M 467.414062 109.371094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 470.109375 112.496094 L 470.109375 106.265625 L 471.070312 106.265625 L 471.070312 107.164062 C 471.511719 106.484375 472.171875 106.140625 473.046875 106.140625 C 473.421875 106.140625 473.761719 106.214844 474.070312 106.351562 C 474.386719 106.476562 474.621094 106.652344 474.777344 106.871094 C 474.929688 107.078125 475.039062 107.339844 475.109375 107.640625 C 475.152344 107.839844 475.171875 108.179688 475.171875 108.664062 L 475.171875 112.496094 L 474.109375 112.496094 L 474.109375 108.703125 C 474.109375 108.277344 474.070312 107.953125 473.984375 107.746094 C 473.902344 107.539062 473.757812 107.371094 473.546875 107.246094 C 473.339844 107.109375 473.09375 107.039062 472.820312 107.039062 C 472.371094 107.039062 471.984375 107.183594 471.652344 107.476562 C 471.328125 107.757812 471.171875 108.296875 471.171875 109.101562 L 471.171875 112.496094 Z M 470.109375 112.496094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 480.828125 112.496094 L 480.828125 111.703125 C 480.421875 112.328125 479.835938 112.640625 479.078125 112.640625 C 478.585938 112.640625 478.140625 112.5 477.722656 112.226562 C 477.304688 111.949219 476.976562 111.570312 476.742188 111.078125 C 476.519531 110.59375 476.410156 110.03125 476.410156 109.390625 C 476.410156 108.765625 476.515625 108.203125 476.722656 107.703125 C 476.929688 107.195312 477.234375 106.804688 477.640625 106.539062 C 478.054688 106.277344 478.519531 106.140625 479.035156 106.140625 C 479.410156 106.140625 479.742188 106.21875 480.035156 106.371094 C 480.328125 106.527344 480.5625 106.734375 480.742188 106.996094 L 480.742188 103.914062 L 481.804688 103.914062 L 481.804688 112.496094 Z M 477.492188 109.390625 C 477.492188 110.183594 477.660156 110.78125 477.992188 111.183594 C 478.328125 111.574219 478.722656 111.765625 479.179688 111.765625 C 479.640625 111.765625 480.023438 111.578125 480.347656 111.203125 C 480.679688 110.828125 480.847656 110.257812 480.847656 109.476562 C 480.847656 108.632812 480.679688 108.007812 480.347656 107.601562 C 480.015625 107.199219 479.609375 106.996094 479.140625 106.996094 C 478.664062 106.996094 478.269531 107.195312 477.953125 107.578125 C 477.644531 107.96875 477.492188 108.574219 477.492188 109.390625 Z M 477.492188 109.390625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 483.460938 105.121094 L 483.460938 103.914062 L 484.523438 103.914062 L 484.523438 105.121094 Z M 483.460938 112.496094 L 483.460938 106.265625 L 484.523438 106.265625 L 484.523438 112.496094 Z M 483.460938 112.496094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 490.167969 112.496094 L 490.167969 111.703125 C 489.761719 112.328125 489.179688 112.640625 488.417969 112.640625 C 487.929688 112.640625 487.480469 112.5 487.0625 112.226562 C 486.648438 111.949219 486.320312 111.570312 486.085938 111.078125 C 485.859375 110.59375 485.75 110.03125 485.75 109.390625 C 485.75 108.765625 485.855469 108.203125 486.0625 107.703125 C 486.273438 107.195312 486.574219 106.804688 486.980469 106.539062 C 487.398438 106.277344 487.859375 106.140625 488.375 106.140625 C 488.75 106.140625 489.085938 106.21875 489.375 106.371094 C 489.667969 106.527344 489.902344 106.734375 490.085938 106.996094 L 490.085938 103.914062 L 491.148438 103.914062 L 491.148438 112.496094 Z M 486.835938 109.390625 C 486.835938 110.183594 487 110.78125 487.335938 111.183594 C 487.667969 111.574219 488.0625 111.765625 488.523438 111.765625 C 488.980469 111.765625 489.367188 111.578125 489.6875 111.203125 C 490.023438 110.828125 490.1875 110.257812 490.1875 109.476562 C 490.1875 108.632812 490.023438 108.007812 489.6875 107.601562 C 489.355469 107.199219 488.949219 106.996094 488.480469 106.996094 C 488.007812 106.996094 487.609375 107.195312 487.292969 107.578125 C 486.984375 107.96875 486.835938 108.574219 486.835938 109.390625 Z M 486.835938 109.390625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 496.863281 111.726562 C 496.472656 112.058594 496.097656 112.296875 495.738281 112.433594 C 495.375 112.570312 494.988281 112.640625 494.570312 112.640625 C 493.890625 112.640625 493.363281 112.476562 492.988281 112.140625 C 492.625 111.808594 492.445312 111.382812 492.445312 110.851562 C 492.445312 110.546875 492.515625 110.265625 492.65625 110.015625 C 492.789062 109.765625 492.972656 109.570312 493.195312 109.414062 C 493.414062 109.261719 493.664062 109.140625 493.945312 109.058594 C 494.15625 109.015625 494.46875 108.96875 494.882812 108.914062 C 495.742188 108.820312 496.375 108.695312 496.78125 108.539062 C 496.78125 108.402344 496.78125 108.308594 496.78125 108.265625 C 496.78125 107.839844 496.679688 107.539062 496.488281 107.371094 C 496.207031 107.121094 495.804688 106.996094 495.28125 106.996094 C 494.78125 106.996094 494.410156 107.089844 494.175781 107.265625 C 493.9375 107.433594 493.765625 107.742188 493.65625 108.183594 L 492.632812 108.058594 C 492.71875 107.617188 492.863281 107.261719 493.070312 106.996094 C 493.289062 106.71875 493.601562 106.511719 494.007812 106.371094 C 494.425781 106.21875 494.894531 106.140625 495.425781 106.140625 C 495.96875 106.140625 496.394531 106.203125 496.71875 106.328125 C 497.050781 106.453125 497.289062 106.617188 497.445312 106.808594 C 497.613281 106.992188 497.722656 107.226562 497.78125 107.515625 C 497.820312 107.699219 497.84375 108.015625 497.84375 108.476562 L 497.84375 109.890625 C 497.84375 110.867188 497.863281 111.484375 497.90625 111.746094 C 497.945312 112.011719 498.035156 112.261719 498.175781 112.496094 L 497.070312 112.496094 C 496.957031 112.277344 496.890625 112.015625 496.863281 111.726562 Z M 496.78125 109.371094 C 496.390625 109.527344 495.8125 109.65625 495.050781 109.765625 C 494.617188 109.839844 494.3125 109.914062 494.132812 109.996094 C 493.953125 110.070312 493.8125 110.179688 493.71875 110.328125 C 493.617188 110.484375 493.570312 110.652344 493.570312 110.828125 C 493.570312 111.109375 493.675781 111.34375 493.882812 111.539062 C 494.09375 111.71875 494.40625 111.808594 494.820312 111.808594 C 495.222656 111.808594 495.582031 111.71875 495.90625 111.539062 C 496.222656 111.359375 496.457031 111.117188 496.613281 110.808594 C 496.722656 110.574219 496.78125 110.226562 496.78125 109.765625 Z M 496.78125 109.371094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 501.789062 111.558594 L 501.933594 112.476562 C 501.625 112.542969 501.359375 112.578125 501.140625 112.578125 C 500.75 112.578125 500.453125 112.515625 500.246094 112.390625 C 500.039062 112.265625 499.882812 112.109375 499.789062 111.914062 C 499.703125 111.71875 499.664062 111.308594 499.664062 110.683594 L 499.664062 107.101562 L 498.890625 107.101562 L 498.890625 106.265625 L 499.664062 106.265625 L 499.664062 104.726562 L 500.726562 104.101562 L 500.726562 106.265625 L 501.789062 106.265625 L 501.789062 107.101562 L 500.726562 107.101562 L 500.726562 110.726562 C 500.726562 111.03125 500.734375 111.226562 500.765625 111.308594 C 500.808594 111.390625 500.871094 111.464844 500.953125 111.515625 C 501.039062 111.574219 501.152344 111.601562 501.308594 111.601562 C 501.433594 111.601562 501.589844 111.589844 501.789062 111.558594 Z M 501.789062 111.558594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 507.0625 110.496094 L 508.167969 110.621094 C 507.984375 111.261719 507.65625 111.761719 507.1875 112.121094 C 506.730469 112.46875 506.136719 112.640625 505.417969 112.640625 C 504.511719 112.640625 503.792969 112.367188 503.25 111.808594 C 502.71875 111.242188 502.460938 110.449219 502.460938 109.433594 C 502.460938 108.390625 502.730469 107.589844 503.273438 107.015625 C 503.8125 106.433594 504.511719 106.140625 505.375 106.140625 C 506.210938 106.140625 506.882812 106.429688 507.398438 106.996094 C 507.921875 107.554688 508.1875 108.34375 508.1875 109.371094 C 508.1875 109.445312 508.1875 109.539062 508.1875 109.664062 L 503.542969 109.664062 C 503.585938 110.34375 503.777344 110.867188 504.125 111.226562 C 504.46875 111.589844 504.90625 111.765625 505.4375 111.765625 C 505.824219 111.765625 506.152344 111.671875 506.417969 111.476562 C 506.695312 111.265625 506.90625 110.945312 507.0625 110.496094 Z M 503.605469 108.789062 L 507.085938 108.789062 C 507.042969 108.261719 506.90625 107.867188 506.6875 107.601562 C 506.355469 107.199219 505.917969 106.996094 505.375 106.996094 C 504.886719 106.996094 504.480469 107.164062 504.148438 107.496094 C 503.824219 107.820312 503.648438 108.246094 503.605469 108.789062 Z M 503.605469 108.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 449.433594 126.222656 L 449.433594 117.640625 L 450.496094 117.640625 L 450.496094 120.722656 C 450.980469 120.15625 451.597656 119.867188 452.347656 119.867188 C 452.808594 119.867188 453.203125 119.960938 453.535156 120.140625 C 453.878906 120.320312 454.125 120.570312 454.265625 120.890625 C 454.417969 121.210938 454.496094 121.675781 454.496094 122.285156 L 454.496094 126.222656 L 453.453125 126.222656 L 453.453125 122.285156 C 453.453125 121.757812 453.332031 121.378906 453.097656 121.140625 C 452.875 120.890625 452.558594 120.765625 452.140625 120.765625 C 451.816406 120.765625 451.519531 120.847656 451.246094 121.015625 C 450.964844 121.171875 450.769531 121.382812 450.660156 121.660156 C 450.546875 121.941406 450.496094 122.328125 450.496094 122.828125 L 450.496094 126.222656 Z M 449.433594 126.222656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 456.105469 118.847656 L 456.105469 117.640625 L 457.167969 117.640625 L 457.167969 118.847656 Z M 456.105469 126.222656 L 456.105469 119.992188 L 457.167969 119.992188 L 457.167969 126.222656 Z M 456.105469 126.222656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 462.816406 126.222656 L 462.816406 125.429688 C 462.410156 126.054688 461.824219 126.367188 461.066406 126.367188 C 460.574219 126.367188 460.128906 126.226562 459.710938 125.953125 C 459.292969 125.675781 458.964844 125.296875 458.730469 124.804688 C 458.507812 124.320312 458.398438 123.757812 458.398438 123.117188 C 458.398438 122.492188 458.503906 121.929688 458.710938 121.429688 C 458.917969 120.921875 459.222656 120.53125 459.628906 120.265625 C 460.042969 120.003906 460.507812 119.867188 461.023438 119.867188 C 461.398438 119.867188 461.730469 119.945312 462.023438 120.097656 C 462.316406 120.253906 462.550781 120.460938 462.730469 120.722656 L 462.730469 117.640625 L 463.792969 117.640625 L 463.792969 126.222656 Z M 459.480469 123.117188 C 459.480469 123.910156 459.648438 124.507812 459.980469 124.910156 C 460.316406 125.300781 460.710938 125.492188 461.167969 125.492188 C 461.628906 125.492188 462.011719 125.304688 462.335938 124.929688 C 462.667969 124.554688 462.835938 123.984375 462.835938 123.203125 C 462.835938 122.359375 462.667969 121.734375 462.335938 121.328125 C 462.003906 120.925781 461.597656 120.722656 461.128906 120.722656 C 460.652344 120.722656 460.257812 120.921875 459.941406 121.304688 C 459.632812 121.695312 459.480469 122.300781 459.480469 123.117188 Z M 459.480469 123.117188 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 469.488281 126.222656 L 469.488281 125.429688 C 469.082031 126.054688 468.5 126.367188 467.738281 126.367188 C 467.25 126.367188 466.800781 126.226562 466.386719 125.953125 C 465.96875 125.675781 465.640625 125.296875 465.40625 124.804688 C 465.183594 124.320312 465.074219 123.757812 465.074219 123.117188 C 465.074219 122.492188 465.175781 121.929688 465.386719 121.429688 C 465.59375 120.921875 465.894531 120.53125 466.300781 120.265625 C 466.71875 120.003906 467.183594 119.867188 467.699219 119.867188 C 468.074219 119.867188 468.40625 119.945312 468.699219 120.097656 C 468.988281 120.253906 469.222656 120.460938 469.40625 120.722656 L 469.40625 117.640625 L 470.46875 117.640625 L 470.46875 126.222656 Z M 466.15625 123.117188 C 466.15625 123.910156 466.324219 124.507812 466.65625 124.910156 C 466.988281 125.300781 467.386719 125.492188 467.84375 125.492188 C 468.300781 125.492188 468.6875 125.304688 469.011719 124.929688 C 469.34375 124.554688 469.511719 123.984375 469.511719 123.203125 C 469.511719 122.359375 469.34375 121.734375 469.011719 121.328125 C 468.675781 120.925781 468.269531 120.722656 467.800781 120.722656 C 467.328125 120.722656 466.933594 120.921875 466.613281 121.304688 C 466.308594 121.695312 466.15625 122.300781 466.15625 123.117188 Z M 466.15625 123.117188 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 476.371094 124.222656 L 477.476562 124.347656 C 477.292969 124.988281 476.964844 125.488281 476.496094 125.847656 C 476.039062 126.195312 475.445312 126.367188 474.726562 126.367188 C 473.820312 126.367188 473.101562 126.09375 472.558594 125.535156 C 472.027344 124.96875 471.769531 124.175781 471.769531 123.160156 C 471.769531 122.117188 472.039062 121.316406 472.582031 120.742188 C 473.121094 120.160156 473.820312 119.867188 474.683594 119.867188 C 475.519531 119.867188 476.191406 120.15625 476.707031 120.722656 C 477.230469 121.28125 477.496094 122.070312 477.496094 123.097656 C 477.496094 123.171875 477.496094 123.265625 477.496094 123.390625 L 472.851562 123.390625 C 472.894531 124.070312 473.085938 124.59375 473.433594 124.953125 C 473.777344 125.316406 474.214844 125.492188 474.746094 125.492188 C 475.132812 125.492188 475.460938 125.398438 475.726562 125.203125 C 476.003906 124.992188 476.214844 124.671875 476.371094 124.222656 Z M 472.914062 122.515625 L 476.394531 122.515625 C 476.351562 121.988281 476.214844 121.59375 475.996094 121.328125 C 475.664062 120.925781 475.226562 120.722656 474.683594 120.722656 C 474.195312 120.722656 473.789062 120.890625 473.457031 121.222656 C 473.132812 121.546875 472.957031 121.972656 472.914062 122.515625 Z M 472.914062 122.515625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 478.796875 126.222656 L 478.796875 119.992188 L 479.753906 119.992188 L 479.753906 120.890625 C 480.199219 120.210938 480.859375 119.867188 481.734375 119.867188 C 482.109375 119.867188 482.449219 119.941406 482.753906 120.078125 C 483.074219 120.203125 483.308594 120.378906 483.464844 120.597656 C 483.613281 120.804688 483.722656 121.066406 483.796875 121.367188 C 483.839844 121.566406 483.859375 121.90625 483.859375 122.390625 L 483.859375 126.222656 L 482.796875 126.222656 L 482.796875 122.429688 C 482.796875 122.003906 482.753906 121.679688 482.671875 121.472656 C 482.589844 121.265625 482.441406 121.097656 482.234375 120.972656 C 482.027344 120.835938 481.78125 120.765625 481.503906 120.765625 C 481.058594 120.765625 480.671875 120.910156 480.339844 121.203125 C 480.015625 121.484375 479.859375 122.023438 479.859375 122.828125 L 479.859375 126.222656 Z M 478.796875 126.222656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 488.386719 124.367188 L 489.429688 124.203125 C 489.480469 124.617188 489.644531 124.941406 489.910156 125.160156 C 490.183594 125.382812 490.558594 125.492188 491.035156 125.492188 C 491.519531 125.492188 491.878906 125.398438 492.117188 125.203125 C 492.351562 125.007812 492.472656 124.78125 492.472656 124.515625 C 492.472656 124.265625 492.367188 124.078125 492.160156 123.953125 C 492.003906 123.859375 491.644531 123.734375 491.074219 123.578125 C 490.292969 123.382812 489.753906 123.21875 489.449219 123.078125 C 489.160156 122.941406 488.933594 122.742188 488.785156 122.492188 C 488.628906 122.242188 488.554688 121.96875 488.554688 121.660156 C 488.554688 121.382812 488.617188 121.128906 488.742188 120.890625 C 488.867188 120.65625 489.039062 120.453125 489.261719 120.285156 C 489.429688 120.175781 489.648438 120.078125 489.929688 119.992188 C 490.222656 119.910156 490.523438 119.867188 490.847656 119.867188 C 491.332031 119.867188 491.753906 119.941406 492.117188 120.078125 C 492.492188 120.21875 492.769531 120.40625 492.949219 120.640625 C 493.128906 120.878906 493.253906 121.195312 493.324219 121.597656 L 492.285156 121.742188 C 492.242188 121.425781 492.101562 121.175781 491.867188 120.992188 C 491.644531 120.816406 491.332031 120.722656 490.929688 120.722656 C 490.441406 120.722656 490.097656 120.804688 489.886719 120.972656 C 489.679688 121.128906 489.574219 121.316406 489.574219 121.535156 C 489.574219 121.675781 489.617188 121.796875 489.699219 121.890625 C 489.785156 122.015625 489.917969 122.113281 490.117188 122.179688 C 490.210938 122.222656 490.519531 122.316406 491.035156 122.453125 C 491.785156 122.648438 492.304688 122.804688 492.597656 122.929688 C 492.898438 123.054688 493.136719 123.242188 493.304688 123.492188 C 493.472656 123.734375 493.554688 124.03125 493.554688 124.390625 C 493.554688 124.753906 493.449219 125.085938 493.242188 125.390625 C 493.035156 125.695312 492.730469 125.941406 492.347656 126.117188 C 491.972656 126.285156 491.535156 126.367188 491.035156 126.367188 C 490.226562 126.367188 489.605469 126.203125 489.179688 125.867188 C 488.761719 125.523438 488.496094 125.023438 488.386719 124.367188 Z M 488.386719 124.367188 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 497.117188 125.285156 L 497.261719 126.203125 C 496.957031 126.269531 496.691406 126.304688 496.472656 126.304688 C 496.082031 126.304688 495.785156 126.242188 495.574219 126.117188 C 495.367188 125.992188 495.210938 125.835938 495.117188 125.640625 C 495.035156 125.445312 494.992188 125.035156 494.992188 124.410156 L 494.992188 120.828125 L 494.222656 120.828125 L 494.222656 119.992188 L 494.992188 119.992188 L 494.992188 118.453125 L 496.054688 117.828125 L 496.054688 119.992188 L 497.117188 119.992188 L 497.117188 120.828125 L 496.054688 120.828125 L 496.054688 124.453125 C 496.054688 124.757812 496.066406 124.953125 496.097656 125.035156 C 496.136719 125.117188 496.199219 125.191406 496.285156 125.242188 C 496.367188 125.300781 496.480469 125.328125 496.636719 125.328125 C 496.761719 125.328125 496.917969 125.316406 497.117188 125.285156 Z M 497.117188 125.285156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 502.199219 125.453125 C 501.808594 125.785156 501.433594 126.023438 501.074219 126.160156 C 500.710938 126.296875 500.324219 126.367188 499.910156 126.367188 C 499.226562 126.367188 498.699219 126.203125 498.324219 125.867188 C 497.960938 125.535156 497.785156 125.109375 497.785156 124.578125 C 497.785156 124.273438 497.851562 123.992188 497.992188 123.742188 C 498.128906 123.492188 498.308594 123.296875 498.535156 123.140625 C 498.753906 122.988281 499.003906 122.867188 499.285156 122.785156 C 499.492188 122.742188 499.804688 122.695312 500.222656 122.640625 C 501.082031 122.546875 501.710938 122.421875 502.117188 122.265625 C 502.117188 122.128906 502.117188 122.035156 502.117188 121.992188 C 502.117188 121.566406 502.019531 121.265625 501.824219 121.097656 C 501.542969 120.847656 501.144531 120.722656 500.617188 120.722656 C 500.117188 120.722656 499.746094 120.816406 499.511719 120.992188 C 499.273438 121.160156 499.101562 121.46875 498.992188 121.910156 L 497.972656 121.785156 C 498.054688 121.34375 498.199219 120.988281 498.410156 120.722656 C 498.628906 120.445312 498.941406 120.238281 499.347656 120.097656 C 499.761719 119.945312 500.230469 119.867188 500.761719 119.867188 C 501.304688 119.867188 501.730469 119.929688 502.054688 120.054688 C 502.386719 120.179688 502.628906 120.34375 502.785156 120.535156 C 502.949219 120.71875 503.058594 120.953125 503.117188 121.242188 C 503.160156 121.425781 503.179688 121.742188 503.179688 122.203125 L 503.179688 123.617188 C 503.179688 124.59375 503.199219 125.210938 503.242188 125.472656 C 503.285156 125.738281 503.371094 125.988281 503.511719 126.222656 L 502.410156 126.222656 C 502.292969 126.003906 502.226562 125.742188 502.199219 125.453125 Z M 502.117188 123.097656 C 501.726562 123.253906 501.148438 123.382812 500.386719 123.492188 C 499.957031 123.566406 499.648438 123.640625 499.472656 123.722656 C 499.289062 123.796875 499.148438 123.90625 499.054688 124.054688 C 498.957031 124.210938 498.910156 124.378906 498.910156 124.554688 C 498.910156 124.835938 499.011719 125.070312 499.222656 125.265625 C 499.429688 125.445312 499.742188 125.535156 500.160156 125.535156 C 500.558594 125.535156 500.917969 125.445312 501.242188 125.265625 C 501.558594 125.085938 501.792969 124.84375 501.949219 124.535156 C 502.058594 124.300781 502.117188 123.953125 502.117188 123.492188 Z M 502.117188 123.097656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 507.125 125.285156 L 507.269531 126.203125 C 506.964844 126.269531 506.699219 126.304688 506.480469 126.304688 C 506.089844 126.304688 505.792969 126.242188 505.582031 126.117188 C 505.375 125.992188 505.21875 125.835938 505.125 125.640625 C 505.042969 125.445312 505 125.035156 505 124.410156 L 505 120.828125 L 504.230469 120.828125 L 504.230469 119.992188 L 505 119.992188 L 505 118.453125 L 506.0625 117.828125 L 506.0625 119.992188 L 507.125 119.992188 L 507.125 120.828125 L 506.0625 120.828125 L 506.0625 124.453125 C 506.0625 124.757812 506.074219 124.953125 506.105469 125.035156 C 506.144531 125.117188 506.207031 125.191406 506.292969 125.242188 C 506.375 125.300781 506.488281 125.328125 506.644531 125.328125 C 506.769531 125.328125 506.925781 125.316406 507.125 125.285156 Z M 507.125 125.285156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 512.394531 124.222656 L 513.5 124.347656 C 513.316406 124.988281 512.988281 125.488281 512.519531 125.847656 C 512.0625 126.195312 511.46875 126.367188 510.75 126.367188 C 509.84375 126.367188 509.125 126.09375 508.582031 125.535156 C 508.050781 124.96875 507.792969 124.175781 507.792969 123.160156 C 507.792969 122.117188 508.0625 121.316406 508.605469 120.742188 C 509.144531 120.160156 509.84375 119.867188 510.707031 119.867188 C 511.542969 119.867188 512.214844 120.15625 512.730469 120.722656 C 513.253906 121.28125 513.519531 122.070312 513.519531 123.097656 C 513.519531 123.171875 513.519531 123.265625 513.519531 123.390625 L 508.875 123.390625 C 508.917969 124.070312 509.109375 124.59375 509.457031 124.953125 C 509.800781 125.316406 510.238281 125.492188 510.769531 125.492188 C 511.15625 125.492188 511.484375 125.398438 511.75 125.203125 C 512.027344 124.992188 512.238281 124.671875 512.394531 124.222656 Z M 508.9375 122.515625 L 512.417969 122.515625 C 512.375 121.988281 512.238281 121.59375 512.019531 121.328125 C 511.6875 120.925781 511.25 120.722656 510.707031 120.722656 C 510.21875 120.722656 509.8125 120.890625 509.480469 121.222656 C 509.15625 121.546875 508.980469 121.972656 508.9375 122.515625 Z M 508.9375 122.515625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 484.65625 147.949219 L 484.65625 147.65625 C 483.804688 147.53125 483.59375 147.40625 483.59375 146.78125 L 483.59375 141.03125 C 483.59375 140.386719 483.84375 140.199219 484.65625 140.136719 L 484.65625 139.84375 L 480.59375 139.84375 L 480.59375 140.136719 C 481.429688 140.199219 481.65625 140.34375 481.65625 141.03125 L 481.65625 143.46875 L 478.761719 143.46875 L 478.761719 141.03125 C 478.761719 140.34375 478.992188 140.199219 479.84375 140.136719 L 479.84375 139.84375 L 475.804688 139.84375 L 475.804688 140.136719 C 476.617188 140.199219 476.824219 140.363281 476.824219 141.03125 L 476.824219 146.78125 C 476.824219 147.40625 476.636719 147.53125 475.804688 147.65625 L 475.804688 147.949219 L 479.84375 147.949219 L 479.84375 147.65625 C 478.96875 147.550781 478.761719 147.40625 478.761719 146.78125 L 478.761719 144.03125 L 481.65625 144.03125 L 481.65625 146.78125 C 481.65625 147.386719 481.46875 147.550781 480.59375 147.65625 L 480.59375 147.949219 Z M 484.65625 147.949219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 487.265625 148.53125 L 486.617188 148.53125 L 486.847656 147.699219 C 486.847656 147.675781 486.847656 147.636719 486.847656 147.636719 C 486.847656 147.59375 486.828125 147.574219 486.785156 147.574219 C 486.742188 147.574219 486.703125 147.59375 486.660156 147.65625 C 486.367188 148.09375 485.847656 148.46875 485.597656 148.53125 C 485.410156 148.574219 485.347656 148.636719 485.347656 148.738281 C 485.347656 148.738281 485.347656 148.761719 485.347656 148.78125 L 485.953125 148.78125 L 485.328125 151.15625 C 485.265625 151.40625 485.203125 151.65625 485.203125 151.738281 C 485.203125 151.949219 485.347656 152.03125 485.554688 152.03125 C 485.972656 152.03125 486.222656 151.800781 486.703125 151.074219 L 486.597656 151.011719 C 486.203125 151.511719 486.078125 151.636719 485.953125 151.636719 C 485.890625 151.636719 485.828125 151.613281 485.828125 151.511719 C 485.828125 151.488281 485.847656 151.425781 485.847656 151.40625 L 486.535156 148.78125 L 487.222656 148.78125 Z M 487.265625 148.53125 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1,4;stroke-miterlimit:10;" d="M 458.27832 327.93457 L 484.000977 327.817383 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 476.832031 137.394531 L 476.832031 136.207031 C 477.25 135.738281 477.796875 135.5 478.480469 135.5 C 478.714844 135.5 478.957031 135.535156 479.207031 135.605469 C 479.46875 135.675781 479.839844 135.808594 480.3125 136 C 480.574219 136.125 480.777344 136.207031 480.917969 136.25 C 481.050781 136.28125 481.191406 136.292969 481.332031 136.292969 C 481.582031 136.292969 481.839844 136.21875 482.105469 136.0625 C 482.378906 135.910156 482.625 135.71875 482.832031 135.480469 L 482.832031 136.730469 C 482.582031 136.96875 482.324219 137.140625 482.0625 137.25 C 481.8125 137.347656 481.527344 137.394531 481.207031 137.394531 C 480.96875 137.394531 480.75 137.371094 480.542969 137.3125 C 480.332031 137.261719 479.988281 137.125 479.519531 136.917969 C 479.0625 136.707031 478.675781 136.605469 478.375 136.605469 C 478.125 136.605469 477.886719 136.660156 477.667969 136.769531 C 477.441406 136.886719 477.167969 137.09375 476.832031 137.394531 Z M 476.832031 137.394531 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.973633 295.104492 L 392.202148 289.743164 C 392.339844 286.532227 394.985352 284.000977 398.196289 284.000977 L 402.101562 284.000977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.100586 284.000977 L 402.101562 284.000977 M 402.101562 282.500977 L 406.100586 284.000977 L 402.101562 285.500977 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 449.65625 246.342773 C 452.782227 249.46875 452.782227 254.53125 449.65625 257.657227 C 446.530273 260.780273 441.467773 260.780273 438.344727 257.657227 C 435.21875 254.53125 435.21875 249.46875 438.344727 246.342773 C 441.467773 243.219727 446.530273 243.219727 449.65625 246.342773 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 384.828125 30.40625 L 384.828125 28.054688 L 382.496094 28.054688 L 382.496094 27.074219 L 384.828125 27.074219 L 384.828125 24.742188 L 385.828125 24.742188 L 385.828125 27.074219 L 388.164062 27.074219 L 388.164062 28.054688 L 385.828125 28.054688 L 385.828125 30.40625 Z M 384.828125 30.40625 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.999023 276 L 443.999023 265.898438 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.999023 261.899414 L 443.999023 265.898438 M 442.499023 265.898438 L 443.999023 261.899414 L 445.499023 265.898438 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.000977 252 L 430.100586 252 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 434.102539 252 L 430.100586 252 M 430.100586 250.5 L 434.102539 252 L 430.100586 253.5 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452 252 L 490.264648 252.137695 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 494.266602 252.149414 L 490.264648 252.137695 M 490.270508 250.637695 L 494.266602 252.149414 L 490.258789 253.637695 " transform="matrix(1.333333,0,0,1.333333,-206.666667,-308)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 67.304688 253.332031 L 67.304688 244.75 L 73.097656 244.75 L 73.097656 245.75 L 68.453125 245.75 L 68.453125 248.417969 L 72.472656 248.417969 L 72.472656 249.4375 L 68.453125 249.4375 L 68.453125 253.332031 Z M 67.304688 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 80.71875 250.3125 L 81.84375 250.605469 C 81.605469 251.535156 81.175781 252.25 80.550781 252.75 C 79.9375 253.238281 79.183594 253.480469 78.28125 253.480469 C 77.363281 253.480469 76.613281 253.292969 76.03125 252.917969 C 75.449219 252.542969 75 252 74.699219 251.292969 C 74.40625 250.574219 74.261719 249.800781 74.261719 248.980469 C 74.261719 248.078125 74.425781 247.292969 74.761719 246.625 C 75.105469 245.957031 75.59375 245.457031 76.21875 245.125 C 76.855469 244.78125 77.550781 244.605469 78.300781 244.605469 C 79.160156 244.605469 79.886719 244.828125 80.46875 245.269531 C 81.0625 245.703125 81.472656 246.3125 81.699219 247.105469 L 80.574219 247.355469 C 80.375 246.730469 80.09375 246.28125 79.71875 246 C 79.34375 245.707031 78.863281 245.5625 78.28125 245.5625 C 77.625 245.5625 77.078125 245.722656 76.636719 246.042969 C 76.1875 246.363281 75.875 246.792969 75.699219 247.332031 C 75.515625 247.863281 75.425781 248.40625 75.425781 248.957031 C 75.425781 249.699219 75.53125 250.34375 75.738281 250.894531 C 75.957031 251.4375 76.292969 251.84375 76.738281 252.105469 C 77.183594 252.371094 77.667969 252.5 78.199219 252.5 C 78.832031 252.5 79.371094 252.324219 79.800781 251.957031 C 80.246094 251.582031 80.550781 251.035156 80.71875 250.3125 Z M 80.71875 250.3125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 86.425781 253.332031 L 86.425781 244.75 L 87.46875 244.75 L 87.46875 253.332031 Z M 86.425781 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.175781 252.5625 C 92.785156 252.894531 92.410156 253.136719 92.050781 253.269531 C 91.6875 253.40625 91.300781 253.480469 90.886719 253.480469 C 90.203125 253.480469 89.675781 253.3125 89.300781 252.980469 C 88.9375 252.644531 88.761719 252.21875 88.761719 251.6875 C 88.761719 251.386719 88.828125 251.105469 88.96875 250.855469 C 89.105469 250.605469 89.285156 250.40625 89.511719 250.25 C 89.730469 250.097656 89.980469 249.980469 90.261719 249.894531 C 90.46875 249.855469 90.78125 249.808594 91.199219 249.75 C 92.058594 249.65625 92.6875 249.53125 93.09375 249.375 C 93.09375 249.238281 93.09375 249.144531 93.09375 249.105469 C 93.09375 248.675781 92.996094 248.375 92.800781 248.207031 C 92.519531 247.957031 92.121094 247.832031 91.59375 247.832031 C 91.09375 247.832031 90.722656 247.925781 90.488281 248.105469 C 90.25 248.269531 90.078125 248.578125 89.96875 249.019531 L 88.949219 248.894531 C 89.03125 248.453125 89.175781 248.097656 89.386719 247.832031 C 89.605469 247.558594 89.917969 247.347656 90.324219 247.207031 C 90.738281 247.058594 91.207031 246.980469 91.738281 246.980469 C 92.28125 246.980469 92.707031 247.042969 93.03125 247.167969 C 93.363281 247.292969 93.605469 247.453125 93.761719 247.644531 C 93.925781 247.828125 94.035156 248.0625 94.09375 248.355469 C 94.136719 248.535156 94.15625 248.855469 94.15625 249.3125 L 94.15625 250.730469 C 94.15625 251.703125 94.175781 252.324219 94.21875 252.582031 C 94.261719 252.847656 94.347656 253.097656 94.488281 253.332031 L 93.386719 253.332031 C 93.269531 253.113281 93.203125 252.855469 93.175781 252.5625 Z M 93.09375 250.207031 C 92.703125 250.363281 92.125 250.496094 91.363281 250.605469 C 90.933594 250.675781 90.625 250.75 90.449219 250.832031 C 90.265625 250.90625 90.125 251.015625 90.03125 251.167969 C 89.933594 251.324219 89.886719 251.488281 89.886719 251.667969 C 89.886719 251.949219 89.988281 252.183594 90.199219 252.375 C 90.40625 252.558594 90.71875 252.644531 91.136719 252.644531 C 91.535156 252.644531 91.894531 252.558594 92.21875 252.375 C 92.535156 252.199219 92.769531 251.953125 92.925781 251.644531 C 93.035156 251.410156 93.09375 251.0625 93.09375 250.605469 Z M 93.09375 250.207031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 95.746094 255.730469 L 95.621094 254.75 C 95.855469 254.800781 96.058594 254.832031 96.226562 254.832031 C 96.460938 254.832031 96.648438 254.792969 96.789062 254.707031 C 96.925781 254.636719 97.042969 254.53125 97.144531 254.394531 C 97.195312 254.28125 97.300781 254.019531 97.457031 253.605469 C 97.480469 253.546875 97.519531 253.464844 97.558594 253.355469 L 95.183594 247.105469 L 96.332031 247.105469 L 97.621094 250.707031 C 97.789062 251.167969 97.941406 251.644531 98.082031 252.144531 C 98.191406 251.675781 98.332031 251.203125 98.496094 250.730469 L 99.832031 247.105469 L 100.894531 247.105469 L 98.519531 253.4375 C 98.269531 254.113281 98.070312 254.589844 97.933594 254.855469 C 97.738281 255.199219 97.523438 255.449219 97.289062 255.605469 C 97.050781 255.769531 96.757812 255.855469 96.414062 255.855469 C 96.214844 255.855469 95.996094 255.8125 95.746094 255.730469 Z M 95.746094 255.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 106.039062 251.332031 L 107.144531 251.457031 C 106.960938 252.097656 106.632812 252.597656 106.164062 252.957031 C 105.707031 253.308594 105.113281 253.480469 104.394531 253.480469 C 103.488281 253.480469 102.769531 253.203125 102.226562 252.644531 C 101.695312 252.078125 101.433594 251.285156 101.433594 250.269531 C 101.433594 249.230469 101.707031 248.425781 102.246094 247.855469 C 102.789062 247.269531 103.488281 246.980469 104.351562 246.980469 C 105.183594 246.980469 105.855469 247.265625 106.371094 247.832031 C 106.898438 248.390625 107.164062 249.183594 107.164062 250.207031 C 107.164062 250.28125 107.164062 250.375 107.164062 250.5 L 102.519531 250.5 C 102.558594 251.183594 102.753906 251.703125 103.101562 252.0625 C 103.445312 252.425781 103.882812 252.605469 104.414062 252.605469 C 104.800781 252.605469 105.128906 252.511719 105.394531 252.3125 C 105.667969 252.105469 105.882812 251.78125 106.039062 251.332031 Z M 102.582031 249.625 L 106.058594 249.625 C 106.019531 249.097656 105.882812 248.703125 105.664062 248.4375 C 105.332031 248.035156 104.894531 247.832031 104.351562 247.832031 C 103.863281 247.832031 103.457031 248 103.121094 248.332031 C 102.800781 248.65625 102.621094 249.082031 102.582031 249.625 Z M 102.582031 249.625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.441406 253.332031 L 108.441406 247.105469 L 109.402344 247.105469 L 109.402344 248.0625 C 109.636719 247.621094 109.859375 247.328125 110.066406 247.1875 C 110.277344 247.050781 110.503906 246.980469 110.753906 246.980469 C 111.097656 246.980469 111.464844 247.09375 111.839844 247.3125 L 111.464844 248.292969 C 111.214844 248.140625 110.953125 248.0625 110.691406 248.0625 C 110.46875 248.0625 110.261719 248.136719 110.066406 248.269531 C 109.886719 248.410156 109.753906 248.605469 109.671875 248.855469 C 109.558594 249.230469 109.503906 249.640625 109.503906 250.082031 L 109.503906 253.332031 Z M 108.441406 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 116.9375 253.332031 L 115.042969 247.105469 L 116.125 247.105469 L 117.125 250.707031 L 117.480469 252.042969 C 117.492188 251.972656 117.605469 251.542969 117.8125 250.75 L 118.792969 247.105469 L 119.875 247.105469 L 120.8125 250.730469 L 121.125 251.917969 L 121.480469 250.707031 L 122.542969 247.105469 L 123.5625 247.105469 L 121.625 253.332031 L 120.542969 253.332031 L 119.542969 249.605469 L 119.292969 248.542969 L 118.042969 253.332031 Z M 116.9375 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 124.460938 245.957031 L 124.460938 244.75 L 125.523438 244.75 L 125.523438 245.957031 Z M 124.460938 253.332031 L 124.460938 247.105469 L 125.523438 247.105469 L 125.523438 253.332031 Z M 124.460938 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.4375 252.394531 L 129.582031 253.3125 C 129.277344 253.378906 129.011719 253.417969 128.792969 253.417969 C 128.402344 253.417969 128.105469 253.355469 127.894531 253.230469 C 127.6875 253.105469 127.53125 252.949219 127.4375 252.75 C 127.355469 252.558594 127.3125 252.144531 127.3125 251.519531 L 127.3125 247.9375 L 126.542969 247.9375 L 126.542969 247.105469 L 127.3125 247.105469 L 127.3125 245.5625 L 128.375 244.9375 L 128.375 247.105469 L 129.4375 247.105469 L 129.4375 247.9375 L 128.375 247.9375 L 128.375 251.5625 C 128.375 251.871094 128.386719 252.0625 128.417969 252.144531 C 128.457031 252.230469 128.519531 252.300781 128.605469 252.355469 C 128.6875 252.410156 128.800781 252.4375 128.957031 252.4375 C 129.082031 252.4375 129.238281 252.425781 129.4375 252.394531 Z M 129.4375 252.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 130.460938 253.332031 L 130.460938 244.75 L 131.523438 244.75 L 131.523438 247.832031 C 132.007812 247.265625 132.625 246.980469 133.375 246.980469 C 133.835938 246.980469 134.230469 247.074219 134.5625 247.25 C 134.90625 247.433594 135.152344 247.683594 135.292969 248 C 135.445312 248.324219 135.523438 248.785156 135.523438 249.394531 L 135.523438 253.332031 L 134.480469 253.332031 L 134.480469 249.394531 C 134.480469 248.871094 134.359375 248.488281 134.125 248.25 C 133.902344 248 133.585938 247.875 133.167969 247.875 C 132.84375 247.875 132.546875 247.957031 132.273438 248.125 C 131.992188 248.28125 131.796875 248.496094 131.6875 248.769531 C 131.574219 249.050781 131.523438 249.4375 131.523438 249.9375 L 131.523438 253.332031 Z M 130.460938 253.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.15625 266.289062 C 57.765625 266.621094 57.390625 266.859375 57.03125 266.996094 C 56.667969 267.132812 56.28125 267.203125 55.867188 267.203125 C 55.183594 267.203125 54.65625 267.039062 54.28125 266.703125 C 53.917969 266.371094 53.742188 265.945312 53.742188 265.414062 C 53.742188 265.109375 53.808594 264.828125 53.949219 264.578125 C 54.085938 264.328125 54.265625 264.132812 54.492188 263.976562 C 54.710938 263.824219 54.960938 263.703125 55.242188 263.621094 C 55.449219 263.578125 55.761719 263.53125 56.179688 263.476562 C 57.039062 263.382812 57.667969 263.257812 58.074219 263.101562 C 58.074219 262.964844 58.074219 262.871094 58.074219 262.828125 C 58.074219 262.402344 57.976562 262.101562 57.78125 261.933594 C 57.5 261.683594 57.101562 261.558594 56.574219 261.558594 C 56.074219 261.558594 55.703125 261.652344 55.46875 261.828125 C 55.230469 261.996094 55.058594 262.304688 54.949219 262.746094 L 53.929688 262.621094 C 54.011719 262.179688 54.15625 261.824219 54.367188 261.558594 C 54.585938 261.28125 54.898438 261.074219 55.304688 260.933594 C 55.71875 260.78125 56.1875 260.703125 56.71875 260.703125 C 57.261719 260.703125 57.6875 260.765625 58.011719 260.890625 C 58.34375 261.015625 58.585938 261.179688 58.742188 261.371094 C 58.90625 261.554688 59.015625 261.789062 59.074219 262.078125 C 59.117188 262.261719 59.136719 262.578125 59.136719 263.039062 L 59.136719 264.453125 C 59.136719 265.429688 59.15625 266.046875 59.199219 266.308594 C 59.242188 266.574219 59.328125 266.824219 59.46875 267.058594 L 58.367188 267.058594 C 58.25 266.839844 58.183594 266.578125 58.15625 266.289062 Z M 58.074219 263.933594 C 57.683594 264.089844 57.105469 264.21875 56.34375 264.328125 C 55.914062 264.402344 55.605469 264.476562 55.429688 264.558594 C 55.246094 264.632812 55.105469 264.742188 55.011719 264.890625 C 54.914062 265.046875 54.867188 265.214844 54.867188 265.390625 C 54.867188 265.671875 54.96875 265.90625 55.179688 266.101562 C 55.386719 266.28125 55.699219 266.371094 56.117188 266.371094 C 56.515625 266.371094 56.875 266.28125 57.199219 266.101562 C 57.515625 265.921875 57.75 265.679688 57.90625 265.371094 C 58.015625 265.136719 58.074219 264.789062 58.074219 264.328125 Z M 58.074219 263.933594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 64.832031 264.789062 L 65.875 264.914062 C 65.757812 265.636719 65.46875 266.199219 65 266.601562 C 64.523438 267.007812 63.945312 267.203125 63.269531 267.203125 C 62.421875 267.203125 61.738281 266.929688 61.226562 266.371094 C 60.710938 265.820312 60.457031 265.015625 60.457031 263.976562 C 60.457031 263.296875 60.566406 262.703125 60.789062 262.203125 C 61.007812 261.703125 61.34375 261.328125 61.789062 261.078125 C 62.25 260.828125 62.75 260.703125 63.289062 260.703125 C 63.957031 260.703125 64.503906 260.882812 64.9375 261.226562 C 65.363281 261.558594 65.644531 262.039062 65.769531 262.664062 L 64.75 262.828125 C 64.648438 262.414062 64.476562 262.101562 64.226562 261.890625 C 63.976562 261.671875 63.675781 261.558594 63.332031 261.558594 C 62.789062 261.558594 62.351562 261.757812 62.019531 262.140625 C 61.695312 262.515625 61.539062 263.117188 61.539062 263.933594 C 61.539062 264.78125 61.695312 265.390625 62.019531 265.765625 C 62.335938 266.140625 62.753906 266.328125 63.269531 266.328125 C 63.6875 266.328125 64.03125 266.203125 64.3125 265.953125 C 64.585938 265.703125 64.757812 265.320312 64.832031 264.789062 Z M 64.832031 264.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.082031 266.121094 L 69.226562 267.039062 C 68.921875 267.105469 68.65625 267.140625 68.4375 267.140625 C 68.046875 267.140625 67.75 267.078125 67.539062 266.953125 C 67.332031 266.828125 67.175781 266.671875 67.082031 266.476562 C 67 266.28125 66.957031 265.871094 66.957031 265.246094 L 66.957031 261.664062 L 66.1875 261.664062 L 66.1875 260.828125 L 66.957031 260.828125 L 66.957031 259.289062 L 68.019531 258.664062 L 68.019531 260.828125 L 69.082031 260.828125 L 69.082031 261.664062 L 68.019531 261.664062 L 68.019531 265.289062 C 68.019531 265.59375 68.03125 265.789062 68.0625 265.871094 C 68.101562 265.953125 68.164062 266.027344 68.25 266.078125 C 68.332031 266.136719 68.445312 266.164062 68.601562 266.164062 C 68.726562 266.164062 68.882812 266.152344 69.082031 266.121094 Z M 69.082031 266.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 70.105469 259.683594 L 70.105469 258.476562 L 71.167969 258.476562 L 71.167969 259.683594 Z M 70.105469 267.058594 L 70.105469 260.828125 L 71.167969 260.828125 L 71.167969 267.058594 Z M 70.105469 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.5 267.058594 L 72.125 260.828125 L 73.25 260.828125 L 74.582031 264.558594 C 74.71875 264.964844 74.851562 265.382812 74.976562 265.808594 C 75.070312 265.492188 75.207031 265.101562 75.375 264.640625 L 76.75 260.828125 L 77.832031 260.828125 L 75.476562 267.058594 Z M 74.5 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 82.832031 266.289062 C 82.441406 266.621094 82.066406 266.859375 81.707031 266.996094 C 81.34375 267.132812 80.957031 267.203125 80.539062 267.203125 C 79.859375 267.203125 79.332031 267.039062 78.957031 266.703125 C 78.59375 266.371094 78.414062 265.945312 78.414062 265.414062 C 78.414062 265.109375 78.484375 264.828125 78.625 264.578125 C 78.757812 264.328125 78.941406 264.132812 79.164062 263.976562 C 79.382812 263.824219 79.632812 263.703125 79.914062 263.621094 C 80.125 263.578125 80.4375 263.53125 80.851562 263.476562 C 81.710938 263.382812 82.34375 263.257812 82.75 263.101562 C 82.75 262.964844 82.75 262.871094 82.75 262.828125 C 82.75 262.402344 82.648438 262.101562 82.457031 261.933594 C 82.175781 261.683594 81.773438 261.558594 81.25 261.558594 C 80.75 261.558594 80.378906 261.652344 80.144531 261.828125 C 79.90625 261.996094 79.734375 262.304688 79.625 262.746094 L 78.601562 262.621094 C 78.6875 262.179688 78.832031 261.824219 79.039062 261.558594 C 79.257812 261.28125 79.570312 261.074219 79.976562 260.933594 C 80.394531 260.78125 80.863281 260.703125 81.394531 260.703125 C 81.9375 260.703125 82.363281 260.765625 82.6875 260.890625 C 83.019531 261.015625 83.257812 261.179688 83.414062 261.371094 C 83.582031 261.554688 83.691406 261.789062 83.75 262.078125 C 83.789062 262.261719 83.8125 262.578125 83.8125 263.039062 L 83.8125 264.453125 C 83.8125 265.429688 83.832031 266.046875 83.875 266.308594 C 83.914062 266.574219 84.003906 266.824219 84.144531 267.058594 L 83.039062 267.058594 C 82.925781 266.839844 82.859375 266.578125 82.832031 266.289062 Z M 82.75 263.933594 C 82.359375 264.089844 81.78125 264.21875 81.019531 264.328125 C 80.585938 264.402344 80.28125 264.476562 80.101562 264.558594 C 79.921875 264.632812 79.78125 264.742188 79.6875 264.890625 C 79.585938 265.046875 79.539062 265.214844 79.539062 265.390625 C 79.539062 265.671875 79.644531 265.90625 79.851562 266.101562 C 80.0625 266.28125 80.375 266.371094 80.789062 266.371094 C 81.191406 266.371094 81.550781 266.28125 81.875 266.101562 C 82.191406 265.921875 82.425781 265.679688 82.582031 265.371094 C 82.691406 265.136719 82.75 264.789062 82.75 264.328125 Z M 82.75 263.933594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 87.757812 266.121094 L 87.902344 267.039062 C 87.59375 267.105469 87.328125 267.140625 87.109375 267.140625 C 86.71875 267.140625 86.421875 267.078125 86.214844 266.953125 C 86.007812 266.828125 85.851562 266.671875 85.757812 266.476562 C 85.671875 266.28125 85.632812 265.871094 85.632812 265.246094 L 85.632812 261.664062 L 84.859375 261.664062 L 84.859375 260.828125 L 85.632812 260.828125 L 85.632812 259.289062 L 86.695312 258.664062 L 86.695312 260.828125 L 87.757812 260.828125 L 87.757812 261.664062 L 86.695312 261.664062 L 86.695312 265.289062 C 86.695312 265.59375 86.703125 265.789062 86.734375 265.871094 C 86.777344 265.953125 86.839844 266.027344 86.921875 266.078125 C 87.007812 266.136719 87.121094 266.164062 87.277344 266.164062 C 87.402344 266.164062 87.558594 266.152344 87.757812 266.121094 Z M 87.757812 266.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.777344 259.683594 L 88.777344 258.476562 L 89.839844 258.476562 L 89.839844 259.683594 Z M 88.777344 267.058594 L 88.777344 260.828125 L 89.839844 260.828125 L 89.839844 267.058594 Z M 88.777344 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 91.046875 263.953125 C 91.046875 262.804688 91.367188 261.949219 92.007812 261.390625 C 92.546875 260.933594 93.199219 260.703125 93.964844 260.703125 C 94.824219 260.703125 95.527344 260.984375 96.070312 261.539062 C 96.609375 262.09375 96.882812 262.867188 96.882812 263.851562 C 96.882812 264.65625 96.757812 265.289062 96.507812 265.746094 C 96.265625 266.203125 95.921875 266.570312 95.464844 266.828125 C 95.007812 267.078125 94.507812 267.203125 93.964844 267.203125 C 93.089844 267.203125 92.382812 266.929688 91.839844 266.371094 C 91.308594 265.804688 91.046875 264.996094 91.046875 263.953125 Z M 92.132812 263.953125 C 92.132812 264.746094 92.304688 265.34375 92.652344 265.746094 C 92.996094 266.136719 93.433594 266.328125 93.964844 266.328125 C 94.492188 266.328125 94.929688 266.136719 95.277344 265.746094 C 95.621094 265.34375 95.796875 264.734375 95.796875 263.914062 C 95.796875 263.152344 95.621094 262.570312 95.277344 262.164062 C 94.929688 261.761719 94.492188 261.558594 93.964844 261.558594 C 93.433594 261.558594 92.996094 261.761719 92.652344 262.164062 C 92.304688 262.554688 92.132812 263.152344 92.132812 263.953125 Z M 92.132812 263.953125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.117188 267.058594 L 98.117188 260.828125 L 99.078125 260.828125 L 99.078125 261.726562 C 99.519531 261.046875 100.179688 260.703125 101.054688 260.703125 C 101.429688 260.703125 101.769531 260.777344 102.078125 260.914062 C 102.394531 261.039062 102.628906 261.214844 102.785156 261.433594 C 102.9375 261.640625 103.046875 261.902344 103.117188 262.203125 C 103.160156 262.402344 103.179688 262.742188 103.179688 263.226562 L 103.179688 267.058594 L 102.117188 267.058594 L 102.117188 263.265625 C 102.117188 262.839844 102.078125 262.515625 101.992188 262.308594 C 101.910156 262.101562 101.765625 261.933594 101.554688 261.808594 C 101.347656 261.671875 101.101562 261.601562 100.828125 261.601562 C 100.378906 261.601562 99.992188 261.746094 99.660156 262.039062 C 99.335938 262.320312 99.179688 262.859375 99.179688 263.664062 L 99.179688 267.058594 Z M 98.117188 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.375 267.058594 L 108.375 261.664062 L 107.4375 261.664062 L 107.4375 260.828125 L 108.375 260.828125 L 108.375 260.183594 C 108.375 259.757812 108.40625 259.445312 108.480469 259.246094 C 108.589844 258.96875 108.773438 258.746094 109.023438 258.578125 C 109.28125 258.414062 109.648438 258.328125 110.105469 258.328125 C 110.398438 258.328125 110.71875 258.367188 111.085938 258.433594 L 110.917969 259.351562 C 110.710938 259.308594 110.507812 259.289062 110.3125 259.289062 C 109.992188 259.289062 109.761719 259.359375 109.625 259.496094 C 109.484375 259.636719 109.417969 259.890625 109.417969 260.265625 L 109.417969 260.828125 L 110.648438 260.828125 L 110.648438 261.664062 L 109.417969 261.664062 L 109.417969 267.058594 Z M 108.375 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 115.542969 267.058594 L 115.542969 266.140625 C 115.054688 266.851562 114.398438 267.203125 113.566406 267.203125 C 113.199219 267.203125 112.863281 267.132812 112.542969 266.996094 C 112.222656 266.84375 111.980469 266.664062 111.816406 266.453125 C 111.660156 266.246094 111.554688 265.992188 111.503906 265.683594 C 111.460938 265.476562 111.441406 265.140625 111.441406 264.683594 L 111.441406 260.828125 L 112.480469 260.828125 L 112.480469 264.289062 C 112.480469 264.84375 112.507812 265.214844 112.566406 265.390625 C 112.617188 265.671875 112.753906 265.890625 112.960938 266.058594 C 113.179688 266.214844 113.449219 266.289062 113.773438 266.289062 C 114.089844 266.289062 114.386719 266.214844 114.667969 266.058594 C 114.945312 265.890625 115.136719 265.671875 115.253906 265.390625 C 115.363281 265.117188 115.417969 264.703125 115.417969 264.164062 L 115.417969 260.828125 L 116.480469 260.828125 L 116.480469 267.058594 Z M 115.542969 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.136719 267.058594 L 118.136719 260.828125 L 119.09375 260.828125 L 119.09375 261.726562 C 119.535156 261.046875 120.199219 260.703125 121.074219 260.703125 C 121.449219 260.703125 121.785156 260.777344 122.09375 260.914062 C 122.410156 261.039062 122.644531 261.214844 122.800781 261.433594 C 122.953125 261.640625 123.0625 261.902344 123.136719 262.203125 C 123.175781 262.402344 123.199219 262.742188 123.199219 263.226562 L 123.199219 267.058594 L 122.136719 267.058594 L 122.136719 263.265625 C 122.136719 262.839844 122.09375 262.515625 122.011719 262.308594 C 121.925781 262.101562 121.78125 261.933594 121.574219 261.808594 C 121.363281 261.671875 121.121094 261.601562 120.84375 261.601562 C 120.394531 261.601562 120.011719 261.746094 119.675781 262.039062 C 119.355469 262.320312 119.199219 262.859375 119.199219 263.664062 L 119.199219 267.058594 Z M 118.136719 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 128.871094 264.789062 L 129.914062 264.914062 C 129.800781 265.636719 129.507812 266.199219 129.039062 266.601562 C 128.566406 267.007812 127.988281 267.203125 127.308594 267.203125 C 126.460938 267.203125 125.777344 266.929688 125.269531 266.371094 C 124.753906 265.820312 124.496094 265.015625 124.496094 263.976562 C 124.496094 263.296875 124.605469 262.703125 124.832031 262.203125 C 125.050781 261.703125 125.382812 261.328125 125.832031 261.078125 C 126.289062 260.828125 126.789062 260.703125 127.332031 260.703125 C 127.996094 260.703125 128.542969 260.882812 128.976562 261.226562 C 129.402344 261.558594 129.683594 262.039062 129.808594 262.664062 L 128.789062 262.828125 C 128.691406 262.414062 128.519531 262.101562 128.269531 261.890625 C 128.019531 261.671875 127.714844 261.558594 127.371094 261.558594 C 126.832031 261.558594 126.394531 261.757812 126.058594 262.140625 C 125.738281 262.515625 125.582031 263.117188 125.582031 263.933594 C 125.582031 264.78125 125.738281 265.390625 126.058594 265.765625 C 126.378906 266.140625 126.792969 266.328125 127.308594 266.328125 C 127.726562 266.328125 128.070312 266.203125 128.351562 265.953125 C 128.628906 265.703125 128.800781 265.320312 128.871094 264.789062 Z M 128.871094 264.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 133.121094 266.121094 L 133.269531 267.039062 C 132.960938 267.105469 132.695312 267.140625 132.476562 267.140625 C 132.085938 267.140625 131.789062 267.078125 131.582031 266.953125 C 131.371094 266.828125 131.214844 266.671875 131.121094 266.476562 C 131.039062 266.28125 130.996094 265.871094 130.996094 265.246094 L 130.996094 261.664062 L 130.226562 261.664062 L 130.226562 260.828125 L 130.996094 260.828125 L 130.996094 259.289062 L 132.058594 258.664062 L 132.058594 260.828125 L 133.121094 260.828125 L 133.121094 261.664062 L 132.058594 261.664062 L 132.058594 265.289062 C 132.058594 265.59375 132.070312 265.789062 132.101562 265.871094 C 132.144531 265.953125 132.207031 266.027344 132.289062 266.078125 C 132.371094 266.136719 132.488281 266.164062 132.644531 266.164062 C 132.769531 266.164062 132.925781 266.152344 133.121094 266.121094 Z M 133.121094 266.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.144531 259.683594 L 134.144531 258.476562 L 135.207031 258.476562 L 135.207031 259.683594 Z M 134.144531 267.058594 L 134.144531 260.828125 L 135.207031 260.828125 L 135.207031 267.058594 Z M 134.144531 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 136.414062 263.953125 C 136.414062 262.804688 136.730469 261.949219 137.371094 261.390625 C 137.914062 260.933594 138.566406 260.703125 139.332031 260.703125 C 140.191406 260.703125 140.894531 260.984375 141.433594 261.539062 C 141.976562 262.09375 142.246094 262.867188 142.246094 263.851562 C 142.246094 264.65625 142.121094 265.289062 141.871094 265.746094 C 141.632812 266.203125 141.289062 266.570312 140.832031 266.828125 C 140.371094 267.078125 139.871094 267.203125 139.332031 267.203125 C 138.457031 267.203125 137.746094 266.929688 137.207031 266.371094 C 136.675781 265.804688 136.414062 264.996094 136.414062 263.953125 Z M 137.496094 263.953125 C 137.496094 264.746094 137.667969 265.34375 138.019531 265.746094 C 138.363281 266.136719 138.800781 266.328125 139.332031 266.328125 C 139.855469 266.328125 140.292969 266.136719 140.644531 265.746094 C 140.988281 265.34375 141.164062 264.734375 141.164062 263.914062 C 141.164062 263.152344 140.988281 262.570312 140.644531 262.164062 C 140.292969 261.761719 139.855469 261.558594 139.332031 261.558594 C 138.800781 261.558594 138.363281 261.761719 138.019531 262.164062 C 137.667969 262.554688 137.496094 263.152344 137.496094 263.953125 Z M 137.496094 263.953125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 143.484375 267.058594 L 143.484375 260.828125 L 144.441406 260.828125 L 144.441406 261.726562 C 144.882812 261.046875 145.546875 260.703125 146.421875 260.703125 C 146.796875 260.703125 147.132812 260.777344 147.441406 260.914062 C 147.757812 261.039062 147.992188 261.214844 148.148438 261.433594 C 148.300781 261.640625 148.410156 261.902344 148.484375 262.203125 C 148.523438 262.402344 148.546875 262.742188 148.546875 263.226562 L 148.546875 267.058594 L 147.484375 267.058594 L 147.484375 263.265625 C 147.484375 262.839844 147.441406 262.515625 147.359375 262.308594 C 147.273438 262.101562 147.128906 261.933594 146.921875 261.808594 C 146.710938 261.671875 146.46875 261.601562 146.191406 261.601562 C 145.742188 261.601562 145.359375 261.746094 145.023438 262.039062 C 144.703125 262.320312 144.546875 262.859375 144.546875 263.664062 L 144.546875 267.058594 Z M 143.484375 267.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 483.703125 255.644531 L 484.828125 255.9375 C 484.589844 256.871094 484.164062 257.582031 483.539062 258.082031 C 482.921875 258.574219 482.167969 258.8125 481.265625 258.8125 C 480.351562 258.8125 479.601562 258.625 479.015625 258.25 C 478.433594 257.875 477.984375 257.332031 477.683594 256.625 C 477.390625 255.90625 477.246094 255.136719 477.246094 254.3125 C 477.246094 253.410156 477.414062 252.625 477.746094 251.957031 C 478.089844 251.292969 478.578125 250.792969 479.203125 250.457031 C 479.839844 250.113281 480.539062 249.9375 481.289062 249.9375 C 482.148438 249.9375 482.871094 250.160156 483.453125 250.605469 C 484.046875 251.035156 484.460938 251.644531 484.683594 252.4375 L 483.558594 252.6875 C 483.359375 252.0625 483.078125 251.613281 482.703125 251.332031 C 482.328125 251.042969 481.851562 250.894531 481.265625 250.894531 C 480.609375 250.894531 480.0625 251.058594 479.621094 251.375 C 479.171875 251.699219 478.859375 252.125 478.683594 252.667969 C 478.5 253.199219 478.414062 253.738281 478.414062 254.292969 C 478.414062 255.03125 478.515625 255.675781 478.726562 256.230469 C 478.945312 256.769531 479.277344 257.175781 479.726562 257.4375 C 480.167969 257.703125 480.652344 257.832031 481.183594 257.832031 C 481.820312 257.832031 482.355469 257.65625 482.789062 257.292969 C 483.230469 256.917969 483.539062 256.371094 483.703125 255.644531 Z M 483.703125 255.644531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 485.703125 255.5625 C 485.703125 254.410156 486.019531 253.558594 486.660156 253 C 487.203125 252.542969 487.855469 252.3125 488.621094 252.3125 C 489.480469 252.3125 490.183594 252.59375 490.722656 253.144531 C 491.265625 253.703125 491.535156 254.472656 491.535156 255.457031 C 491.535156 256.265625 491.410156 256.894531 491.160156 257.355469 C 490.921875 257.8125 490.578125 258.175781 490.121094 258.4375 C 489.660156 258.6875 489.160156 258.8125 488.621094 258.8125 C 487.746094 258.8125 487.035156 258.535156 486.496094 257.980469 C 485.964844 257.410156 485.703125 256.605469 485.703125 255.5625 Z M 486.785156 255.5625 C 486.785156 256.355469 486.957031 256.953125 487.308594 257.355469 C 487.652344 257.746094 488.089844 257.9375 488.621094 257.9375 C 489.144531 257.9375 489.582031 257.746094 489.933594 257.355469 C 490.277344 256.953125 490.453125 256.34375 490.453125 255.519531 C 490.453125 254.761719 490.277344 254.175781 489.933594 253.769531 C 489.582031 253.371094 489.144531 253.167969 488.621094 253.167969 C 488.089844 253.167969 487.652344 253.371094 487.308594 253.769531 C 486.957031 254.160156 486.785156 254.761719 486.785156 255.5625 Z M 486.785156 255.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.773438 258.667969 L 492.773438 252.4375 L 493.730469 252.4375 L 493.730469 253.332031 C 494.175781 252.65625 494.835938 252.3125 495.710938 252.3125 C 496.085938 252.3125 496.425781 252.386719 496.730469 252.519531 C 497.050781 252.644531 497.285156 252.824219 497.441406 253.042969 C 497.589844 253.25 497.699219 253.511719 497.773438 253.8125 C 497.816406 254.011719 497.835938 254.347656 497.835938 254.832031 L 497.835938 258.667969 L 496.773438 258.667969 L 496.773438 254.875 C 496.773438 254.449219 496.730469 254.125 496.648438 253.917969 C 496.566406 253.707031 496.417969 253.542969 496.210938 253.417969 C 496.003906 253.28125 495.757812 253.207031 495.480469 253.207031 C 495.035156 253.207031 494.648438 253.355469 494.316406 253.644531 C 493.992188 253.925781 493.835938 254.46875 493.835938 255.269531 L 493.835938 258.667969 Z M 492.773438 258.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 503.511719 256.394531 L 504.550781 256.519531 C 504.4375 257.246094 504.144531 257.808594 503.675781 258.207031 C 503.203125 258.613281 502.625 258.8125 501.949219 258.8125 C 501.097656 258.8125 500.417969 258.535156 499.90625 257.980469 C 499.390625 257.425781 499.136719 256.625 499.136719 255.582031 C 499.136719 254.90625 499.246094 254.3125 499.46875 253.8125 C 499.6875 253.3125 500.019531 252.9375 500.46875 252.6875 C 500.925781 252.4375 501.425781 252.3125 501.96875 252.3125 C 502.636719 252.3125 503.183594 252.488281 503.613281 252.832031 C 504.042969 253.167969 504.324219 253.644531 504.449219 254.269531 L 503.425781 254.4375 C 503.328125 254.019531 503.15625 253.707031 502.90625 253.5 C 502.65625 253.28125 502.355469 253.167969 502.011719 253.167969 C 501.46875 253.167969 501.03125 253.363281 500.699219 253.75 C 500.375 254.125 500.21875 254.722656 500.21875 255.542969 C 500.21875 256.390625 500.375 257 500.699219 257.375 C 501.015625 257.75 501.433594 257.9375 501.949219 257.9375 C 502.363281 257.9375 502.707031 257.8125 502.988281 257.5625 C 503.265625 257.3125 503.4375 256.925781 503.511719 256.394531 Z M 503.511719 256.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 509.511719 257.894531 C 509.121094 258.230469 508.746094 258.46875 508.386719 258.605469 C 508.019531 258.738281 507.636719 258.8125 507.21875 258.8125 C 506.535156 258.8125 506.011719 258.644531 505.636719 258.3125 C 505.269531 257.980469 505.09375 257.550781 505.09375 257.019531 C 505.09375 256.71875 505.160156 256.4375 505.300781 256.1875 C 505.4375 255.9375 505.621094 255.738281 505.84375 255.582031 C 506.0625 255.433594 506.3125 255.3125 506.59375 255.230469 C 506.800781 255.1875 507.113281 255.140625 507.53125 255.082031 C 508.390625 254.988281 509.019531 254.863281 509.425781 254.707031 C 509.425781 254.574219 509.425781 254.480469 509.425781 254.4375 C 509.425781 254.011719 509.328125 253.707031 509.136719 253.542969 C 508.855469 253.292969 508.453125 253.167969 507.925781 253.167969 C 507.425781 253.167969 507.058594 253.261719 506.824219 253.4375 C 506.582031 253.605469 506.410156 253.910156 506.300781 254.355469 L 505.28125 254.230469 C 505.363281 253.785156 505.511719 253.433594 505.71875 253.167969 C 505.9375 252.890625 506.25 252.683594 506.65625 252.542969 C 507.074219 252.390625 507.542969 252.3125 508.074219 252.3125 C 508.613281 252.3125 509.042969 252.375 509.363281 252.5 C 509.699219 252.625 509.9375 252.785156 510.09375 252.980469 C 510.261719 253.160156 510.371094 253.394531 510.425781 253.6875 C 510.46875 253.871094 510.488281 254.1875 510.488281 254.644531 L 510.488281 256.0625 C 510.488281 257.035156 510.511719 257.65625 510.550781 257.917969 C 510.59375 258.183594 510.683594 258.433594 510.824219 258.667969 L 509.71875 258.667969 C 509.605469 258.449219 509.535156 258.1875 509.511719 257.894531 Z M 509.425781 255.542969 C 509.035156 255.699219 508.457031 255.828125 507.699219 255.9375 C 507.265625 256.011719 506.957031 256.082031 506.78125 256.167969 C 506.597656 256.238281 506.457031 256.347656 506.363281 256.5 C 506.265625 256.65625 506.21875 256.824219 506.21875 257 C 506.21875 257.28125 506.324219 257.515625 506.53125 257.707031 C 506.738281 257.890625 507.050781 257.980469 507.46875 257.980469 C 507.871094 257.980469 508.230469 257.890625 508.550781 257.707031 C 508.871094 257.53125 509.105469 257.285156 509.261719 256.980469 C 509.371094 256.746094 509.425781 256.394531 509.425781 255.9375 Z M 509.425781 255.542969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 514.433594 257.730469 L 514.582031 258.644531 C 514.273438 258.714844 514.007812 258.75 513.789062 258.75 C 513.398438 258.75 513.101562 258.6875 512.894531 258.5625 C 512.683594 258.4375 512.527344 258.28125 512.433594 258.082031 C 512.351562 257.890625 512.308594 257.480469 512.308594 256.855469 L 512.308594 253.269531 L 511.539062 253.269531 L 511.539062 252.4375 L 512.308594 252.4375 L 512.308594 250.894531 L 513.371094 250.269531 L 513.371094 252.4375 L 514.433594 252.4375 L 514.433594 253.269531 L 513.371094 253.269531 L 513.371094 256.894531 C 513.371094 257.203125 513.382812 257.394531 513.414062 257.480469 C 513.457031 257.5625 513.519531 257.636719 513.601562 257.6875 C 513.683594 257.746094 513.800781 257.769531 513.957031 257.769531 C 514.082031 257.769531 514.238281 257.761719 514.433594 257.730469 Z M 514.433594 257.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 519.707031 256.667969 L 520.808594 256.792969 C 520.628906 257.433594 520.300781 257.933594 519.832031 258.292969 C 519.371094 258.640625 518.777344 258.8125 518.058594 258.8125 C 517.152344 258.8125 516.433594 258.535156 515.894531 257.980469 C 515.363281 257.410156 515.101562 256.621094 515.101562 255.605469 C 515.101562 254.5625 515.371094 253.761719 515.914062 253.1875 C 516.457031 252.605469 517.152344 252.3125 518.019531 252.3125 C 518.851562 252.3125 519.523438 252.597656 520.039062 253.167969 C 520.566406 253.722656 520.832031 254.515625 520.832031 255.542969 C 520.832031 255.613281 520.832031 255.707031 520.832031 255.832031 L 516.183594 255.832031 C 516.226562 256.515625 516.417969 257.035156 516.769531 257.394531 C 517.113281 257.761719 517.550781 257.9375 518.082031 257.9375 C 518.464844 257.9375 518.792969 257.84375 519.058594 257.644531 C 519.335938 257.4375 519.550781 257.113281 519.707031 256.667969 Z M 516.246094 254.957031 L 519.726562 254.957031 C 519.683594 254.433594 519.550781 254.035156 519.332031 253.769531 C 518.996094 253.371094 518.558594 253.167969 518.019531 253.167969 C 517.527344 253.167969 517.121094 253.332031 516.789062 253.667969 C 516.464844 253.988281 516.289062 254.417969 516.246094 254.957031 Z M 516.246094 254.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 522.128906 258.667969 L 522.128906 252.4375 L 523.089844 252.4375 L 523.089844 253.332031 C 523.53125 252.65625 524.191406 252.3125 525.066406 252.3125 C 525.441406 252.3125 525.78125 252.386719 526.089844 252.519531 C 526.40625 252.644531 526.640625 252.824219 526.796875 253.042969 C 526.949219 253.25 527.058594 253.511719 527.128906 253.8125 C 527.171875 254.011719 527.191406 254.347656 527.191406 254.832031 L 527.191406 258.667969 L 526.128906 258.667969 L 526.128906 254.875 C 526.128906 254.449219 526.089844 254.125 526.003906 253.917969 C 525.921875 253.707031 525.777344 253.542969 525.566406 253.417969 C 525.359375 253.28125 525.113281 253.207031 524.839844 253.207031 C 524.390625 253.207031 524.003906 253.355469 523.671875 253.644531 C 523.347656 253.925781 523.191406 254.46875 523.191406 255.269531 L 523.191406 258.667969 Z M 522.128906 258.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 532.867188 257.894531 C 532.476562 258.230469 532.101562 258.46875 531.742188 258.605469 C 531.378906 258.738281 530.992188 258.8125 530.574219 258.8125 C 529.894531 258.8125 529.367188 258.644531 528.992188 258.3125 C 528.628906 257.980469 528.449219 257.550781 528.449219 257.019531 C 528.449219 256.71875 528.519531 256.4375 528.660156 256.1875 C 528.792969 255.9375 528.976562 255.738281 529.199219 255.582031 C 529.417969 255.433594 529.667969 255.3125 529.949219 255.230469 C 530.160156 255.1875 530.472656 255.140625 530.886719 255.082031 C 531.746094 254.988281 532.378906 254.863281 532.785156 254.707031 C 532.785156 254.574219 532.785156 254.480469 532.785156 254.4375 C 532.785156 254.011719 532.683594 253.707031 532.492188 253.542969 C 532.210938 253.292969 531.808594 253.167969 531.285156 253.167969 C 530.785156 253.167969 530.414062 253.261719 530.179688 253.4375 C 529.941406 253.605469 529.769531 253.910156 529.660156 254.355469 L 528.636719 254.230469 C 528.722656 253.785156 528.867188 253.433594 529.074219 253.167969 C 529.292969 252.890625 529.605469 252.683594 530.011719 252.542969 C 530.429688 252.390625 530.898438 252.3125 531.429688 252.3125 C 531.972656 252.3125 532.398438 252.375 532.722656 252.5 C 533.054688 252.625 533.292969 252.785156 533.449219 252.980469 C 533.617188 253.160156 533.726562 253.394531 533.785156 253.6875 C 533.824219 253.871094 533.847656 254.1875 533.847656 254.644531 L 533.847656 256.0625 C 533.847656 257.035156 533.867188 257.65625 533.910156 257.917969 C 533.949219 258.183594 534.039062 258.433594 534.179688 258.667969 L 533.074219 258.667969 C 532.960938 258.449219 532.894531 258.1875 532.867188 257.894531 Z M 532.785156 255.542969 C 532.394531 255.699219 531.816406 255.828125 531.054688 255.9375 C 530.621094 256.011719 530.316406 256.082031 530.136719 256.167969 C 529.957031 256.238281 529.816406 256.347656 529.722656 256.5 C 529.621094 256.65625 529.574219 256.824219 529.574219 257 C 529.574219 257.28125 529.679688 257.515625 529.886719 257.707031 C 530.097656 257.890625 530.410156 257.980469 530.824219 257.980469 C 531.226562 257.980469 531.585938 257.890625 531.910156 257.707031 C 532.226562 257.53125 532.460938 257.285156 532.617188 256.980469 C 532.726562 256.746094 532.785156 256.394531 532.785156 255.9375 Z M 532.785156 255.542969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 537.792969 257.730469 L 537.9375 258.644531 C 537.628906 258.714844 537.363281 258.75 537.144531 258.75 C 536.753906 258.75 536.457031 258.6875 536.25 258.5625 C 536.042969 258.4375 535.886719 258.28125 535.792969 258.082031 C 535.707031 257.890625 535.667969 257.480469 535.667969 256.855469 L 535.667969 253.269531 L 534.894531 253.269531 L 534.894531 252.4375 L 535.667969 252.4375 L 535.667969 250.894531 L 536.730469 250.269531 L 536.730469 252.4375 L 537.792969 252.4375 L 537.792969 253.269531 L 536.730469 253.269531 L 536.730469 256.894531 C 536.730469 257.203125 536.738281 257.394531 536.769531 257.480469 C 536.8125 257.5625 536.875 257.636719 536.957031 257.6875 C 537.042969 257.746094 537.15625 257.769531 537.3125 257.769531 C 537.4375 257.769531 537.59375 257.761719 537.792969 257.730469 Z M 537.792969 257.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 543.0625 256.667969 L 544.167969 256.792969 C 543.984375 257.433594 543.65625 257.933594 543.1875 258.292969 C 542.730469 258.640625 542.136719 258.8125 541.417969 258.8125 C 540.511719 258.8125 539.792969 258.535156 539.25 257.980469 C 538.71875 257.410156 538.457031 256.621094 538.457031 255.605469 C 538.457031 254.5625 538.730469 253.761719 539.269531 253.1875 C 539.8125 252.605469 540.511719 252.3125 541.375 252.3125 C 542.207031 252.3125 542.878906 252.597656 543.394531 253.167969 C 543.921875 253.722656 544.1875 254.515625 544.1875 255.542969 C 544.1875 255.613281 544.1875 255.707031 544.1875 255.832031 L 539.542969 255.832031 C 539.582031 256.515625 539.777344 257.035156 540.125 257.394531 C 540.46875 257.761719 540.90625 257.9375 541.4375 257.9375 C 541.824219 257.9375 542.152344 257.84375 542.417969 257.644531 C 542.691406 257.4375 542.90625 257.113281 543.0625 256.667969 Z M 539.605469 254.957031 L 543.082031 254.957031 C 543.042969 254.433594 542.90625 254.035156 542.6875 253.769531 C 542.355469 253.371094 541.917969 253.167969 541.375 253.167969 C 540.886719 253.167969 540.480469 253.332031 540.144531 253.667969 C 539.824219 253.988281 539.644531 254.417969 539.605469 254.957031 Z M 539.605469 254.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 378.390625 255.644531 L 379.515625 255.9375 C 379.273438 256.871094 378.847656 257.582031 378.222656 258.082031 C 377.609375 258.574219 376.851562 258.8125 375.953125 258.8125 C 375.035156 258.8125 374.285156 258.625 373.703125 258.25 C 373.117188 257.875 372.671875 257.332031 372.367188 256.625 C 372.078125 255.90625 371.929688 255.136719 371.929688 254.3125 C 371.929688 253.410156 372.097656 252.625 372.429688 251.957031 C 372.773438 251.292969 373.265625 250.792969 373.890625 250.457031 C 374.523438 250.113281 375.222656 249.9375 375.972656 249.9375 C 376.832031 249.9375 377.554688 250.160156 378.140625 250.605469 C 378.734375 251.035156 379.144531 251.644531 379.367188 252.4375 L 378.242188 252.6875 C 378.046875 252.0625 377.765625 251.613281 377.390625 251.332031 C 377.015625 251.042969 376.535156 250.894531 375.953125 250.894531 C 375.296875 250.894531 374.75 251.058594 374.304688 251.375 C 373.859375 251.699219 373.546875 252.125 373.367188 252.667969 C 373.1875 253.199219 373.097656 253.738281 373.097656 254.292969 C 373.097656 255.03125 373.203125 255.675781 373.410156 256.230469 C 373.628906 256.769531 373.960938 257.175781 374.410156 257.4375 C 374.851562 257.703125 375.335938 257.832031 375.867188 257.832031 C 376.503906 257.832031 377.039062 257.65625 377.472656 257.292969 C 377.914062 256.917969 378.222656 256.371094 378.390625 255.644531 Z M 378.390625 255.644531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 380.390625 255.5625 C 380.390625 254.410156 380.707031 253.558594 381.347656 253 C 381.890625 252.542969 382.539062 252.3125 383.304688 252.3125 C 384.164062 252.3125 384.867188 252.59375 385.410156 253.144531 C 385.953125 253.703125 386.222656 254.472656 386.222656 255.457031 C 386.222656 256.265625 386.097656 256.894531 385.847656 257.355469 C 385.609375 257.8125 385.265625 258.175781 384.804688 258.4375 C 384.347656 258.6875 383.847656 258.8125 383.304688 258.8125 C 382.429688 258.8125 381.722656 258.535156 381.179688 257.980469 C 380.648438 257.410156 380.390625 256.605469 380.390625 255.5625 Z M 381.472656 255.5625 C 381.472656 256.355469 381.644531 256.953125 381.992188 257.355469 C 382.335938 257.746094 382.773438 257.9375 383.304688 257.9375 C 383.832031 257.9375 384.269531 257.746094 384.617188 257.355469 C 384.960938 256.953125 385.140625 256.34375 385.140625 255.519531 C 385.140625 254.761719 384.960938 254.175781 384.617188 253.769531 C 384.269531 253.371094 383.832031 253.167969 383.304688 253.167969 C 382.773438 253.167969 382.335938 253.371094 381.992188 253.769531 C 381.644531 254.160156 381.472656 254.761719 381.472656 255.5625 Z M 381.472656 255.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 387.460938 261.042969 L 387.460938 252.4375 L 388.417969 252.4375 L 388.417969 253.25 C 388.636719 252.933594 388.886719 252.699219 389.167969 252.542969 C 389.460938 252.390625 389.8125 252.3125 390.230469 252.3125 C 390.753906 252.3125 391.21875 252.453125 391.625 252.730469 C 392.027344 252.996094 392.335938 253.375 392.542969 253.875 C 392.75 254.375 392.855469 254.917969 392.855469 255.5 C 392.855469 256.140625 392.734375 256.71875 392.5 257.230469 C 392.277344 257.746094 391.949219 258.140625 391.523438 258.417969 C 391.089844 258.675781 390.628906 258.8125 390.148438 258.8125 C 389.796875 258.8125 389.484375 258.734375 389.210938 258.582031 C 388.925781 258.433594 388.699219 258.246094 388.523438 258.019531 L 388.523438 261.042969 Z M 388.417969 255.582031 C 388.417969 256.390625 388.574219 256.988281 388.898438 257.375 C 389.230469 257.75 389.625 257.9375 390.085938 257.9375 C 390.542969 257.9375 390.9375 257.746094 391.273438 257.355469 C 391.617188 256.953125 391.792969 256.332031 391.792969 255.5 C 391.792969 254.707031 391.625 254.121094 391.292969 253.730469 C 390.96875 253.328125 390.585938 253.125 390.125 253.125 C 389.675781 253.125 389.28125 253.34375 388.9375 253.769531 C 388.589844 254.1875 388.417969 254.792969 388.417969 255.582031 Z M 388.417969 255.582031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 394.089844 261.0625 L 393.964844 260.082031 C 394.199219 260.136719 394.402344 260.167969 394.570312 260.167969 C 394.804688 260.167969 394.992188 260.125 395.132812 260.042969 C 395.269531 259.96875 395.386719 259.863281 395.488281 259.730469 C 395.539062 259.613281 395.644531 259.355469 395.800781 258.9375 C 395.824219 258.878906 395.863281 258.796875 395.902344 258.6875 L 393.527344 252.4375 L 394.675781 252.4375 L 395.964844 256.042969 C 396.132812 256.5 396.285156 256.980469 396.425781 257.480469 C 396.535156 257.011719 396.675781 256.535156 396.839844 256.0625 L 398.175781 252.4375 L 399.238281 252.4375 L 396.863281 258.769531 C 396.613281 259.449219 396.414062 259.921875 396.277344 260.1875 C 396.082031 260.53125 395.867188 260.78125 395.632812 260.9375 C 395.394531 261.105469 395.101562 261.1875 394.757812 261.1875 C 394.558594 261.1875 394.339844 261.144531 394.089844 261.0625 Z M 394.089844 261.0625 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 186 KiB |
@@ -0,0 +1,258 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="552" height="285.333333" viewBox="0 0 552 285.333333" version="1.1">
|
||||
<defs>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 341 97.332031 L 344.917969 97.332031 L 344.917969 101 L 341 101 Z M 341 97.332031 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 191.582031 29 L 195 29 L 195 32.347656 L 191.582031 32.347656 Z M 191.582031 29 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 415.582031 97.332031 L 419 97.332031 L 419 101 L 415.582031 101 Z M 415.582031 97.332031 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.999023 227.999023 L 536.000977 227.999023 C 542.62793 227.999023 548.000977 233.37207 548.000977 239.999023 L 548.000977 356 C 548.000977 362.629883 542.62793 368 536.000977 368 L 303.999023 368 C 297.37207 368 291.999023 362.629883 291.999023 356 L 291.999023 239.999023 C 291.999023 233.37207 297.37207 227.999023 303.999023 227.999023 Z M 303.999023 227.999023 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;" d="M 174.9375 153.332031 L 212.269531 153.332031 L 212.269531 132 L 174.9375 132 Z M 174.9375 153.332031 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.203125 320 L 354.202148 320 L 354.202148 335.999023 L 326.203125 335.999023 Z M 326.203125 320 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 197.710938 140.242188 L 197.546875 141.136719 L 195.984375 141.136719 C 196.285156 141.570312 196.441406 142.109375 196.441406 142.761719 C 196.441406 143.777344 196.140625 144.671875 195.546875 145.449219 C 194.945312 146.230469 194.132812 146.617188 193.109375 146.617188 C 192.316406 146.617188 191.691406 146.386719 191.234375 145.929688 C 190.785156 145.460938 190.566406 144.84375 190.566406 144.09375 C 190.566406 142.984375 190.867188 142.046875 191.484375 141.28125 C 192.109375 140.507812 192.910156 140.117188 193.898438 140.117188 C 194.21875 140.117188 194.507812 140.15625 194.773438 140.242188 Z M 191.628906 144.074219 C 191.628906 144.574219 191.757812 144.984375 192.023438 145.304688 C 192.285156 145.625 192.648438 145.78125 193.109375 145.78125 C 193.816406 145.78125 194.367188 145.449219 194.773438 144.78125 C 195.175781 144.105469 195.378906 143.417969 195.378906 142.71875 C 195.378906 142.136719 195.242188 141.695312 194.984375 141.386719 C 194.734375 141.085938 194.382812 140.929688 193.941406 140.929688 C 193.234375 140.929688 192.671875 141.25 192.253906 141.886719 C 191.835938 142.527344 191.628906 143.257812 191.628906 144.074219 Z M 191.628906 144.074219 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.764648 351.136719 L 333.960938 351.910156 C 337.274414 351.957031 339.999023 349.311523 340.051758 346.000977 C 340.051758 345.989258 340.051758 345.97168 340.051758 345.959961 L 340.086914 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.116211 337.897461 L 340.086914 341.899414 M 338.586914 341.887695 L 340.116211 337.897461 L 341.586914 341.914062 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.180664 320 L 340.016602 257.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.004883 253.897461 L 340.016602 257.899414 M 338.516602 257.902344 L 340.004883 253.897461 L 341.516602 257.893555 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;" d="M 243.925781 153.332031 L 281.261719 153.332031 L 281.261719 132 L 243.925781 132 Z M 243.925781 153.332031 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.944336 320 L 405.946289 320 L 405.946289 335.999023 L 377.944336 335.999023 Z M 377.944336 320 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 266.703125 140.242188 L 266.535156 141.136719 L 264.972656 141.136719 C 265.277344 141.570312 265.433594 142.109375 265.433594 142.761719 C 265.433594 143.777344 265.128906 144.671875 264.535156 145.449219 C 263.9375 146.230469 263.125 146.617188 262.097656 146.617188 C 261.308594 146.617188 260.683594 146.386719 260.222656 145.929688 C 259.777344 145.460938 259.558594 144.84375 259.558594 144.09375 C 259.558594 142.984375 259.859375 142.046875 260.472656 141.28125 C 261.097656 140.507812 261.902344 140.117188 262.890625 140.117188 C 263.207031 140.117188 263.5 140.15625 263.765625 140.242188 Z M 260.621094 144.074219 C 260.621094 144.574219 260.75 144.984375 261.015625 145.304688 C 261.277344 145.625 261.640625 145.78125 262.097656 145.78125 C 262.808594 145.78125 263.359375 145.449219 263.765625 144.78125 C 264.167969 144.105469 264.371094 143.417969 264.371094 142.71875 C 264.371094 142.136719 264.234375 141.695312 263.972656 141.386719 C 263.722656 141.085938 263.375 140.929688 262.933594 140.929688 C 262.222656 140.929688 261.660156 141.25 261.246094 141.886719 C 260.828125 142.527344 260.621094 143.257812 260.621094 144.074219 Z M 260.621094 144.074219 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.945312 320 L 391.945312 301.821289 C 391.945312 298.522461 394.602539 295.847656 397.898438 295.821289 L 438.395508 295.522461 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.394531 295.493164 L 438.395508 295.522461 M 438.383789 294.022461 L 442.394531 295.493164 L 438.407227 297.022461 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.293945 287.477539 L 452.106445 258.441406 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.077148 254.442383 L 452.106445 258.441406 M 450.606445 258.450195 L 452.077148 254.442383 L 453.606445 258.429688 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 223.78125 106.214844 L 223.78125 97.632812 L 224.90625 97.632812 L 224.90625 106.214844 Z M 223.78125 106.214844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 226.78125 106.214844 L 226.78125 99.988281 L 227.738281 99.988281 L 227.738281 100.882812 C 228.179688 100.207031 228.84375 99.863281 229.71875 99.863281 C 230.09375 99.863281 230.429688 99.933594 230.738281 100.070312 C 231.054688 100.195312 231.289062 100.371094 231.445312 100.589844 C 231.597656 100.800781 231.707031 101.058594 231.78125 101.363281 C 231.820312 101.558594 231.84375 101.898438 231.84375 102.382812 L 231.84375 106.214844 L 230.78125 106.214844 L 230.78125 102.425781 C 230.78125 101.996094 230.738281 101.675781 230.65625 101.464844 C 230.570312 101.257812 230.425781 101.089844 230.21875 100.964844 C 230.007812 100.832031 229.765625 100.757812 229.488281 100.757812 C 229.039062 100.757812 228.65625 100.902344 228.320312 101.195312 C 228 101.476562 227.84375 102.019531 227.84375 102.820312 L 227.84375 106.214844 Z M 226.78125 106.214844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 233.449219 108.589844 L 233.449219 99.988281 L 234.410156 99.988281 L 234.410156 100.800781 C 234.628906 100.480469 234.878906 100.246094 235.160156 100.089844 C 235.449219 99.941406 235.804688 99.863281 236.222656 99.863281 C 236.746094 99.863281 237.210938 100.003906 237.617188 100.277344 C 238.019531 100.542969 238.324219 100.925781 238.535156 101.425781 C 238.742188 101.925781 238.847656 102.464844 238.847656 103.050781 C 238.847656 103.691406 238.726562 104.269531 238.492188 104.777344 C 238.269531 105.292969 237.941406 105.691406 237.511719 105.964844 C 237.082031 106.226562 236.621094 106.363281 236.136719 106.363281 C 235.789062 106.363281 235.476562 106.285156 235.199219 106.132812 C 234.917969 105.980469 234.691406 105.792969 234.511719 105.570312 L 234.511719 108.589844 Z M 234.410156 103.132812 C 234.410156 103.941406 234.566406 104.539062 234.886719 104.925781 C 235.222656 105.300781 235.617188 105.488281 236.074219 105.488281 C 236.535156 105.488281 236.929688 105.292969 237.261719 104.902344 C 237.605469 104.503906 237.785156 103.882812 237.785156 103.050781 C 237.785156 102.257812 237.617188 101.667969 237.285156 101.277344 C 236.960938 100.878906 236.574219 100.675781 236.117188 100.675781 C 235.667969 100.675781 235.273438 100.894531 234.929688 101.320312 C 234.582031 101.738281 234.410156 102.339844 234.410156 103.132812 Z M 234.410156 103.132812 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 244.203125 106.214844 L 244.203125 105.300781 C 243.714844 106.007812 243.058594 106.363281 242.222656 106.363281 C 241.859375 106.363281 241.519531 106.289062 241.203125 106.152344 C 240.878906 106.003906 240.640625 105.820312 240.472656 105.613281 C 240.316406 105.402344 240.214844 105.148438 240.160156 104.839844 C 240.121094 104.632812 240.097656 104.300781 240.097656 103.839844 L 240.097656 99.988281 L 241.140625 99.988281 L 241.140625 103.445312 C 241.140625 104.003906 241.167969 104.371094 241.222656 104.550781 C 241.277344 104.832031 241.410156 105.050781 241.621094 105.214844 C 241.839844 105.371094 242.109375 105.445312 242.433594 105.445312 C 242.75 105.445312 243.046875 105.371094 243.328125 105.214844 C 243.605469 105.050781 243.796875 104.832031 243.910156 104.550781 C 244.019531 104.273438 244.078125 103.863281 244.078125 103.320312 L 244.078125 99.988281 L 245.140625 99.988281 L 245.140625 106.214844 Z M 244.203125 106.214844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 249.101562 105.277344 L 249.246094 106.195312 C 248.941406 106.261719 248.675781 106.300781 248.457031 106.300781 C 248.066406 106.300781 247.769531 106.238281 247.558594 106.113281 C 247.351562 105.988281 247.195312 105.832031 247.101562 105.632812 C 247.019531 105.441406 246.976562 105.027344 246.976562 104.402344 L 246.976562 100.820312 L 246.207031 100.820312 L 246.207031 99.988281 L 246.976562 99.988281 L 246.976562 98.445312 L 248.039062 97.820312 L 248.039062 99.988281 L 249.101562 99.988281 L 249.101562 100.820312 L 248.039062 100.820312 L 248.039062 104.445312 C 248.039062 104.753906 248.050781 104.945312 248.082031 105.027344 C 248.121094 105.113281 248.183594 105.183594 248.269531 105.238281 C 248.351562 105.292969 248.464844 105.320312 248.621094 105.320312 C 248.746094 105.320312 248.902344 105.308594 249.101562 105.277344 Z M 249.101562 105.277344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 224.925781 120.460938 L 225.945312 120.609375 C 225.988281 120.925781 226.105469 121.15625 226.300781 121.296875 C 226.5625 121.488281 226.925781 121.585938 227.382812 121.585938 C 227.867188 121.585938 228.242188 121.488281 228.507812 121.296875 C 228.769531 121.097656 228.953125 120.828125 229.050781 120.484375 C 229.105469 120.257812 229.125 119.8125 229.113281 119.128906 C 228.65625 119.671875 228.082031 119.941406 227.40625 119.941406 C 226.539062 119.941406 225.875 119.640625 225.40625 119.023438 C 224.945312 118.398438 224.71875 117.660156 224.71875 116.796875 C 224.71875 116.203125 224.820312 115.648438 225.03125 115.148438 C 225.25 114.648438 225.5625 114.269531 225.96875 114.003906 C 226.367188 113.726562 226.847656 113.585938 227.40625 113.585938 C 228.140625 113.585938 228.742188 113.878906 229.21875 114.460938 L 229.21875 113.710938 L 230.195312 113.710938 L 230.195312 119.085938 C 230.195312 120.054688 230.09375 120.742188 229.882812 121.148438 C 229.6875 121.550781 229.375 121.867188 228.945312 122.109375 C 228.53125 122.34375 228.007812 122.460938 227.382812 122.460938 C 226.632812 122.460938 226.03125 122.296875 225.570312 121.960938 C 225.125 121.628906 224.910156 121.128906 224.925781 120.460938 Z M 225.800781 116.710938 C 225.800781 117.535156 225.957031 118.128906 226.28125 118.503906 C 226.597656 118.878906 227 119.066406 227.488281 119.066406 C 227.972656 119.066406 228.382812 118.878906 228.71875 118.503906 C 229.050781 118.128906 229.21875 117.546875 229.21875 116.753906 C 229.21875 115.992188 229.039062 115.414062 228.695312 115.023438 C 228.363281 114.640625 227.957031 114.441406 227.488281 114.441406 C 227.015625 114.441406 226.613281 114.640625 226.28125 115.023438 C 225.957031 115.398438 225.800781 115.960938 225.800781 116.710938 Z M 225.800781 116.710938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.851562 119.171875 C 235.460938 119.503906 235.085938 119.742188 234.726562 119.878906 C 234.359375 120.015625 233.976562 120.085938 233.558594 120.085938 C 232.875 120.085938 232.351562 119.921875 231.976562 119.585938 C 231.609375 119.253906 231.433594 118.828125 231.433594 118.296875 C 231.433594 117.992188 231.5 117.710938 231.640625 117.460938 C 231.777344 117.210938 231.960938 117.015625 232.183594 116.859375 C 232.402344 116.707031 232.652344 116.585938 232.933594 116.503906 C 233.140625 116.460938 233.453125 116.414062 233.871094 116.359375 C 234.730469 116.265625 235.359375 116.140625 235.765625 115.984375 C 235.765625 115.847656 235.765625 115.753906 235.765625 115.710938 C 235.765625 115.285156 235.667969 114.984375 235.476562 114.816406 C 235.195312 114.566406 234.792969 114.441406 234.265625 114.441406 C 233.765625 114.441406 233.398438 114.535156 233.164062 114.710938 C 232.921875 114.878906 232.75 115.1875 232.640625 115.628906 L 231.621094 115.503906 C 231.703125 115.0625 231.851562 114.707031 232.058594 114.441406 C 232.277344 114.164062 232.589844 113.957031 232.996094 113.816406 C 233.414062 113.664062 233.882812 113.585938 234.414062 113.585938 C 234.953125 113.585938 235.382812 113.648438 235.703125 113.773438 C 236.039062 113.898438 236.277344 114.0625 236.433594 114.253906 C 236.601562 114.4375 236.710938 114.671875 236.765625 114.960938 C 236.808594 115.144531 236.828125 115.460938 236.828125 115.921875 L 236.828125 117.335938 C 236.828125 118.3125 236.851562 118.929688 236.890625 119.191406 C 236.933594 119.457031 237.023438 119.707031 237.164062 119.941406 L 236.058594 119.941406 C 235.945312 119.722656 235.875 119.460938 235.851562 119.171875 Z M 235.765625 116.816406 C 235.375 116.972656 234.796875 117.101562 234.039062 117.210938 C 233.605469 117.285156 233.296875 117.359375 233.121094 117.441406 C 232.9375 117.515625 232.796875 117.625 232.703125 117.773438 C 232.605469 117.929688 232.558594 118.097656 232.558594 118.273438 C 232.558594 118.554688 232.664062 118.789062 232.871094 118.984375 C 233.078125 119.164062 233.390625 119.253906 233.808594 119.253906 C 234.210938 119.253906 234.570312 119.164062 234.890625 118.984375 C 235.210938 118.804688 235.445312 118.5625 235.601562 118.253906 C 235.710938 118.019531 235.765625 117.671875 235.765625 117.210938 Z M 235.765625 116.816406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 240.773438 119.003906 L 240.921875 119.921875 C 240.613281 119.988281 240.347656 120.023438 240.128906 120.023438 C 239.738281 120.023438 239.441406 119.960938 239.234375 119.835938 C 239.023438 119.710938 238.867188 119.554688 238.773438 119.359375 C 238.691406 119.164062 238.648438 118.753906 238.648438 118.128906 L 238.648438 114.546875 L 237.878906 114.546875 L 237.878906 113.710938 L 238.648438 113.710938 L 238.648438 112.171875 L 239.710938 111.546875 L 239.710938 113.710938 L 240.773438 113.710938 L 240.773438 114.546875 L 239.710938 114.546875 L 239.710938 118.171875 C 239.710938 118.476562 239.722656 118.671875 239.753906 118.753906 C 239.796875 118.835938 239.859375 118.910156 239.941406 118.960938 C 240.023438 119.019531 240.140625 119.046875 240.296875 119.046875 C 240.421875 119.046875 240.578125 119.035156 240.773438 119.003906 Z M 240.773438 119.003906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 246.050781 117.941406 L 247.15625 118.066406 C 246.972656 118.707031 246.644531 119.207031 246.175781 119.566406 C 245.71875 119.914062 245.125 120.085938 244.40625 120.085938 C 243.5 120.085938 242.78125 119.8125 242.238281 119.253906 C 241.707031 118.6875 241.445312 117.894531 241.445312 116.878906 C 241.445312 115.835938 241.71875 115.035156 242.257812 114.460938 C 242.800781 113.878906 243.5 113.585938 244.363281 113.585938 C 245.195312 113.585938 245.867188 113.875 246.382812 114.441406 C 246.910156 115 247.175781 115.789062 247.175781 116.816406 C 247.175781 116.890625 247.175781 116.984375 247.175781 117.109375 L 242.53125 117.109375 C 242.570312 117.789062 242.765625 118.3125 243.113281 118.671875 C 243.457031 119.035156 243.894531 119.210938 244.425781 119.210938 C 244.8125 119.210938 245.140625 119.117188 245.40625 118.921875 C 245.679688 118.710938 245.894531 118.390625 246.050781 117.941406 Z M 242.59375 116.234375 L 246.070312 116.234375 C 246.03125 115.707031 245.894531 115.3125 245.675781 115.046875 C 245.34375 114.644531 244.90625 114.441406 244.363281 114.441406 C 243.875 114.441406 243.46875 114.609375 243.132812 114.941406 C 242.8125 115.265625 242.632812 115.691406 242.59375 116.234375 Z M 242.59375 116.234375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 236.992188 135 L 236.992188 134.710938 C 236.074219 134.648438 235.84375 134.5 235.84375 133.730469 L 235.84375 128.085938 C 235.84375 127.417969 236.09375 127.230469 236.992188 127.1875 L 236.992188 126.898438 L 232.804688 126.898438 L 232.804688 127.1875 C 233.65625 127.25 233.90625 127.417969 233.90625 128.085938 L 233.90625 133.730469 C 233.90625 134.480469 233.699219 134.625 232.804688 134.710938 L 232.804688 135 Z M 236.992188 135 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 239.597656 135.585938 L 238.949219 135.585938 L 239.179688 134.75 C 239.179688 134.730469 239.179688 134.6875 239.179688 134.6875 C 239.179688 134.648438 239.160156 134.625 239.117188 134.625 C 239.074219 134.625 239.035156 134.648438 238.992188 134.710938 C 238.699219 135.148438 238.179688 135.523438 237.929688 135.585938 C 237.742188 135.625 237.679688 135.6875 237.679688 135.792969 C 237.679688 135.792969 237.679688 135.8125 237.679688 135.835938 L 238.285156 135.835938 L 237.660156 138.210938 C 237.597656 138.460938 237.535156 138.710938 237.535156 138.792969 C 237.535156 139 237.679688 139.085938 237.886719 139.085938 C 238.304688 139.085938 238.554688 138.855469 239.035156 138.125 L 238.929688 138.0625 C 238.535156 138.5625 238.410156 138.6875 238.285156 138.6875 C 238.222656 138.6875 238.160156 138.667969 238.160156 138.5625 C 238.160156 138.542969 238.179688 138.480469 238.179688 138.460938 L 238.867188 135.835938 L 239.554688 135.835938 Z M 239.597656 135.585938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 142.40625 106.546875 L 142.367188 97.964844 L 148.15625 97.921875 L 148.15625 98.921875 L 143.511719 98.941406 L 143.53125 101.609375 L 147.554688 101.589844 L 147.554688 102.609375 L 143.53125 102.628906 L 143.554688 106.527344 Z M 142.40625 106.546875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 149.132812 103.398438 C 149.132812 102.25 149.445312 101.394531 150.070312 100.835938 C 150.613281 100.367188 151.261719 100.128906 152.027344 100.128906 C 152.886719 100.128906 153.589844 100.410156 154.132812 100.960938 C 154.683594 101.503906 154.964844 102.269531 154.964844 103.253906 C 154.964844 104.0625 154.847656 104.691406 154.613281 105.148438 C 154.371094 105.609375 154.027344 105.972656 153.570312 106.234375 C 153.113281 106.5 152.613281 106.628906 152.070312 106.628906 C 151.195312 106.628906 150.488281 106.351562 149.945312 105.796875 C 149.414062 105.242188 149.144531 104.441406 149.132812 103.398438 Z M 150.214844 103.398438 C 150.214844 104.191406 150.386719 104.785156 150.738281 105.171875 C 151.097656 105.5625 151.539062 105.753906 152.070312 105.753906 C 152.597656 105.753906 153.027344 105.5625 153.363281 105.171875 C 153.707031 104.769531 153.882812 104.160156 153.882812 103.335938 C 153.882812 102.578125 153.699219 101.992188 153.339844 101.585938 C 152.992188 101.1875 152.554688 100.984375 152.027344 100.984375 C 151.496094 100.984375 151.058594 101.1875 150.714844 101.585938 C 150.382812 101.992188 150.214844 102.597656 150.214844 103.398438 Z M 150.214844 103.398438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 156.203125 106.464844 L 156.160156 100.234375 L 157.121094 100.234375 L 157.140625 101.195312 C 157.359375 100.734375 157.578125 100.4375 157.785156 100.296875 C 157.996094 100.164062 158.222656 100.089844 158.472656 100.089844 C 158.816406 100.089844 159.183594 100.203125 159.558594 100.421875 L 159.203125 101.402344 C 158.953125 101.25 158.691406 101.171875 158.433594 101.171875 C 158.207031 101.171875 158 101.246094 157.808594 101.382812 C 157.625 101.523438 157.496094 101.714844 157.410156 101.964844 C 157.296875 102.339844 157.246094 102.75 157.246094 103.195312 L 157.265625 106.445312 Z M 156.203125 106.464844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 160.03125 106.960938 L 161.050781 107.109375 C 161.09375 107.425781 161.207031 107.648438 161.40625 107.773438 C 161.667969 107.96875 162.03125 108.066406 162.488281 108.066406 C 162.972656 108.066406 163.347656 107.96875 163.613281 107.773438 C 163.875 107.578125 164.058594 107.304688 164.15625 106.960938 C 164.207031 106.738281 164.230469 106.289062 164.21875 105.609375 C 163.761719 106.148438 163.1875 106.421875 162.511719 106.421875 C 161.644531 106.421875 160.980469 106.117188 160.511719 105.503906 C 160.035156 104.894531 159.800781 104.160156 159.800781 103.296875 C 159.800781 102.703125 159.90625 102.148438 160.113281 101.648438 C 160.324219 101.148438 160.625 100.765625 161.03125 100.484375 C 161.433594 100.207031 161.910156 100.066406 162.46875 100.066406 C 163.203125 100.066406 163.808594 100.359375 164.28125 100.941406 L 164.28125 100.191406 L 165.261719 100.171875 L 165.300781 105.546875 C 165.300781 106.515625 165.203125 107.203125 165.011719 107.609375 C 164.8125 108.023438 164.5 108.347656 164.074219 108.585938 C 163.65625 108.820312 163.136719 108.941406 162.511719 108.941406 C 161.761719 108.941406 161.15625 108.773438 160.699219 108.441406 C 160.238281 108.117188 160.015625 107.628906 160.03125 106.960938 Z M 160.886719 103.210938 C 160.886719 104.035156 161.042969 104.628906 161.363281 105.003906 C 161.699219 105.367188 162.105469 105.546875 162.59375 105.546875 C 163.078125 105.546875 163.480469 105.359375 163.800781 104.984375 C 164.136719 104.609375 164.300781 104.023438 164.300781 103.234375 C 164.300781 102.472656 164.125 101.894531 163.78125 101.503906 C 163.433594 101.117188 163.019531 100.921875 162.550781 100.921875 C 162.078125 100.921875 161.683594 101.117188 161.363281 101.503906 C 161.042969 101.894531 160.886719 102.460938 160.886719 103.210938 Z M 160.886719 103.210938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 171.121094 104.382812 L 172.226562 104.484375 C 172.058594 105.125 171.738281 105.625 171.269531 105.984375 C 170.808594 106.351562 170.214844 106.527344 169.496094 106.527344 C 168.589844 106.527344 167.871094 106.25 167.332031 105.695312 C 166.800781 105.140625 166.527344 104.355469 166.519531 103.339844 C 166.519531 102.296875 166.777344 101.484375 167.308594 100.902344 C 167.851562 100.320312 168.550781 100.027344 169.414062 100.027344 C 170.246094 100.027344 170.925781 100.308594 171.457031 100.859375 C 171.980469 101.417969 172.246094 102.210938 172.246094 103.234375 C 172.246094 103.308594 172.246094 103.402344 172.246094 103.527344 L 167.601562 103.570312 C 167.644531 104.25 167.835938 104.773438 168.183594 105.132812 C 168.542969 105.480469 168.988281 105.652344 169.519531 105.652344 C 169.902344 105.652344 170.230469 105.558594 170.496094 105.359375 C 170.773438 105.152344 170.980469 104.828125 171.121094 104.382812 Z M 167.664062 102.695312 L 171.144531 102.671875 C 171.101562 102.148438 170.964844 101.75 170.746094 101.484375 C 170.398438 101.085938 169.957031 100.882812 169.414062 100.882812 C 168.925781 100.882812 168.523438 101.046875 168.207031 101.382812 C 167.882812 101.714844 167.707031 102.152344 167.664062 102.695312 Z M 167.664062 102.695312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 175.878906 105.40625 L 176.027344 106.320312 C 175.71875 106.390625 175.453125 106.425781 175.234375 106.425781 C 174.84375 106.425781 174.546875 106.367188 174.339844 106.257812 C 174.128906 106.132812 173.972656 105.976562 173.878906 105.78125 C 173.796875 105.585938 173.746094 105.175781 173.734375 104.550781 L 173.714844 100.96875 L 172.941406 100.96875 L 172.941406 100.132812 L 173.714844 100.132812 L 173.714844 98.59375 L 174.777344 97.945312 L 174.777344 100.113281 L 175.839844 100.113281 L 175.839844 100.945312 L 174.777344 100.945312 L 174.816406 104.570312 C 174.816406 104.878906 174.828125 105.070312 174.859375 105.15625 C 174.902344 105.238281 174.964844 105.3125 175.046875 105.363281 C 175.128906 105.421875 175.246094 105.445312 175.402344 105.445312 C 175.527344 105.445312 175.683594 105.4375 175.878906 105.40625 Z M 175.878906 105.40625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 147.777344 120.761719 L 148.796875 120.90625 C 148.839844 121.222656 148.953125 121.449219 149.152344 121.574219 C 149.410156 121.765625 149.777344 121.863281 150.234375 121.863281 C 150.71875 121.863281 151.09375 121.765625 151.359375 121.574219 C 151.621094 121.375 151.800781 121.105469 151.902344 120.761719 C 151.953125 120.535156 151.972656 120.089844 151.964844 119.40625 C 151.503906 119.949219 150.933594 120.21875 150.253906 120.21875 C 149.390625 120.21875 148.722656 119.917969 148.253906 119.300781 C 147.78125 118.691406 147.546875 117.957031 147.546875 117.09375 C 147.546875 116.5 147.652344 115.949219 147.859375 115.449219 C 148.066406 114.949219 148.371094 114.5625 148.777344 114.28125 C 149.175781 114.003906 149.65625 113.863281 150.214844 113.863281 C 150.949219 113.863281 151.550781 114.15625 152.027344 114.738281 L 152.027344 113.988281 L 153.003906 113.96875 L 153.046875 119.34375 C 153.046875 120.3125 152.949219 121 152.753906 121.40625 C 152.558594 121.824219 152.246094 122.144531 151.816406 122.386719 C 151.402344 122.621094 150.878906 122.738281 150.253906 122.738281 C 149.503906 122.738281 148.902344 122.574219 148.441406 122.238281 C 147.984375 121.917969 147.761719 121.425781 147.777344 120.761719 Z M 148.628906 117.011719 C 148.628906 117.832031 148.785156 118.425781 149.109375 118.800781 C 149.441406 119.167969 149.847656 119.34375 150.339844 119.34375 C 150.824219 119.34375 151.222656 119.15625 151.546875 118.78125 C 151.878906 118.40625 152.046875 117.824219 152.046875 117.03125 C 152.046875 116.269531 151.871094 115.691406 151.527344 115.300781 C 151.175781 114.917969 150.765625 114.71875 150.296875 114.71875 C 149.824219 114.71875 149.425781 114.917969 149.109375 115.300781 C 148.785156 115.691406 148.628906 116.261719 148.628906 117.011719 Z M 148.628906 117.011719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 158.699219 119.410156 C 158.308594 119.742188 157.933594 119.980469 157.574219 120.117188 C 157.210938 120.253906 156.824219 120.324219 156.40625 120.324219 C 155.726562 120.335938 155.199219 120.179688 154.824219 119.847656 C 154.460938 119.511719 154.28125 119.085938 154.28125 118.554688 C 154.265625 118.253906 154.328125 117.972656 154.46875 117.722656 C 154.605469 117.472656 154.789062 117.273438 155.011719 117.117188 C 155.230469 116.964844 155.480469 116.839844 155.761719 116.742188 C 155.96875 116.699219 156.28125 116.652344 156.699219 116.597656 C 157.558594 116.503906 158.1875 116.378906 158.59375 116.222656 C 158.59375 116.085938 158.59375 115.992188 158.59375 115.949219 C 158.59375 115.523438 158.496094 115.222656 158.304688 115.054688 C 158.011719 114.804688 157.601562 114.679688 157.074219 114.679688 C 156.574219 114.679688 156.203125 114.773438 155.96875 114.949219 C 155.746094 115.117188 155.578125 115.429688 155.46875 115.886719 L 154.449219 115.761719 C 154.53125 115.320312 154.679688 114.964844 154.886719 114.699219 C 155.09375 114.425781 155.398438 114.210938 155.804688 114.054688 C 156.21875 113.902344 156.6875 113.824219 157.21875 113.824219 C 157.761719 113.824219 158.1875 113.886719 158.511719 114.011719 C 158.84375 114.136719 159.085938 114.292969 159.242188 114.472656 C 159.40625 114.652344 159.523438 114.886719 159.59375 115.179688 C 159.636719 115.363281 159.65625 115.679688 159.65625 116.136719 L 159.65625 117.554688 C 159.667969 118.527344 159.699219 119.148438 159.742188 119.410156 C 159.78125 119.675781 159.871094 119.925781 160.011719 120.160156 L 158.90625 120.179688 C 158.792969 119.960938 158.726562 119.699219 158.699219 119.410156 Z M 158.59375 117.054688 C 158.203125 117.210938 157.625 117.339844 156.867188 117.449219 C 156.433594 117.523438 156.125 117.597656 155.949219 117.679688 C 155.765625 117.753906 155.625 117.867188 155.53125 118.035156 C 155.433594 118.191406 155.390625 118.355469 155.40625 118.535156 C 155.40625 118.816406 155.511719 119.042969 155.71875 119.222656 C 155.929688 119.402344 156.242188 119.492188 156.65625 119.492188 C 157.058594 119.492188 157.417969 119.402344 157.742188 119.222656 C 158.058594 119.042969 158.292969 118.800781 158.449219 118.492188 C 158.542969 118.257812 158.59375 117.910156 158.59375 117.449219 Z M 158.59375 117.054688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.625 119.203125 L 163.769531 120.121094 C 163.460938 120.1875 163.195312 120.222656 162.976562 120.222656 C 162.585938 120.222656 162.289062 120.167969 162.082031 120.058594 C 161.875 119.933594 161.71875 119.777344 161.625 119.578125 C 161.539062 119.386719 161.488281 118.972656 161.476562 118.347656 L 161.457031 114.765625 L 160.6875 114.765625 L 160.6875 113.933594 L 161.457031 113.933594 L 161.457031 112.390625 L 162.519531 111.746094 L 162.519531 113.910156 L 163.582031 113.910156 L 163.582031 114.746094 L 162.519531 114.746094 L 162.5625 118.371094 C 162.5625 118.675781 162.570312 118.871094 162.601562 118.953125 C 162.644531 119.035156 162.707031 119.109375 162.789062 119.160156 C 162.875 119.21875 162.988281 119.246094 163.144531 119.246094 C 163.269531 119.246094 163.425781 119.234375 163.625 119.203125 Z M 163.625 119.203125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 168.878906 118.121094 L 169.984375 118.226562 C 169.816406 118.867188 169.492188 119.367188 169.023438 119.726562 C 168.566406 120.089844 167.972656 120.265625 167.253906 120.265625 C 166.347656 120.265625 165.628906 119.992188 165.085938 119.433594 C 164.554688 118.882812 164.285156 118.09375 164.273438 117.078125 C 164.273438 116.039062 164.535156 115.226562 165.066406 114.640625 C 165.609375 114.058594 166.304688 113.765625 167.171875 113.765625 C 168.003906 113.765625 168.679688 114.046875 169.210938 114.601562 C 169.738281 115.15625 170.003906 115.949219 170.003906 116.976562 C 170.003906 117.046875 170.003906 117.140625 170.003906 117.265625 L 165.359375 117.308594 C 165.398438 117.992188 165.59375 118.511719 165.941406 118.871094 C 166.300781 119.21875 166.742188 119.390625 167.273438 119.390625 C 167.660156 119.390625 167.988281 119.296875 168.253906 119.101562 C 168.53125 118.890625 168.738281 118.570312 168.878906 118.121094 Z M 165.421875 116.433594 L 168.898438 116.414062 C 168.859375 115.886719 168.722656 115.492188 168.503906 115.226562 C 168.15625 114.824219 167.710938 114.621094 167.171875 114.621094 C 166.679688 114.621094 166.28125 114.789062 165.960938 115.121094 C 165.640625 115.453125 165.460938 115.890625 165.421875 116.433594 Z M 165.421875 116.433594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 161.117188 129.527344 L 161.117188 127.113281 L 154.304688 127.152344 L 154.304688 127.445312 C 155.136719 127.488281 155.367188 127.652344 155.367188 128.363281 L 155.410156 134.027344 C 155.410156 134.695312 155.242188 134.863281 154.347656 134.964844 L 154.347656 135.257812 L 158.679688 135.238281 L 158.679688 134.945312 C 157.574219 134.882812 157.347656 134.714844 157.347656 134.027344 L 157.324219 131.277344 C 158.554688 131.320312 159.054688 131.738281 159.160156 133.152344 L 159.472656 133.152344 L 159.449219 129.089844 L 159.136719 129.089844 C 158.992188 130.445312 158.535156 130.882812 157.324219 130.882812 L 157.304688 128.152344 C 157.304688 127.695312 157.535156 127.527344 158.160156 127.527344 C 159.199219 127.527344 159.742188 127.652344 160.097656 127.988281 C 160.535156 128.339844 160.660156 128.613281 160.824219 129.527344 Z M 161.117188 129.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.867188 135.777344 L 163.222656 135.796875 L 163.453125 134.945312 C 163.453125 134.921875 163.453125 134.882812 163.453125 134.882812 C 163.453125 134.839844 163.429688 134.820312 163.390625 134.820312 C 163.347656 134.820312 163.304688 134.839844 163.265625 134.921875 C 162.972656 135.359375 162.453125 135.734375 162.203125 135.796875 C 162.015625 135.839844 161.953125 135.902344 161.953125 136.007812 C 161.953125 136.007812 161.953125 136.027344 161.953125 136.046875 L 162.554688 136.046875 L 161.953125 138.421875 C 161.890625 138.671875 161.828125 138.921875 161.828125 139.007812 C 161.828125 139.214844 161.972656 139.296875 162.179688 139.296875 C 162.597656 139.296875 162.847656 139.070312 163.328125 138.320312 L 163.222656 138.277344 C 162.828125 138.777344 162.703125 138.902344 162.578125 138.902344 C 162.515625 138.902344 162.453125 138.882812 162.453125 138.777344 C 162.453125 138.757812 162.472656 138.695312 162.472656 138.671875 L 163.140625 136.046875 L 163.828125 136.027344 Z M 163.867188 135.777344 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.887695 351.637695 L 385.97168 351.97168 C 389.285156 351.989258 391.983398 349.311523 392.000977 346.000977 C 392.000977 345.992188 392.000977 345.980469 392.000977 345.97168 L 392.000977 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.000977 337.897461 L 392.000977 341.899414 M 390.500977 341.899414 L 392.000977 337.897461 L 393.500977 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.035156 376.499023 L 312.008789 357.866211 C 312.00293 354.605469 314.604492 351.936523 317.868164 351.860352 L 325.40625 351.68457 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;" d="M 324.371094 153.332031 L 361.703125 153.332031 L 361.703125 132 L 324.371094 132 Z M 324.371094 153.332031 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.27832 320 L 466.277344 320 L 466.277344 335.999023 L 438.27832 335.999023 Z M 438.27832 320 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 334.464844 145.53125 L 334.609375 146.449219 C 334.300781 146.515625 334.035156 146.554688 333.816406 146.554688 C 333.425781 146.554688 333.128906 146.492188 332.921875 146.367188 C 332.714844 146.242188 332.558594 146.085938 332.464844 145.886719 C 332.378906 145.695312 332.339844 145.28125 332.339844 144.65625 L 332.339844 141.074219 L 331.566406 141.074219 L 331.566406 140.242188 L 332.339844 140.242188 L 332.339844 138.699219 L 333.402344 138.074219 L 333.402344 140.242188 L 334.464844 140.242188 L 334.464844 141.074219 L 333.402344 141.074219 L 333.402344 144.699219 C 333.402344 145.007812 333.410156 145.199219 333.441406 145.28125 C 333.484375 145.367188 333.546875 145.4375 333.628906 145.492188 C 333.714844 145.546875 333.828125 145.574219 333.984375 145.574219 C 334.109375 145.574219 334.265625 145.5625 334.464844 145.53125 Z M 334.464844 145.53125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 339.546875 145.699219 C 339.15625 146.03125 338.78125 146.273438 338.421875 146.40625 C 338.058594 146.542969 337.671875 146.617188 337.253906 146.617188 C 336.574219 146.617188 336.046875 146.449219 335.671875 146.117188 C 335.308594 145.78125 335.128906 145.355469 335.128906 144.824219 C 335.128906 144.523438 335.199219 144.242188 335.339844 143.992188 C 335.472656 143.742188 335.65625 143.542969 335.878906 143.386719 C 336.097656 143.234375 336.347656 143.117188 336.628906 143.03125 C 336.839844 142.992188 337.152344 142.945312 337.566406 142.886719 C 338.425781 142.792969 339.058594 142.667969 339.464844 142.511719 C 339.464844 142.375 339.464844 142.28125 339.464844 142.242188 C 339.464844 141.8125 339.363281 141.511719 339.171875 141.34375 C 338.890625 141.09375 338.488281 140.96875 337.964844 140.96875 C 337.464844 140.96875 337.09375 141.0625 336.859375 141.242188 C 336.621094 141.40625 336.449219 141.714844 336.339844 142.15625 L 335.316406 142.03125 C 335.402344 141.589844 335.546875 141.234375 335.753906 140.96875 C 335.972656 140.695312 336.285156 140.484375 336.691406 140.34375 C 337.109375 140.195312 337.578125 140.117188 338.109375 140.117188 C 338.652344 140.117188 339.078125 140.179688 339.402344 140.304688 C 339.734375 140.429688 339.972656 140.589844 340.128906 140.78125 C 340.296875 140.964844 340.40625 141.199219 340.464844 141.492188 C 340.503906 141.671875 340.527344 141.992188 340.527344 142.449219 L 340.527344 143.867188 C 340.527344 144.839844 340.546875 145.460938 340.589844 145.71875 C 340.628906 145.984375 340.71875 146.234375 340.859375 146.46875 L 339.753906 146.46875 C 339.640625 146.25 339.574219 145.992188 339.546875 145.699219 Z M 339.464844 143.34375 C 339.074219 143.5 338.496094 143.632812 337.734375 143.742188 C 337.300781 143.8125 336.996094 143.886719 336.816406 143.96875 C 336.636719 144.042969 336.496094 144.152344 336.402344 144.304688 C 336.300781 144.460938 336.253906 144.625 336.253906 144.804688 C 336.253906 145.085938 336.359375 145.320312 336.566406 145.511719 C 336.777344 145.695312 337.089844 145.78125 337.503906 145.78125 C 337.90625 145.78125 338.265625 145.695312 338.589844 145.511719 C 338.90625 145.335938 339.140625 145.089844 339.296875 144.78125 C 339.40625 144.546875 339.464844 144.199219 339.464844 143.742188 Z M 339.464844 143.34375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 342.15625 146.46875 L 342.15625 140.242188 L 343.113281 140.242188 L 343.113281 141.136719 C 343.554688 140.460938 344.21875 140.117188 345.09375 140.117188 C 345.46875 140.117188 345.804688 140.1875 346.113281 140.324219 C 346.429688 140.449219 346.664062 140.625 346.820312 140.84375 C 346.972656 141.054688 347.082031 141.3125 347.15625 141.617188 C 347.195312 141.8125 347.21875 142.152344 347.21875 142.636719 L 347.21875 146.46875 L 346.15625 146.46875 L 346.15625 142.679688 C 346.15625 142.25 346.113281 141.929688 346.03125 141.71875 C 345.945312 141.511719 345.800781 141.34375 345.59375 141.21875 C 345.382812 141.085938 345.140625 141.011719 344.863281 141.011719 C 344.414062 141.011719 344.03125 141.15625 343.695312 141.449219 C 343.375 141.730469 343.21875 142.273438 343.21875 143.074219 L 343.21875 146.46875 Z M 342.15625 146.46875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 348.824219 146.46875 L 348.824219 137.886719 L 349.886719 137.886719 L 349.886719 140.96875 C 350.371094 140.402344 350.992188 140.117188 351.742188 140.117188 C 352.199219 140.117188 352.59375 140.210938 352.929688 140.386719 C 353.273438 140.570312 353.515625 140.820312 353.65625 141.136719 C 353.808594 141.460938 353.886719 141.921875 353.886719 142.53125 L 353.886719 146.46875 L 352.84375 146.46875 L 352.84375 142.53125 C 352.84375 142.007812 352.726562 141.625 352.492188 141.386719 C 352.265625 141.136719 351.949219 141.011719 351.53125 141.011719 C 351.210938 141.011719 350.914062 141.09375 350.636719 141.261719 C 350.355469 141.417969 350.164062 141.632812 350.054688 141.90625 C 349.9375 142.1875 349.886719 142.574219 349.886719 143.074219 L 349.886719 146.46875 Z M 348.824219 146.46875 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457.722656 238.882812 C 460.848633 242.008789 460.848633 247.074219 457.722656 250.194336 C 454.59668 253.320312 449.53125 253.320312 446.411133 250.194336 C 443.285156 247.074219 443.285156 242.008789 446.411133 238.882812 C 449.53125 235.756836 454.59668 235.756836 457.722656 238.882812 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 342.25 33.792969 L 342.25 31.441406 L 339.917969 31.441406 L 339.917969 30.460938 L 342.25 30.460938 L 342.25 28.128906 L 343.25 28.128906 L 343.25 30.460938 L 345.582031 30.460938 L 345.582031 31.441406 L 343.25 31.441406 L 343.25 33.792969 Z M 342.25 33.792969 "/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457.948242 289.821289 C 461.074219 292.944336 461.074219 298.012695 457.948242 301.135742 C 454.825195 304.258789 449.762695 304.258789 446.636719 301.135742 C 443.510742 298.012695 443.510742 292.944336 446.636719 289.821289 C 449.762695 286.698242 454.825195 286.698242 457.948242 289.821289 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.282227 320 L 452.288086 309.379883 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.293945 305.37793 L 452.288086 309.379883 M 450.788086 309.379883 L 452.293945 305.37793 L 453.788086 309.379883 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.210938 351.863281 L 446.109375 351.992188 C 449.405273 351.995117 452.088867 349.34082 452.118164 346.041992 L 452.15625 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.191406 337.897461 L 452.15625 341.899414 M 450.65625 341.887695 L 452.191406 337.897461 L 453.65625 341.914062 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 135.785156 218.769531 L 135.785156 227.332031 L 136.761719 227.332031 L 136.761719 218.769531 Z M 135.785156 218.769531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 141.335938 220.957031 C 140.941406 220.957031 140.566406 221.0625 140.230469 221.25 C 139.878906 221.4375 139.605469 221.6875 139.398438 222.042969 L 139.398438 221.125 L 138.441406 221.125 L 138.441406 227.332031 L 139.398438 227.332031 L 139.398438 223.582031 C 139.441406 223.019531 139.605469 222.582031 139.941406 222.25 C 140.253906 221.9375 140.628906 221.769531 141.066406 221.769531 C 142.148438 221.769531 142.691406 222.375 142.691406 223.582031 L 142.691406 227.332031 L 143.648438 227.332031 L 143.648438 223.519531 C 143.648438 221.8125 142.878906 220.957031 141.335938 220.957031 Z M 141.335938 220.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 148.105469 220.957031 C 147.167969 220.957031 146.480469 221.355469 146.042969 222.144531 L 146.042969 221.125 L 145.148438 221.125 L 145.148438 229.707031 L 146.105469 229.707031 L 146.105469 226.207031 C 146.585938 227.0625 147.273438 227.5 148.148438 227.5 C 149.042969 227.5 149.730469 227.167969 150.230469 226.519531 C 150.691406 225.917969 150.917969 225.167969 150.917969 224.25 C 150.917969 223.3125 150.691406 222.5625 150.210938 221.957031 C 149.710938 221.292969 149.003906 220.957031 148.105469 220.957031 Z M 147.980469 221.75 C 148.648438 221.75 149.148438 222 149.503906 222.5 C 149.792969 222.9375 149.941406 223.519531 149.941406 224.25 C 149.941406 225 149.792969 225.582031 149.480469 226.019531 C 149.128906 226.480469 148.628906 226.707031 147.941406 226.707031 C 147.378906 226.707031 146.941406 226.480469 146.585938 226.042969 C 146.230469 225.605469 146.066406 225.019531 146.066406 224.3125 L 146.066406 224.1875 C 146.066406 223.5 146.230469 222.917969 146.542969 222.480469 C 146.878906 222 147.355469 221.75 147.980469 221.75 Z M 147.980469 221.75 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.179688 221.125 L 152.179688 224.980469 C 152.179688 226.644531 152.910156 227.5 154.429688 227.5 C 155.261719 227.5 155.949219 227.125 156.449219 226.375 L 156.449219 227.332031 L 157.410156 227.332031 L 157.410156 221.125 L 156.449219 221.125 L 156.449219 224.917969 C 156.367188 225.4375 156.179688 225.875 155.824219 226.207031 C 155.511719 226.519531 155.136719 226.6875 154.722656 226.6875 C 154.160156 226.6875 153.761719 226.519531 153.511719 226.25 C 153.261719 225.957031 153.136719 225.5 153.136719 224.917969 L 153.136719 221.125 Z M 152.179688 221.125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 160.546875 219.125 L 159.609375 219.519531 L 159.609375 221.125 L 158.359375 221.125 L 158.359375 221.9375 L 159.609375 221.9375 L 159.609375 225.875 C 159.609375 226.355469 159.691406 226.6875 159.898438 226.9375 C 160.109375 227.207031 160.484375 227.332031 161.003906 227.332031 L 161.921875 227.332031 L 161.921875 226.519531 L 161.128906 226.519531 C 160.921875 226.519531 160.773438 226.480469 160.691406 226.375 C 160.585938 226.269531 160.546875 226.105469 160.546875 225.875 L 160.546875 221.9375 L 162.085938 221.9375 L 162.085938 221.125 L 160.546875 221.125 Z M 160.546875 219.125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 174.800781 227.332031 L 174.800781 227.042969 C 174.386719 227.019531 174.199219 226.875 173.636719 226 L 171.449219 222.605469 L 172.40625 221.269531 C 173.449219 219.8125 173.761719 219.605469 174.65625 219.519531 L 174.65625 219.230469 L 171.65625 219.230469 L 171.65625 219.519531 L 171.90625 219.542969 C 172.363281 219.582031 172.53125 219.6875 172.53125 219.957031 C 172.53125 220.230469 172.386719 220.457031 171.824219 221.230469 L 171.15625 222.167969 L 169.988281 220.355469 C 169.84375 220.125 169.824219 220.0625 169.824219 219.917969 C 169.824219 219.667969 169.949219 219.5625 170.386719 219.542969 L 170.761719 219.519531 L 170.761719 219.230469 L 166.613281 219.230469 L 166.613281 219.519531 C 167.050781 219.5625 167.199219 219.6875 167.574219 220.207031 L 169.949219 223.707031 L 167.84375 226.355469 C 167.488281 226.8125 167.199219 226.957031 166.59375 227.042969 L 166.59375 227.332031 L 169.59375 227.332031 L 169.59375 227.042969 C 168.863281 226.957031 168.636719 226.832031 168.636719 226.519531 C 168.636719 226.269531 168.863281 225.894531 169.761719 224.6875 L 170.21875 224.082031 L 171.425781 226.019531 C 171.574219 226.25 171.675781 226.519531 171.675781 226.667969 C 171.675781 226.875 171.46875 226.980469 171.050781 227 L 170.71875 227.042969 L 170.71875 227.332031 Z M 174.800781 227.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 177.445312 227.917969 L 176.800781 227.917969 L 177.027344 227.082031 C 177.027344 227.0625 177.027344 227.019531 177.027344 227.019531 C 177.027344 226.980469 177.007812 226.957031 176.964844 226.957031 C 176.925781 226.957031 176.882812 226.980469 176.839844 227.042969 C 176.550781 227.480469 176.027344 227.855469 175.777344 227.917969 C 175.589844 227.957031 175.527344 228.019531 175.527344 228.125 C 175.527344 228.125 175.527344 228.144531 175.527344 228.167969 L 176.132812 228.167969 L 175.507812 230.542969 C 175.445312 230.792969 175.382812 231.042969 175.382812 231.125 C 175.382812 231.332031 175.527344 231.417969 175.738281 231.417969 C 176.152344 231.417969 176.402344 231.1875 176.882812 230.457031 L 176.777344 230.394531 C 176.382812 230.894531 176.257812 231.019531 176.132812 231.019531 C 176.070312 231.019531 176.007812 231 176.007812 230.894531 C 176.007812 230.875 176.027344 230.8125 176.027344 230.792969 L 176.714844 228.167969 L 177.402344 228.167969 Z M 177.445312 227.917969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 43.9375 166.710938 L 43.9375 158.128906 L 45.082031 158.128906 L 45.082031 161.648438 L 49.539062 161.648438 L 49.539062 158.128906 L 50.6875 158.128906 L 50.6875 166.710938 L 49.539062 166.710938 L 49.539062 162.667969 L 45.082031 162.667969 L 45.082031 166.710938 Z M 43.9375 166.710938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 52.4375 159.335938 L 52.4375 158.128906 L 53.5 158.128906 L 53.5 159.335938 Z M 52.4375 166.710938 L 52.4375 160.480469 L 53.5 160.480469 L 53.5 166.710938 Z M 52.4375 166.710938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 59.144531 166.710938 L 59.144531 165.917969 C 58.738281 166.542969 58.15625 166.855469 57.394531 166.855469 C 56.90625 166.855469 56.457031 166.714844 56.039062 166.441406 C 55.625 166.164062 55.296875 165.785156 55.0625 165.292969 C 54.835938 164.808594 54.726562 164.246094 54.726562 163.605469 C 54.726562 162.980469 54.832031 162.417969 55.039062 161.917969 C 55.25 161.410156 55.550781 161.019531 55.957031 160.753906 C 56.375 160.492188 56.835938 160.355469 57.351562 160.355469 C 57.726562 160.355469 58.0625 160.433594 58.351562 160.585938 C 58.644531 160.742188 58.878906 160.949219 59.0625 161.210938 L 59.0625 158.128906 L 60.125 158.128906 L 60.125 166.710938 Z M 55.8125 163.605469 C 55.8125 164.398438 55.976562 164.996094 56.3125 165.398438 C 56.644531 165.789062 57.039062 165.980469 57.5 165.980469 C 57.957031 165.980469 58.34375 165.792969 58.664062 165.417969 C 59 165.042969 59.164062 164.472656 59.164062 163.691406 C 59.164062 162.847656 59 162.222656 58.664062 161.816406 C 58.332031 161.414062 57.925781 161.210938 57.457031 161.210938 C 56.984375 161.210938 56.585938 161.410156 56.269531 161.792969 C 55.960938 162.183594 55.8125 162.789062 55.8125 163.605469 Z M 55.8125 163.605469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.820312 166.710938 L 65.820312 165.917969 C 65.414062 166.542969 64.828125 166.855469 64.070312 166.855469 C 63.578125 166.855469 63.132812 166.714844 62.714844 166.441406 C 62.296875 166.164062 61.96875 165.785156 61.734375 165.292969 C 61.511719 164.808594 61.402344 164.246094 61.402344 163.605469 C 61.402344 162.980469 61.507812 162.417969 61.714844 161.917969 C 61.921875 161.410156 62.226562 161.019531 62.632812 160.753906 C 63.046875 160.492188 63.511719 160.355469 64.027344 160.355469 C 64.402344 160.355469 64.734375 160.433594 65.027344 160.585938 C 65.320312 160.742188 65.554688 160.949219 65.734375 161.210938 L 65.734375 158.128906 L 66.796875 158.128906 L 66.796875 166.710938 Z M 62.484375 163.605469 C 62.484375 164.398438 62.652344 164.996094 62.984375 165.398438 C 63.320312 165.789062 63.714844 165.980469 64.171875 165.980469 C 64.632812 165.980469 65.015625 165.792969 65.339844 165.417969 C 65.671875 165.042969 65.839844 164.472656 65.839844 163.691406 C 65.839844 162.847656 65.671875 162.222656 65.339844 161.816406 C 65.007812 161.414062 64.601562 161.210938 64.132812 161.210938 C 63.65625 161.210938 63.261719 161.410156 62.945312 161.792969 C 62.636719 162.183594 62.484375 162.789062 62.484375 163.605469 Z M 62.484375 163.605469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 72.703125 164.710938 L 73.804688 164.835938 C 73.625 165.476562 73.296875 165.976562 72.828125 166.335938 C 72.367188 166.683594 71.773438 166.855469 71.054688 166.855469 C 70.148438 166.855469 69.429688 166.582031 68.890625 166.023438 C 68.359375 165.457031 68.097656 164.664062 68.097656 163.648438 C 68.097656 162.605469 68.367188 161.804688 68.910156 161.230469 C 69.453125 160.648438 70.148438 160.355469 71.015625 160.355469 C 71.847656 160.355469 72.519531 160.644531 73.035156 161.210938 C 73.5625 161.769531 73.828125 162.558594 73.828125 163.585938 C 73.828125 163.660156 73.828125 163.753906 73.828125 163.878906 L 69.179688 163.878906 C 69.222656 164.558594 69.414062 165.082031 69.765625 165.441406 C 70.109375 165.804688 70.546875 165.980469 71.078125 165.980469 C 71.460938 165.980469 71.789062 165.886719 72.054688 165.691406 C 72.332031 165.480469 72.546875 165.160156 72.703125 164.710938 Z M 69.242188 163.003906 L 72.722656 163.003906 C 72.679688 162.476562 72.546875 162.082031 72.328125 161.816406 C 71.992188 161.414062 71.554688 161.210938 71.015625 161.210938 C 70.523438 161.210938 70.117188 161.378906 69.785156 161.710938 C 69.460938 162.035156 69.285156 162.460938 69.242188 163.003906 Z M 69.242188 163.003906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 75.125 166.710938 L 75.125 160.480469 L 76.085938 160.480469 L 76.085938 161.378906 C 76.527344 160.699219 77.1875 160.355469 78.0625 160.355469 C 78.4375 160.355469 78.777344 160.429688 79.085938 160.566406 C 79.402344 160.691406 79.636719 160.867188 79.792969 161.085938 C 79.945312 161.292969 80.054688 161.554688 80.125 161.855469 C 80.167969 162.054688 80.1875 162.394531 80.1875 162.878906 L 80.1875 166.710938 L 79.125 166.710938 L 79.125 162.917969 C 79.125 162.492188 79.085938 162.167969 79 161.960938 C 78.917969 161.753906 78.773438 161.585938 78.5625 161.460938 C 78.355469 161.324219 78.109375 161.253906 77.835938 161.253906 C 77.386719 161.253906 77 161.398438 76.667969 161.691406 C 76.34375 161.972656 76.1875 162.511719 76.1875 163.316406 L 76.1875 166.710938 Z M 75.125 166.710938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 84.71875 164.855469 L 85.757812 164.691406 C 85.8125 165.105469 85.972656 165.429688 86.238281 165.648438 C 86.515625 165.871094 86.890625 165.980469 87.363281 165.980469 C 87.847656 165.980469 88.207031 165.886719 88.445312 165.691406 C 88.679688 165.496094 88.800781 165.269531 88.800781 165.003906 C 88.800781 164.753906 88.695312 164.566406 88.488281 164.441406 C 88.332031 164.347656 87.972656 164.222656 87.40625 164.066406 C 86.625 163.871094 86.082031 163.707031 85.78125 163.566406 C 85.488281 163.429688 85.265625 163.230469 85.113281 162.980469 C 84.957031 162.730469 84.882812 162.457031 84.882812 162.148438 C 84.882812 161.871094 84.945312 161.617188 85.070312 161.378906 C 85.195312 161.144531 85.367188 160.941406 85.59375 160.773438 C 85.757812 160.664062 85.976562 160.566406 86.257812 160.480469 C 86.550781 160.398438 86.851562 160.355469 87.175781 160.355469 C 87.660156 160.355469 88.082031 160.429688 88.445312 160.566406 C 88.820312 160.707031 89.097656 160.894531 89.28125 161.128906 C 89.457031 161.367188 89.582031 161.683594 89.65625 162.085938 L 88.613281 162.230469 C 88.570312 161.914062 88.429688 161.664062 88.195312 161.480469 C 87.972656 161.304688 87.660156 161.210938 87.257812 161.210938 C 86.769531 161.210938 86.425781 161.292969 86.21875 161.460938 C 86.007812 161.617188 85.90625 161.804688 85.90625 162.023438 C 85.90625 162.164062 85.945312 162.285156 86.03125 162.378906 C 86.113281 162.503906 86.25 162.601562 86.445312 162.667969 C 86.539062 162.710938 86.847656 162.804688 87.363281 162.941406 C 88.113281 163.136719 88.632812 163.292969 88.925781 163.417969 C 89.226562 163.542969 89.46875 163.730469 89.632812 163.980469 C 89.800781 164.222656 89.882812 164.519531 89.882812 164.878906 C 89.882812 165.242188 89.78125 165.574219 89.570312 165.878906 C 89.363281 166.183594 89.0625 166.429688 88.675781 166.605469 C 88.300781 166.773438 87.863281 166.855469 87.363281 166.855469 C 86.554688 166.855469 85.9375 166.691406 85.507812 166.355469 C 85.09375 166.011719 84.828125 165.511719 84.71875 164.855469 Z M 84.71875 164.855469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.445312 165.773438 L 93.59375 166.691406 C 93.285156 166.757812 93.019531 166.792969 92.800781 166.792969 C 92.410156 166.792969 92.113281 166.730469 91.90625 166.605469 C 91.695312 166.480469 91.539062 166.324219 91.445312 166.128906 C 91.363281 165.933594 91.320312 165.523438 91.320312 164.898438 L 91.320312 161.316406 L 90.550781 161.316406 L 90.550781 160.480469 L 91.320312 160.480469 L 91.320312 158.941406 L 92.382812 158.316406 L 92.382812 160.480469 L 93.445312 160.480469 L 93.445312 161.316406 L 92.382812 161.316406 L 92.382812 164.941406 C 92.382812 165.246094 92.394531 165.441406 92.425781 165.523438 C 92.46875 165.605469 92.53125 165.679688 92.613281 165.730469 C 92.695312 165.789062 92.8125 165.816406 92.96875 165.816406 C 93.09375 165.816406 93.25 165.804688 93.445312 165.773438 Z M 93.445312 165.773438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.53125 165.941406 C 98.140625 166.273438 97.765625 166.511719 97.40625 166.648438 C 97.039062 166.785156 96.65625 166.855469 96.238281 166.855469 C 95.554688 166.855469 95.03125 166.691406 94.65625 166.355469 C 94.289062 166.023438 94.113281 165.597656 94.113281 165.066406 C 94.113281 164.761719 94.179688 164.480469 94.320312 164.230469 C 94.457031 163.980469 94.640625 163.785156 94.863281 163.628906 C 95.082031 163.476562 95.332031 163.355469 95.613281 163.273438 C 95.820312 163.230469 96.132812 163.183594 96.550781 163.128906 C 97.410156 163.035156 98.039062 162.910156 98.445312 162.753906 C 98.445312 162.617188 98.445312 162.523438 98.445312 162.480469 C 98.445312 162.054688 98.347656 161.753906 98.15625 161.585938 C 97.875 161.335938 97.472656 161.210938 96.945312 161.210938 C 96.445312 161.210938 96.078125 161.304688 95.84375 161.480469 C 95.601562 161.648438 95.429688 161.957031 95.320312 162.398438 L 94.300781 162.273438 C 94.382812 161.832031 94.53125 161.476562 94.738281 161.210938 C 94.957031 160.933594 95.269531 160.726562 95.675781 160.585938 C 96.09375 160.433594 96.5625 160.355469 97.09375 160.355469 C 97.632812 160.355469 98.0625 160.417969 98.382812 160.542969 C 98.71875 160.667969 98.957031 160.832031 99.113281 161.023438 C 99.28125 161.207031 99.390625 161.441406 99.445312 161.730469 C 99.488281 161.914062 99.507812 162.230469 99.507812 162.691406 L 99.507812 164.105469 C 99.507812 165.082031 99.53125 165.699219 99.570312 165.960938 C 99.613281 166.226562 99.703125 166.476562 99.84375 166.710938 L 98.738281 166.710938 C 98.625 166.492188 98.554688 166.230469 98.53125 165.941406 Z M 98.445312 163.585938 C 98.054688 163.742188 97.476562 163.871094 96.71875 163.980469 C 96.285156 164.054688 95.976562 164.128906 95.800781 164.210938 C 95.617188 164.285156 95.476562 164.394531 95.382812 164.542969 C 95.285156 164.699219 95.238281 164.867188 95.238281 165.042969 C 95.238281 165.324219 95.34375 165.558594 95.550781 165.753906 C 95.757812 165.933594 96.070312 166.023438 96.488281 166.023438 C 96.890625 166.023438 97.25 165.933594 97.570312 165.753906 C 97.890625 165.574219 98.125 165.332031 98.28125 165.023438 C 98.390625 164.789062 98.445312 164.441406 98.445312 163.980469 Z M 98.445312 163.585938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 103.453125 165.773438 L 103.601562 166.691406 C 103.292969 166.757812 103.027344 166.792969 102.808594 166.792969 C 102.417969 166.792969 102.121094 166.730469 101.914062 166.605469 C 101.703125 166.480469 101.546875 166.324219 101.453125 166.128906 C 101.371094 165.933594 101.328125 165.523438 101.328125 164.898438 L 101.328125 161.316406 L 100.558594 161.316406 L 100.558594 160.480469 L 101.328125 160.480469 L 101.328125 158.941406 L 102.390625 158.316406 L 102.390625 160.480469 L 103.453125 160.480469 L 103.453125 161.316406 L 102.390625 161.316406 L 102.390625 164.941406 C 102.390625 165.246094 102.402344 165.441406 102.433594 165.523438 C 102.476562 165.605469 102.539062 165.679688 102.621094 165.730469 C 102.703125 165.789062 102.820312 165.816406 102.976562 165.816406 C 103.101562 165.816406 103.257812 165.804688 103.453125 165.773438 Z M 103.453125 165.773438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.726562 164.710938 L 109.828125 164.835938 C 109.648438 165.476562 109.320312 165.976562 108.851562 166.335938 C 108.390625 166.683594 107.796875 166.855469 107.078125 166.855469 C 106.171875 166.855469 105.453125 166.582031 104.914062 166.023438 C 104.382812 165.457031 104.121094 164.664062 104.121094 163.648438 C 104.121094 162.605469 104.390625 161.804688 104.933594 161.230469 C 105.476562 160.648438 106.171875 160.355469 107.039062 160.355469 C 107.871094 160.355469 108.542969 160.644531 109.058594 161.210938 C 109.585938 161.769531 109.851562 162.558594 109.851562 163.585938 C 109.851562 163.660156 109.851562 163.753906 109.851562 163.878906 L 105.203125 163.878906 C 105.246094 164.558594 105.4375 165.082031 105.789062 165.441406 C 106.132812 165.804688 106.570312 165.980469 107.101562 165.980469 C 107.484375 165.980469 107.8125 165.886719 108.078125 165.691406 C 108.355469 165.480469 108.570312 165.160156 108.726562 164.710938 Z M 105.265625 163.003906 L 108.746094 163.003906 C 108.703125 162.476562 108.570312 162.082031 108.351562 161.816406 C 108.015625 161.414062 107.578125 161.210938 107.039062 161.210938 C 106.546875 161.210938 106.140625 161.378906 105.808594 161.710938 C 105.484375 162.035156 105.308594 162.460938 105.265625 163.003906 Z M 105.265625 163.003906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 75.25 181.769531 L 75.25 181.480469 C 74.398438 181.355469 74.1875 181.230469 74.1875 180.605469 L 74.1875 174.855469 C 74.1875 174.207031 74.4375 174.019531 75.25 173.957031 L 75.25 173.667969 L 71.1875 173.667969 L 71.1875 173.957031 C 72.023438 174.019531 72.25 174.167969 72.25 174.855469 L 72.25 177.292969 L 69.355469 177.292969 L 69.355469 174.855469 C 69.355469 174.167969 69.585938 174.019531 70.4375 173.957031 L 70.4375 173.667969 L 66.398438 173.667969 L 66.398438 173.957031 C 67.210938 174.019531 67.417969 174.1875 67.417969 174.855469 L 67.417969 180.605469 C 67.417969 181.230469 67.230469 181.355469 66.398438 181.480469 L 66.398438 181.769531 L 70.4375 181.769531 L 70.4375 181.480469 C 69.5625 181.375 69.355469 181.230469 69.355469 180.605469 L 69.355469 177.855469 L 72.25 177.855469 L 72.25 180.605469 C 72.25 181.207031 72.0625 181.375 71.1875 181.480469 L 71.1875 181.769531 Z M 75.25 181.769531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.859375 182.355469 L 77.210938 182.355469 L 77.441406 181.519531 C 77.441406 181.5 77.441406 181.457031 77.441406 181.457031 C 77.441406 181.417969 77.421875 181.394531 77.378906 181.394531 C 77.335938 181.394531 77.296875 181.417969 77.253906 181.480469 C 76.960938 181.917969 76.441406 182.292969 76.191406 182.355469 C 76.003906 182.394531 75.941406 182.457031 75.941406 182.5625 C 75.941406 182.5625 75.941406 182.582031 75.941406 182.605469 L 76.546875 182.605469 L 75.921875 184.980469 C 75.859375 185.230469 75.796875 185.480469 75.796875 185.5625 C 75.796875 185.769531 75.941406 185.855469 76.148438 185.855469 C 76.566406 185.855469 76.816406 185.625 77.296875 184.894531 L 77.191406 184.832031 C 76.796875 185.332031 76.671875 185.457031 76.546875 185.457031 C 76.484375 185.457031 76.421875 185.4375 76.421875 185.332031 C 76.421875 185.3125 76.441406 185.25 76.441406 185.230469 L 77.128906 182.605469 L 77.816406 182.605469 Z M 77.859375 182.355469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 82.664062 184.019531 L 82.664062 183.480469 L 78.226562 183.480469 L 78.226562 184.019531 Z M 82.664062 184.019531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 86.332031 185.769531 L 86.332031 185.644531 C 85.726562 185.644531 85.582031 185.5 85.582031 185.167969 L 85.582031 180.394531 L 85.5 180.355469 L 84.082031 181.082031 L 84.082031 181.207031 L 84.289062 181.125 C 84.4375 181.0625 84.5625 181.019531 84.644531 181.019531 C 84.8125 181.019531 84.894531 181.144531 84.894531 181.417969 L 84.894531 185.019531 C 84.894531 185.457031 84.726562 185.625 84.125 185.644531 L 84.125 185.769531 Z M 86.332031 185.769531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 512.429688 31.085938 C 511.910156 31.648438 511.578125 31.941406 511.203125 32.167969 C 510.703125 32.417969 510.203125 32.566406 509.679688 32.566406 C 508.972656 32.566406 508.265625 32.210938 507.910156 31.667969 C 507.410156 30.878906 507.265625 29.980469 507.265625 28.773438 C 507.265625 26.378906 508.222656 25.023438 509.472656 25.023438 C 510.285156 25.023438 510.929688 25.441406 511.472656 26.105469 C 511.765625 26.441406 512.054688 26.835938 512.285156 27.480469 L 512.578125 27.480469 L 512.578125 24.667969 L 512.265625 24.667969 C 512.078125 25.085938 511.953125 25.210938 511.722656 25.210938 C 511.617188 25.210938 511.453125 25.167969 511.179688 25.042969 C 510.492188 24.753906 509.890625 24.628906 509.304688 24.628906 C 506.867188 24.628906 505.140625 26.503906 505.140625 29.042969 C 505.140625 31.378906 506.765625 33.148438 509.347656 33.148438 C 510.722656 33.148438 511.679688 32.773438 512.804688 31.398438 Z M 512.429688 31.085938 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 515.59375 33.503906 L 514.949219 33.503906 L 515.179688 32.667969 C 515.179688 32.648438 515.179688 32.605469 515.179688 32.605469 C 515.179688 32.566406 515.15625 32.542969 515.117188 32.542969 C 515.074219 32.542969 515.03125 32.566406 514.992188 32.628906 C 514.699219 33.066406 514.179688 33.441406 513.929688 33.503906 C 513.742188 33.542969 513.679688 33.605469 513.679688 33.710938 C 513.679688 33.710938 513.679688 33.730469 513.679688 33.753906 L 514.28125 33.753906 L 513.65625 36.128906 C 513.59375 36.378906 513.53125 36.628906 513.53125 36.710938 C 513.53125 36.917969 513.679688 37.003906 513.886719 37.003906 C 514.304688 37.003906 514.554688 36.773438 515.03125 36.042969 L 514.929688 35.980469 C 514.53125 36.480469 514.40625 36.605469 514.28125 36.605469 C 514.21875 36.605469 514.15625 36.585938 514.15625 36.480469 C 514.15625 36.460938 514.179688 36.398438 514.179688 36.378906 L 514.867188 33.753906 L 515.554688 33.753906 Z M 515.59375 33.503906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;" d="M 398.59375 153.332031 L 435.925781 153.332031 L 435.925781 132 L 398.59375 132 Z M 398.59375 153.332031 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 493.945312 320 L 521.944336 320 L 521.944336 335.999023 L 493.945312 335.999023 Z M 493.945312 320 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 421.371094 140.242188 L 421.203125 141.136719 L 419.640625 141.136719 C 419.941406 141.570312 420.097656 142.109375 420.097656 142.761719 C 420.097656 143.777344 419.796875 144.671875 419.203125 145.449219 C 418.605469 146.230469 417.792969 146.617188 416.765625 146.617188 C 415.972656 146.617188 415.347656 146.386719 414.890625 145.929688 C 414.441406 145.460938 414.222656 144.84375 414.222656 144.09375 C 414.222656 142.984375 414.527344 142.046875 415.140625 141.28125 C 415.765625 140.507812 416.566406 140.117188 417.558594 140.117188 C 417.875 140.117188 418.167969 140.15625 418.433594 140.242188 Z M 415.285156 144.074219 C 415.285156 144.574219 415.417969 144.984375 415.683594 145.304688 C 415.941406 145.625 416.308594 145.78125 416.765625 145.78125 C 417.472656 145.78125 418.027344 145.449219 418.433594 144.78125 C 418.832031 144.105469 419.035156 143.417969 419.035156 142.71875 C 419.035156 142.136719 418.902344 141.695312 418.640625 141.386719 C 418.390625 141.085938 418.042969 140.929688 417.597656 140.929688 C 416.890625 140.929688 416.328125 141.25 415.910156 141.886719 C 415.496094 142.527344 415.285156 143.257812 415.285156 144.074219 Z M 415.285156 144.074219 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.894531 351.895508 L 501.981445 351.992188 C 505.291992 351.995117 507.984375 349.311523 507.984375 346.000977 C 507.984375 345.992188 507.984375 345.989258 507.984375 345.980469 L 507.975586 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 507.969727 337.897461 L 507.975586 341.899414 M 506.475586 341.902344 L 507.969727 337.897461 L 509.475586 341.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.65625 238.34375 C 348.782227 241.469727 348.782227 246.532227 345.65625 249.655273 C 342.530273 252.78125 337.467773 252.78125 334.344727 249.655273 C 331.21875 246.532227 331.21875 241.469727 334.344727 238.34375 C 337.467773 235.217773 342.530273 235.217773 345.65625 238.34375 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348 244.000977 L 438.164062 244.507812 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.163086 244.53125 L 438.164062 244.507812 M 438.175781 243.007812 L 442.163086 244.53125 L 438.155273 246.007812 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.265625 244.088867 L 326.100586 244.012695 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.102539 244.003906 L 326.100586 244.012695 M 326.097656 242.512695 L 330.102539 244.003906 L 326.100586 245.512695 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 513.949219 289.821289 C 517.075195 292.944336 517.075195 298.012695 513.949219 301.135742 C 510.823242 304.258789 505.760742 304.258789 502.637695 301.135742 C 499.511719 298.012695 499.511719 292.944336 502.637695 289.821289 C 505.760742 286.698242 510.823242 286.698242 513.949219 289.821289 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 519.606445 257.820312 C 525.855469 260.946289 525.855469 266.011719 519.606445 269.137695 C 513.360352 272.257812 503.226562 272.257812 496.980469 269.137695 C 490.731445 266.011719 490.731445 260.946289 496.980469 257.820312 C 503.226562 254.700195 513.360352 254.700195 519.606445 257.820312 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 409.152344 59.503906 L 409.296875 60.421875 C 408.988281 60.488281 408.722656 60.523438 408.503906 60.523438 C 408.113281 60.523438 407.816406 60.460938 407.609375 60.335938 C 407.402344 60.210938 407.246094 60.054688 407.152344 59.859375 C 407.066406 59.664062 407.027344 59.253906 407.027344 58.628906 L 407.027344 55.046875 L 406.253906 55.046875 L 406.253906 54.210938 L 407.027344 54.210938 L 407.027344 52.671875 L 408.089844 52.046875 L 408.089844 54.210938 L 409.152344 54.210938 L 409.152344 55.046875 L 408.089844 55.046875 L 408.089844 58.671875 C 408.089844 58.976562 408.097656 59.171875 408.128906 59.253906 C 408.171875 59.335938 408.234375 59.410156 408.316406 59.460938 C 408.402344 59.519531 408.515625 59.546875 408.671875 59.546875 C 408.796875 59.546875 408.953125 59.535156 409.152344 59.503906 Z M 409.152344 59.503906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 414.234375 59.671875 C 413.84375 60.003906 413.46875 60.242188 413.109375 60.378906 C 412.746094 60.515625 412.359375 60.585938 411.941406 60.585938 C 411.261719 60.585938 410.734375 60.421875 410.359375 60.085938 C 409.996094 59.753906 409.816406 59.328125 409.816406 58.796875 C 409.816406 58.492188 409.886719 58.210938 410.027344 57.960938 C 410.160156 57.710938 410.34375 57.515625 410.566406 57.359375 C 410.785156 57.207031 411.035156 57.085938 411.316406 57.003906 C 411.527344 56.960938 411.839844 56.914062 412.253906 56.859375 C 413.113281 56.765625 413.746094 56.640625 414.152344 56.484375 C 414.152344 56.347656 414.152344 56.253906 414.152344 56.210938 C 414.152344 55.785156 414.050781 55.484375 413.859375 55.316406 C 413.578125 55.066406 413.175781 54.941406 412.652344 54.941406 C 412.152344 54.941406 411.78125 55.035156 411.546875 55.210938 C 411.308594 55.378906 411.136719 55.6875 411.027344 56.128906 L 410.003906 56.003906 C 410.089844 55.5625 410.234375 55.207031 410.441406 54.941406 C 410.660156 54.664062 410.972656 54.457031 411.378906 54.316406 C 411.796875 54.164062 412.265625 54.085938 412.796875 54.085938 C 413.339844 54.085938 413.765625 54.148438 414.089844 54.273438 C 414.421875 54.398438 414.660156 54.5625 414.816406 54.753906 C 414.984375 54.9375 415.09375 55.171875 415.152344 55.460938 C 415.191406 55.644531 415.214844 55.960938 415.214844 56.421875 L 415.214844 57.835938 C 415.214844 58.8125 415.234375 59.429688 415.277344 59.691406 C 415.316406 59.957031 415.40625 60.207031 415.546875 60.441406 L 414.441406 60.441406 C 414.328125 60.222656 414.261719 59.960938 414.234375 59.671875 Z M 414.152344 57.316406 C 413.761719 57.472656 413.183594 57.601562 412.421875 57.710938 C 411.988281 57.785156 411.683594 57.859375 411.503906 57.941406 C 411.324219 58.015625 411.183594 58.125 411.089844 58.273438 C 410.988281 58.429688 410.941406 58.597656 410.941406 58.773438 C 410.941406 59.054688 411.046875 59.289062 411.253906 59.484375 C 411.464844 59.664062 411.777344 59.753906 412.191406 59.753906 C 412.59375 59.753906 412.953125 59.664062 413.277344 59.484375 C 413.59375 59.304688 413.828125 59.0625 413.984375 58.753906 C 414.09375 58.519531 414.152344 58.171875 414.152344 57.710938 Z M 414.152344 57.316406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 416.839844 60.441406 L 416.839844 54.210938 L 417.800781 54.210938 L 417.800781 55.109375 C 418.242188 54.429688 418.902344 54.085938 419.777344 54.085938 C 420.152344 54.085938 420.492188 54.160156 420.800781 54.296875 C 421.117188 54.421875 421.351562 54.597656 421.507812 54.816406 C 421.660156 55.023438 421.769531 55.285156 421.839844 55.585938 C 421.882812 55.785156 421.902344 56.125 421.902344 56.609375 L 421.902344 60.441406 L 420.839844 60.441406 L 420.839844 56.648438 C 420.839844 56.222656 420.800781 55.898438 420.714844 55.691406 C 420.632812 55.484375 420.488281 55.316406 420.277344 55.191406 C 420.070312 55.054688 419.824219 54.984375 419.550781 54.984375 C 419.101562 54.984375 418.714844 55.128906 418.382812 55.421875 C 418.058594 55.703125 417.902344 56.242188 417.902344 57.046875 L 417.902344 60.441406 Z M 416.839844 60.441406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 423.511719 60.441406 L 423.511719 51.859375 L 424.574219 51.859375 L 424.574219 54.941406 C 425.058594 54.375 425.679688 54.085938 426.429688 54.085938 C 426.886719 54.085938 427.28125 54.179688 427.617188 54.359375 C 427.960938 54.539062 428.203125 54.789062 428.34375 55.109375 C 428.496094 55.429688 428.574219 55.894531 428.574219 56.503906 L 428.574219 60.441406 L 427.53125 60.441406 L 427.53125 56.503906 C 427.53125 55.976562 427.414062 55.597656 427.179688 55.359375 C 426.953125 55.109375 426.636719 54.984375 426.21875 54.984375 C 425.898438 54.984375 425.601562 55.066406 425.324219 55.234375 C 425.042969 55.390625 424.851562 55.601562 424.742188 55.878906 C 424.625 56.160156 424.574219 56.546875 424.574219 57.046875 L 424.574219 60.441406 Z M 423.511719 60.441406 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 508.057617 320 L 508.209961 309.379883 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 508.265625 305.37793 L 508.209961 309.379883 M 506.709961 309.356445 L 508.265625 305.37793 L 509.709961 309.397461 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 508.291992 271.475586 L 508.291992 281.577148 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 508.291992 285.579102 L 508.291992 281.577148 M 509.791992 281.577148 L 508.291992 285.579102 L 506.791992 281.577148 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 508.291992 255.476562 L 508.291992 250.094727 C 508.291992 246.78125 505.605469 244.094727 502.291992 244.094727 C 502.262695 244.094727 502.230469 244.094727 502.198242 244.097656 L 477.331055 244.487305 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 516.292969 295.475586 L 525.999023 295.475586 C 529.3125 295.475586 531.999023 298.165039 531.999023 301.475586 L 531.999023 345.913086 C 531.999023 349.226562 534.688477 351.913086 537.999023 351.913086 C 538.02832 351.913086 538.057617 351.913086 538.086914 351.913086 L 562.265625 351.561523 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 566.264648 351.508789 L 562.265625 351.561523 M 562.242188 350.061523 L 566.264648 351.508789 L 562.289062 353.061523 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 371.90625 111.160156 C 371.90625 109.746094 372.285156 108.636719 373.050781 107.828125 C 373.8125 107.011719 374.800781 106.597656 376.007812 106.597656 C 376.800781 106.597656 377.515625 106.796875 378.15625 107.183594 C 378.789062 107.558594 379.28125 108.089844 379.613281 108.765625 C 379.945312 109.449219 380.113281 110.214844 380.113281 111.058594 C 380.113281 111.933594 379.9375 112.71875 379.59375 113.410156 C 379.242188 114.09375 378.742188 114.613281 378.09375 114.972656 C 377.453125 115.324219 376.757812 115.496094 376.007812 115.496094 C 375.203125 115.496094 374.476562 115.300781 373.84375 114.910156 C 373.203125 114.527344 372.71875 113.988281 372.382812 113.308594 C 372.0625 112.628906 371.90625 111.910156 371.90625 111.160156 Z M 373.070312 111.183594 C 373.070312 112.222656 373.347656 113.046875 373.90625 113.640625 C 374.457031 114.222656 375.160156 114.515625 376.007812 114.515625 C 376.851562 114.515625 377.554688 114.21875 378.113281 113.621094 C 378.664062 113.027344 378.945312 112.171875 378.945312 111.058594 C 378.945312 110.363281 378.828125 109.761719 378.59375 109.246094 C 378.351562 108.71875 378.007812 108.308594 377.550781 108.015625 C 377.09375 107.722656 376.582031 107.578125 376.03125 107.578125 C 375.222656 107.578125 374.53125 107.859375 373.945312 108.410156 C 373.363281 108.96875 373.070312 109.890625 373.070312 111.183594 Z M 373.070312 111.183594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 385.53125 115.347656 L 385.53125 114.433594 C 385.039062 115.140625 384.382812 115.496094 383.550781 115.496094 C 383.1875 115.496094 382.847656 115.421875 382.53125 115.285156 C 382.207031 115.136719 381.96875 114.953125 381.800781 114.746094 C 381.644531 114.535156 381.539062 114.28125 381.488281 113.972656 C 381.445312 113.765625 381.425781 113.433594 381.425781 112.972656 L 381.425781 109.121094 L 382.46875 109.121094 L 382.46875 112.578125 C 382.46875 113.136719 382.492188 113.503906 382.550781 113.683594 C 382.601562 113.964844 382.738281 114.183594 382.945312 114.347656 C 383.164062 114.503906 383.4375 114.578125 383.757812 114.578125 C 384.078125 114.578125 384.375 114.503906 384.65625 114.347656 C 384.929688 114.183594 385.125 113.964844 385.238281 113.683594 C 385.347656 113.40625 385.40625 112.996094 385.40625 112.453125 L 385.40625 109.121094 L 386.46875 109.121094 L 386.46875 115.347656 Z M 385.53125 115.347656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 390.429688 114.410156 L 390.574219 115.328125 C 390.265625 115.394531 390 115.433594 389.78125 115.433594 C 389.390625 115.433594 389.09375 115.371094 388.886719 115.246094 C 388.679688 115.121094 388.523438 114.964844 388.429688 114.765625 C 388.34375 114.574219 388.304688 114.160156 388.304688 113.535156 L 388.304688 109.953125 L 387.53125 109.953125 L 387.53125 109.121094 L 388.304688 109.121094 L 388.304688 107.578125 L 389.367188 106.953125 L 389.367188 109.121094 L 390.429688 109.121094 L 390.429688 109.953125 L 389.367188 109.953125 L 389.367188 113.578125 C 389.367188 113.886719 389.375 114.078125 389.40625 114.160156 C 389.449219 114.246094 389.511719 114.316406 389.59375 114.371094 C 389.679688 114.425781 389.792969 114.453125 389.949219 114.453125 C 390.074219 114.453125 390.230469 114.441406 390.429688 114.410156 Z M 390.429688 114.410156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 391.449219 117.722656 L 391.449219 109.121094 L 392.410156 109.121094 L 392.410156 109.933594 C 392.628906 109.613281 392.878906 109.378906 393.160156 109.222656 C 393.449219 109.074219 393.804688 108.996094 394.222656 108.996094 C 394.746094 108.996094 395.210938 109.136719 395.617188 109.410156 C 396.019531 109.675781 396.324219 110.058594 396.535156 110.558594 C 396.742188 111.058594 396.847656 111.597656 396.847656 112.183594 C 396.847656 112.824219 396.726562 113.402344 396.492188 113.910156 C 396.269531 114.425781 395.941406 114.824219 395.511719 115.097656 C 395.082031 115.359375 394.621094 115.496094 394.136719 115.496094 C 393.789062 115.496094 393.476562 115.417969 393.199219 115.265625 C 392.917969 115.113281 392.691406 114.925781 392.511719 114.703125 L 392.511719 117.722656 Z M 392.410156 112.265625 C 392.410156 113.074219 392.566406 113.671875 392.886719 114.058594 C 393.222656 114.433594 393.617188 114.621094 394.074219 114.621094 C 394.535156 114.621094 394.929688 114.425781 395.261719 114.035156 C 395.605469 113.636719 395.785156 113.015625 395.785156 112.183594 C 395.785156 111.390625 395.617188 110.800781 395.285156 110.410156 C 394.960938 110.011719 394.574219 109.808594 394.117188 109.808594 C 393.667969 109.808594 393.273438 110.027344 392.929688 110.453125 C 392.582031 110.871094 392.410156 111.472656 392.410156 112.265625 Z M 392.410156 112.265625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.203125 115.347656 L 402.203125 114.433594 C 401.714844 115.140625 401.058594 115.496094 400.222656 115.496094 C 399.859375 115.496094 399.519531 115.421875 399.203125 115.285156 C 398.878906 115.136719 398.640625 114.953125 398.472656 114.746094 C 398.316406 114.535156 398.214844 114.28125 398.160156 113.972656 C 398.121094 113.765625 398.097656 113.433594 398.097656 112.972656 L 398.097656 109.121094 L 399.140625 109.121094 L 399.140625 112.578125 C 399.140625 113.136719 399.167969 113.503906 399.222656 113.683594 C 399.277344 113.964844 399.410156 114.183594 399.621094 114.347656 C 399.839844 114.503906 400.109375 114.578125 400.433594 114.578125 C 400.75 114.578125 401.046875 114.503906 401.328125 114.347656 C 401.605469 114.183594 401.796875 113.964844 401.910156 113.683594 C 402.019531 113.40625 402.078125 112.996094 402.078125 112.453125 L 402.078125 109.121094 L 403.140625 109.121094 L 403.140625 115.347656 Z M 402.203125 115.347656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 407.101562 114.410156 L 407.246094 115.328125 C 406.941406 115.394531 406.675781 115.433594 406.457031 115.433594 C 406.066406 115.433594 405.769531 115.371094 405.558594 115.246094 C 405.351562 115.121094 405.195312 114.964844 405.101562 114.765625 C 405.019531 114.574219 404.976562 114.160156 404.976562 113.535156 L 404.976562 109.953125 L 404.207031 109.953125 L 404.207031 109.121094 L 404.976562 109.121094 L 404.976562 107.578125 L 406.039062 106.953125 L 406.039062 109.121094 L 407.101562 109.121094 L 407.101562 109.953125 L 406.039062 109.953125 L 406.039062 113.578125 C 406.039062 113.886719 406.050781 114.078125 406.082031 114.160156 C 406.121094 114.246094 406.183594 114.316406 406.269531 114.371094 C 406.351562 114.425781 406.464844 114.453125 406.621094 114.453125 C 406.746094 114.453125 406.902344 114.441406 407.101562 114.410156 Z M 407.101562 114.410156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 378.257812 129.597656 L 379.28125 129.742188 C 379.320312 130.058594 379.4375 130.289062 379.632812 130.429688 C 379.894531 130.621094 380.257812 130.722656 380.71875 130.722656 C 381.203125 130.722656 381.578125 130.621094 381.84375 130.429688 C 382.105469 130.230469 382.285156 129.960938 382.382812 129.617188 C 382.4375 129.394531 382.457031 128.945312 382.445312 128.261719 C 381.988281 128.804688 381.414062 129.074219 380.738281 129.074219 C 379.875 129.074219 379.207031 128.773438 378.738281 128.160156 C 378.28125 127.535156 378.050781 126.792969 378.050781 125.929688 C 378.050781 125.335938 378.15625 124.785156 378.363281 124.285156 C 378.582031 123.785156 378.894531 123.402344 379.300781 123.136719 C 379.703125 122.863281 380.179688 122.722656 380.738281 122.722656 C 381.472656 122.722656 382.078125 123.011719 382.550781 123.597656 L 382.550781 122.847656 L 383.53125 122.847656 L 383.53125 128.222656 C 383.53125 129.191406 383.425781 129.878906 383.21875 130.285156 C 383.019531 130.683594 382.707031 131.003906 382.28125 131.242188 C 381.863281 131.476562 381.34375 131.597656 380.71875 131.597656 C 379.96875 131.597656 379.363281 131.429688 378.90625 131.097656 C 378.457031 130.761719 378.242188 130.261719 378.257812 129.597656 Z M 379.132812 125.847656 C 379.132812 126.667969 379.289062 127.261719 379.613281 127.636719 C 379.929688 128.011719 380.332031 128.199219 380.820312 128.199219 C 381.304688 128.199219 381.71875 128.011719 382.050781 127.636719 C 382.382812 127.261719 382.550781 126.679688 382.550781 125.886719 C 382.550781 125.128906 382.375 124.550781 382.03125 124.160156 C 381.695312 123.773438 381.289062 123.574219 380.820312 123.574219 C 380.347656 123.574219 379.945312 123.773438 379.613281 124.160156 C 379.289062 124.535156 379.132812 125.097656 379.132812 125.847656 Z M 379.132812 125.847656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 389.183594 128.304688 C 388.792969 128.636719 388.417969 128.878906 388.058594 129.011719 C 387.695312 129.148438 387.308594 129.222656 386.890625 129.222656 C 386.210938 129.222656 385.683594 129.054688 385.308594 128.722656 C 384.945312 128.386719 384.765625 127.960938 384.765625 127.429688 C 384.765625 127.128906 384.835938 126.847656 384.976562 126.597656 C 385.109375 126.347656 385.292969 126.148438 385.515625 125.992188 C 385.734375 125.839844 385.984375 125.722656 386.265625 125.636719 C 386.476562 125.597656 386.789062 125.550781 387.203125 125.492188 C 388.0625 125.398438 388.695312 125.273438 389.101562 125.117188 C 389.101562 124.980469 389.101562 124.886719 389.101562 124.847656 C 389.101562 124.417969 389 124.117188 388.808594 123.949219 C 388.527344 123.699219 388.125 123.574219 387.601562 123.574219 C 387.101562 123.574219 386.730469 123.667969 386.496094 123.847656 C 386.257812 124.011719 386.085938 124.320312 385.976562 124.761719 L 384.953125 124.636719 C 385.039062 124.195312 385.183594 123.839844 385.390625 123.574219 C 385.609375 123.300781 385.921875 123.089844 386.328125 122.949219 C 386.746094 122.800781 387.214844 122.722656 387.746094 122.722656 C 388.289062 122.722656 388.714844 122.785156 389.039062 122.910156 C 389.371094 123.035156 389.609375 123.195312 389.765625 123.386719 C 389.933594 123.570312 390.042969 123.804688 390.101562 124.097656 C 390.140625 124.277344 390.164062 124.597656 390.164062 125.054688 L 390.164062 126.472656 C 390.164062 127.445312 390.183594 128.066406 390.226562 128.324219 C 390.265625 128.589844 390.355469 128.839844 390.496094 129.074219 L 389.390625 129.074219 C 389.277344 128.855469 389.210938 128.597656 389.183594 128.304688 Z M 389.101562 125.949219 C 388.710938 126.105469 388.132812 126.238281 387.371094 126.347656 C 386.9375 126.417969 386.632812 126.492188 386.453125 126.574219 C 386.273438 126.648438 386.132812 126.757812 386.039062 126.910156 C 385.9375 127.066406 385.890625 127.230469 385.890625 127.410156 C 385.890625 127.691406 385.996094 127.925781 386.203125 128.117188 C 386.414062 128.300781 386.726562 128.386719 387.140625 128.386719 C 387.542969 128.386719 387.902344 128.300781 388.226562 128.117188 C 388.542969 127.941406 388.777344 127.695312 388.933594 127.386719 C 389.042969 127.152344 389.101562 126.804688 389.101562 126.347656 Z M 389.101562 125.949219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 394.109375 128.136719 L 394.253906 129.054688 C 393.945312 129.121094 393.679688 129.160156 393.460938 129.160156 C 393.070312 129.160156 392.773438 129.097656 392.566406 128.972656 C 392.359375 128.847656 392.203125 128.691406 392.109375 128.492188 C 392.023438 128.300781 391.984375 127.886719 391.984375 127.261719 L 391.984375 123.679688 L 391.210938 123.679688 L 391.210938 122.847656 L 391.984375 122.847656 L 391.984375 121.304688 L 393.046875 120.679688 L 393.046875 122.847656 L 394.109375 122.847656 L 394.109375 123.679688 L 393.046875 123.679688 L 393.046875 127.304688 C 393.046875 127.613281 393.054688 127.804688 393.085938 127.886719 C 393.128906 127.972656 393.191406 128.042969 393.273438 128.097656 C 393.359375 128.152344 393.472656 128.179688 393.628906 128.179688 C 393.753906 128.179688 393.910156 128.167969 394.109375 128.136719 Z M 394.109375 128.136719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 399.382812 127.074219 L 400.488281 127.199219 C 400.304688 127.839844 399.976562 128.339844 399.507812 128.699219 C 399.050781 129.050781 398.457031 129.222656 397.738281 129.222656 C 396.832031 129.222656 396.113281 128.945312 395.570312 128.386719 C 395.039062 127.820312 394.78125 127.027344 394.78125 126.011719 C 394.78125 124.972656 395.050781 124.167969 395.59375 123.597656 C 396.132812 123.011719 396.832031 122.722656 397.695312 122.722656 C 398.53125 122.722656 399.203125 123.007812 399.71875 123.574219 C 400.242188 124.132812 400.507812 124.925781 400.507812 125.949219 C 400.507812 126.023438 400.507812 126.117188 400.507812 126.242188 L 395.863281 126.242188 C 395.90625 126.925781 396.097656 127.445312 396.445312 127.804688 C 396.789062 128.167969 397.226562 128.347656 397.757812 128.347656 C 398.144531 128.347656 398.472656 128.253906 398.738281 128.054688 C 399.015625 127.847656 399.226562 127.523438 399.382812 127.074219 Z M 395.925781 125.367188 L 399.40625 125.367188 C 399.363281 124.839844 399.226562 124.445312 399.007812 124.179688 C 398.675781 123.777344 398.238281 123.574219 397.695312 123.574219 C 397.207031 123.574219 396.800781 123.742188 396.46875 124.074219 C 396.144531 124.398438 395.96875 124.824219 395.925781 125.367188 Z M 395.925781 125.367188 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 392.46875 140.113281 C 392.46875 137.632812 390.699219 135.84375 388.28125 135.84375 C 385.78125 135.84375 383.96875 137.570312 383.96875 140.132812 C 383.96875 142.613281 385.71875 144.363281 388.199219 144.363281 C 390.699219 144.363281 392.46875 142.613281 392.46875 140.113281 Z M 390.34375 140.195312 C 390.34375 142.675781 389.617188 143.96875 388.242188 143.96875 C 386.867188 143.96875 386.09375 142.695312 386.09375 140.175781 C 386.09375 137.65625 386.84375 136.238281 388.179688 136.238281 C 389.574219 136.238281 390.34375 137.632812 390.34375 140.195312 Z M 390.34375 140.195312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 395.265625 144.71875 L 394.617188 144.71875 L 394.847656 143.882812 C 394.847656 143.863281 394.847656 143.820312 394.847656 143.820312 C 394.847656 143.78125 394.828125 143.757812 394.785156 143.757812 C 394.742188 143.757812 394.703125 143.78125 394.660156 143.84375 C 394.367188 144.28125 393.847656 144.65625 393.597656 144.71875 C 393.410156 144.757812 393.347656 144.820312 393.347656 144.925781 C 393.347656 144.925781 393.347656 144.945312 393.347656 144.96875 L 393.953125 144.96875 L 393.328125 147.34375 C 393.265625 147.59375 393.203125 147.84375 393.203125 147.925781 C 393.203125 148.132812 393.347656 148.21875 393.554688 148.21875 C 393.972656 148.21875 394.222656 147.988281 394.703125 147.257812 L 394.597656 147.195312 C 394.203125 147.695312 394.078125 147.820312 393.953125 147.820312 C 393.890625 147.820312 393.828125 147.800781 393.828125 147.695312 C 393.828125 147.675781 393.847656 147.613281 393.847656 147.59375 L 394.535156 144.96875 L 395.222656 144.96875 Z M 395.265625 144.71875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 45.226562 17.804688 L 45.226562 9.21875 L 46.933594 9.21875 L 48.953125 15.304688 C 49.148438 15.859375 49.289062 16.28125 49.371094 16.574219 C 49.464844 16.257812 49.621094 15.796875 49.828125 15.199219 L 51.890625 9.21875 L 53.414062 9.21875 L 53.414062 17.804688 L 52.328125 17.804688 L 52.328125 10.617188 L 49.828125 17.804688 L 48.808594 17.804688 L 46.308594 10.492188 L 46.308594 17.804688 Z M 45.226562 17.804688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 59.367188 15.804688 L 60.46875 15.929688 C 60.289062 16.570312 59.960938 17.070312 59.492188 17.429688 C 59.03125 17.777344 58.4375 17.949219 57.71875 17.949219 C 56.8125 17.949219 56.09375 17.671875 55.554688 17.117188 C 55.023438 16.546875 54.761719 15.757812 54.761719 14.742188 C 54.761719 13.699219 55.03125 12.898438 55.574219 12.324219 C 56.117188 11.742188 56.8125 11.449219 57.679688 11.449219 C 58.511719 11.449219 59.183594 11.734375 59.699219 12.304688 C 60.226562 12.859375 60.492188 13.652344 60.492188 14.679688 C 60.492188 14.75 60.492188 14.84375 60.492188 14.96875 L 55.84375 14.96875 C 55.886719 15.652344 56.078125 16.171875 56.429688 16.53125 C 56.773438 16.898438 57.210938 17.074219 57.742188 17.074219 C 58.125 17.074219 58.453125 16.980469 58.71875 16.78125 C 58.996094 16.574219 59.210938 16.25 59.367188 15.804688 Z M 55.90625 14.09375 L 59.386719 14.09375 C 59.34375 13.570312 59.210938 13.171875 58.992188 12.90625 C 58.65625 12.507812 58.21875 12.304688 57.679688 12.304688 C 57.1875 12.304688 56.78125 12.46875 56.449219 12.804688 C 56.125 13.125 55.949219 13.554688 55.90625 14.09375 Z M 55.90625 14.09375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 61.789062 17.804688 L 61.789062 11.574219 L 62.726562 11.574219 L 62.726562 12.449219 C 62.921875 12.148438 63.175781 11.902344 63.5 11.71875 C 63.832031 11.542969 64.207031 11.449219 64.625 11.449219 C 65.082031 11.449219 65.457031 11.546875 65.75 11.742188 C 66.039062 11.921875 66.25 12.1875 66.375 12.53125 C 66.875 11.8125 67.507812 11.449219 68.289062 11.449219 C 68.914062 11.449219 69.394531 11.625 69.726562 11.96875 C 70.0625 12.304688 70.226562 12.824219 70.226562 13.53125 L 70.226562 17.804688 L 69.164062 17.804688 L 69.164062 13.886719 C 69.164062 13.460938 69.128906 13.152344 69.0625 12.96875 C 69.003906 12.792969 68.882812 12.648438 68.707031 12.53125 C 68.523438 12.40625 68.3125 12.34375 68.0625 12.34375 C 67.628906 12.34375 67.269531 12.492188 66.976562 12.78125 C 66.6875 13.074219 66.539062 13.542969 66.539062 14.179688 L 66.539062 17.804688 L 65.476562 17.804688 L 65.476562 13.761719 C 65.476562 13.292969 65.394531 12.9375 65.226562 12.699219 C 65.0625 12.464844 64.78125 12.34375 64.394531 12.34375 C 64.085938 12.34375 63.8125 12.429688 63.5625 12.59375 C 63.3125 12.75 63.128906 12.980469 63.019531 13.28125 C 62.90625 13.574219 62.851562 14.007812 62.851562 14.574219 L 62.851562 17.804688 Z M 61.789062 17.804688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 71.390625 14.699219 C 71.390625 13.546875 71.707031 12.695312 72.347656 12.136719 C 72.890625 11.679688 73.542969 11.449219 74.308594 11.449219 C 75.167969 11.449219 75.871094 11.730469 76.410156 12.28125 C 76.953125 12.839844 77.222656 13.609375 77.222656 14.59375 C 77.222656 15.402344 77.097656 16.03125 76.847656 16.492188 C 76.609375 16.949219 76.265625 17.3125 75.808594 17.574219 C 75.347656 17.824219 74.847656 17.949219 74.308594 17.949219 C 73.433594 17.949219 72.722656 17.671875 72.183594 17.117188 C 71.652344 16.546875 71.390625 15.742188 71.390625 14.699219 Z M 72.472656 14.699219 C 72.472656 15.492188 72.644531 16.089844 72.996094 16.492188 C 73.339844 16.882812 73.777344 17.074219 74.308594 17.074219 C 74.832031 17.074219 75.269531 16.882812 75.621094 16.492188 C 75.964844 16.089844 76.140625 15.480469 76.140625 14.65625 C 76.140625 13.898438 75.964844 13.3125 75.621094 12.90625 C 75.269531 12.507812 74.832031 12.304688 74.308594 12.304688 C 73.777344 12.304688 73.339844 12.507812 72.996094 12.90625 C 72.644531 13.296875 72.472656 13.898438 72.472656 14.699219 Z M 72.472656 14.699219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 78.441406 17.804688 L 78.441406 11.574219 L 79.398438 11.574219 L 79.398438 12.53125 C 79.632812 12.089844 79.855469 11.796875 80.066406 11.65625 C 80.273438 11.523438 80.503906 11.449219 80.753906 11.449219 C 81.097656 11.449219 81.460938 11.5625 81.835938 11.78125 L 81.460938 12.761719 C 81.210938 12.609375 80.949219 12.53125 80.691406 12.53125 C 80.464844 12.53125 80.257812 12.605469 80.066406 12.742188 C 79.882812 12.882812 79.753906 13.074219 79.667969 13.324219 C 79.554688 13.699219 79.503906 14.109375 79.503906 14.554688 L 79.503906 17.804688 Z M 78.441406 17.804688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 82.414062 20.199219 L 82.289062 19.21875 C 82.523438 19.273438 82.726562 19.304688 82.894531 19.304688 C 83.128906 19.304688 83.316406 19.261719 83.457031 19.179688 C 83.59375 19.105469 83.710938 19 83.8125 18.867188 C 83.863281 18.75 83.96875 18.492188 84.125 18.074219 C 84.148438 18.015625 84.1875 17.933594 84.226562 17.824219 L 81.851562 11.574219 L 83 11.574219 L 84.289062 15.179688 C 84.457031 15.636719 84.609375 16.117188 84.75 16.617188 C 84.859375 16.148438 85 15.671875 85.164062 15.199219 L 86.5 11.574219 L 87.5625 11.574219 L 85.1875 17.90625 C 84.9375 18.585938 84.738281 19.058594 84.601562 19.324219 C 84.40625 19.667969 84.191406 19.917969 83.957031 20.074219 C 83.71875 20.242188 83.425781 20.324219 83.082031 20.324219 C 82.882812 20.324219 82.664062 20.28125 82.414062 20.199219 Z M 82.414062 20.199219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 95.851562 15.53125 L 96.894531 15.65625 C 96.78125 16.382812 96.488281 16.945312 96.019531 17.34375 C 95.546875 17.75 94.96875 17.949219 94.289062 17.949219 C 93.441406 17.949219 92.757812 17.671875 92.25 17.117188 C 91.734375 16.5625 91.476562 15.761719 91.476562 14.71875 C 91.476562 14.042969 91.585938 13.449219 91.8125 12.949219 C 92.03125 12.449219 92.363281 12.074219 92.8125 11.824219 C 93.269531 11.574219 93.769531 11.449219 94.3125 11.449219 C 94.976562 11.449219 95.523438 11.625 95.957031 11.96875 C 96.382812 12.304688 96.664062 12.78125 96.789062 13.40625 L 95.769531 13.574219 C 95.671875 13.15625 95.5 12.84375 95.25 12.636719 C 95 12.417969 94.695312 12.304688 94.351562 12.304688 C 93.8125 12.304688 93.375 12.5 93.039062 12.886719 C 92.71875 13.261719 92.5625 13.859375 92.5625 14.679688 C 92.5625 15.527344 92.71875 16.136719 93.039062 16.511719 C 93.359375 16.886719 93.773438 17.074219 94.289062 17.074219 C 94.707031 17.074219 95.050781 16.949219 95.332031 16.699219 C 95.609375 16.449219 95.78125 16.0625 95.851562 15.53125 Z M 95.851562 15.53125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.039062 15.804688 L 103.144531 15.929688 C 102.960938 16.570312 102.632812 17.070312 102.164062 17.429688 C 101.707031 17.777344 101.113281 17.949219 100.394531 17.949219 C 99.488281 17.949219 98.769531 17.671875 98.226562 17.117188 C 97.695312 16.546875 97.4375 15.757812 97.4375 14.742188 C 97.4375 13.699219 97.707031 12.898438 98.25 12.324219 C 98.789062 11.742188 99.488281 11.449219 100.351562 11.449219 C 101.1875 11.449219 101.859375 11.734375 102.375 12.304688 C 102.898438 12.859375 103.164062 13.652344 103.164062 14.679688 C 103.164062 14.75 103.164062 14.84375 103.164062 14.96875 L 98.519531 14.96875 C 98.5625 15.652344 98.753906 16.171875 99.101562 16.53125 C 99.445312 16.898438 99.882812 17.074219 100.414062 17.074219 C 100.800781 17.074219 101.128906 16.980469 101.394531 16.78125 C 101.671875 16.574219 101.882812 16.25 102.039062 15.804688 Z M 98.582031 14.09375 L 102.0625 14.09375 C 102.019531 13.570312 101.882812 13.171875 101.664062 12.90625 C 101.332031 12.507812 100.894531 12.304688 100.351562 12.304688 C 99.863281 12.304688 99.457031 12.46875 99.125 12.804688 C 98.800781 13.125 98.625 13.554688 98.582031 14.09375 Z M 98.582031 14.09375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 104.445312 17.804688 L 104.445312 9.21875 L 105.484375 9.21875 L 105.484375 17.804688 Z M 104.445312 17.804688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 107.109375 17.804688 L 107.109375 9.21875 L 108.152344 9.21875 L 108.152344 17.804688 Z M 107.109375 17.804688 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 43.105469 24.152344 L 43.105469 22.945312 L 44.167969 22.945312 L 44.167969 24.152344 Z M 43.105469 31.527344 L 43.105469 25.300781 L 44.167969 25.300781 L 44.167969 31.527344 Z M 43.105469 31.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 45.769531 31.527344 L 45.769531 25.300781 L 46.730469 25.300781 L 46.730469 26.195312 C 47.171875 25.519531 47.832031 25.175781 48.707031 25.175781 C 49.082031 25.175781 49.421875 25.246094 49.730469 25.382812 C 50.046875 25.507812 50.28125 25.683594 50.4375 25.902344 C 50.589844 26.113281 50.699219 26.371094 50.769531 26.675781 C 50.8125 26.871094 50.832031 27.210938 50.832031 27.695312 L 50.832031 31.527344 L 49.769531 31.527344 L 49.769531 27.738281 C 49.769531 27.308594 49.730469 26.988281 49.644531 26.777344 C 49.5625 26.570312 49.417969 26.402344 49.207031 26.277344 C 49 26.144531 48.753906 26.070312 48.480469 26.070312 C 48.03125 26.070312 47.644531 26.214844 47.3125 26.507812 C 46.988281 26.789062 46.832031 27.332031 46.832031 28.132812 L 46.832031 31.527344 Z M 45.769531 31.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 54.757812 30.589844 L 54.902344 31.507812 C 54.597656 31.574219 54.332031 31.613281 54.113281 31.613281 C 53.722656 31.613281 53.425781 31.550781 53.214844 31.425781 C 53.007812 31.300781 52.851562 31.144531 52.757812 30.945312 C 52.675781 30.753906 52.632812 30.339844 52.632812 29.714844 L 52.632812 26.132812 L 51.863281 26.132812 L 51.863281 25.300781 L 52.632812 25.300781 L 52.632812 23.757812 L 53.695312 23.132812 L 53.695312 25.300781 L 54.757812 25.300781 L 54.757812 26.132812 L 53.695312 26.132812 L 53.695312 29.757812 C 53.695312 30.066406 53.707031 30.257812 53.738281 30.339844 C 53.777344 30.425781 53.839844 30.496094 53.925781 30.550781 C 54.007812 30.605469 54.121094 30.632812 54.277344 30.632812 C 54.402344 30.632812 54.558594 30.621094 54.757812 30.589844 Z M 54.757812 30.589844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 60.027344 29.527344 L 61.132812 29.652344 C 60.949219 30.292969 60.621094 30.792969 60.152344 31.152344 C 59.695312 31.503906 59.101562 31.675781 58.382812 31.675781 C 57.476562 31.675781 56.757812 31.398438 56.214844 30.839844 C 55.683594 30.273438 55.425781 29.480469 55.425781 28.464844 C 55.425781 27.425781 55.695312 26.621094 56.238281 26.050781 C 56.777344 25.464844 57.476562 25.175781 58.339844 25.175781 C 59.175781 25.175781 59.847656 25.460938 60.363281 26.027344 C 60.886719 26.585938 61.152344 27.378906 61.152344 28.402344 C 61.152344 28.476562 61.152344 28.570312 61.152344 28.695312 L 56.507812 28.695312 C 56.550781 29.378906 56.742188 29.898438 57.089844 30.257812 C 57.433594 30.621094 57.871094 30.800781 58.402344 30.800781 C 58.789062 30.800781 59.117188 30.707031 59.382812 30.507812 C 59.660156 30.300781 59.871094 29.976562 60.027344 29.527344 Z M 56.570312 27.820312 L 60.050781 27.820312 C 60.007812 27.292969 59.871094 26.898438 59.652344 26.632812 C 59.320312 26.230469 58.882812 26.027344 58.339844 26.027344 C 57.851562 26.027344 57.445312 26.195312 57.113281 26.527344 C 56.789062 26.851562 56.613281 27.277344 56.570312 27.820312 Z M 56.570312 27.820312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 62.433594 31.527344 L 62.433594 25.300781 L 63.390625 25.300781 L 63.390625 26.257812 C 63.625 25.816406 63.847656 25.523438 64.058594 25.382812 C 64.265625 25.246094 64.496094 25.175781 64.746094 25.175781 C 65.089844 25.175781 65.453125 25.289062 65.828125 25.507812 L 65.453125 26.488281 C 65.203125 26.335938 64.941406 26.257812 64.683594 26.257812 C 64.457031 26.257812 64.25 26.332031 64.058594 26.464844 C 63.875 26.605469 63.746094 26.800781 63.660156 27.050781 C 63.546875 27.425781 63.496094 27.835938 63.496094 28.277344 L 63.496094 31.527344 Z M 62.433594 31.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 66.449219 31.527344 L 66.449219 25.300781 L 67.40625 25.300781 L 67.40625 26.195312 C 67.851562 25.519531 68.511719 25.175781 69.386719 25.175781 C 69.761719 25.175781 70.101562 25.246094 70.40625 25.382812 C 70.726562 25.507812 70.960938 25.683594 71.117188 25.902344 C 71.265625 26.113281 71.375 26.371094 71.449219 26.675781 C 71.492188 26.871094 71.511719 27.210938 71.511719 27.695312 L 71.511719 31.527344 L 70.449219 31.527344 L 70.449219 27.738281 C 70.449219 27.308594 70.40625 26.988281 70.324219 26.777344 C 70.242188 26.570312 70.09375 26.402344 69.886719 26.277344 C 69.679688 26.144531 69.433594 26.070312 69.15625 26.070312 C 68.710938 26.070312 68.324219 26.214844 67.992188 26.507812 C 67.667969 26.789062 67.511719 27.332031 67.511719 28.132812 L 67.511719 31.527344 Z M 66.449219 31.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.1875 30.757812 C 76.796875 31.089844 76.421875 31.332031 76.0625 31.464844 C 75.695312 31.601562 75.3125 31.675781 74.894531 31.675781 C 74.210938 31.675781 73.6875 31.507812 73.3125 31.175781 C 72.945312 30.839844 72.769531 30.414062 72.769531 29.882812 C 72.769531 29.582031 72.835938 29.300781 72.976562 29.050781 C 73.113281 28.800781 73.296875 28.601562 73.519531 28.445312 C 73.738281 28.292969 73.988281 28.175781 74.269531 28.089844 C 74.476562 28.050781 74.789062 28.003906 75.207031 27.945312 C 76.066406 27.851562 76.695312 27.726562 77.101562 27.570312 C 77.101562 27.433594 77.101562 27.339844 77.101562 27.300781 C 77.101562 26.871094 77.003906 26.570312 76.8125 26.402344 C 76.53125 26.152344 76.128906 26.027344 75.601562 26.027344 C 75.101562 26.027344 74.734375 26.121094 74.5 26.300781 C 74.257812 26.464844 74.085938 26.773438 73.976562 27.214844 L 72.957031 27.089844 C 73.039062 26.648438 73.1875 26.292969 73.394531 26.027344 C 73.613281 25.753906 73.925781 25.542969 74.332031 25.402344 C 74.75 25.253906 75.21875 25.175781 75.75 25.175781 C 76.289062 25.175781 76.71875 25.238281 77.039062 25.363281 C 77.375 25.488281 77.613281 25.648438 77.769531 25.839844 C 77.9375 26.023438 78.046875 26.257812 78.101562 26.550781 C 78.144531 26.730469 78.164062 27.050781 78.164062 27.507812 L 78.164062 28.925781 C 78.164062 29.898438 78.1875 30.519531 78.226562 30.777344 C 78.269531 31.042969 78.359375 31.292969 78.5 31.527344 L 77.394531 31.527344 C 77.28125 31.308594 77.210938 31.050781 77.1875 30.757812 Z M 77.101562 28.402344 C 76.710938 28.558594 76.132812 28.691406 75.375 28.800781 C 74.941406 28.871094 74.632812 28.945312 74.457031 29.027344 C 74.273438 29.101562 74.132812 29.210938 74.039062 29.363281 C 73.941406 29.519531 73.894531 29.683594 73.894531 29.863281 C 73.894531 30.144531 74 30.378906 74.207031 30.570312 C 74.414062 30.753906 74.726562 30.839844 75.144531 30.839844 C 75.546875 30.839844 75.90625 30.753906 76.226562 30.570312 C 76.546875 30.394531 76.78125 30.148438 76.9375 29.839844 C 77.046875 29.605469 77.101562 29.257812 77.101562 28.800781 Z M 77.101562 28.402344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 79.777344 31.527344 L 79.777344 22.945312 L 80.820312 22.945312 L 80.820312 31.527344 Z M 79.777344 31.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 85.382812 29.675781 L 86.421875 29.507812 C 86.476562 29.925781 86.636719 30.246094 86.902344 30.464844 C 87.179688 30.691406 87.554688 30.800781 88.027344 30.800781 C 88.511719 30.800781 88.871094 30.707031 89.109375 30.507812 C 89.34375 30.316406 89.464844 30.085938 89.464844 29.820312 C 89.464844 29.570312 89.359375 29.382812 89.152344 29.257812 C 88.996094 29.164062 88.636719 29.039062 88.070312 28.882812 C 87.289062 28.691406 86.746094 28.523438 86.445312 28.382812 C 86.152344 28.246094 85.929688 28.050781 85.777344 27.800781 C 85.621094 27.550781 85.546875 27.273438 85.546875 26.964844 C 85.546875 26.691406 85.609375 26.433594 85.734375 26.195312 C 85.859375 25.960938 86.03125 25.757812 86.257812 25.589844 C 86.421875 25.480469 86.640625 25.382812 86.921875 25.300781 C 87.214844 25.214844 87.515625 25.175781 87.839844 25.175781 C 88.324219 25.175781 88.746094 25.246094 89.109375 25.382812 C 89.484375 25.523438 89.761719 25.710938 89.945312 25.945312 C 90.121094 26.183594 90.246094 26.503906 90.320312 26.902344 L 89.277344 27.050781 C 89.234375 26.730469 89.09375 26.480469 88.859375 26.300781 C 88.636719 26.121094 88.324219 26.027344 87.921875 26.027344 C 87.433594 26.027344 87.089844 26.113281 86.882812 26.277344 C 86.671875 26.433594 86.570312 26.621094 86.570312 26.839844 C 86.570312 26.980469 86.609375 27.101562 86.695312 27.195312 C 86.777344 27.320312 86.914062 27.417969 87.109375 27.488281 C 87.203125 27.527344 87.511719 27.621094 88.027344 27.757812 C 88.777344 27.957031 89.296875 28.113281 89.589844 28.238281 C 89.890625 28.363281 90.132812 28.550781 90.296875 28.800781 C 90.464844 29.039062 90.546875 29.335938 90.546875 29.695312 C 90.546875 30.058594 90.445312 30.394531 90.234375 30.695312 C 90.027344 31.003906 89.726562 31.246094 89.339844 31.425781 C 88.964844 31.589844 88.527344 31.675781 88.027344 31.675781 C 87.21875 31.675781 86.601562 31.507812 86.171875 31.175781 C 85.757812 30.832031 85.492188 30.332031 85.382812 29.675781 Z M 85.382812 29.675781 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 94.109375 30.589844 L 94.257812 31.507812 C 93.949219 31.574219 93.683594 31.613281 93.464844 31.613281 C 93.074219 31.613281 92.777344 31.550781 92.570312 31.425781 C 92.359375 31.300781 92.203125 31.144531 92.109375 30.945312 C 92.027344 30.753906 91.984375 30.339844 91.984375 29.714844 L 91.984375 26.132812 L 91.214844 26.132812 L 91.214844 25.300781 L 91.984375 25.300781 L 91.984375 23.757812 L 93.046875 23.132812 L 93.046875 25.300781 L 94.109375 25.300781 L 94.109375 26.132812 L 93.046875 26.132812 L 93.046875 29.757812 C 93.046875 30.066406 93.058594 30.257812 93.089844 30.339844 C 93.132812 30.425781 93.195312 30.496094 93.277344 30.550781 C 93.359375 30.605469 93.476562 30.632812 93.632812 30.632812 C 93.757812 30.632812 93.914062 30.621094 94.109375 30.589844 Z M 94.109375 30.589844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 99.195312 30.757812 C 98.804688 31.089844 98.429688 31.332031 98.070312 31.464844 C 97.703125 31.601562 97.320312 31.675781 96.902344 31.675781 C 96.21875 31.675781 95.695312 31.507812 95.320312 31.175781 C 94.953125 30.839844 94.777344 30.414062 94.777344 29.882812 C 94.777344 29.582031 94.84375 29.300781 94.984375 29.050781 C 95.121094 28.800781 95.304688 28.601562 95.527344 28.445312 C 95.746094 28.292969 95.996094 28.175781 96.277344 28.089844 C 96.484375 28.050781 96.796875 28.003906 97.214844 27.945312 C 98.074219 27.851562 98.703125 27.726562 99.109375 27.570312 C 99.109375 27.433594 99.109375 27.339844 99.109375 27.300781 C 99.109375 26.871094 99.011719 26.570312 98.820312 26.402344 C 98.539062 26.152344 98.136719 26.027344 97.609375 26.027344 C 97.109375 26.027344 96.742188 26.121094 96.507812 26.300781 C 96.265625 26.464844 96.09375 26.773438 95.984375 27.214844 L 94.964844 27.089844 C 95.046875 26.648438 95.195312 26.292969 95.402344 26.027344 C 95.621094 25.753906 95.933594 25.542969 96.339844 25.402344 C 96.757812 25.253906 97.226562 25.175781 97.757812 25.175781 C 98.296875 25.175781 98.726562 25.238281 99.046875 25.363281 C 99.382812 25.488281 99.621094 25.648438 99.777344 25.839844 C 99.945312 26.023438 100.054688 26.257812 100.109375 26.550781 C 100.152344 26.730469 100.171875 27.050781 100.171875 27.507812 L 100.171875 28.925781 C 100.171875 29.898438 100.195312 30.519531 100.234375 30.777344 C 100.277344 31.042969 100.367188 31.292969 100.507812 31.527344 L 99.402344 31.527344 C 99.289062 31.308594 99.21875 31.050781 99.195312 30.757812 Z M 99.109375 28.402344 C 98.71875 28.558594 98.140625 28.691406 97.382812 28.800781 C 96.949219 28.871094 96.640625 28.945312 96.464844 29.027344 C 96.28125 29.101562 96.140625 29.210938 96.046875 29.363281 C 95.949219 29.519531 95.902344 29.683594 95.902344 29.863281 C 95.902344 30.144531 96.007812 30.378906 96.214844 30.570312 C 96.421875 30.753906 96.734375 30.839844 97.152344 30.839844 C 97.554688 30.839844 97.914062 30.753906 98.234375 30.570312 C 98.554688 30.394531 98.789062 30.148438 98.945312 29.839844 C 99.054688 29.605469 99.109375 29.257812 99.109375 28.800781 Z M 99.109375 28.402344 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 104.117188 30.589844 L 104.265625 31.507812 C 103.957031 31.574219 103.691406 31.613281 103.472656 31.613281 C 103.082031 31.613281 102.785156 31.550781 102.578125 31.425781 C 102.367188 31.300781 102.210938 31.144531 102.117188 30.945312 C 102.035156 30.753906 101.992188 30.339844 101.992188 29.714844 L 101.992188 26.132812 L 101.222656 26.132812 L 101.222656 25.300781 L 101.992188 25.300781 L 101.992188 23.757812 L 103.054688 23.132812 L 103.054688 25.300781 L 104.117188 25.300781 L 104.117188 26.132812 L 103.054688 26.132812 L 103.054688 29.757812 C 103.054688 30.066406 103.066406 30.257812 103.097656 30.339844 C 103.140625 30.425781 103.203125 30.496094 103.285156 30.550781 C 103.367188 30.605469 103.484375 30.632812 103.640625 30.632812 C 103.765625 30.632812 103.921875 30.621094 104.117188 30.589844 Z M 104.117188 30.589844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 109.390625 29.527344 L 110.496094 29.652344 C 110.3125 30.292969 109.984375 30.792969 109.515625 31.152344 C 109.058594 31.503906 108.464844 31.675781 107.746094 31.675781 C 106.839844 31.675781 106.121094 31.398438 105.578125 30.839844 C 105.046875 30.273438 104.785156 29.480469 104.785156 28.464844 C 104.785156 27.425781 105.058594 26.621094 105.597656 26.050781 C 106.140625 25.464844 106.839844 25.175781 107.703125 25.175781 C 108.535156 25.175781 109.207031 25.460938 109.722656 26.027344 C 110.25 26.585938 110.515625 27.378906 110.515625 28.402344 C 110.515625 28.476562 110.515625 28.570312 110.515625 28.695312 L 105.871094 28.695312 C 105.910156 29.378906 106.105469 29.898438 106.453125 30.257812 C 106.796875 30.621094 107.234375 30.800781 107.765625 30.800781 C 108.152344 30.800781 108.480469 30.707031 108.746094 30.507812 C 109.019531 30.300781 109.234375 29.976562 109.390625 29.527344 Z M 105.933594 27.820312 L 109.410156 27.820312 C 109.371094 27.292969 109.234375 26.898438 109.015625 26.632812 C 108.683594 26.230469 108.246094 26.027344 107.703125 26.027344 C 107.214844 26.027344 106.808594 26.195312 106.472656 26.527344 C 106.152344 26.851562 105.972656 27.277344 105.933594 27.820312 Z M 105.933594 27.820312 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.359375 44.753906 C 73.835938 45.316406 73.503906 45.609375 73.128906 45.839844 C 72.628906 46.089844 72.128906 46.234375 71.609375 46.234375 C 70.898438 46.234375 70.191406 45.878906 69.835938 45.339844 C 69.335938 44.546875 69.191406 43.652344 69.191406 42.441406 C 69.191406 40.046875 70.148438 38.691406 71.398438 38.691406 C 72.210938 38.691406 72.859375 39.109375 73.398438 39.777344 C 73.691406 40.109375 73.984375 40.503906 74.210938 41.152344 L 74.503906 41.152344 L 74.503906 38.339844 L 74.191406 38.339844 C 74.003906 38.753906 73.878906 38.878906 73.648438 38.878906 C 73.546875 38.878906 73.378906 38.839844 73.109375 38.714844 C 72.421875 38.421875 71.816406 38.296875 71.234375 38.296875 C 68.796875 38.296875 67.066406 40.171875 67.066406 42.714844 C 67.066406 45.046875 68.691406 46.816406 71.273438 46.816406 C 72.648438 46.816406 73.609375 46.441406 74.734375 45.066406 Z M 74.359375 44.753906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.523438 47.171875 L 76.875 47.171875 L 77.105469 46.339844 C 77.105469 46.316406 77.105469 46.277344 77.105469 46.277344 C 77.105469 46.234375 77.085938 46.214844 77.042969 46.214844 C 77 46.214844 76.960938 46.234375 76.917969 46.296875 C 76.625 46.734375 76.105469 47.109375 75.855469 47.171875 C 75.667969 47.214844 75.605469 47.277344 75.605469 47.378906 C 75.605469 47.378906 75.605469 47.402344 75.605469 47.421875 L 76.210938 47.421875 L 75.585938 49.796875 C 75.523438 50.046875 75.460938 50.296875 75.460938 50.378906 C 75.460938 50.589844 75.605469 50.671875 75.8125 50.671875 C 76.230469 50.671875 76.480469 50.441406 76.960938 49.714844 L 76.855469 49.652344 C 76.460938 50.152344 76.335938 50.277344 76.210938 50.277344 C 76.148438 50.277344 76.085938 50.253906 76.085938 50.152344 C 76.085938 50.128906 76.105469 50.066406 76.105469 50.046875 L 76.792969 47.421875 L 77.480469 47.421875 Z M 77.523438 47.171875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 82.328125 48.839844 L 82.328125 48.296875 L 77.890625 48.296875 L 77.890625 48.839844 Z M 82.328125 48.839844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 85.996094 50.589844 L 85.996094 50.464844 C 85.390625 50.464844 85.246094 50.316406 85.246094 49.984375 L 85.246094 45.214844 L 85.164062 45.171875 L 83.746094 45.902344 L 83.746094 46.027344 L 83.953125 45.941406 C 84.101562 45.878906 84.226562 45.839844 84.308594 45.839844 C 84.476562 45.839844 84.558594 45.964844 84.558594 46.234375 L 84.558594 49.839844 C 84.558594 50.277344 84.390625 50.441406 83.789062 50.464844 L 83.789062 50.589844 Z M 85.996094 50.589844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 513.324219 175.792969 L 513.324219 175.5 C 512.46875 175.375 512.261719 175.25 512.261719 174.625 L 512.261719 168.875 C 512.261719 168.230469 512.511719 168.042969 513.324219 167.980469 L 513.324219 167.6875 L 509.261719 167.6875 L 509.261719 167.980469 C 510.09375 168.042969 510.324219 168.1875 510.324219 168.875 L 510.324219 171.3125 L 507.429688 171.3125 L 507.429688 168.875 C 507.429688 168.1875 507.65625 168.042969 508.511719 167.980469 L 508.511719 167.6875 L 504.46875 167.6875 L 504.46875 167.980469 C 505.28125 168.042969 505.492188 168.207031 505.492188 168.875 L 505.492188 174.625 C 505.492188 175.25 505.304688 175.375 504.46875 175.5 L 504.46875 175.792969 L 508.511719 175.792969 L 508.511719 175.5 C 507.636719 175.394531 507.429688 175.25 507.429688 174.625 L 507.429688 171.875 L 510.324219 171.875 L 510.324219 174.625 C 510.324219 175.230469 510.136719 175.394531 509.261719 175.5 L 509.261719 175.792969 Z M 513.324219 175.792969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 515.929688 176.375 L 515.285156 176.375 L 515.515625 175.542969 C 515.515625 175.519531 515.515625 175.480469 515.515625 175.480469 C 515.515625 175.4375 515.492188 175.417969 515.453125 175.417969 C 515.410156 175.417969 515.367188 175.4375 515.328125 175.5 C 515.035156 175.9375 514.515625 176.3125 514.265625 176.375 C 514.078125 176.417969 514.015625 176.480469 514.015625 176.582031 C 514.015625 176.582031 514.015625 176.605469 514.015625 176.625 L 514.617188 176.625 L 513.992188 179 C 513.929688 179.25 513.867188 179.5 513.867188 179.582031 C 513.867188 179.792969 514.015625 179.875 514.222656 179.875 C 514.640625 179.875 514.890625 179.644531 515.367188 178.917969 L 515.265625 178.855469 C 514.867188 179.355469 514.742188 179.480469 514.617188 179.480469 C 514.554688 179.480469 514.492188 179.457031 514.492188 179.355469 C 514.492188 179.332031 514.515625 179.269531 514.515625 179.25 L 515.203125 176.625 L 515.890625 176.625 Z M 515.929688 176.375 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.066406 244.540039 L 562.514648 244.235352 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 566.516602 244.223633 L 562.514648 244.235352 M 562.511719 242.735352 L 566.516602 244.223633 L 562.523438 245.735352 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,74.901962%,100%);fill-opacity:1;" d="M 1.332031 276 L 38.667969 276 L 38.667969 254.667969 L 1.332031 254.667969 Z M 1.332031 276 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.999023 412.000977 L 224.000977 412.000977 L 224.000977 428 L 195.999023 428 Z M 195.999023 412.000977 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 24.109375 262.90625 L 23.945312 263.804688 L 22.382812 263.804688 C 22.683594 264.234375 22.839844 264.777344 22.839844 265.429688 C 22.839844 266.445312 22.539062 267.339844 21.945312 268.117188 C 21.34375 268.898438 20.53125 269.28125 19.507812 269.28125 C 18.714844 269.28125 18.089844 269.054688 17.632812 268.59375 C 17.183594 268.125 16.964844 267.511719 16.964844 266.761719 C 16.964844 265.652344 17.265625 264.714844 17.882812 263.949219 C 18.507812 263.171875 19.308594 262.78125 20.296875 262.78125 C 20.617188 262.78125 20.90625 262.824219 21.171875 262.90625 Z M 18.027344 266.742188 C 18.027344 267.242188 18.15625 267.652344 18.421875 267.96875 C 18.683594 268.292969 19.046875 268.449219 19.507812 268.449219 C 20.214844 268.449219 20.765625 268.117188 21.171875 267.449219 C 21.574219 266.773438 21.777344 266.085938 21.777344 265.386719 C 21.777344 264.804688 21.640625 264.359375 21.382812 264.054688 C 21.132812 263.75 20.78125 263.59375 20.339844 263.59375 C 19.632812 263.59375 19.070312 263.917969 18.652344 264.554688 C 18.234375 265.195312 18.027344 265.921875 18.027344 266.742188 Z M 18.027344 266.742188 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 516 416 L 538.101562 416 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 542.100586 416 L 538.101562 416 M 538.101562 414.5 L 542.100586 416 L 538.101562 417.5 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 525 428 L 525 422 C 525 418.686523 527.686523 416 531 416 L 541.790039 416 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 435.999023 427.000977 L 458.100586 427.000977 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.102539 427.000977 L 458.100586 427.000977 M 458.100586 425.500977 L 462.102539 427.000977 L 458.100586 428.500977 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 435.999023 427.000977 L 441.999023 427.000977 C 445.3125 427.000977 447.999023 424.311523 447.999023 421.000977 L 447.999023 416.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 447.999023 412.897461 L 447.999023 416.899414 M 446.499023 416.899414 L 447.999023 412.897461 L 449.499023 416.899414 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(69.803923%,85.09804%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.65625 414.344727 C 348.782227 417.467773 348.782227 422.530273 345.65625 425.65625 C 342.530273 428.782227 337.467773 428.782227 334.344727 425.65625 C 331.21875 422.530273 331.21875 417.467773 334.344727 414.344727 C 337.467773 411.21875 342.530273 411.21875 345.65625 414.344727 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 218.277344 261.609375 L 218.277344 253.023438 L 224.484375 253.023438 L 224.484375 254.023438 L 219.402344 254.023438 L 219.402344 256.671875 L 224.152344 256.671875 L 224.152344 257.671875 L 219.402344 257.671875 L 219.402344 260.585938 L 224.671875 260.585938 L 224.671875 261.609375 Z M 218.277344 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 226.09375 261.609375 L 226.09375 253.023438 L 227.136719 253.023438 L 227.136719 261.609375 Z M 226.09375 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 233.03125 259.609375 L 234.136719 259.734375 C 233.953125 260.375 233.625 260.875 233.15625 261.234375 C 232.699219 261.582031 232.105469 261.753906 231.386719 261.753906 C 230.480469 261.753906 229.761719 261.476562 229.21875 260.921875 C 228.6875 260.351562 228.425781 259.5625 228.425781 258.546875 C 228.425781 257.503906 228.699219 256.703125 229.238281 256.128906 C 229.78125 255.546875 230.480469 255.253906 231.34375 255.253906 C 232.175781 255.253906 232.847656 255.539062 233.363281 256.109375 C 233.890625 256.664062 234.15625 257.457031 234.15625 258.484375 C 234.15625 258.554688 234.15625 258.648438 234.15625 258.773438 L 229.511719 258.773438 C 229.550781 259.457031 229.746094 259.976562 230.09375 260.335938 C 230.4375 260.703125 230.875 260.878906 231.40625 260.878906 C 231.792969 260.878906 232.121094 260.785156 232.386719 260.585938 C 232.660156 260.378906 232.875 260.054688 233.03125 259.609375 Z M 229.574219 257.898438 L 233.050781 257.898438 C 233.011719 257.375 232.875 256.976562 232.65625 256.710938 C 232.324219 256.3125 231.886719 256.109375 231.34375 256.109375 C 230.855469 256.109375 230.449219 256.273438 230.113281 256.609375 C 229.792969 256.929688 229.613281 257.359375 229.574219 257.898438 Z M 229.574219 257.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.457031 261.609375 L 235.457031 255.378906 L 236.394531 255.378906 L 236.394531 256.253906 C 236.585938 255.953125 236.839844 255.707031 237.164062 255.523438 C 237.496094 255.347656 237.871094 255.253906 238.289062 255.253906 C 238.746094 255.253906 239.121094 255.351562 239.414062 255.546875 C 239.707031 255.726562 239.914062 255.992188 240.039062 256.335938 C 240.539062 255.617188 241.175781 255.253906 241.957031 255.253906 C 242.582031 255.253906 243.058594 255.429688 243.394531 255.773438 C 243.726562 256.109375 243.894531 256.628906 243.894531 257.335938 L 243.894531 261.609375 L 242.832031 261.609375 L 242.832031 257.691406 C 242.832031 257.265625 242.792969 256.957031 242.726562 256.773438 C 242.667969 256.597656 242.550781 256.453125 242.371094 256.335938 C 242.191406 256.210938 241.976562 256.148438 241.726562 256.148438 C 241.292969 256.148438 240.933594 256.296875 240.644531 256.585938 C 240.351562 256.878906 240.207031 257.347656 240.207031 257.984375 L 240.207031 261.609375 L 239.144531 261.609375 L 239.144531 257.566406 C 239.144531 257.097656 239.058594 256.742188 238.894531 256.503906 C 238.726562 256.269531 238.445312 256.148438 238.058594 256.148438 C 237.753906 256.148438 237.476562 256.234375 237.226562 256.398438 C 236.976562 256.554688 236.792969 256.785156 236.683594 257.085938 C 236.570312 257.378906 236.519531 257.8125 236.519531 258.378906 L 236.519531 261.609375 Z M 235.457031 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 249.703125 259.609375 L 250.804688 259.734375 C 250.625 260.375 250.296875 260.875 249.828125 261.234375 C 249.367188 261.582031 248.773438 261.753906 248.054688 261.753906 C 247.148438 261.753906 246.429688 261.476562 245.890625 260.921875 C 245.359375 260.351562 245.097656 259.5625 245.097656 258.546875 C 245.097656 257.503906 245.367188 256.703125 245.910156 256.128906 C 246.453125 255.546875 247.148438 255.253906 248.015625 255.253906 C 248.847656 255.253906 249.519531 255.539062 250.035156 256.109375 C 250.5625 256.664062 250.828125 257.457031 250.828125 258.484375 C 250.828125 258.554688 250.828125 258.648438 250.828125 258.773438 L 246.179688 258.773438 C 246.222656 259.457031 246.414062 259.976562 246.765625 260.335938 C 247.109375 260.703125 247.546875 260.878906 248.078125 260.878906 C 248.460938 260.878906 248.789062 260.785156 249.054688 260.585938 C 249.332031 260.378906 249.546875 260.054688 249.703125 259.609375 Z M 246.242188 257.898438 L 249.722656 257.898438 C 249.679688 257.375 249.546875 256.976562 249.328125 256.710938 C 248.992188 256.3125 248.554688 256.109375 248.015625 256.109375 C 247.523438 256.109375 247.117188 256.273438 246.785156 256.609375 C 246.460938 256.929688 246.285156 257.359375 246.242188 257.898438 Z M 246.242188 257.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 252.125 261.609375 L 252.125 255.378906 L 253.085938 255.378906 L 253.085938 256.273438 C 253.527344 255.597656 254.1875 255.253906 255.0625 255.253906 C 255.4375 255.253906 255.777344 255.328125 256.085938 255.460938 C 256.402344 255.585938 256.636719 255.765625 256.792969 255.984375 C 256.945312 256.191406 257.054688 256.453125 257.125 256.753906 C 257.167969 256.953125 257.1875 257.289062 257.1875 257.773438 L 257.1875 261.609375 L 256.125 261.609375 L 256.125 257.816406 C 256.125 257.390625 256.085938 257.066406 256 256.859375 C 255.917969 256.648438 255.773438 256.484375 255.5625 256.359375 C 255.355469 256.222656 255.109375 256.148438 254.835938 256.148438 C 254.386719 256.148438 254 256.296875 253.667969 256.585938 C 253.34375 256.867188 253.1875 257.410156 253.1875 258.210938 L 253.1875 261.609375 Z M 252.125 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 261.113281 260.671875 L 261.257812 261.585938 C 260.953125 261.65625 260.6875 261.691406 260.46875 261.691406 C 260.078125 261.691406 259.78125 261.628906 259.570312 261.503906 C 259.363281 261.378906 259.207031 261.222656 259.113281 261.023438 C 259.03125 260.832031 258.988281 260.421875 258.988281 259.796875 L 258.988281 256.210938 L 258.21875 256.210938 L 258.21875 255.378906 L 258.988281 255.378906 L 258.988281 253.835938 L 260.050781 253.210938 L 260.050781 255.378906 L 261.113281 255.378906 L 261.113281 256.210938 L 260.050781 256.210938 L 260.050781 259.835938 C 260.050781 260.144531 260.0625 260.335938 260.09375 260.421875 C 260.132812 260.503906 260.195312 260.578125 260.28125 260.628906 C 260.363281 260.6875 260.476562 260.710938 260.632812 260.710938 C 260.757812 260.710938 260.914062 260.703125 261.113281 260.671875 Z M 261.113281 260.671875 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 263.28125 261.609375 L 261.382812 255.378906 L 262.46875 255.378906 L 263.46875 258.984375 L 263.820312 260.316406 C 263.832031 260.25 263.945312 259.816406 264.15625 259.023438 L 265.132812 255.378906 L 266.21875 255.378906 L 267.15625 259.003906 L 267.46875 260.191406 L 267.820312 258.984375 L 268.882812 255.378906 L 269.90625 255.378906 L 267.96875 261.609375 L 266.882812 261.609375 L 265.882812 257.878906 L 265.632812 256.816406 L 264.382812 261.609375 Z M 263.28125 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.800781 254.234375 L 270.800781 253.023438 L 271.863281 253.023438 L 271.863281 254.234375 Z M 270.800781 261.609375 L 270.800781 255.378906 L 271.863281 255.378906 L 271.863281 261.609375 Z M 270.800781 261.609375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 273.050781 259.753906 L 274.09375 259.585938 C 274.144531 260.003906 274.304688 260.328125 274.570312 260.546875 C 274.847656 260.769531 275.222656 260.878906 275.695312 260.878906 C 276.179688 260.878906 276.539062 260.785156 276.78125 260.585938 C 277.015625 260.394531 277.132812 260.164062 277.132812 259.898438 C 277.132812 259.648438 277.03125 259.460938 276.820312 259.335938 C 276.664062 259.242188 276.304688 259.117188 275.738281 258.960938 C 274.957031 258.769531 274.414062 258.601562 274.113281 258.460938 C 273.820312 258.328125 273.597656 258.128906 273.445312 257.878906 C 273.289062 257.628906 273.21875 257.351562 273.21875 257.046875 C 273.21875 256.769531 273.28125 256.515625 273.40625 256.273438 C 273.53125 256.039062 273.703125 255.835938 273.925781 255.671875 C 274.09375 255.5625 274.3125 255.460938 274.59375 255.378906 C 274.882812 255.296875 275.1875 255.253906 275.507812 255.253906 C 275.992188 255.253906 276.414062 255.328125 276.78125 255.460938 C 277.15625 255.601562 277.429688 255.789062 277.613281 256.023438 C 277.789062 256.265625 277.914062 256.582031 277.988281 256.984375 L 276.945312 257.128906 C 276.90625 256.8125 276.765625 256.5625 276.53125 256.378906 C 276.304688 256.203125 275.992188 256.109375 275.59375 256.109375 C 275.101562 256.109375 274.757812 256.191406 274.550781 256.359375 C 274.34375 256.515625 274.238281 256.703125 274.238281 256.921875 C 274.238281 257.0625 274.28125 257.179688 274.363281 257.273438 C 274.445312 257.398438 274.582031 257.5 274.78125 257.566406 C 274.875 257.609375 275.179688 257.703125 275.695312 257.835938 C 276.445312 258.035156 276.96875 258.191406 277.257812 258.316406 C 277.5625 258.441406 277.800781 258.628906 277.96875 258.878906 C 278.132812 259.117188 278.21875 259.414062 278.21875 259.773438 C 278.21875 260.140625 278.113281 260.472656 277.90625 260.773438 C 277.695312 261.082031 277.394531 261.328125 277.007812 261.503906 C 276.632812 261.671875 276.195312 261.753906 275.695312 261.753906 C 274.890625 261.753906 274.269531 261.585938 273.84375 261.253906 C 273.425781 260.910156 273.160156 260.410156 273.050781 259.753906 Z M 273.050781 259.753906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 283.71875 259.609375 L 284.820312 259.734375 C 284.640625 260.375 284.3125 260.875 283.84375 261.234375 C 283.382812 261.582031 282.789062 261.753906 282.070312 261.753906 C 281.164062 261.753906 280.445312 261.476562 279.90625 260.921875 C 279.375 260.351562 279.113281 259.5625 279.113281 258.546875 C 279.113281 257.503906 279.382812 256.703125 279.925781 256.128906 C 280.46875 255.546875 281.164062 255.253906 282.03125 255.253906 C 282.863281 255.253906 283.535156 255.539062 284.050781 256.109375 C 284.578125 256.664062 284.84375 257.457031 284.84375 258.484375 C 284.84375 258.554688 284.84375 258.648438 284.84375 258.773438 L 280.195312 258.773438 C 280.238281 259.457031 280.429688 259.976562 280.78125 260.335938 C 281.125 260.703125 281.5625 260.878906 282.09375 260.878906 C 282.476562 260.878906 282.804688 260.785156 283.070312 260.585938 C 283.347656 260.378906 283.5625 260.054688 283.71875 259.609375 Z M 280.257812 257.898438 L 283.738281 257.898438 C 283.695312 257.375 283.5625 256.976562 283.34375 256.710938 C 283.007812 256.3125 282.570312 256.109375 282.03125 256.109375 C 281.539062 256.109375 281.132812 256.273438 280.800781 256.609375 C 280.476562 256.929688 280.300781 257.359375 280.257812 257.898438 Z M 280.257812 257.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 229.382812 272.230469 C 229.382812 271.078125 229.699219 270.222656 230.339844 269.667969 C 230.882812 269.207031 231.53125 268.980469 232.296875 268.980469 C 233.15625 268.980469 233.859375 269.261719 234.402344 269.8125 C 234.945312 270.371094 235.214844 271.140625 235.214844 272.125 C 235.214844 272.933594 235.089844 273.5625 234.839844 274.019531 C 234.601562 274.480469 234.257812 274.84375 233.796875 275.105469 C 233.339844 275.355469 232.839844 275.480469 232.296875 275.480469 C 231.421875 275.480469 230.714844 275.203125 230.171875 274.644531 C 229.640625 274.078125 229.382812 273.269531 229.382812 272.230469 Z M 230.464844 272.230469 C 230.464844 273.019531 230.636719 273.621094 230.984375 274.019531 C 231.328125 274.410156 231.765625 274.605469 232.296875 274.605469 C 232.824219 274.605469 233.261719 274.410156 233.609375 274.019531 C 233.953125 273.621094 234.132812 273.011719 234.132812 272.1875 C 234.132812 271.425781 233.953125 270.84375 233.609375 270.4375 C 233.261719 270.035156 232.824219 269.832031 232.296875 269.832031 C 231.765625 269.832031 231.328125 270.035156 230.984375 270.4375 C 230.636719 270.828125 230.464844 271.425781 230.464844 272.230469 Z M 230.464844 272.230469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 236.453125 277.707031 L 236.453125 269.105469 L 237.410156 269.105469 L 237.410156 269.917969 C 237.628906 269.597656 237.878906 269.363281 238.160156 269.207031 C 238.453125 269.058594 238.804688 268.980469 239.222656 268.980469 C 239.75 268.980469 240.210938 269.121094 240.617188 269.394531 C 241.019531 269.660156 241.328125 270.042969 241.535156 270.542969 C 241.742188 271.042969 241.847656 271.582031 241.847656 272.167969 C 241.847656 272.808594 241.726562 273.386719 241.492188 273.894531 C 241.269531 274.410156 240.941406 274.808594 240.515625 275.082031 C 240.082031 275.34375 239.625 275.480469 239.140625 275.480469 C 238.789062 275.480469 238.476562 275.402344 238.203125 275.25 C 237.921875 275.097656 237.691406 274.910156 237.515625 274.6875 L 237.515625 277.707031 Z M 237.410156 272.25 C 237.410156 273.058594 237.566406 273.65625 237.890625 274.042969 C 238.222656 274.417969 238.617188 274.605469 239.078125 274.605469 C 239.535156 274.605469 239.929688 274.410156 240.265625 274.019531 C 240.609375 273.621094 240.785156 273 240.785156 272.167969 C 240.785156 271.375 240.617188 270.785156 240.285156 270.394531 C 239.960938 269.996094 239.578125 269.792969 239.117188 269.792969 C 238.671875 269.792969 238.273438 270.011719 237.929688 270.4375 C 237.582031 270.855469 237.410156 271.457031 237.410156 272.25 Z M 237.410156 272.25 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.375 273.332031 L 248.480469 273.457031 C 248.296875 274.097656 247.96875 274.597656 247.5 274.957031 C 247.042969 275.308594 246.449219 275.480469 245.730469 275.480469 C 244.824219 275.480469 244.105469 275.203125 243.5625 274.644531 C 243.03125 274.078125 242.773438 273.285156 242.773438 272.269531 C 242.773438 271.230469 243.042969 270.425781 243.585938 269.855469 C 244.125 269.269531 244.824219 268.980469 245.6875 268.980469 C 246.523438 268.980469 247.195312 269.265625 247.710938 269.832031 C 248.234375 270.390625 248.5 271.183594 248.5 272.207031 C 248.5 272.28125 248.5 272.375 248.5 272.5 L 243.855469 272.5 C 243.898438 273.183594 244.089844 273.703125 244.4375 274.0625 C 244.78125 274.425781 245.21875 274.605469 245.75 274.605469 C 246.136719 274.605469 246.464844 274.511719 246.730469 274.3125 C 247.007812 274.105469 247.21875 273.78125 247.375 273.332031 Z M 243.917969 271.625 L 247.398438 271.625 C 247.355469 271.097656 247.21875 270.703125 247 270.4375 C 246.667969 270.035156 246.230469 269.832031 245.6875 269.832031 C 245.199219 269.832031 244.792969 270 244.460938 270.332031 C 244.136719 270.65625 243.960938 271.082031 243.917969 271.625 Z M 243.917969 271.625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 249.78125 275.332031 L 249.78125 269.105469 L 250.738281 269.105469 L 250.738281 270.0625 C 250.972656 269.621094 251.195312 269.328125 251.40625 269.1875 C 251.613281 269.050781 251.84375 268.980469 252.09375 268.980469 C 252.4375 268.980469 252.800781 269.09375 253.175781 269.3125 L 252.800781 270.292969 C 252.550781 270.140625 252.289062 270.0625 252.03125 270.0625 C 251.804688 270.0625 251.597656 270.136719 251.40625 270.269531 C 251.222656 270.410156 251.09375 270.605469 251.007812 270.855469 C 250.894531 271.230469 250.84375 271.640625 250.84375 272.082031 L 250.84375 275.332031 Z M 249.78125 275.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 257.859375 274.5625 C 257.46875 274.894531 257.09375 275.136719 256.734375 275.269531 C 256.371094 275.40625 255.984375 275.480469 255.566406 275.480469 C 254.886719 275.480469 254.359375 275.3125 253.984375 274.980469 C 253.621094 274.644531 253.441406 274.21875 253.441406 273.6875 C 253.441406 273.386719 253.511719 273.105469 253.652344 272.855469 C 253.785156 272.605469 253.96875 272.40625 254.191406 272.25 C 254.410156 272.097656 254.660156 271.980469 254.941406 271.894531 C 255.152344 271.855469 255.464844 271.808594 255.878906 271.75 C 256.738281 271.65625 257.371094 271.53125 257.777344 271.375 C 257.777344 271.238281 257.777344 271.144531 257.777344 271.105469 C 257.777344 270.675781 257.675781 270.375 257.484375 270.207031 C 257.203125 269.957031 256.800781 269.832031 256.277344 269.832031 C 255.777344 269.832031 255.40625 269.925781 255.171875 270.105469 C 254.933594 270.269531 254.761719 270.578125 254.652344 271.019531 L 253.628906 270.894531 C 253.714844 270.453125 253.859375 270.097656 254.066406 269.832031 C 254.285156 269.558594 254.597656 269.347656 255.003906 269.207031 C 255.421875 269.058594 255.890625 268.980469 256.421875 268.980469 C 256.964844 268.980469 257.390625 269.042969 257.714844 269.167969 C 258.046875 269.292969 258.285156 269.453125 258.441406 269.644531 C 258.609375 269.828125 258.71875 270.0625 258.777344 270.355469 C 258.816406 270.535156 258.839844 270.855469 258.839844 271.3125 L 258.839844 272.730469 C 258.839844 273.703125 258.859375 274.324219 258.902344 274.582031 C 258.941406 274.847656 259.03125 275.097656 259.171875 275.332031 L 258.066406 275.332031 C 257.953125 275.113281 257.886719 274.855469 257.859375 274.5625 Z M 257.777344 272.207031 C 257.386719 272.363281 256.808594 272.496094 256.046875 272.605469 C 255.613281 272.675781 255.308594 272.75 255.128906 272.832031 C 254.949219 272.90625 254.808594 273.015625 254.714844 273.167969 C 254.613281 273.324219 254.566406 273.488281 254.566406 273.667969 C 254.566406 273.949219 254.671875 274.183594 254.878906 274.375 C 255.089844 274.558594 255.402344 274.644531 255.816406 274.644531 C 256.21875 274.644531 256.578125 274.558594 256.902344 274.375 C 257.21875 274.199219 257.453125 273.953125 257.609375 273.644531 C 257.71875 273.410156 257.777344 273.0625 257.777344 272.605469 Z M 257.777344 272.207031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 262.785156 274.394531 L 262.929688 275.3125 C 262.621094 275.378906 262.355469 275.417969 262.136719 275.417969 C 261.746094 275.417969 261.449219 275.355469 261.242188 275.230469 C 261.035156 275.105469 260.878906 274.949219 260.785156 274.75 C 260.699219 274.558594 260.660156 274.144531 260.660156 273.519531 L 260.660156 269.9375 L 259.886719 269.9375 L 259.886719 269.105469 L 260.660156 269.105469 L 260.660156 267.5625 L 261.722656 266.9375 L 261.722656 269.105469 L 262.785156 269.105469 L 262.785156 269.9375 L 261.722656 269.9375 L 261.722656 273.5625 C 261.722656 273.871094 261.730469 274.0625 261.761719 274.144531 C 261.804688 274.230469 261.867188 274.300781 261.949219 274.355469 C 262.035156 274.410156 262.148438 274.4375 262.304688 274.4375 C 262.429688 274.4375 262.585938 274.425781 262.785156 274.394531 Z M 262.785156 274.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 263.410156 272.230469 C 263.410156 271.078125 263.726562 270.222656 264.367188 269.667969 C 264.910156 269.207031 265.558594 268.980469 266.324219 268.980469 C 267.183594 268.980469 267.886719 269.261719 268.429688 269.8125 C 268.972656 270.371094 269.242188 271.140625 269.242188 272.125 C 269.242188 272.933594 269.117188 273.5625 268.867188 274.019531 C 268.628906 274.480469 268.285156 274.84375 267.824219 275.105469 C 267.367188 275.355469 266.867188 275.480469 266.324219 275.480469 C 265.449219 275.480469 264.742188 275.203125 264.199219 274.644531 C 263.667969 274.078125 263.410156 273.269531 263.410156 272.230469 Z M 264.492188 272.230469 C 264.492188 273.019531 264.664062 273.621094 265.011719 274.019531 C 265.355469 274.410156 265.792969 274.605469 266.324219 274.605469 C 266.851562 274.605469 267.289062 274.410156 267.636719 274.019531 C 267.980469 273.621094 268.160156 273.011719 268.160156 272.1875 C 268.160156 271.425781 267.980469 270.84375 267.636719 270.4375 C 267.289062 270.035156 266.851562 269.832031 266.324219 269.832031 C 265.792969 269.832031 265.355469 270.035156 265.011719 270.4375 C 264.664062 270.828125 264.492188 271.425781 264.492188 272.230469 Z M 264.492188 272.230469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 270.457031 275.332031 L 270.457031 269.105469 L 271.417969 269.105469 L 271.417969 270.0625 C 271.652344 269.621094 271.875 269.328125 272.082031 269.1875 C 272.292969 269.050781 272.519531 268.980469 272.769531 268.980469 C 273.113281 268.980469 273.480469 269.09375 273.855469 269.3125 L 273.480469 270.292969 C 273.230469 270.140625 272.96875 270.0625 272.707031 270.0625 C 272.484375 270.0625 272.277344 270.136719 272.082031 270.269531 C 271.902344 270.410156 271.769531 270.605469 271.6875 270.855469 C 271.574219 271.230469 271.519531 271.640625 271.519531 272.082031 L 271.519531 275.332031 Z M 270.457031 275.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 67.304688 261.332031 L 67.304688 252.75 L 73.097656 252.75 L 73.097656 253.75 L 68.453125 253.75 L 68.453125 256.417969 L 72.472656 256.417969 L 72.472656 257.4375 L 68.453125 257.4375 L 68.453125 261.332031 Z M 67.304688 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 80.71875 258.3125 L 81.84375 258.605469 C 81.605469 259.535156 81.175781 260.25 80.550781 260.75 C 79.9375 261.238281 79.183594 261.480469 78.28125 261.480469 C 77.363281 261.480469 76.613281 261.292969 76.03125 260.917969 C 75.449219 260.542969 75 260 74.699219 259.292969 C 74.40625 258.574219 74.261719 257.800781 74.261719 256.980469 C 74.261719 256.078125 74.425781 255.292969 74.761719 254.625 C 75.105469 253.957031 75.59375 253.457031 76.21875 253.125 C 76.855469 252.78125 77.550781 252.605469 78.300781 252.605469 C 79.160156 252.605469 79.886719 252.828125 80.46875 253.269531 C 81.0625 253.703125 81.472656 254.3125 81.699219 255.105469 L 80.574219 255.355469 C 80.375 254.730469 80.09375 254.28125 79.71875 254 C 79.34375 253.707031 78.863281 253.5625 78.28125 253.5625 C 77.625 253.5625 77.078125 253.722656 76.636719 254.042969 C 76.1875 254.363281 75.875 254.792969 75.699219 255.332031 C 75.515625 255.863281 75.425781 256.40625 75.425781 256.957031 C 75.425781 257.699219 75.53125 258.34375 75.738281 258.894531 C 75.957031 259.4375 76.292969 259.84375 76.738281 260.105469 C 77.183594 260.371094 77.667969 260.5 78.199219 260.5 C 78.832031 260.5 79.371094 260.324219 79.800781 259.957031 C 80.246094 259.582031 80.550781 259.035156 80.71875 258.3125 Z M 80.71875 258.3125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 86.425781 261.332031 L 86.425781 252.75 L 87.46875 252.75 L 87.46875 261.332031 Z M 86.425781 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.175781 260.5625 C 92.785156 260.894531 92.410156 261.136719 92.050781 261.269531 C 91.6875 261.40625 91.300781 261.480469 90.886719 261.480469 C 90.203125 261.480469 89.675781 261.3125 89.300781 260.980469 C 88.9375 260.644531 88.761719 260.21875 88.761719 259.6875 C 88.761719 259.386719 88.828125 259.105469 88.96875 258.855469 C 89.105469 258.605469 89.285156 258.40625 89.511719 258.25 C 89.730469 258.097656 89.980469 257.980469 90.261719 257.894531 C 90.46875 257.855469 90.78125 257.808594 91.199219 257.75 C 92.058594 257.65625 92.6875 257.53125 93.09375 257.375 C 93.09375 257.238281 93.09375 257.144531 93.09375 257.105469 C 93.09375 256.675781 92.996094 256.375 92.800781 256.207031 C 92.519531 255.957031 92.121094 255.832031 91.59375 255.832031 C 91.09375 255.832031 90.722656 255.925781 90.488281 256.105469 C 90.25 256.269531 90.078125 256.578125 89.96875 257.019531 L 88.949219 256.894531 C 89.03125 256.453125 89.175781 256.097656 89.386719 255.832031 C 89.605469 255.558594 89.917969 255.347656 90.324219 255.207031 C 90.738281 255.058594 91.207031 254.980469 91.738281 254.980469 C 92.28125 254.980469 92.707031 255.042969 93.03125 255.167969 C 93.363281 255.292969 93.605469 255.453125 93.761719 255.644531 C 93.925781 255.828125 94.035156 256.0625 94.09375 256.355469 C 94.136719 256.535156 94.15625 256.855469 94.15625 257.3125 L 94.15625 258.730469 C 94.15625 259.703125 94.175781 260.324219 94.21875 260.582031 C 94.261719 260.847656 94.347656 261.097656 94.488281 261.332031 L 93.386719 261.332031 C 93.269531 261.113281 93.203125 260.855469 93.175781 260.5625 Z M 93.09375 258.207031 C 92.703125 258.363281 92.125 258.496094 91.363281 258.605469 C 90.933594 258.675781 90.625 258.75 90.449219 258.832031 C 90.265625 258.90625 90.125 259.015625 90.03125 259.167969 C 89.933594 259.324219 89.886719 259.488281 89.886719 259.667969 C 89.886719 259.949219 89.988281 260.183594 90.199219 260.375 C 90.40625 260.558594 90.71875 260.644531 91.136719 260.644531 C 91.535156 260.644531 91.894531 260.558594 92.21875 260.375 C 92.535156 260.199219 92.769531 259.953125 92.925781 259.644531 C 93.035156 259.410156 93.09375 259.0625 93.09375 258.605469 Z M 93.09375 258.207031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 95.746094 263.730469 L 95.621094 262.75 C 95.855469 262.800781 96.058594 262.832031 96.226562 262.832031 C 96.460938 262.832031 96.648438 262.792969 96.789062 262.707031 C 96.925781 262.636719 97.042969 262.53125 97.144531 262.394531 C 97.195312 262.28125 97.300781 262.019531 97.457031 261.605469 C 97.480469 261.546875 97.519531 261.464844 97.558594 261.355469 L 95.183594 255.105469 L 96.332031 255.105469 L 97.621094 258.707031 C 97.789062 259.167969 97.941406 259.644531 98.082031 260.144531 C 98.191406 259.675781 98.332031 259.203125 98.496094 258.730469 L 99.832031 255.105469 L 100.894531 255.105469 L 98.519531 261.4375 C 98.269531 262.113281 98.070312 262.589844 97.933594 262.855469 C 97.738281 263.199219 97.523438 263.449219 97.289062 263.605469 C 97.050781 263.769531 96.757812 263.855469 96.414062 263.855469 C 96.214844 263.855469 95.996094 263.8125 95.746094 263.730469 Z M 95.746094 263.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 106.039062 259.332031 L 107.144531 259.457031 C 106.960938 260.097656 106.632812 260.597656 106.164062 260.957031 C 105.707031 261.308594 105.113281 261.480469 104.394531 261.480469 C 103.488281 261.480469 102.769531 261.203125 102.226562 260.644531 C 101.695312 260.078125 101.433594 259.285156 101.433594 258.269531 C 101.433594 257.230469 101.707031 256.425781 102.246094 255.855469 C 102.789062 255.269531 103.488281 254.980469 104.351562 254.980469 C 105.183594 254.980469 105.855469 255.265625 106.371094 255.832031 C 106.898438 256.390625 107.164062 257.183594 107.164062 258.207031 C 107.164062 258.28125 107.164062 258.375 107.164062 258.5 L 102.519531 258.5 C 102.558594 259.183594 102.753906 259.703125 103.101562 260.0625 C 103.445312 260.425781 103.882812 260.605469 104.414062 260.605469 C 104.800781 260.605469 105.128906 260.511719 105.394531 260.3125 C 105.667969 260.105469 105.882812 259.78125 106.039062 259.332031 Z M 102.582031 257.625 L 106.058594 257.625 C 106.019531 257.097656 105.882812 256.703125 105.664062 256.4375 C 105.332031 256.035156 104.894531 255.832031 104.351562 255.832031 C 103.863281 255.832031 103.457031 256 103.121094 256.332031 C 102.800781 256.65625 102.621094 257.082031 102.582031 257.625 Z M 102.582031 257.625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.441406 261.332031 L 108.441406 255.105469 L 109.402344 255.105469 L 109.402344 256.0625 C 109.636719 255.621094 109.859375 255.328125 110.066406 255.1875 C 110.277344 255.050781 110.503906 254.980469 110.753906 254.980469 C 111.097656 254.980469 111.464844 255.09375 111.839844 255.3125 L 111.464844 256.292969 C 111.214844 256.140625 110.953125 256.0625 110.691406 256.0625 C 110.46875 256.0625 110.261719 256.136719 110.066406 256.269531 C 109.886719 256.410156 109.753906 256.605469 109.671875 256.855469 C 109.558594 257.230469 109.503906 257.640625 109.503906 258.082031 L 109.503906 261.332031 Z M 108.441406 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 116.9375 261.332031 L 115.042969 255.105469 L 116.125 255.105469 L 117.125 258.707031 L 117.480469 260.042969 C 117.492188 259.972656 117.605469 259.542969 117.8125 258.75 L 118.792969 255.105469 L 119.875 255.105469 L 120.8125 258.730469 L 121.125 259.917969 L 121.480469 258.707031 L 122.542969 255.105469 L 123.5625 255.105469 L 121.625 261.332031 L 120.542969 261.332031 L 119.542969 257.605469 L 119.292969 256.542969 L 118.042969 261.332031 Z M 116.9375 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 124.460938 253.957031 L 124.460938 252.75 L 125.523438 252.75 L 125.523438 253.957031 Z M 124.460938 261.332031 L 124.460938 255.105469 L 125.523438 255.105469 L 125.523438 261.332031 Z M 124.460938 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.4375 260.394531 L 129.582031 261.3125 C 129.277344 261.378906 129.011719 261.417969 128.792969 261.417969 C 128.402344 261.417969 128.105469 261.355469 127.894531 261.230469 C 127.6875 261.105469 127.53125 260.949219 127.4375 260.75 C 127.355469 260.558594 127.3125 260.144531 127.3125 259.519531 L 127.3125 255.9375 L 126.542969 255.9375 L 126.542969 255.105469 L 127.3125 255.105469 L 127.3125 253.5625 L 128.375 252.9375 L 128.375 255.105469 L 129.4375 255.105469 L 129.4375 255.9375 L 128.375 255.9375 L 128.375 259.5625 C 128.375 259.871094 128.386719 260.0625 128.417969 260.144531 C 128.457031 260.230469 128.519531 260.300781 128.605469 260.355469 C 128.6875 260.410156 128.800781 260.4375 128.957031 260.4375 C 129.082031 260.4375 129.238281 260.425781 129.4375 260.394531 Z M 129.4375 260.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 130.460938 261.332031 L 130.460938 252.75 L 131.523438 252.75 L 131.523438 255.832031 C 132.007812 255.265625 132.625 254.980469 133.375 254.980469 C 133.835938 254.980469 134.230469 255.074219 134.5625 255.25 C 134.90625 255.433594 135.152344 255.683594 135.292969 256 C 135.445312 256.324219 135.523438 256.785156 135.523438 257.394531 L 135.523438 261.332031 L 134.480469 261.332031 L 134.480469 257.394531 C 134.480469 256.871094 134.359375 256.488281 134.125 256.25 C 133.902344 256 133.585938 255.875 133.167969 255.875 C 132.84375 255.875 132.546875 255.957031 132.273438 256.125 C 131.992188 256.28125 131.796875 256.496094 131.6875 256.769531 C 131.574219 257.050781 131.523438 257.4375 131.523438 257.9375 L 131.523438 261.332031 Z M 130.460938 261.332031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.15625 274.289062 C 57.765625 274.621094 57.390625 274.859375 57.03125 274.996094 C 56.667969 275.132812 56.28125 275.203125 55.867188 275.203125 C 55.183594 275.203125 54.65625 275.039062 54.28125 274.703125 C 53.917969 274.371094 53.742188 273.945312 53.742188 273.414062 C 53.742188 273.109375 53.808594 272.828125 53.949219 272.578125 C 54.085938 272.328125 54.265625 272.132812 54.492188 271.976562 C 54.710938 271.824219 54.960938 271.703125 55.242188 271.621094 C 55.449219 271.578125 55.761719 271.53125 56.179688 271.476562 C 57.039062 271.382812 57.667969 271.257812 58.074219 271.101562 C 58.074219 270.964844 58.074219 270.871094 58.074219 270.828125 C 58.074219 270.402344 57.976562 270.101562 57.78125 269.933594 C 57.5 269.683594 57.101562 269.558594 56.574219 269.558594 C 56.074219 269.558594 55.703125 269.652344 55.46875 269.828125 C 55.230469 269.996094 55.058594 270.304688 54.949219 270.746094 L 53.929688 270.621094 C 54.011719 270.179688 54.15625 269.824219 54.367188 269.558594 C 54.585938 269.28125 54.898438 269.074219 55.304688 268.933594 C 55.71875 268.78125 56.1875 268.703125 56.71875 268.703125 C 57.261719 268.703125 57.6875 268.765625 58.011719 268.890625 C 58.34375 269.015625 58.585938 269.179688 58.742188 269.371094 C 58.90625 269.554688 59.015625 269.789062 59.074219 270.078125 C 59.117188 270.261719 59.136719 270.578125 59.136719 271.039062 L 59.136719 272.453125 C 59.136719 273.429688 59.15625 274.046875 59.199219 274.308594 C 59.242188 274.574219 59.328125 274.824219 59.46875 275.058594 L 58.367188 275.058594 C 58.25 274.839844 58.183594 274.578125 58.15625 274.289062 Z M 58.074219 271.933594 C 57.683594 272.089844 57.105469 272.21875 56.34375 272.328125 C 55.914062 272.402344 55.605469 272.476562 55.429688 272.558594 C 55.246094 272.632812 55.105469 272.742188 55.011719 272.890625 C 54.914062 273.046875 54.867188 273.214844 54.867188 273.390625 C 54.867188 273.671875 54.96875 273.90625 55.179688 274.101562 C 55.386719 274.28125 55.699219 274.371094 56.117188 274.371094 C 56.515625 274.371094 56.875 274.28125 57.199219 274.101562 C 57.515625 273.921875 57.75 273.679688 57.90625 273.371094 C 58.015625 273.136719 58.074219 272.789062 58.074219 272.328125 Z M 58.074219 271.933594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 64.832031 272.789062 L 65.875 272.914062 C 65.757812 273.636719 65.46875 274.199219 65 274.601562 C 64.523438 275.007812 63.945312 275.203125 63.269531 275.203125 C 62.421875 275.203125 61.738281 274.929688 61.226562 274.371094 C 60.710938 273.820312 60.457031 273.015625 60.457031 271.976562 C 60.457031 271.296875 60.566406 270.703125 60.789062 270.203125 C 61.007812 269.703125 61.34375 269.328125 61.789062 269.078125 C 62.25 268.828125 62.75 268.703125 63.289062 268.703125 C 63.957031 268.703125 64.503906 268.882812 64.9375 269.226562 C 65.363281 269.558594 65.644531 270.039062 65.769531 270.664062 L 64.75 270.828125 C 64.648438 270.414062 64.476562 270.101562 64.226562 269.890625 C 63.976562 269.671875 63.675781 269.558594 63.332031 269.558594 C 62.789062 269.558594 62.351562 269.757812 62.019531 270.140625 C 61.695312 270.515625 61.539062 271.117188 61.539062 271.933594 C 61.539062 272.78125 61.695312 273.390625 62.019531 273.765625 C 62.335938 274.140625 62.753906 274.328125 63.269531 274.328125 C 63.6875 274.328125 64.03125 274.203125 64.3125 273.953125 C 64.585938 273.703125 64.757812 273.320312 64.832031 272.789062 Z M 64.832031 272.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.082031 274.121094 L 69.226562 275.039062 C 68.921875 275.105469 68.65625 275.140625 68.4375 275.140625 C 68.046875 275.140625 67.75 275.078125 67.539062 274.953125 C 67.332031 274.828125 67.175781 274.671875 67.082031 274.476562 C 67 274.28125 66.957031 273.871094 66.957031 273.246094 L 66.957031 269.664062 L 66.1875 269.664062 L 66.1875 268.828125 L 66.957031 268.828125 L 66.957031 267.289062 L 68.019531 266.664062 L 68.019531 268.828125 L 69.082031 268.828125 L 69.082031 269.664062 L 68.019531 269.664062 L 68.019531 273.289062 C 68.019531 273.59375 68.03125 273.789062 68.0625 273.871094 C 68.101562 273.953125 68.164062 274.027344 68.25 274.078125 C 68.332031 274.136719 68.445312 274.164062 68.601562 274.164062 C 68.726562 274.164062 68.882812 274.152344 69.082031 274.121094 Z M 69.082031 274.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 70.105469 267.683594 L 70.105469 266.476562 L 71.167969 266.476562 L 71.167969 267.683594 Z M 70.105469 275.058594 L 70.105469 268.828125 L 71.167969 268.828125 L 71.167969 275.058594 Z M 70.105469 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.5 275.058594 L 72.125 268.828125 L 73.25 268.828125 L 74.582031 272.558594 C 74.71875 272.964844 74.851562 273.382812 74.976562 273.808594 C 75.070312 273.492188 75.207031 273.101562 75.375 272.640625 L 76.75 268.828125 L 77.832031 268.828125 L 75.476562 275.058594 Z M 74.5 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 82.832031 274.289062 C 82.441406 274.621094 82.066406 274.859375 81.707031 274.996094 C 81.34375 275.132812 80.957031 275.203125 80.539062 275.203125 C 79.859375 275.203125 79.332031 275.039062 78.957031 274.703125 C 78.59375 274.371094 78.414062 273.945312 78.414062 273.414062 C 78.414062 273.109375 78.484375 272.828125 78.625 272.578125 C 78.757812 272.328125 78.941406 272.132812 79.164062 271.976562 C 79.382812 271.824219 79.632812 271.703125 79.914062 271.621094 C 80.125 271.578125 80.4375 271.53125 80.851562 271.476562 C 81.710938 271.382812 82.34375 271.257812 82.75 271.101562 C 82.75 270.964844 82.75 270.871094 82.75 270.828125 C 82.75 270.402344 82.648438 270.101562 82.457031 269.933594 C 82.175781 269.683594 81.773438 269.558594 81.25 269.558594 C 80.75 269.558594 80.378906 269.652344 80.144531 269.828125 C 79.90625 269.996094 79.734375 270.304688 79.625 270.746094 L 78.601562 270.621094 C 78.6875 270.179688 78.832031 269.824219 79.039062 269.558594 C 79.257812 269.28125 79.570312 269.074219 79.976562 268.933594 C 80.394531 268.78125 80.863281 268.703125 81.394531 268.703125 C 81.9375 268.703125 82.363281 268.765625 82.6875 268.890625 C 83.019531 269.015625 83.257812 269.179688 83.414062 269.371094 C 83.582031 269.554688 83.691406 269.789062 83.75 270.078125 C 83.789062 270.261719 83.8125 270.578125 83.8125 271.039062 L 83.8125 272.453125 C 83.8125 273.429688 83.832031 274.046875 83.875 274.308594 C 83.914062 274.574219 84.003906 274.824219 84.144531 275.058594 L 83.039062 275.058594 C 82.925781 274.839844 82.859375 274.578125 82.832031 274.289062 Z M 82.75 271.933594 C 82.359375 272.089844 81.78125 272.21875 81.019531 272.328125 C 80.585938 272.402344 80.28125 272.476562 80.101562 272.558594 C 79.921875 272.632812 79.78125 272.742188 79.6875 272.890625 C 79.585938 273.046875 79.539062 273.214844 79.539062 273.390625 C 79.539062 273.671875 79.644531 273.90625 79.851562 274.101562 C 80.0625 274.28125 80.375 274.371094 80.789062 274.371094 C 81.191406 274.371094 81.550781 274.28125 81.875 274.101562 C 82.191406 273.921875 82.425781 273.679688 82.582031 273.371094 C 82.691406 273.136719 82.75 272.789062 82.75 272.328125 Z M 82.75 271.933594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 87.757812 274.121094 L 87.902344 275.039062 C 87.59375 275.105469 87.328125 275.140625 87.109375 275.140625 C 86.71875 275.140625 86.421875 275.078125 86.214844 274.953125 C 86.007812 274.828125 85.851562 274.671875 85.757812 274.476562 C 85.671875 274.28125 85.632812 273.871094 85.632812 273.246094 L 85.632812 269.664062 L 84.859375 269.664062 L 84.859375 268.828125 L 85.632812 268.828125 L 85.632812 267.289062 L 86.695312 266.664062 L 86.695312 268.828125 L 87.757812 268.828125 L 87.757812 269.664062 L 86.695312 269.664062 L 86.695312 273.289062 C 86.695312 273.59375 86.703125 273.789062 86.734375 273.871094 C 86.777344 273.953125 86.839844 274.027344 86.921875 274.078125 C 87.007812 274.136719 87.121094 274.164062 87.277344 274.164062 C 87.402344 274.164062 87.558594 274.152344 87.757812 274.121094 Z M 87.757812 274.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.777344 267.683594 L 88.777344 266.476562 L 89.839844 266.476562 L 89.839844 267.683594 Z M 88.777344 275.058594 L 88.777344 268.828125 L 89.839844 268.828125 L 89.839844 275.058594 Z M 88.777344 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 91.046875 271.953125 C 91.046875 270.804688 91.367188 269.949219 92.007812 269.390625 C 92.546875 268.933594 93.199219 268.703125 93.964844 268.703125 C 94.824219 268.703125 95.527344 268.984375 96.070312 269.539062 C 96.609375 270.09375 96.882812 270.867188 96.882812 271.851562 C 96.882812 272.65625 96.757812 273.289062 96.507812 273.746094 C 96.265625 274.203125 95.921875 274.570312 95.464844 274.828125 C 95.007812 275.078125 94.507812 275.203125 93.964844 275.203125 C 93.089844 275.203125 92.382812 274.929688 91.839844 274.371094 C 91.308594 273.804688 91.046875 272.996094 91.046875 271.953125 Z M 92.132812 271.953125 C 92.132812 272.746094 92.304688 273.34375 92.652344 273.746094 C 92.996094 274.136719 93.433594 274.328125 93.964844 274.328125 C 94.492188 274.328125 94.929688 274.136719 95.277344 273.746094 C 95.621094 273.34375 95.796875 272.734375 95.796875 271.914062 C 95.796875 271.152344 95.621094 270.570312 95.277344 270.164062 C 94.929688 269.761719 94.492188 269.558594 93.964844 269.558594 C 93.433594 269.558594 92.996094 269.761719 92.652344 270.164062 C 92.304688 270.554688 92.132812 271.152344 92.132812 271.953125 Z M 92.132812 271.953125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.117188 275.058594 L 98.117188 268.828125 L 99.078125 268.828125 L 99.078125 269.726562 C 99.519531 269.046875 100.179688 268.703125 101.054688 268.703125 C 101.429688 268.703125 101.769531 268.777344 102.078125 268.914062 C 102.394531 269.039062 102.628906 269.214844 102.785156 269.433594 C 102.9375 269.640625 103.046875 269.902344 103.117188 270.203125 C 103.160156 270.402344 103.179688 270.742188 103.179688 271.226562 L 103.179688 275.058594 L 102.117188 275.058594 L 102.117188 271.265625 C 102.117188 270.839844 102.078125 270.515625 101.992188 270.308594 C 101.910156 270.101562 101.765625 269.933594 101.554688 269.808594 C 101.347656 269.671875 101.101562 269.601562 100.828125 269.601562 C 100.378906 269.601562 99.992188 269.746094 99.660156 270.039062 C 99.335938 270.320312 99.179688 270.859375 99.179688 271.664062 L 99.179688 275.058594 Z M 98.117188 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.375 275.058594 L 108.375 269.664062 L 107.4375 269.664062 L 107.4375 268.828125 L 108.375 268.828125 L 108.375 268.183594 C 108.375 267.757812 108.40625 267.445312 108.480469 267.246094 C 108.589844 266.96875 108.773438 266.746094 109.023438 266.578125 C 109.28125 266.414062 109.648438 266.328125 110.105469 266.328125 C 110.398438 266.328125 110.71875 266.367188 111.085938 266.433594 L 110.917969 267.351562 C 110.710938 267.308594 110.507812 267.289062 110.3125 267.289062 C 109.992188 267.289062 109.761719 267.359375 109.625 267.496094 C 109.484375 267.636719 109.417969 267.890625 109.417969 268.265625 L 109.417969 268.828125 L 110.648438 268.828125 L 110.648438 269.664062 L 109.417969 269.664062 L 109.417969 275.058594 Z M 108.375 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 115.542969 275.058594 L 115.542969 274.140625 C 115.054688 274.851562 114.398438 275.203125 113.566406 275.203125 C 113.199219 275.203125 112.863281 275.132812 112.542969 274.996094 C 112.222656 274.84375 111.980469 274.664062 111.816406 274.453125 C 111.660156 274.246094 111.554688 273.992188 111.503906 273.683594 C 111.460938 273.476562 111.441406 273.140625 111.441406 272.683594 L 111.441406 268.828125 L 112.480469 268.828125 L 112.480469 272.289062 C 112.480469 272.84375 112.507812 273.214844 112.566406 273.390625 C 112.617188 273.671875 112.753906 273.890625 112.960938 274.058594 C 113.179688 274.214844 113.449219 274.289062 113.773438 274.289062 C 114.089844 274.289062 114.386719 274.214844 114.667969 274.058594 C 114.945312 273.890625 115.136719 273.671875 115.253906 273.390625 C 115.363281 273.117188 115.417969 272.703125 115.417969 272.164062 L 115.417969 268.828125 L 116.480469 268.828125 L 116.480469 275.058594 Z M 115.542969 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.136719 275.058594 L 118.136719 268.828125 L 119.09375 268.828125 L 119.09375 269.726562 C 119.535156 269.046875 120.199219 268.703125 121.074219 268.703125 C 121.449219 268.703125 121.785156 268.777344 122.09375 268.914062 C 122.410156 269.039062 122.644531 269.214844 122.800781 269.433594 C 122.953125 269.640625 123.0625 269.902344 123.136719 270.203125 C 123.175781 270.402344 123.199219 270.742188 123.199219 271.226562 L 123.199219 275.058594 L 122.136719 275.058594 L 122.136719 271.265625 C 122.136719 270.839844 122.09375 270.515625 122.011719 270.308594 C 121.925781 270.101562 121.78125 269.933594 121.574219 269.808594 C 121.363281 269.671875 121.121094 269.601562 120.84375 269.601562 C 120.394531 269.601562 120.011719 269.746094 119.675781 270.039062 C 119.355469 270.320312 119.199219 270.859375 119.199219 271.664062 L 119.199219 275.058594 Z M 118.136719 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 128.871094 272.789062 L 129.914062 272.914062 C 129.800781 273.636719 129.507812 274.199219 129.039062 274.601562 C 128.566406 275.007812 127.988281 275.203125 127.308594 275.203125 C 126.460938 275.203125 125.777344 274.929688 125.269531 274.371094 C 124.753906 273.820312 124.496094 273.015625 124.496094 271.976562 C 124.496094 271.296875 124.605469 270.703125 124.832031 270.203125 C 125.050781 269.703125 125.382812 269.328125 125.832031 269.078125 C 126.289062 268.828125 126.789062 268.703125 127.332031 268.703125 C 127.996094 268.703125 128.542969 268.882812 128.976562 269.226562 C 129.402344 269.558594 129.683594 270.039062 129.808594 270.664062 L 128.789062 270.828125 C 128.691406 270.414062 128.519531 270.101562 128.269531 269.890625 C 128.019531 269.671875 127.714844 269.558594 127.371094 269.558594 C 126.832031 269.558594 126.394531 269.757812 126.058594 270.140625 C 125.738281 270.515625 125.582031 271.117188 125.582031 271.933594 C 125.582031 272.78125 125.738281 273.390625 126.058594 273.765625 C 126.378906 274.140625 126.792969 274.328125 127.308594 274.328125 C 127.726562 274.328125 128.070312 274.203125 128.351562 273.953125 C 128.628906 273.703125 128.800781 273.320312 128.871094 272.789062 Z M 128.871094 272.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 133.121094 274.121094 L 133.269531 275.039062 C 132.960938 275.105469 132.695312 275.140625 132.476562 275.140625 C 132.085938 275.140625 131.789062 275.078125 131.582031 274.953125 C 131.371094 274.828125 131.214844 274.671875 131.121094 274.476562 C 131.039062 274.28125 130.996094 273.871094 130.996094 273.246094 L 130.996094 269.664062 L 130.226562 269.664062 L 130.226562 268.828125 L 130.996094 268.828125 L 130.996094 267.289062 L 132.058594 266.664062 L 132.058594 268.828125 L 133.121094 268.828125 L 133.121094 269.664062 L 132.058594 269.664062 L 132.058594 273.289062 C 132.058594 273.59375 132.070312 273.789062 132.101562 273.871094 C 132.144531 273.953125 132.207031 274.027344 132.289062 274.078125 C 132.371094 274.136719 132.488281 274.164062 132.644531 274.164062 C 132.769531 274.164062 132.925781 274.152344 133.121094 274.121094 Z M 133.121094 274.121094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.144531 267.683594 L 134.144531 266.476562 L 135.207031 266.476562 L 135.207031 267.683594 Z M 134.144531 275.058594 L 134.144531 268.828125 L 135.207031 268.828125 L 135.207031 275.058594 Z M 134.144531 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 136.414062 271.953125 C 136.414062 270.804688 136.730469 269.949219 137.371094 269.390625 C 137.914062 268.933594 138.566406 268.703125 139.332031 268.703125 C 140.191406 268.703125 140.894531 268.984375 141.433594 269.539062 C 141.976562 270.09375 142.246094 270.867188 142.246094 271.851562 C 142.246094 272.65625 142.121094 273.289062 141.871094 273.746094 C 141.632812 274.203125 141.289062 274.570312 140.832031 274.828125 C 140.371094 275.078125 139.871094 275.203125 139.332031 275.203125 C 138.457031 275.203125 137.746094 274.929688 137.207031 274.371094 C 136.675781 273.804688 136.414062 272.996094 136.414062 271.953125 Z M 137.496094 271.953125 C 137.496094 272.746094 137.667969 273.34375 138.019531 273.746094 C 138.363281 274.136719 138.800781 274.328125 139.332031 274.328125 C 139.855469 274.328125 140.292969 274.136719 140.644531 273.746094 C 140.988281 273.34375 141.164062 272.734375 141.164062 271.914062 C 141.164062 271.152344 140.988281 270.570312 140.644531 270.164062 C 140.292969 269.761719 139.855469 269.558594 139.332031 269.558594 C 138.800781 269.558594 138.363281 269.761719 138.019531 270.164062 C 137.667969 270.554688 137.496094 271.152344 137.496094 271.953125 Z M 137.496094 271.953125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 143.484375 275.058594 L 143.484375 268.828125 L 144.441406 268.828125 L 144.441406 269.726562 C 144.882812 269.046875 145.546875 268.703125 146.421875 268.703125 C 146.796875 268.703125 147.132812 268.777344 147.441406 268.914062 C 147.757812 269.039062 147.992188 269.214844 148.148438 269.433594 C 148.300781 269.640625 148.410156 269.902344 148.484375 270.203125 C 148.523438 270.402344 148.546875 270.742188 148.546875 271.226562 L 148.546875 275.058594 L 147.484375 275.058594 L 147.484375 271.265625 C 147.484375 270.839844 147.441406 270.515625 147.359375 270.308594 C 147.273438 270.101562 147.128906 269.933594 146.921875 269.808594 C 146.710938 269.671875 146.46875 269.601562 146.191406 269.601562 C 145.742188 269.601562 145.359375 269.746094 145.023438 270.039062 C 144.703125 270.320312 144.546875 270.859375 144.546875 271.664062 L 144.546875 275.058594 Z M 143.484375 275.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 483.703125 263.644531 L 484.828125 263.9375 C 484.589844 264.871094 484.164062 265.582031 483.539062 266.082031 C 482.921875 266.574219 482.167969 266.8125 481.265625 266.8125 C 480.351562 266.8125 479.601562 266.625 479.015625 266.25 C 478.433594 265.875 477.984375 265.332031 477.683594 264.625 C 477.390625 263.90625 477.246094 263.136719 477.246094 262.3125 C 477.246094 261.410156 477.414062 260.625 477.746094 259.957031 C 478.089844 259.292969 478.578125 258.792969 479.203125 258.457031 C 479.839844 258.113281 480.539062 257.9375 481.289062 257.9375 C 482.148438 257.9375 482.871094 258.160156 483.453125 258.605469 C 484.046875 259.035156 484.460938 259.644531 484.683594 260.4375 L 483.558594 260.6875 C 483.359375 260.0625 483.078125 259.613281 482.703125 259.332031 C 482.328125 259.042969 481.851562 258.894531 481.265625 258.894531 C 480.609375 258.894531 480.0625 259.058594 479.621094 259.375 C 479.171875 259.699219 478.859375 260.125 478.683594 260.667969 C 478.5 261.199219 478.414062 261.738281 478.414062 262.292969 C 478.414062 263.03125 478.515625 263.675781 478.726562 264.230469 C 478.945312 264.769531 479.277344 265.175781 479.726562 265.4375 C 480.167969 265.703125 480.652344 265.832031 481.183594 265.832031 C 481.820312 265.832031 482.355469 265.65625 482.789062 265.292969 C 483.230469 264.917969 483.539062 264.371094 483.703125 263.644531 Z M 483.703125 263.644531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 485.703125 263.5625 C 485.703125 262.410156 486.019531 261.558594 486.660156 261 C 487.203125 260.542969 487.855469 260.3125 488.621094 260.3125 C 489.480469 260.3125 490.183594 260.59375 490.722656 261.144531 C 491.265625 261.703125 491.535156 262.472656 491.535156 263.457031 C 491.535156 264.265625 491.410156 264.894531 491.160156 265.355469 C 490.921875 265.8125 490.578125 266.175781 490.121094 266.4375 C 489.660156 266.6875 489.160156 266.8125 488.621094 266.8125 C 487.746094 266.8125 487.035156 266.535156 486.496094 265.980469 C 485.964844 265.410156 485.703125 264.605469 485.703125 263.5625 Z M 486.785156 263.5625 C 486.785156 264.355469 486.957031 264.953125 487.308594 265.355469 C 487.652344 265.746094 488.089844 265.9375 488.621094 265.9375 C 489.144531 265.9375 489.582031 265.746094 489.933594 265.355469 C 490.277344 264.953125 490.453125 264.34375 490.453125 263.519531 C 490.453125 262.761719 490.277344 262.175781 489.933594 261.769531 C 489.582031 261.371094 489.144531 261.167969 488.621094 261.167969 C 488.089844 261.167969 487.652344 261.371094 487.308594 261.769531 C 486.957031 262.160156 486.785156 262.761719 486.785156 263.5625 Z M 486.785156 263.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 492.773438 266.667969 L 492.773438 260.4375 L 493.730469 260.4375 L 493.730469 261.332031 C 494.175781 260.65625 494.835938 260.3125 495.710938 260.3125 C 496.085938 260.3125 496.425781 260.386719 496.730469 260.519531 C 497.050781 260.644531 497.285156 260.824219 497.441406 261.042969 C 497.589844 261.25 497.699219 261.511719 497.773438 261.8125 C 497.816406 262.011719 497.835938 262.347656 497.835938 262.832031 L 497.835938 266.667969 L 496.773438 266.667969 L 496.773438 262.875 C 496.773438 262.449219 496.730469 262.125 496.648438 261.917969 C 496.566406 261.707031 496.417969 261.542969 496.210938 261.417969 C 496.003906 261.28125 495.757812 261.207031 495.480469 261.207031 C 495.035156 261.207031 494.648438 261.355469 494.316406 261.644531 C 493.992188 261.925781 493.835938 262.46875 493.835938 263.269531 L 493.835938 266.667969 Z M 492.773438 266.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 503.511719 264.394531 L 504.550781 264.519531 C 504.4375 265.246094 504.144531 265.808594 503.675781 266.207031 C 503.203125 266.613281 502.625 266.8125 501.949219 266.8125 C 501.097656 266.8125 500.417969 266.535156 499.90625 265.980469 C 499.390625 265.425781 499.136719 264.625 499.136719 263.582031 C 499.136719 262.90625 499.246094 262.3125 499.46875 261.8125 C 499.6875 261.3125 500.019531 260.9375 500.46875 260.6875 C 500.925781 260.4375 501.425781 260.3125 501.96875 260.3125 C 502.636719 260.3125 503.183594 260.488281 503.613281 260.832031 C 504.042969 261.167969 504.324219 261.644531 504.449219 262.269531 L 503.425781 262.4375 C 503.328125 262.019531 503.15625 261.707031 502.90625 261.5 C 502.65625 261.28125 502.355469 261.167969 502.011719 261.167969 C 501.46875 261.167969 501.03125 261.363281 500.699219 261.75 C 500.375 262.125 500.21875 262.722656 500.21875 263.542969 C 500.21875 264.390625 500.375 265 500.699219 265.375 C 501.015625 265.75 501.433594 265.9375 501.949219 265.9375 C 502.363281 265.9375 502.707031 265.8125 502.988281 265.5625 C 503.265625 265.3125 503.4375 264.925781 503.511719 264.394531 Z M 503.511719 264.394531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 509.511719 265.894531 C 509.121094 266.230469 508.746094 266.46875 508.386719 266.605469 C 508.019531 266.738281 507.636719 266.8125 507.21875 266.8125 C 506.535156 266.8125 506.011719 266.644531 505.636719 266.3125 C 505.269531 265.980469 505.09375 265.550781 505.09375 265.019531 C 505.09375 264.71875 505.160156 264.4375 505.300781 264.1875 C 505.4375 263.9375 505.621094 263.738281 505.84375 263.582031 C 506.0625 263.433594 506.3125 263.3125 506.59375 263.230469 C 506.800781 263.1875 507.113281 263.140625 507.53125 263.082031 C 508.390625 262.988281 509.019531 262.863281 509.425781 262.707031 C 509.425781 262.574219 509.425781 262.480469 509.425781 262.4375 C 509.425781 262.011719 509.328125 261.707031 509.136719 261.542969 C 508.855469 261.292969 508.453125 261.167969 507.925781 261.167969 C 507.425781 261.167969 507.058594 261.261719 506.824219 261.4375 C 506.582031 261.605469 506.410156 261.910156 506.300781 262.355469 L 505.28125 262.230469 C 505.363281 261.785156 505.511719 261.433594 505.71875 261.167969 C 505.9375 260.890625 506.25 260.683594 506.65625 260.542969 C 507.074219 260.390625 507.542969 260.3125 508.074219 260.3125 C 508.613281 260.3125 509.042969 260.375 509.363281 260.5 C 509.699219 260.625 509.9375 260.785156 510.09375 260.980469 C 510.261719 261.160156 510.371094 261.394531 510.425781 261.6875 C 510.46875 261.871094 510.488281 262.1875 510.488281 262.644531 L 510.488281 264.0625 C 510.488281 265.035156 510.511719 265.65625 510.550781 265.917969 C 510.59375 266.183594 510.683594 266.433594 510.824219 266.667969 L 509.71875 266.667969 C 509.605469 266.449219 509.535156 266.1875 509.511719 265.894531 Z M 509.425781 263.542969 C 509.035156 263.699219 508.457031 263.828125 507.699219 263.9375 C 507.265625 264.011719 506.957031 264.082031 506.78125 264.167969 C 506.597656 264.238281 506.457031 264.347656 506.363281 264.5 C 506.265625 264.65625 506.21875 264.824219 506.21875 265 C 506.21875 265.28125 506.324219 265.515625 506.53125 265.707031 C 506.738281 265.890625 507.050781 265.980469 507.46875 265.980469 C 507.871094 265.980469 508.230469 265.890625 508.550781 265.707031 C 508.871094 265.53125 509.105469 265.285156 509.261719 264.980469 C 509.371094 264.746094 509.425781 264.394531 509.425781 263.9375 Z M 509.425781 263.542969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 514.433594 265.730469 L 514.582031 266.644531 C 514.273438 266.714844 514.007812 266.75 513.789062 266.75 C 513.398438 266.75 513.101562 266.6875 512.894531 266.5625 C 512.683594 266.4375 512.527344 266.28125 512.433594 266.082031 C 512.351562 265.890625 512.308594 265.480469 512.308594 264.855469 L 512.308594 261.269531 L 511.539062 261.269531 L 511.539062 260.4375 L 512.308594 260.4375 L 512.308594 258.894531 L 513.371094 258.269531 L 513.371094 260.4375 L 514.433594 260.4375 L 514.433594 261.269531 L 513.371094 261.269531 L 513.371094 264.894531 C 513.371094 265.203125 513.382812 265.394531 513.414062 265.480469 C 513.457031 265.5625 513.519531 265.636719 513.601562 265.6875 C 513.683594 265.746094 513.800781 265.769531 513.957031 265.769531 C 514.082031 265.769531 514.238281 265.761719 514.433594 265.730469 Z M 514.433594 265.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 519.707031 264.667969 L 520.808594 264.792969 C 520.628906 265.433594 520.300781 265.933594 519.832031 266.292969 C 519.371094 266.640625 518.777344 266.8125 518.058594 266.8125 C 517.152344 266.8125 516.433594 266.535156 515.894531 265.980469 C 515.363281 265.410156 515.101562 264.621094 515.101562 263.605469 C 515.101562 262.5625 515.371094 261.761719 515.914062 261.1875 C 516.457031 260.605469 517.152344 260.3125 518.019531 260.3125 C 518.851562 260.3125 519.523438 260.597656 520.039062 261.167969 C 520.566406 261.722656 520.832031 262.515625 520.832031 263.542969 C 520.832031 263.613281 520.832031 263.707031 520.832031 263.832031 L 516.183594 263.832031 C 516.226562 264.515625 516.417969 265.035156 516.769531 265.394531 C 517.113281 265.761719 517.550781 265.9375 518.082031 265.9375 C 518.464844 265.9375 518.792969 265.84375 519.058594 265.644531 C 519.335938 265.4375 519.550781 265.113281 519.707031 264.667969 Z M 516.246094 262.957031 L 519.726562 262.957031 C 519.683594 262.433594 519.550781 262.035156 519.332031 261.769531 C 518.996094 261.371094 518.558594 261.167969 518.019531 261.167969 C 517.527344 261.167969 517.121094 261.332031 516.789062 261.667969 C 516.464844 261.988281 516.289062 262.417969 516.246094 262.957031 Z M 516.246094 262.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 522.128906 266.667969 L 522.128906 260.4375 L 523.089844 260.4375 L 523.089844 261.332031 C 523.53125 260.65625 524.191406 260.3125 525.066406 260.3125 C 525.441406 260.3125 525.78125 260.386719 526.089844 260.519531 C 526.40625 260.644531 526.640625 260.824219 526.796875 261.042969 C 526.949219 261.25 527.058594 261.511719 527.128906 261.8125 C 527.171875 262.011719 527.191406 262.347656 527.191406 262.832031 L 527.191406 266.667969 L 526.128906 266.667969 L 526.128906 262.875 C 526.128906 262.449219 526.089844 262.125 526.003906 261.917969 C 525.921875 261.707031 525.777344 261.542969 525.566406 261.417969 C 525.359375 261.28125 525.113281 261.207031 524.839844 261.207031 C 524.390625 261.207031 524.003906 261.355469 523.671875 261.644531 C 523.347656 261.925781 523.191406 262.46875 523.191406 263.269531 L 523.191406 266.667969 Z M 522.128906 266.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 532.867188 265.894531 C 532.476562 266.230469 532.101562 266.46875 531.742188 266.605469 C 531.378906 266.738281 530.992188 266.8125 530.574219 266.8125 C 529.894531 266.8125 529.367188 266.644531 528.992188 266.3125 C 528.628906 265.980469 528.449219 265.550781 528.449219 265.019531 C 528.449219 264.71875 528.519531 264.4375 528.660156 264.1875 C 528.792969 263.9375 528.976562 263.738281 529.199219 263.582031 C 529.417969 263.433594 529.667969 263.3125 529.949219 263.230469 C 530.160156 263.1875 530.472656 263.140625 530.886719 263.082031 C 531.746094 262.988281 532.378906 262.863281 532.785156 262.707031 C 532.785156 262.574219 532.785156 262.480469 532.785156 262.4375 C 532.785156 262.011719 532.683594 261.707031 532.492188 261.542969 C 532.210938 261.292969 531.808594 261.167969 531.285156 261.167969 C 530.785156 261.167969 530.414062 261.261719 530.179688 261.4375 C 529.941406 261.605469 529.769531 261.910156 529.660156 262.355469 L 528.636719 262.230469 C 528.722656 261.785156 528.867188 261.433594 529.074219 261.167969 C 529.292969 260.890625 529.605469 260.683594 530.011719 260.542969 C 530.429688 260.390625 530.898438 260.3125 531.429688 260.3125 C 531.972656 260.3125 532.398438 260.375 532.722656 260.5 C 533.054688 260.625 533.292969 260.785156 533.449219 260.980469 C 533.617188 261.160156 533.726562 261.394531 533.785156 261.6875 C 533.824219 261.871094 533.847656 262.1875 533.847656 262.644531 L 533.847656 264.0625 C 533.847656 265.035156 533.867188 265.65625 533.910156 265.917969 C 533.949219 266.183594 534.039062 266.433594 534.179688 266.667969 L 533.074219 266.667969 C 532.960938 266.449219 532.894531 266.1875 532.867188 265.894531 Z M 532.785156 263.542969 C 532.394531 263.699219 531.816406 263.828125 531.054688 263.9375 C 530.621094 264.011719 530.316406 264.082031 530.136719 264.167969 C 529.957031 264.238281 529.816406 264.347656 529.722656 264.5 C 529.621094 264.65625 529.574219 264.824219 529.574219 265 C 529.574219 265.28125 529.679688 265.515625 529.886719 265.707031 C 530.097656 265.890625 530.410156 265.980469 530.824219 265.980469 C 531.226562 265.980469 531.585938 265.890625 531.910156 265.707031 C 532.226562 265.53125 532.460938 265.285156 532.617188 264.980469 C 532.726562 264.746094 532.785156 264.394531 532.785156 263.9375 Z M 532.785156 263.542969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 537.792969 265.730469 L 537.9375 266.644531 C 537.628906 266.714844 537.363281 266.75 537.144531 266.75 C 536.753906 266.75 536.457031 266.6875 536.25 266.5625 C 536.042969 266.4375 535.886719 266.28125 535.792969 266.082031 C 535.707031 265.890625 535.667969 265.480469 535.667969 264.855469 L 535.667969 261.269531 L 534.894531 261.269531 L 534.894531 260.4375 L 535.667969 260.4375 L 535.667969 258.894531 L 536.730469 258.269531 L 536.730469 260.4375 L 537.792969 260.4375 L 537.792969 261.269531 L 536.730469 261.269531 L 536.730469 264.894531 C 536.730469 265.203125 536.738281 265.394531 536.769531 265.480469 C 536.8125 265.5625 536.875 265.636719 536.957031 265.6875 C 537.042969 265.746094 537.15625 265.769531 537.3125 265.769531 C 537.4375 265.769531 537.59375 265.761719 537.792969 265.730469 Z M 537.792969 265.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 543.0625 264.667969 L 544.167969 264.792969 C 543.984375 265.433594 543.65625 265.933594 543.1875 266.292969 C 542.730469 266.640625 542.136719 266.8125 541.417969 266.8125 C 540.511719 266.8125 539.792969 266.535156 539.25 265.980469 C 538.71875 265.410156 538.457031 264.621094 538.457031 263.605469 C 538.457031 262.5625 538.730469 261.761719 539.269531 261.1875 C 539.8125 260.605469 540.511719 260.3125 541.375 260.3125 C 542.207031 260.3125 542.878906 260.597656 543.394531 261.167969 C 543.921875 261.722656 544.1875 262.515625 544.1875 263.542969 C 544.1875 263.613281 544.1875 263.707031 544.1875 263.832031 L 539.542969 263.832031 C 539.582031 264.515625 539.777344 265.035156 540.125 265.394531 C 540.46875 265.761719 540.90625 265.9375 541.4375 265.9375 C 541.824219 265.9375 542.152344 265.84375 542.417969 265.644531 C 542.691406 265.4375 542.90625 265.113281 543.0625 264.667969 Z M 539.605469 262.957031 L 543.082031 262.957031 C 543.042969 262.433594 542.90625 262.035156 542.6875 261.769531 C 542.355469 261.371094 541.917969 261.167969 541.375 261.167969 C 540.886719 261.167969 540.480469 261.332031 540.144531 261.667969 C 539.824219 261.988281 539.644531 262.417969 539.605469 262.957031 Z M 539.605469 262.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 378.390625 263.644531 L 379.515625 263.9375 C 379.273438 264.871094 378.847656 265.582031 378.222656 266.082031 C 377.609375 266.574219 376.851562 266.8125 375.953125 266.8125 C 375.035156 266.8125 374.285156 266.625 373.703125 266.25 C 373.117188 265.875 372.671875 265.332031 372.367188 264.625 C 372.078125 263.90625 371.929688 263.136719 371.929688 262.3125 C 371.929688 261.410156 372.097656 260.625 372.429688 259.957031 C 372.773438 259.292969 373.265625 258.792969 373.890625 258.457031 C 374.523438 258.113281 375.222656 257.9375 375.972656 257.9375 C 376.832031 257.9375 377.554688 258.160156 378.140625 258.605469 C 378.734375 259.035156 379.144531 259.644531 379.367188 260.4375 L 378.242188 260.6875 C 378.046875 260.0625 377.765625 259.613281 377.390625 259.332031 C 377.015625 259.042969 376.535156 258.894531 375.953125 258.894531 C 375.296875 258.894531 374.75 259.058594 374.304688 259.375 C 373.859375 259.699219 373.546875 260.125 373.367188 260.667969 C 373.1875 261.199219 373.097656 261.738281 373.097656 262.292969 C 373.097656 263.03125 373.203125 263.675781 373.410156 264.230469 C 373.628906 264.769531 373.960938 265.175781 374.410156 265.4375 C 374.851562 265.703125 375.335938 265.832031 375.867188 265.832031 C 376.503906 265.832031 377.039062 265.65625 377.472656 265.292969 C 377.914062 264.917969 378.222656 264.371094 378.390625 263.644531 Z M 378.390625 263.644531 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 380.390625 263.5625 C 380.390625 262.410156 380.707031 261.558594 381.347656 261 C 381.890625 260.542969 382.539062 260.3125 383.304688 260.3125 C 384.164062 260.3125 384.867188 260.59375 385.410156 261.144531 C 385.953125 261.703125 386.222656 262.472656 386.222656 263.457031 C 386.222656 264.265625 386.097656 264.894531 385.847656 265.355469 C 385.609375 265.8125 385.265625 266.175781 384.804688 266.4375 C 384.347656 266.6875 383.847656 266.8125 383.304688 266.8125 C 382.429688 266.8125 381.722656 266.535156 381.179688 265.980469 C 380.648438 265.410156 380.390625 264.605469 380.390625 263.5625 Z M 381.472656 263.5625 C 381.472656 264.355469 381.644531 264.953125 381.992188 265.355469 C 382.335938 265.746094 382.773438 265.9375 383.304688 265.9375 C 383.832031 265.9375 384.269531 265.746094 384.617188 265.355469 C 384.960938 264.953125 385.140625 264.34375 385.140625 263.519531 C 385.140625 262.761719 384.960938 262.175781 384.617188 261.769531 C 384.269531 261.371094 383.832031 261.167969 383.304688 261.167969 C 382.773438 261.167969 382.335938 261.371094 381.992188 261.769531 C 381.644531 262.160156 381.472656 262.761719 381.472656 263.5625 Z M 381.472656 263.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 387.460938 269.042969 L 387.460938 260.4375 L 388.417969 260.4375 L 388.417969 261.25 C 388.636719 260.933594 388.886719 260.699219 389.167969 260.542969 C 389.460938 260.390625 389.8125 260.3125 390.230469 260.3125 C 390.753906 260.3125 391.21875 260.453125 391.625 260.730469 C 392.027344 260.996094 392.335938 261.375 392.542969 261.875 C 392.75 262.375 392.855469 262.917969 392.855469 263.5 C 392.855469 264.140625 392.734375 264.71875 392.5 265.230469 C 392.277344 265.746094 391.949219 266.140625 391.523438 266.417969 C 391.089844 266.675781 390.628906 266.8125 390.148438 266.8125 C 389.796875 266.8125 389.484375 266.734375 389.210938 266.582031 C 388.925781 266.433594 388.699219 266.246094 388.523438 266.019531 L 388.523438 269.042969 Z M 388.417969 263.582031 C 388.417969 264.390625 388.574219 264.988281 388.898438 265.375 C 389.230469 265.75 389.625 265.9375 390.085938 265.9375 C 390.542969 265.9375 390.9375 265.746094 391.273438 265.355469 C 391.617188 264.953125 391.792969 264.332031 391.792969 263.5 C 391.792969 262.707031 391.625 262.121094 391.292969 261.730469 C 390.96875 261.328125 390.585938 261.125 390.125 261.125 C 389.675781 261.125 389.28125 261.34375 388.9375 261.769531 C 388.589844 262.1875 388.417969 262.792969 388.417969 263.582031 Z M 388.417969 263.582031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 394.089844 269.0625 L 393.964844 268.082031 C 394.199219 268.136719 394.402344 268.167969 394.570312 268.167969 C 394.804688 268.167969 394.992188 268.125 395.132812 268.042969 C 395.269531 267.96875 395.386719 267.863281 395.488281 267.730469 C 395.539062 267.613281 395.644531 267.355469 395.800781 266.9375 C 395.824219 266.878906 395.863281 266.796875 395.902344 266.6875 L 393.527344 260.4375 L 394.675781 260.4375 L 395.964844 264.042969 C 396.132812 264.5 396.285156 264.980469 396.425781 265.480469 C 396.535156 265.011719 396.675781 264.535156 396.839844 264.0625 L 398.175781 260.4375 L 399.238281 260.4375 L 396.863281 266.769531 C 396.613281 267.449219 396.414062 267.921875 396.277344 268.1875 C 396.082031 268.53125 395.867188 268.78125 395.632812 268.9375 C 395.394531 269.105469 395.101562 269.1875 394.757812 269.1875 C 394.558594 269.1875 394.339844 269.144531 394.089844 269.0625 Z M 394.089844 269.0625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 293.78125 112.941406 L 293.78125 104.359375 L 294.90625 104.359375 L 294.90625 112.941406 Z M 293.78125 112.941406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 296.78125 112.941406 L 296.78125 106.710938 L 297.738281 106.710938 L 297.738281 107.609375 C 298.179688 106.929688 298.84375 106.585938 299.71875 106.585938 C 300.09375 106.585938 300.429688 106.660156 300.738281 106.796875 C 301.054688 106.921875 301.289062 107.097656 301.445312 107.316406 C 301.597656 107.523438 301.707031 107.785156 301.78125 108.085938 C 301.820312 108.285156 301.84375 108.625 301.84375 109.109375 L 301.84375 112.941406 L 300.78125 112.941406 L 300.78125 109.148438 C 300.78125 108.722656 300.738281 108.398438 300.65625 108.191406 C 300.570312 107.984375 300.425781 107.816406 300.21875 107.691406 C 300.007812 107.554688 299.765625 107.484375 299.488281 107.484375 C 299.039062 107.484375 298.65625 107.628906 298.320312 107.921875 C 298 108.203125 297.84375 108.742188 297.84375 109.546875 L 297.84375 112.941406 Z M 296.78125 112.941406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 303.449219 115.316406 L 303.449219 106.710938 L 304.410156 106.710938 L 304.410156 107.523438 C 304.628906 107.207031 304.878906 106.972656 305.160156 106.816406 C 305.449219 106.664062 305.804688 106.585938 306.222656 106.585938 C 306.746094 106.585938 307.210938 106.726562 307.617188 107.003906 C 308.019531 107.269531 308.324219 107.648438 308.535156 108.148438 C 308.742188 108.648438 308.847656 109.191406 308.847656 109.773438 C 308.847656 110.414062 308.726562 110.992188 308.492188 111.503906 C 308.269531 112.019531 307.941406 112.414062 307.511719 112.691406 C 307.082031 112.953125 306.621094 113.085938 306.136719 113.085938 C 305.789062 113.085938 305.476562 113.007812 305.199219 112.859375 C 304.917969 112.707031 304.691406 112.519531 304.511719 112.296875 L 304.511719 115.316406 Z M 304.410156 109.859375 C 304.410156 110.664062 304.566406 111.265625 304.886719 111.648438 C 305.222656 112.023438 305.617188 112.210938 306.074219 112.210938 C 306.535156 112.210938 306.929688 112.019531 307.261719 111.628906 C 307.605469 111.226562 307.785156 110.609375 307.785156 109.773438 C 307.785156 108.984375 307.617188 108.394531 307.285156 108.003906 C 306.960938 107.601562 306.574219 107.398438 306.117188 107.398438 C 305.667969 107.398438 305.273438 107.617188 304.929688 108.046875 C 304.582031 108.460938 304.410156 109.066406 304.410156 109.859375 Z M 304.410156 109.859375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 314.203125 112.941406 L 314.203125 112.023438 C 313.714844 112.734375 313.058594 113.085938 312.222656 113.085938 C 311.859375 113.085938 311.519531 113.015625 311.203125 112.878906 C 310.878906 112.726562 310.640625 112.546875 310.472656 112.335938 C 310.316406 112.128906 310.214844 111.875 310.160156 111.566406 C 310.121094 111.359375 310.097656 111.023438 310.097656 110.566406 L 310.097656 106.710938 L 311.140625 106.710938 L 311.140625 110.171875 C 311.140625 110.726562 311.167969 111.097656 311.222656 111.273438 C 311.277344 111.554688 311.410156 111.773438 311.621094 111.941406 C 311.839844 112.097656 312.109375 112.171875 312.433594 112.171875 C 312.75 112.171875 313.046875 112.097656 313.328125 111.941406 C 313.605469 111.773438 313.796875 111.554688 313.910156 111.273438 C 314.019531 111 314.078125 110.585938 314.078125 110.046875 L 314.078125 106.710938 L 315.140625 106.710938 L 315.140625 112.941406 Z M 314.203125 112.941406 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 319.101562 112.003906 L 319.246094 112.921875 C 318.941406 112.988281 318.675781 113.023438 318.457031 113.023438 C 318.066406 113.023438 317.769531 112.960938 317.558594 112.835938 C 317.351562 112.710938 317.195312 112.554688 317.101562 112.359375 C 317.019531 112.164062 316.976562 111.753906 316.976562 111.128906 L 316.976562 107.546875 L 316.207031 107.546875 L 316.207031 106.710938 L 316.976562 106.710938 L 316.976562 105.171875 L 318.039062 104.546875 L 318.039062 106.710938 L 319.101562 106.710938 L 319.101562 107.546875 L 318.039062 107.546875 L 318.039062 111.171875 C 318.039062 111.476562 318.050781 111.671875 318.082031 111.753906 C 318.121094 111.835938 318.183594 111.910156 318.269531 111.960938 C 318.351562 112.019531 318.464844 112.046875 318.621094 112.046875 C 318.746094 112.046875 318.902344 112.035156 319.101562 112.003906 Z M 319.101562 112.003906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 293.445312 126.667969 L 293.445312 120.4375 L 294.402344 120.4375 L 294.402344 121.332031 C 294.84375 120.65625 295.507812 120.3125 296.382812 120.3125 C 296.757812 120.3125 297.09375 120.386719 297.402344 120.519531 C 297.71875 120.644531 297.953125 120.824219 298.109375 121.042969 C 298.261719 121.25 298.371094 121.511719 298.445312 121.8125 C 298.484375 122.011719 298.507812 122.347656 298.507812 122.832031 L 298.507812 126.667969 L 297.445312 126.667969 L 297.445312 122.875 C 297.445312 122.449219 297.402344 122.125 297.320312 121.917969 C 297.234375 121.707031 297.089844 121.542969 296.882812 121.417969 C 296.671875 121.28125 296.429688 121.207031 296.152344 121.207031 C 295.703125 121.207031 295.320312 121.355469 294.984375 121.644531 C 294.664062 121.925781 294.507812 122.46875 294.507812 123.269531 L 294.507812 126.667969 Z M 293.445312 126.667969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 299.722656 123.5625 C 299.722656 122.410156 300.039062 121.558594 300.679688 121 C 301.222656 120.542969 301.875 120.3125 302.640625 120.3125 C 303.5 120.3125 304.203125 120.59375 304.742188 121.144531 C 305.285156 121.703125 305.554688 122.472656 305.554688 123.457031 C 305.554688 124.265625 305.429688 124.894531 305.179688 125.355469 C 304.941406 125.8125 304.597656 126.175781 304.140625 126.4375 C 303.679688 126.6875 303.179688 126.8125 302.640625 126.8125 C 301.765625 126.8125 301.054688 126.535156 300.515625 125.980469 C 299.984375 125.410156 299.722656 124.605469 299.722656 123.5625 Z M 300.804688 123.5625 C 300.804688 124.355469 300.976562 124.953125 301.328125 125.355469 C 301.671875 125.746094 302.109375 125.9375 302.640625 125.9375 C 303.164062 125.9375 303.601562 125.746094 303.953125 125.355469 C 304.296875 124.953125 304.472656 124.34375 304.472656 123.519531 C 304.472656 122.761719 304.296875 122.175781 303.953125 121.769531 C 303.601562 121.371094 303.164062 121.167969 302.640625 121.167969 C 302.109375 121.167969 301.671875 121.371094 301.328125 121.769531 C 300.976562 122.160156 300.804688 122.761719 300.804688 123.5625 Z M 300.804688 123.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 310.835938 126.667969 L 310.835938 125.875 C 310.429688 126.5 309.84375 126.8125 309.085938 126.8125 C 308.59375 126.8125 308.148438 126.671875 307.730469 126.394531 C 307.3125 126.121094 306.984375 125.738281 306.75 125.25 C 306.527344 124.765625 306.417969 124.203125 306.417969 123.5625 C 306.417969 122.9375 306.523438 122.375 306.730469 121.875 C 306.9375 121.363281 307.242188 120.972656 307.648438 120.707031 C 308.0625 120.449219 308.527344 120.3125 309.042969 120.3125 C 309.417969 120.3125 309.75 120.390625 310.042969 120.542969 C 310.335938 120.699219 310.570312 120.90625 310.75 121.167969 L 310.75 118.082031 L 311.8125 118.082031 L 311.8125 126.667969 Z M 307.5 123.5625 C 307.5 124.355469 307.667969 124.953125 308 125.355469 C 308.335938 125.746094 308.730469 125.9375 309.1875 125.9375 C 309.648438 125.9375 310.03125 125.75 310.355469 125.375 C 310.6875 125 310.855469 124.425781 310.855469 123.644531 C 310.855469 122.800781 310.6875 122.175781 310.355469 121.769531 C 310.023438 121.371094 309.617188 121.167969 309.148438 121.167969 C 308.671875 121.167969 308.277344 121.363281 307.960938 121.75 C 307.652344 122.140625 307.5 122.746094 307.5 123.5625 Z M 307.5 123.5625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 317.71875 124.667969 L 318.820312 124.792969 C 318.640625 125.433594 318.3125 125.933594 317.84375 126.292969 C 317.382812 126.640625 316.789062 126.8125 316.070312 126.8125 C 315.164062 126.8125 314.445312 126.535156 313.90625 125.980469 C 313.375 125.410156 313.113281 124.621094 313.113281 123.605469 C 313.113281 122.5625 313.382812 121.761719 313.925781 121.1875 C 314.46875 120.605469 315.164062 120.3125 316.03125 120.3125 C 316.863281 120.3125 317.535156 120.597656 318.050781 121.167969 C 318.578125 121.722656 318.84375 122.515625 318.84375 123.542969 C 318.84375 123.613281 318.84375 123.707031 318.84375 123.832031 L 314.195312 123.832031 C 314.238281 124.515625 314.429688 125.035156 314.78125 125.394531 C 315.125 125.761719 315.5625 125.9375 316.09375 125.9375 C 316.476562 125.9375 316.804688 125.84375 317.070312 125.644531 C 317.347656 125.4375 317.5625 125.113281 317.71875 124.667969 Z M 314.257812 122.957031 L 317.738281 122.957031 C 317.695312 122.433594 317.5625 122.035156 317.34375 121.769531 C 317.007812 121.371094 316.570312 121.167969 316.03125 121.167969 C 315.539062 121.167969 315.132812 121.332031 314.800781 121.667969 C 314.476562 121.988281 314.300781 122.417969 314.257812 122.957031 Z M 314.257812 122.957031 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 308.429688 146.558594 C 307.910156 147.121094 307.578125 147.414062 307.203125 147.640625 C 306.703125 147.890625 306.203125 148.039062 305.679688 148.039062 C 304.972656 148.039062 304.265625 147.683594 303.910156 147.140625 C 303.410156 146.351562 303.265625 145.453125 303.265625 144.246094 C 303.265625 141.851562 304.222656 140.496094 305.472656 140.496094 C 306.285156 140.496094 306.929688 140.914062 307.472656 141.578125 C 307.765625 141.914062 308.054688 142.308594 308.285156 142.953125 L 308.578125 142.953125 L 308.578125 140.140625 L 308.265625 140.140625 C 308.078125 140.558594 307.953125 140.683594 307.722656 140.683594 C 307.617188 140.683594 307.453125 140.640625 307.179688 140.515625 C 306.492188 140.226562 305.890625 140.101562 305.304688 140.101562 C 302.867188 140.101562 301.140625 141.976562 301.140625 144.515625 C 301.140625 146.851562 302.765625 148.621094 305.347656 148.621094 C 306.722656 148.621094 307.679688 148.246094 308.804688 146.871094 Z M 308.429688 146.558594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 311.59375 148.976562 L 310.949219 148.976562 L 311.179688 148.140625 C 311.179688 148.121094 311.179688 148.078125 311.179688 148.078125 C 311.179688 148.039062 311.15625 148.015625 311.117188 148.015625 C 311.074219 148.015625 311.03125 148.039062 310.992188 148.101562 C 310.699219 148.539062 310.179688 148.914062 309.929688 148.976562 C 309.742188 149.015625 309.679688 149.078125 309.679688 149.183594 C 309.679688 149.183594 309.679688 149.203125 309.679688 149.226562 L 310.28125 149.226562 L 309.65625 151.601562 C 309.59375 151.851562 309.53125 152.101562 309.53125 152.183594 C 309.53125 152.390625 309.679688 152.476562 309.886719 152.476562 C 310.304688 152.476562 310.554688 152.246094 311.03125 151.515625 L 310.929688 151.453125 C 310.53125 151.953125 310.40625 152.078125 310.28125 152.078125 C 310.21875 152.078125 310.15625 152.058594 310.15625 151.953125 C 310.15625 151.933594 310.179688 151.871094 310.179688 151.851562 L 310.867188 149.226562 L 311.554688 149.226562 Z M 311.59375 148.976562 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 301.832031 137.730469 L 301.832031 136.542969 C 302.25 136.074219 302.796875 135.832031 303.480469 135.832031 C 303.714844 135.832031 303.957031 135.871094 304.207031 135.9375 C 304.46875 136.011719 304.839844 136.140625 305.3125 136.332031 C 305.574219 136.457031 305.777344 136.542969 305.917969 136.582031 C 306.050781 136.613281 306.191406 136.625 306.332031 136.625 C 306.582031 136.625 306.839844 136.550781 307.105469 136.394531 C 307.378906 136.246094 307.625 136.050781 307.832031 135.8125 L 307.832031 137.0625 C 307.582031 137.300781 307.324219 137.472656 307.0625 137.582031 C 306.8125 137.683594 306.527344 137.730469 306.207031 137.730469 C 305.96875 137.730469 305.75 137.703125 305.542969 137.644531 C 305.332031 137.59375 304.988281 137.457031 304.519531 137.25 C 304.0625 137.042969 303.675781 136.9375 303.375 136.9375 C 303.125 136.9375 302.886719 136.996094 302.667969 137.105469 C 302.441406 137.21875 302.167969 137.425781 301.832031 137.730469 Z M 301.832031 137.730469 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.12207 293.37793 C 455.293945 294.549805 455.293945 296.448242 454.12207 297.620117 C 452.950195 298.791992 451.051758 298.791992 449.879883 297.620117 C 448.708008 296.448242 448.708008 294.549805 449.879883 293.37793 C 451.051758 292.206055 452.950195 292.206055 454.12207 293.37793 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 344.1875 99.328125 C 344.1875 98.496094 343.5 97.808594 342.664062 97.808594 C 341.832031 97.808594 341.144531 98.496094 341.144531 99.328125 C 341.144531 100.160156 341.832031 100.847656 342.664062 100.847656 C 343.5 100.847656 344.1875 100.160156 344.1875 99.328125 Z M 344.1875 99.328125 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.120117 241.879883 C 343.291992 243.051758 343.291992 244.950195 342.120117 246.12207 C 340.948242 247.293945 339.049805 247.293945 337.87793 246.12207 C 336.706055 244.950195 336.706055 243.051758 337.87793 241.879883 C 339.049805 240.708008 340.948242 240.708008 342.120117 241.879883 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 194.851562 30.660156 C 194.851562 29.828125 194.164062 29.140625 193.332031 29.140625 C 192.5 29.140625 191.8125 29.828125 191.8125 30.660156 C 191.8125 31.496094 192.5 32.183594 193.332031 32.183594 C 194.164062 32.183594 194.851562 31.496094 194.851562 30.660156 Z M 194.851562 30.660156 "/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 510.120117 293.37793 C 511.291992 294.549805 511.291992 296.448242 510.120117 297.620117 C 508.948242 298.791992 507.049805 298.791992 505.87793 297.620117 C 504.706055 296.448242 504.706055 294.549805 505.87793 293.37793 C 507.049805 292.206055 508.948242 292.206055 510.120117 293.37793 " transform="matrix(1.333333,0,0,1.333333,-260,-294.666667)"/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 418.851562 99.328125 C 418.851562 98.496094 418.164062 97.808594 417.332031 97.808594 C 416.5 97.808594 415.8125 98.496094 415.8125 99.328125 C 415.8125 100.160156 416.5 100.847656 417.332031 100.847656 C 418.164062 100.847656 418.851562 100.160156 418.851562 99.328125 Z M 418.851562 99.328125 "/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 212 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
@@ -0,0 +1,39 @@
|
||||
\begin{thebibliography}{8}
|
||||
\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi
|
||||
\expandafter\ifx\csname bibnamefont\endcsname\relax
|
||||
\def\bibnamefont#1{#1}\fi
|
||||
\expandafter\ifx\csname bibfnamefont\endcsname\relax
|
||||
\def\bibfnamefont#1{#1}\fi
|
||||
\expandafter\ifx\csname citenamefont\endcsname\relax
|
||||
\def\citenamefont#1{#1}\fi
|
||||
\expandafter\ifx\csname url\endcsname\relax
|
||||
\def\url#1{\texttt{#1}}\fi
|
||||
\expandafter\ifx\csname urlprefix\endcsname\relax\def\urlprefix{URL }\fi
|
||||
\providecommand{\bibinfo}[2]{#2}
|
||||
\providecommand{\eprint}[2][]{\url{#2}}
|
||||
|
||||
\bibitem[{\citenamefont{Shi et~al.}(2021)\citenamefont{Shi, Xu, and Pan}}]{shi4DFlightTrajectory2021}
|
||||
\bibinfo{author}{\bibfnamefont{Z.}~\bibnamefont{Shi}}, \bibinfo{author}{\bibfnamefont{M.}~\bibnamefont{Xu}}, \bibnamefont{and} \bibinfo{author}{\bibfnamefont{Q.}~\bibnamefont{Pan}}, \bibinfo{journal}{IEEE Transactions on Intelligent Transportation Systems} \textbf{\bibinfo{volume}{22}}, \bibinfo{pages}{7242} (\bibinfo{year}{2021}), ISSN \bibinfo{issn}{1558-0016}.
|
||||
|
||||
\bibitem[{\citenamefont{Shi et~al.}(2018)\citenamefont{Shi, Xu, Pan, Yan, and Zhang}}]{shiLSTMbasedFlightTrajectory2018}
|
||||
\bibinfo{author}{\bibfnamefont{Z.}~\bibnamefont{Shi}}, \bibinfo{author}{\bibfnamefont{M.}~\bibnamefont{Xu}}, \bibinfo{author}{\bibfnamefont{Q.}~\bibnamefont{Pan}}, \bibinfo{author}{\bibfnamefont{B.}~\bibnamefont{Yan}}, \bibnamefont{and} \bibinfo{author}{\bibfnamefont{H.}~\bibnamefont{Zhang}}, in \emph{\bibinfo{booktitle}{2018 {{International Joint Conference}} on {{Neural Networks}} ({{IJCNN}})}} (\bibinfo{year}{2018}), pp. \bibinfo{pages}{1--8}, ISSN \bibinfo{issn}{2161-4407}.
|
||||
|
||||
\bibitem[{\citenamefont{Zhang and Chen}(2022)}]{zhangPhasedFlightTrajectory2022}
|
||||
\bibinfo{author}{\bibfnamefont{K.}~\bibnamefont{Zhang}} \bibnamefont{and} \bibinfo{author}{\bibfnamefont{B.}~\bibnamefont{Chen}}, \emph{\bibinfo{title}{Phased {{Flight Trajectory Prediction}} with {{Deep Learning}}}} (\bibinfo{year}{2022}), \eprint{2203.09033}.
|
||||
|
||||
\bibitem[{Ads()}]{AdsblolGlobe_history_20242024}
|
||||
\emph{\bibinfo{title}{Adsblol/globe\_history\_2024: 2024 {{Historical}} data for all aircrafts traces known to adsb.lol. {{Openly}} licensed.}}, \bibinfo{howpublished}{https://github.com/adsblol/globe\_history\_2024}.
|
||||
|
||||
\bibitem[{Ads(2025)}]{AdsblolGlobe_history_20252025}
|
||||
\emph{\bibinfo{title}{Adsblol/globe\_history\_2025}}, \bibinfo{howpublished}{ADSB.lol} (\bibinfo{year}{2025}).
|
||||
|
||||
\bibitem[{\citenamefont{Riahi~Manesh and Kaabouch}(2017)}]{riahimaneshAnalysisVulnerabilitiesAttacks2017}
|
||||
\bibinfo{author}{\bibfnamefont{M.}~\bibnamefont{Riahi~Manesh}} \bibnamefont{and} \bibinfo{author}{\bibfnamefont{N.}~\bibnamefont{Kaabouch}}, \bibinfo{journal}{International Journal of Critical Infrastructure Protection} \textbf{\bibinfo{volume}{19}}, \bibinfo{pages}{16} (\bibinfo{year}{2017}), ISSN \bibinfo{issn}{1874-5482}.
|
||||
|
||||
\bibitem[{101()}]{101LongShortTerm}
|
||||
\emph{\bibinfo{title}{10.1. {{Long Short-Term Memory}} ({{LSTM}}) --- {{Dive}} into {{Deep Learning}} 1.0.3 documentation}}, \bibinfo{howpublished}{https://d2l.ai/chapter\_recurrent-modern/lstm.html}.
|
||||
|
||||
\bibitem[{102()}]{102GatedRecurrent}
|
||||
\emph{\bibinfo{title}{10.2. {{Gated Recurrent Units}} ({{GRU}}) --- {{Dive}} into {{Deep Learning}} 1.0.3 documentation}}, \bibinfo{howpublished}{https://d2l.ai/chapter\_recurrent-modern/gru.html}.
|
||||
|
||||
\end{thebibliography}
|
||||
@@ -0,0 +1,3 @@
|
||||
\@doendnote{endnote1}{\protect \url {https://github.uio.no/larsbog/FYSSTK-Project2}}
|
||||
\@doendnote{endnote2}{Solely used for data splitting and performance metrics.}
|
||||
\@doendnote{endnote3}{The $x$ values were expanded into multiple of features containing polynomial multiples $x^n$ of themselves. For optimal performance $n \in \{0, 1, \protect \dots , \geq 10\}$ were required.}
|
||||
Binary file not shown.
Binary file not shown.
+243
@@ -0,0 +1,243 @@
|
||||
\documentclass[amssymb,twocolumn,aps]{revtex4}
|
||||
|
||||
% allows special characters (including æøå)
|
||||
\usepackage[utf8]{inputenc}
|
||||
%\usepackage [norsk]{babel} %if you write norwegian
|
||||
\usepackage[english]{babel} %if you write english
|
||||
|
||||
\usepackage{amsmath,amssymb} % mathematical symbols (physics imports amsmath)
|
||||
\usepackage{tikz}
|
||||
\usepackage{graphicx} % include graphics such as plots
|
||||
\usepackage{xcolor}
|
||||
\usepackage{hyperref} % automagic cross-referencing
|
||||
\usepackage{float} % force placement of tables and figures
|
||||
\usepackage[noabbrev,nameinlink]{cleveref}
|
||||
\usepackage{siunitx}
|
||||
% define feet and knots units
|
||||
\DeclareSIUnit{\feet}{ft}
|
||||
\DeclareSIUnit{\knot}{kt}
|
||||
|
||||
\usepackage{listofitems} % for \readlist to create arrays
|
||||
\usetikzlibrary{positioning, chains, shapes.geometric, fit, shapes, arrows.meta, calc}
|
||||
\usepackage[outline]{contour} % glow around text
|
||||
\contourlength{1.4pt}
|
||||
|
||||
\definecolor{myred}{HTML}{FF220C}
|
||||
\definecolor{myblue}{HTML}{70D6FF}
|
||||
\definecolor{mygreen}{HTML}{8AAA79}
|
||||
\definecolor{mydarkred}{HTML}{666370}
|
||||
\definecolor{mydarkblue}{HTML}{1C1F33}
|
||||
\colorlet{myorange}{orange!70!red!60!black}
|
||||
\colorlet{mydarkgreen}{green!30!black}
|
||||
\DeclareSIUnit{\std}{\sigma}
|
||||
|
||||
\tikzset{
|
||||
>=latex, % for default LaTeX arrow head
|
||||
node/.style={thick,circle,draw=myblue,minimum size=22,inner sep=0.5,outer sep=0.6},
|
||||
node in/.style={node,green!20!black,draw=mygreen!30!black,fill=mygreen!75},
|
||||
node hidden/.style={node,blue!20!black,draw=myblue!30!black,fill=myblue!80},
|
||||
node convol/.style={node,orange!20!black,draw=myorange!30!black,fill=myorange!50},
|
||||
node out/.style={node,red!20!black,draw=myred!30!black,fill=myred!80},
|
||||
connect/.style={thick,mydarkblue}, %,line cap=round
|
||||
connect arrow/.style={-{Latex[length=4,width=3.5]},thick,mydarkblue,shorten <=0.5,shorten >=1},
|
||||
node 1/.style={node in}, % node styles, numbered for easy mapping with \nstyle
|
||||
node 2/.style={node hidden},
|
||||
node 3/.style={node out}
|
||||
}
|
||||
\def\nstyle{int(\lay<\Nnodlen?min(2,\lay):3)}
|
||||
|
||||
\newcommand{\pred}{\hat y}
|
||||
\newcommand{\true}{y}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\title{Predicting Aircraft Trajectories\\--\\ Recurrent Neural Networks for Time Series Forecasting}
|
||||
\date{\today}
|
||||
\author{Lars Bogner}
|
||||
\affiliation{University of Oslo\\ \url{https://github.uio.no/larsbog/aiRtrafficNN}}
|
||||
|
||||
\newpage
|
||||
|
||||
\begin{abstract}
|
||||
TODO
|
||||
\end{abstract}
|
||||
|
||||
\maketitle
|
||||
|
||||
\tableofcontents
|
||||
|
||||
\section{Introduction}
|
||||
In airtraffic management, predicting the future trajectories of aircraft is crucial for ensuring safety, optimizing flight paths, and managing airspace efficiently. Current methods solely rely on radar data and basic kinematic models, which often fall short in capturing the complex dynamics of aircraft movements influenced by various factors such as weather conditions, air traffic, and pilot behavior. To address these challenges, we propose the use of Recurrent Neural Networks (RNNs), a powerful class of deep learning models designed for sequential data, to enhance the accuracy of aircraft trajectory predictions. RNNs are particularly well-suited for time series forecasting due to their ability to retain information from previous time steps, making them ideal for modeling the temporal dependencies inherent in flight data. By leveraging historical flight data, including position, velocity, and altitude, our approach aims to provide more reliable and precise trajectory forecasts. This paper outlines the methodology for implementing RNNs in this context, discusses the data preprocessing steps, and evaluates the performance of the proposed model against traditional forecasting techniques.
|
||||
|
||||
Further uses of trajectory prediction include conflict detection and resolution, fuel efficiency optimization, and enhancing passenger experience through better predictions of arrival times. The integration of RNNs into air traffic management systems has the potential to revolutionize how we approach flight safety and efficiency in the aviation industry. Therefore, this field of research has seen a growing number of publications in recent years \cite{shi4DFlightTrajectory2021,shiLSTMbasedFlightTrajectory2018,zhangPhasedFlightTrajectory2022}.
|
||||
|
||||
To optimize the performance of RNNs for trajectory prediction, we explore various architectures, including Long Short-Term Memory (LSTM) networks and Gated Recurrent Units (GRUs), which are known for their ability to mitigate the vanishing gradient problem commonly encountered in standard RNNs. We also investigate different input feature sets, and time window sizes to determine the most effective configuration for our specific application. In addition, we propose a geometric loss function that correctly captures the spatial distance between predicted and actual trajectories, irrespective of the position in the coordinate system.
|
||||
|
||||
We structure the paper as follows: In \cref{sec:methods}, we describe the dataset, preprocessing steps, and the architecture of the RNN model used for trajectory prediction. In \cref{sec:results}, we present the results of our experiments, including performance metrics and extrapolations. Finally, in \cref{sec:conclusion}, we summarize our findings and discuss potential future work in this area.
|
||||
|
||||
\section{Methods} \label{sec:methods}
|
||||
\subsection{Automatic Dependent Surveillance-Broadcast (ADS-B) Data}
|
||||
The dataset used in this study consists of ADS-B data collected from various aircraft over a specified period. ADS-B is a surveillance technology in which an aircraft determines its position via satellite navigation and periodically broadcasts it, enabling it to be tracked. The dataset includes information such as latitude, longitude, altitude, velocity, heading, and timestamp for each recorded position of the aircraft.
|
||||
These data points are transmitted at regular intervals, typically every second, on a frequency of \qty{1090}{\mega\hertz}. Additionally, to the ground stations employed by air traffic control, ADS-B signals can also be received by other aircraft, enhancing situational awareness and safety. The data can also be received by hobbyists and researchers using relatively inexpensive equipment, contributing to a wealth of publicly available flight data for analysis and research purposes. Our work utilizes such publicly available ADS-B data, provided by the ADSB.lol platform \cite{AdsblolGlobe_history_20242024,AdsblolGlobe_history_20252025}.
|
||||
|
||||
An important consideration when working with ADS-B data is the potential for missing or erroneous data points due to signal loss, interference, or malicious activities. Especially the latter has raised concerns regarding the security and integrity of ADS-B data, prompting ongoing research into methods for detecting and mitigating such threats \cite{riahimaneshAnalysisVulnerabilitiesAttacks2017}. Such issues must be addressed before utilizing the data for trajectory prediction in safety-critical applications. For the purpose of this study, we assume that the dataset has been preprocessed to remove any erroneous data points and that it is representative of typical flight patterns. This is further aided by the fact, that we focus on commercial flights in airspace outside of current conflict zones.
|
||||
|
||||
The working principle of ADS-B relies on the aircraft's onboard systems, which include a GPS receiver for accurate position determination and a transmitter for broadcasting the information. The data is formatted according to the ASTERIX standard, which defines the structure and content of the messages exchanged between aircraft and ground stations. This standardization ensures interoperability between different systems and facilitates the integration of ADS-B data into air traffic management systems. After receival, the raw ADS-B data undergoes decoding and parsing to extract relevant information for further analysis. This process involves converting the binary messages into human-readable formats and organizing the data into structured databases and deduplicating entries from multiple receivers. This working principle is further illustared in \cref{fig:adsb_working_principle}.
|
||||
|
||||
\begin{figure}
|
||||
\centering
|
||||
\includegraphics[width=\columnwidth]{include/ADS-B.drawio.pdf}
|
||||
\caption{Working principle of ADS-B data transmission and reception.}
|
||||
\label{fig:adsb_working_principle}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\subsubsection{Data Preprocessing}
|
||||
Due to extremly large size of the raw ADS-B dataset, e.g. \qty{1455}{\gibi\byte} for the year 2024, we limit our analysis to a subset of the data, specifically focusing on flights within some major Scandinavian routes. We filter the data to include only trajectories, where the first and last recorded positions are within \qty{20}{\km} of the following airports: Oslo Gardermoen (ENGM), Stockholm Arlanda (ESSA), Bergen Flesland (ENBR), Stavanger Sola (ENZV), Umeå (ESNU), and Trondheim Værnes (ENVA). Additionally, the airports Gothenburg Landvetter (ESGG) and Tromsø Langnes (ENTC) are included. The altitude for the first and last recorded positions must be below \qty{5000}{\feet} to ensure that the data corresponds to takeoff and landing phases, respectively. To further refine the dataset, we filter on the aircraft type, including only commercial passenger jets such as the Airbus A320 family, Boeing 737 series, and Embraer E-Jets. This selection is based on the ICAO aircraft type designators found in the ADS-B data.
|
||||
|
||||
As neural networks allow for very good generalization given enough tunable parameters, this limit to specific routes and aircraft types is not expected to significantly impact the model's ability to learn trajectory patterns on larger scales. However, it does help to reduce the complexity of the dataset and allows for more focused evaluation of the model's performance on common commercial flight paths.
|
||||
|
||||
To prepare the data for training the RNN model, we perform several preprocessing steps. We normalize the latitude and longitude using min-max scaling to ensure that the input features are on a similar scale, which helps improve the convergence of the training process. We also convert the timestamps into relative time deltas to capture the temporal dynamics of the trajectories more effectively. Furthermore, we segment the trajectories into fixed-length sequences, where each sequence consists of a specified number of time steps. This segmentation allows the RNN to learn from shorter, manageable chunks of data while still capturing the overall trajectory patterns. Finally, we split the dataset into training, and test sets to evaluate the model's performance and generalization capabilities.
|
||||
|
||||
\subsection{Recurrent Neural Networks (RNNs)}
|
||||
\begin{figure}
|
||||
\centering
|
||||
\includegraphics[width=\columnwidth]{include/RNN.pdf}
|
||||
\caption{Generic Recurrent Neural Network (RNN) architecture in an offset many-to-many configuration. An initial conditioning phase updates the recurrent state without contributing to the loss, followed by a prediction phase in which outputs are produced and the loss is evaluated.}
|
||||
\label{fig:rnn_generic}
|
||||
\end{figure}
|
||||
Recurrent Neural Networks (RNNs) are a family of neural architectures explicitly designed for sequential and time-ordered data. Unlike feedforward networks, RNNs maintain an internal state that is propagated across time steps, enabling the model to represent temporal dependencies and history-dependent dynamics. Formally, given an input sequence $\{\mathbf{x}_t\}_{t=1}^T$, a generic RNN updates its hidden state according to
|
||||
\begin{equation}
|
||||
\mathbf{h}_t = \phi\!\left( \mathbf{W}_x \mathbf{x}_t + \mathbf{W}_h \mathbf{h}_{t-1} + \mathbf{b} \right),
|
||||
\end{equation}
|
||||
where $\mathbf{h}_t$ denotes the hidden state at time $t$, $\phi(\cdot)$ is a nonlinear activation function, and $\mathbf{W}_x$, $\mathbf{W}_h$, and $\mathbf{b}$ are learnable parameters. Outputs $\mathbf{y}_t$ are typically obtained via
|
||||
\begin{equation}
|
||||
\mathbf{y}_t = g\!\left( \mathbf{W}_y \mathbf{h}_t + \mathbf{c} \right),
|
||||
\end{equation}
|
||||
with $g(\cdot)$ an output activation.
|
||||
|
||||
In practice, standard RNNs suffer from vanishing and exploding gradients when trained on long sequences. To address these limitations, gated architectures such as Long Short-Term Memory (LSTM) networks and Gated Recurrent Units (GRUs) introduce explicit mechanisms to regulate information flow over time. In this work, all recurrent models are employed in an \emph{offset many-to-many} configuration: an initial conditioning phase updates the recurrent state without contributing to the loss, followed by a prediction phase in which outputs are produced and the loss is evaluated. A schematic overview of this setup is shown in \cref{fig:rnn_generic}.
|
||||
|
||||
\subsubsection{Long Short-Term Memory (LSTM)}
|
||||
\begin{figure}
|
||||
\centering
|
||||
\includegraphics[width=\columnwidth]{include/LSTM.pdf}
|
||||
\caption{Long Short-Term Memory (LSTM) architecture \cite{101LongShortTerm}.}
|
||||
\label{fig:lstm_architecture}
|
||||
\end{figure}
|
||||
The LSTM augments the recurrent state with a persistent cell state $\mathbf{c}_t$, which acts as an explicit memory. Information flow into and out of this memory is controlled by three gates: the input gate $\mathbf{i}_t$, forget gate $\mathbf{f}_t$, and output gate $\mathbf{o}_t$. The LSTM update equations are given by
|
||||
\begin{align}
|
||||
\mathbf{i}_t &= \sigma\!\left( \mathbf{W}_i \mathbf{x}_t + \mathbf{U}_i \mathbf{h}_{t-1} + \mathbf{b}_i \right), \\
|
||||
\mathbf{f}_t &= \sigma\!\left( \mathbf{W}_f \mathbf{x}_t + \mathbf{U}_f \mathbf{h}_{t-1} + \mathbf{b}_f \right), \\
|
||||
\mathbf{o}_t &= \sigma\!\left( \mathbf{W}_o \mathbf{x}_t + \mathbf{U}_o \mathbf{h}_{t-1} + \mathbf{b}_o \right), \\
|
||||
\tilde{\mathbf{c}}_t &= \tanh\!\left( \mathbf{W}_c \mathbf{x}_t + \mathbf{U}_c \mathbf{h}_{t-1} + \mathbf{b}_c \right), \\
|
||||
\mathbf{c}_t &= \mathbf{f}_t \odot \mathbf{c}_{t-1} + \mathbf{i}_t \odot \tilde{\mathbf{c}}_t, \\
|
||||
\mathbf{h}_t &= \mathbf{o}_t \odot \tanh\!\left( \mathbf{c}_t \right),
|
||||
\end{align}
|
||||
where $\sigma(\cdot)$ denotes the logistic sigmoid function and $\odot$ the element-wise product. The additive update of the cell state enables stable gradient propagation across long time horizons. In the offset many-to-many setting, the initialization sequence shapes $(\mathbf{h}_t,\mathbf{c}_t)$ before predictions are generated and evaluated. A conceptual illustration of the LSTM architecture is provided in Fig.~\ref{fig:lstm_architecture}.
|
||||
|
||||
\subsubsection{Gated Recurrent Units (GRU)}
|
||||
\begin{figure}
|
||||
\centering
|
||||
\includegraphics[width=\columnwidth]{include/GRU.pdf}
|
||||
\caption{Gated Recurrent Unit (GRU) architecture \cite{102GatedRecurrent}.}
|
||||
\label{fig:gru_architecture}
|
||||
\end{figure}
|
||||
The GRU simplifies the LSTM architecture by merging the cell and hidden states and reducing the number of gates. Two gates are used: the update gate $\mathbf{z}_t$, which controls state retention, and the reset gate $\mathbf{r}_t$, which modulates the influence of past information. The GRU dynamics are defined as
|
||||
\begin{align}
|
||||
\mathbf{z}_t &= \sigma\!\left( \mathbf{W}_z \mathbf{x}_t + \mathbf{U}_z \mathbf{h}_{t-1} + \mathbf{b}_z \right), \\
|
||||
\mathbf{r}_t &= \sigma\!\left( \mathbf{W}_r \mathbf{x}_t + \mathbf{U}_r \mathbf{h}_{t-1} + \mathbf{b}_r \right), \\
|
||||
\tilde{\mathbf{h}}_t &= \tanh\!\left( \mathbf{W}_h \mathbf{x}_t + \mathbf{U}_h \left( \mathbf{r}_t \odot \mathbf{h}_{t-1} \right) + \mathbf{b}_h \right), \\
|
||||
\mathbf{h}_t &= (1 - \mathbf{z}_t) \odot \mathbf{h}_{t-1} + \mathbf{z}_t \odot \tilde{\mathbf{h}}_t .
|
||||
\end{align}
|
||||
By directly interpolating between the previous hidden state and a candidate update, the GRU achieves a balance between memory retention and adaptability with fewer parameters than the LSTM. As with the LSTM, the GRU is used here in an offset many-to-many configuration, with an initial conditioning phase followed by a prediction phase where outputs are produced and the loss is computed. An overview of the GRU architecture is shown in Fig.~\ref{fig:gru_architecture}.
|
||||
|
||||
|
||||
\subsection{Model Architecture}
|
||||
\subsubsection{Aircraft Encoding}
|
||||
As the type of aircraft can significantly influence its flight dynamics and trajectory patterns, we incorporate an aircraft encoding mechanism into our model architecture. Each aircraft type is represented by a unique identifier based on its ICAO designator, and its registration country is also considered. As there are numerous aircraft types and countries, we firstly focus on the most common ones in our dataset, such as the Airbus A320 family, Boeing 737 series, and Embraer E-Jets, along with their respective countries of registration. The most frequent types and countries are encoded using a one-hot encoding scheme, while less common types and countries are grouped into an "other" category to manage the dimensionality of the input space. This encoding is then used to train an autoencoder neural network, which learns a compact, continuous representation of the categorical data. The autoencoder consists of an encoder that maps the one-hot encoded vectors to a lower-dimensional latent space and a decoder that reconstructs the original one-hot vectors from this latent representation. The latent vectors produced by the encoder are then concatenated with the other input features (e.g., position, velocity, altitude) before being fed into the RNN model. This approach allows the model to effectively capture the influence of aircraft type and registration country on trajectory patterns while reducing the complexity and dimensionality of the input data. The most common \num{100} aircraft types and \num{100} registration countries are included in the encoding scheme as well as the \num{50} most common aircraft registrations. The autoencoder is symmetric with \num{1} hidden layer of size \num{128} in both the encoder and decoder and a latent space of size \num{4}.
|
||||
This sizing only allows for a very small information transfer, but is sufficient as we do not expect the aircraft type and registration country to have a very large impact on the trajectory prediction compared to the kinematic data.
|
||||
|
||||
\subsubsection{Trajectory Prediction Network}
|
||||
\begin{figure}
|
||||
\centering
|
||||
\includegraphics[width=\columnwidth]{include/Network.drawio.pdf}
|
||||
\caption{Recurrent Neural Network (RNN) architecture for aircraft trajectory prediction.}
|
||||
\label{fig:rnn_trajectory_prediction}
|
||||
\end{figure}
|
||||
|
||||
The core of our trajectory prediction model is a Recurrent Neural Network (RNN) designed to capture the temporal dependencies in aircraft flight data. The architecture, illustrated in \cref{fig:rnn_trajectory_prediction}, consists of several key components:
|
||||
\begin{enumerate}
|
||||
\item Input Multilayer Perceptron (I-MLP)
|
||||
\item RNN Layers
|
||||
\item Readout Layer
|
||||
\end{enumerate}
|
||||
The input to the model is structured into three main parts: spatial features (e.g. latitude, longitude, altitude), temporal features (e.g. time deltas), and contextual features (e.g. destination, aircraft encoding). All input features are first processed using separate Input Multilayer Perceptrons (I-MLPs) to transform them into a common feature space. Each I-MLP consists of a variable number of fully connected layers with GELU activation functions, allowing the model to learn complex feature representations. The outputs of the I-MLPs are then concatenated to form a unified input vector for the RNN layers. The RNN layers, which can be configured as either standard RNNs, LSTMs, or GRUs, process the sequential data and capture the temporal dynamics of the aircraft trajectories. The number of RNN layers and their hidden state sizes are hyperparameters that can be tuned based on the complexity of the dataset and the desired model capacity. Finally, the output from the last RNN layer is passed through a readout layer, which is a fully connected layer that maps the RNN's hidden state to the predicted future positions of the aircraft. The readout layer produces outputs corresponding to the latitude, longitude, and altitude at each future time step in the prediction horizon.
|
||||
|
||||
While the contextual features are constant during a single trajectory, they are included at each time step to provide the RNN with relevant information throughout the sequence. This design choice allows the model to leverage contextual information effectively when making predictions, even though these features do not change over time. The temporal features are also present at each time step in the initialization phase and the prediction phase, as they provide essential information about the timing of each recorded position and providing time stamps for the prediction outputs allows for easier evaluation against ground truth data. The spatial features, on the other hand, are only provided during the initialization phase, as they represent the historical positions of the aircraft that the model uses to inform its predictions.
|
||||
|
||||
|
||||
\subsubsection{Haversine Distance-Loss}
|
||||
To make the structure of the Haversine distance more explicit, we decompose the expression into a sequence of intermediate quantities that are subsequently combined into the final distance. We first define the differences in latitude and longitude,
|
||||
\begin{equation}
|
||||
\Delta \phi = \phi_2 - \phi_1, \qquad \Delta \lambda = \lambda_2 - \lambda_1 .
|
||||
\end{equation}
|
||||
These angular separations enter the Haversine kernel through half-angle trigonometric terms. The central quantity of the formulation is the dimensionless Haversine argument
|
||||
\begin{equation}
|
||||
a = \sin^2\left(\frac{\Delta \phi}{2}\right)
|
||||
+ \cos(\phi_1)\cos(\phi_2)\sin^2\left(\frac{\Delta \lambda}{2}\right),
|
||||
\end{equation}
|
||||
which can be interpreted as a measure of the squared chord length between the two points on the unit sphere. From this quantity, the corresponding central angle $c$ between the points is obtained via
|
||||
\begin{equation}
|
||||
c = 2 \arcsin\left(\sqrt{a}\right).
|
||||
\end{equation}
|
||||
Finally, the great-circle distance $d$ follows by scaling the central angle with the Earth's radius,
|
||||
\begin{equation}
|
||||
d = r c.
|
||||
\end{equation}
|
||||
This decomposition highlights how latitudinal and longitudinal separations contribute separately to the overall distance, while preserving numerical stability for small angular differences. Such stability is particularly important in trajectory prediction settings, where successive waypoints are often closely spaced and accumulated errors in distance-based loss functions can otherwise bias model optimization over long flight paths. In our loss function, we compute the Haversine distance between the predicted positions and the ground truth positions at each time step in the prediction horizon. The overall loss is then defined as
|
||||
\begin{equation}
|
||||
\mathcal{L} = \frac{1}{N} \sum_{i=1}^{N} d_i + \alpha \frac{1}{N} \sum_{i=1}^{N} (h_i^{\text{pred}} - h_i^{\text{true}})^2,
|
||||
\end{equation}
|
||||
where $N$ is the number of predicted time steps, $d_i$ is the Haversine distance at time step $i$, $h_i^{\text{pred}}$ and $h_i^{\text{true}}$ are the predicted and true altitudes, respectively, and $\alpha$ is a weighting factor that balances the contribution of altitude errors to the overall loss. This loss function effectively captures both horizontal and vertical discrepancies in the predicted trajectories, allowing the model to learn accurate representations of aircraft movements. We chose to deviate from the geometric distance, i.e., the Euclidean distance in three-dimensional space, as deviations in altitude are of different significance compared to horizontal deviations. For example, a \qty{100}{\meter} deviation in altitude is more critical than a \qty{100}{\meter} deviation in horizontal position when considering aircraft safety and trajectory accuracy. By separating the altitude error and applying a weighting factor, we can better tailor the loss function to reflect the practical importance of different types of errors in aircraft trajectory prediction.
|
||||
|
||||
The disadvantage of this approach is that for unphysical predictions, the Haversine distance can become ill-defined. For example, if the predicted latitude exceeds \qty{90}{\degree} or is less than \qty{-90}{\degree}, the trigonometric functions in the Haversine formula may yield invalid results.
|
||||
|
||||
\subsection{Tools and Usage of Artificial Intelligence}
|
||||
\subsubsection{Data Fetching and Parsing}
|
||||
As to filter and parse the large amounts of raw ADS-B data, we utilize a combination Python scripts and a C++ parser. The Python scripts are responsible for downloading the raw data from the ADSB.lol archive on GitHub \cite{AdsblolGlobe_history_20242024,AdsblolGlobe_history_20252025} and dispatching the extraction and parsing tasks to the C++ parser. The C++ parser is optimized for performance and can efficiently handle the large volume of data, extracting relevant fields such as latitude, longitude, altitude, velocity, heading, and timestamp. In a first step, a basic filtering on the first and last recorded positions, as well as aircraft type, is performed to reduce the dataset size. The filtered data is then saved in a structured format in a CSV file, where each row corresponds to a single recorded position of an aircraft, along with its associated metadata. This structured dataset serves as the input for subsequent preprocessing and model training steps.
|
||||
|
||||
A second C++ program is used to filter the structured CSV data on the actual trajectories between airports as mentioned above. This program reads the CSV file, applies the trajectory filtering criteria, and outputs a new CSV file containing only the relevant trajectories. This two-step approach allows for efficient handling of the large ADS-B dataset while ensuring that only pertinent data is retained for model training.
|
||||
|
||||
\subsubsection{Model Implementation and Training}
|
||||
The RNN model for aircraft trajectory prediction is implemented using the PyTorch deep learning framework, which provides a flexible and efficient platform for building and training neural networks. The model architecture, including the input multilayer perceptrons (I-MLPs), RNN layers (LSTM or GRU), and readout layer, is defined as a custom PyTorch module. The training process involves defining a suitable optimizer, such as Adam or RMSprop, to update the model parameters based on the computed loss. The Haversine distance-loss function is implemented as a separate module to ensure modularity and ease of integration with the training loop. The training loop iterates over the training dataset, feeding batches of input sequences into the model, computing the loss, and performing backpropagation to update the model weights. To monitor the model's performance, we track metrics such as the average loss on after each epoch.
|
||||
|
||||
For preprocessing and postprocessing tasks, we utilize libraries such as NumPy and Pandas for efficient data manipulation and analysis. Matplotlib is employed for visualizing the training progress and evaluating the model's predictions against ground truth trajectories. The entire implementation is structured in a modular fashion, allowing for easy experimentation with different model configurations, hyperparameters, and input feature sets.
|
||||
|
||||
All source code for data fetching, parsing, preprocessing, model implementation, training, and evaluation is made publicly available on GitHub at \url{https://github.uio.no/larsbog/aiRtrafficNN} to facilitate reproducibility and further research in the field of aircraft trajectory prediction using deep learning techniques.
|
||||
|
||||
\subsubsection{Usage of Artificial Intelligence}
|
||||
For rapid prototyping and to overcome writer's block during the writing of this report, we made use of the AI language model ChatGPT-4 by OpenAI. The model was used to generate initial drafts of sections, suggest improvements in phrasing, and aid in the devlopment of the data acquisition and preprocessing scripts. Care was taken to verify the accuracy and relevance of the generated content, ensuring that it aligned with the technical details and objectives of the study.
|
||||
|
||||
|
||||
\section{Results} \label{sec:results}
|
||||
\subsection{Dataset Overview}
|
||||
|
||||
\subsection{Hyperparameter Optimization}
|
||||
|
||||
\subsection{Window-Size dependent Accuracy}
|
||||
|
||||
\subsection{Error Analysis}
|
||||
|
||||
\section{Conclusion} \label{sec:conclusion}
|
||||
\subsection{Conclusion}
|
||||
|
||||
|
||||
\subsection{Potential Future Work}
|
||||
|
||||
|
||||
\onecolumngrid
|
||||
|
||||
\bibliography{include/airtraffic}
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user