]> Untitled Git - bitcoindevkit.org/commitdiff
Initial commit
authorAlekos Filini <alekos.filini@gmail.com>
Wed, 29 Apr 2020 12:42:27 +0000 (14:42 +0200)
committerAlekos Filini <alekos.filini@gmail.com>
Wed, 29 Apr 2020 12:42:27 +0000 (14:42 +0200)
35 files changed:
.gitignore [new file with mode: 0644]
.gitmodules [new file with mode: 0644]
archetypes/default.md [new file with mode: 0644]
config.toml [new file with mode: 0644]
content/_index.md [new file with mode: 0644]
content/descriptors/_index.md [new file with mode: 0644]
content/repl/_index.md [new file with mode: 0644]
content/repl/compiler.md [new file with mode: 0644]
content/repl/concept.md [new file with mode: 0644]
content/repl/installation.md [new file with mode: 0644]
content/repl/interface.md [new file with mode: 0644]
content/repl/regtest.md [new file with mode: 0644]
layouts/partials/custom-footer.html [new file with mode: 0644]
layouts/partials/favicon.html [new file with mode: 0644]
layouts/partials/logo.html [new file with mode: 0644]
layouts/partials/menu-footer.html [new file with mode: 0644]
layouts/shortcodes/json.html [new file with mode: 0644]
static/css/jsonview.css [new file with mode: 0644]
static/css/style.css [new file with mode: 0644]
static/icons/android-chrome-192x192.png [new file with mode: 0644]
static/icons/android-chrome-512x512.png [new file with mode: 0644]
static/icons/apple-touch-icon.png [new file with mode: 0644]
static/icons/browserconfig.xml [new file with mode: 0644]
static/icons/favicon-16x16.png [new file with mode: 0644]
static/icons/favicon-32x32.png [new file with mode: 0644]
static/icons/favicon.ico [new file with mode: 0644]
static/icons/mstile-150x150.png [new file with mode: 0644]
static/icons/safari-pinned-tab.svg [new file with mode: 0644]
static/icons/site.webmanifest [new file with mode: 0644]
static/images/logo.svg [new file with mode: 0644]
static/images/wizard.svg [new file with mode: 0644]
static/js/github-buttons.js [new file with mode: 0644]
static/js/jsonview.js [new file with mode: 0644]
static/js/main.js [new file with mode: 0644]
themes/learn [new submodule]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..69d9321
--- /dev/null
@@ -0,0 +1,3 @@
+/public
+
+*.swp
diff --git a/.gitmodules b/.gitmodules
new file mode 100644 (file)
index 0000000..6433a7d
--- /dev/null
@@ -0,0 +1,3 @@
+[submodule "themes/learn"]
+       path = themes/learn
+       url = https://github.com/matcornic/hugo-theme-learn.git
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644 (file)
index 0000000..00e77bd
--- /dev/null
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/config.toml b/config.toml
new file mode 100644 (file)
index 0000000..f9b2445
--- /dev/null
@@ -0,0 +1,33 @@
+baseURL = "https://magicalbitcoin.org/"
+languageCode = "en-us"
+title = "Magical Bitcoin"
+theme = "learn"
+
+[outputs]
+home = [ "HTML", "RSS", "JSON"]
+
+[params]
+# Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
+# Useful to give opportunity to people to create merge request for your doc.
+# See the config.toml file from this documentation site to have an example.
+editURL = "https://github.com/MagicalBitcoin/docs/edit/master/content/"
+# Author of the site, will be used in meta information
+author = "Alekos Filini - @afilini"
+# Description of the site, will be used in meta information
+description = "The Magical Bitcoin project aims to build a collection of tools and libraries that are designed to be a solid foundation for Bitcoin wallets."
+# A title for shortcuts in menu is set by default. Set this to true to disable it.
+# disableShortcutsTitle = false
+# Hide breadcrumbs in the header and only show the current page title
+disableBreadcrumb = true
+# Hide Next and Previous page buttons normally displayed full height beside content
+disableNextPrev = false
+# Order sections in menu by "weight" or "title". Default to "weight"
+ordersectionsby = "weight"
+# Change default color scheme with a variant one. Can be "red", "blue", "green".
+themeVariant = "blue"
+# Provide a list of custom css files to load relative from the `static/` folder in the site root.
+custom_css = ["css/style.css", "css/jsonview.css"]
+
+# render raw html
+[markup.goldmark.renderer]
+unsafe= true
diff --git a/content/_index.md b/content/_index.md
new file mode 100644 (file)
index 0000000..a61a1c0
--- /dev/null
@@ -0,0 +1,28 @@
+---
+title: "Home"
+date: 2020-04-28T09:46:18+02:00
+draft: false
+---
+
+# đŸ§™ Magical Bitcoin đŸ§™
+
+The Magical Bitcoin project aims to build a collection of tools and libraries that are designed to be a solid foundation for Bitcoin wallets, along with a fully working *reference implementation* wallet.
+All of its components are designed to be lightweight and modular so that they can be adapted for virtually any use-case: from the single-sig mobile wallet to the multi-billion-dollar cold storage vault.
+
+The main long-term goal is to concentrate the development efforts of multiple people and companies into one open source and very well reviewed project, instead of dispersing them over multiple closed/semi-closed or
+poorly designed projects.
+
+{{% notice info %}}
+Keep in mind that this project is still in a very early phase of development. The APIs and the general architecture shouldn't be considered stable yet. At the moment most of the code is concentrated in the
+[main repo](https://github.com/MagicalBitcoin/magical-bitcoin-wallet) and is slowly being refactored and taken out into separate, independent modules.
+{{% /notice %}}
+
+## Descriptors
+
+The name of the project refers to the fact that when its components are built into a wallet, it can "almost magically" support very complex spending policies, without having to individually translate them into code. It may sound disappointing, but there isn't, in fact,
+any real magic in this wallet: the generalization is achieved thanks to *descriptors*, that are now slowly starting to see adoption in a few other Bitcoin projects as well.
+
+The author of this project strongly believes descriptors will be a big part of the future generation of Bitcoin wallets, since they provide a very flexible scripting language that can also be extended as the
+technology and tooling on Bitcoin evolve and change (Schnorr signatures, Taproot, etc).
+
+To learn more, check the specific [Descriptors section](/descriptors).
diff --git a/content/descriptors/_index.md b/content/descriptors/_index.md
new file mode 100644 (file)
index 0000000..d92f5ef
--- /dev/null
@@ -0,0 +1,36 @@
+---
+title: "Descriptors"
+date: 2020-04-28T14:40:12+02:00
+draft: false
+weight: 5
+pre: '<i class="fas fa-code"></i> '
+---
+
+Magical Bitcoin extends the capabilities of [rust-miniscript](https://github.com/apoelstra/rust-miniscript) by introducing the concept of an *ExtendedDescriptor*: it represents a descriptor that contains one or more "derivable keys" like `xpubs` or `xprvs`
+and can be "derived" to a normal Descriptor by deriving every single one of its keys. It is currently called "StringDescriptor" in the code, because it's implemented as a wrapped `miniscript::Descriptor<String>`.
+
+ExtendedDescriptors are derived using a single index instead of a full derivation path: this is because normally most of the path is fixed and can be represented right after the xpub/xprv itself, and only the
+final index changes for each address. This is what's normally called a *DescriptorExtendedKey* in codebase, and it's the represented with a similar syntax to Bitcoin Core's, such as:
+
+```
+[d34db33f/44'/0'/0']xpub6ERApfZwUNrhL.......rBGRjaDMzQLcgJvLJuZZvRcEL/0/*
+```
+
+For more details regarding this syntax, see [this document](https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md). On top of this, ExtendedDescriptors also support other formats for public and private keys,
+like WIF and raw hexadecimal representation.
+
+Speaking of syntax, the general descriptor operators syntax is a bit different from what Core uses: the `multi()`/`sortedmulti()` are not available, and they are replaced by `thresh_m()`. Also the `combo()` operator is not
+available, and doesn't currently have any replacement. For more informations, see [this page](http://bitcoin.sipa.be/miniscript).
+
+Some examples of valid descriptors are:
+
+<div id="descriptor-examples-table">
+
+| Spending Policy | Descriptor | Address 0 | Address 1 |
+| --------------- | ---------- | --------- | --------- |
+| Static P2PKH    | `pkh(cSQPHDBwXGjVzWRqAHm6zfvQhaTuj1f2bFH58h55ghbjtFwvmeXR)` | mrkwtj5xpYQjHeJe5wsweNjVeTKkvR5fCr | mrkwtj5xpYQjHeJe5wsweNjVeTKkvR5fCr |
+| Static P2PKH, watch-only | `pkh(02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c)` | mrkwtj5xpYQjHeJe5wsweNjVeTKkvR5fCr | mrkwtj5xpYQjHeJe5wsweNjVeTKkvR5fCr |
+| P2WSH 2-of-2 with one private key | `wsh(thresh_m(2,tprv8ZgxMBicQKsPePmENhT9N9yiSfTtDoC1f39P7nNmgEyCB6Nm4Qiv1muq4CykB9jtnQg2VitBrWh8PJU8LHzoGMHTrS2VKBSgAz7Ssjf9S3P/0/*,tpubDBYDcH8P2PedrEN3HxWYJJJMZEdgnrqMsjeKpPNzwe7jmGwk5M3HRdSf5vudAXwrJPfUsfvUPFooKWmz79Lh111U51RNotagXiGNeJe3i6t/1/*))` | tb1qqsat6c82fvdy73rfzye8f7nwxcz3xny7t56azl73g95mt3tmzvgs9a8vjs | tb1q7sgx6gscgtau57jduend6a8l445ahpk3dt3u5zu58rx5qm27lhkqgfdjdr |
+| P2WSH-P2SH one key + 10 days timelock | `sh(wsh(and_v(vc:pk_h(tprv8ZgxMBicQKsPePmENhT9N9yiSfTtDoC1f39P7nNmgEyCB6Nm4Qiv1muq4CykB9jtnQg2VitBrWh8PJU8LHzoGMHTrS2VKBSgAz7Ssjf9S3P/0/*),older(1440))))` | 2Mtk2nyS98MCi2P7TkoBGLaJviBy956XxB1 | 2MuEStKzYhqb5HCFgHz9153tZsL5sVqV5xC |
+
+</div>
diff --git a/content/repl/_index.md b/content/repl/_index.md
new file mode 100644 (file)
index 0000000..07ae230
--- /dev/null
@@ -0,0 +1,12 @@
++++
+title = "REPL"
+date = 2020-04-28T17:03:00+02:00
+weight = 1
+chapter = true
+pre = '<i class="fas fa-terminal"></i> '
++++
+
+# REPL
+
+The [magical-bitcoin-wallet](https://github.com/magicalbitcoin/magical-bitcoin-wallet) repo has a very minimalistic interactive shell that acts both as a reference implementation of a wallet and a tool to
+quickly experiment with descriptors and transactions.
diff --git a/content/repl/compiler.md b/content/repl/compiler.md
new file mode 100644 (file)
index 0000000..2a9633f
--- /dev/null
@@ -0,0 +1,151 @@
+---
+title: "Compiler"
+date: 2020-04-29T12:06:50+02:00
+draft: false
+weight: 5
+pre: "<b>5. </b>"
+---
+
+## Introduction
+
+If you want to play around with more complicated spending policies, you'll start to find it harder and harder to manually create the descriptors. This is where the miniscript compiler comes in! `magical-bitcoin-wallet`
+includes a very simple compiler that can produce a descriptor given a spending policy. The syntax used to encode the spending policiy is very well described [in this page](http://bitcoin.sipa.be/miniscript/),
+specifically in the "Policy to Miniscript compiler". The compiler included in Magical Bitcoin does basically the same job, but produces a descriptors for `rust-miniscript` that has some minor differences from
+the ones made by the C++ implementation used in that website.
+
+## Installation
+
+To install the miniscript compiler run the following command:
+
+```bash
+cargo install --git https://github.com/magicalbitcoin/magical-bitcoin-wallet --features="compiler" --example miniscriptc
+```
+
+Once the command is done, you should have a `miniscriptc` command available. You can check if that's the case by running `miniscriptc --help`.
+
+## Usage
+
+In this case the interface is very simple: it accepts two arguments called "POLICY" and "TYPE", in this order. The first one, as the name implies, sets the spending policy to compile. The latter defines the type
+of address that should be used to incapsulate the produced script, like a P2SH, P2WSH, etc.
+
+Optionally, the `--parsed_policy` flag can be enabled and it will make the compiler print the JSON "human-readable" version of the spending policy, as described in the [`policies subcommand`](/repl/interface/#policies) of the CLI.
+
+The `--network` flag can be used to change the network encoding of the address shown.
+
+{{% notice tip %}}
+Keep in mind that since the compiler loads and interprets the descriptor, all the public keys specified in the policy must be valid public keys. This differs from the web tool linked above that also accepts
+placeholders too. As described in the previous sections of this guide, the keys can be either `xpub`/`xprv` with or without metadata and a derivation path, WIF keys or raw hex public keys.
+{{% /notice %}}
+
+## Example
+
+Let's take this policy for example:
+
+```bash
+miniscriptc --parsed_policy and(pk(cSQPHDBwXGjVzWRqAHm6zfvQhaTuj1f2bFH58h55ghbjtFwvmeXR),or(50@pk(02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c),older(1000)))) sh-wsh
+```
+
+The compiler should print something like:
+
+```text
+[2020-04-29T10:42:05Z INFO  miniscriptc] Compiling policy: and(pk(cSQPHDBwXGjVzWRqAHm6zfvQhaTuj1f2bFH58h55ghbjtFwvmeXR),or(50@pk(02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c),older(1000)))
+[2020-04-29T10:42:05Z INFO  miniscriptc] ... Descriptor: sh(wsh(and_v(or_c(c:pk(02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c),v:older(1000)),c:pk(cSQPHDBwXGjVzWRqAHm6zfvQhaTuj1f2bFH58h55ghbjtFwvmeXR))))
+[2020-04-29T10:42:05Z INFO  miniscriptc] ... First address: 2MsqrJuZewY3o3ADAy1Uhi5vsBqTANjH3Cf
+```
+
+JSON policy:
+
+{{% json %}}
+{
+  "type":"THRESH",
+  "items":[
+    {
+      "type":"THRESH",
+      "items":[
+        {
+          "type":"SIGNATURE",
+          "pubkey":"02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c",
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"NONE"
+          }
+        },
+        {
+          "type":"RELATIVETIMELOCK",
+          "value":1000,
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"COMPLETE",
+            "condition":{
+              "csv":1000
+            }
+          }
+        }
+      ],
+      "threshold":1,
+      "satisfaction":{
+        "type":"NONE"
+      },
+      "contribution":{
+        "type":"PARTIALCOMPLETE",
+        "n":2,
+        "m":1,
+        "items":[
+          1
+        ],
+        "conditions":{
+          "[1]":[
+            {
+              "csv":1000
+            }
+          ]
+        }
+      }
+    },
+    {
+      "type":"SIGNATURE",
+      "pubkey":"02e96fe52ef0e22d2f131dd425ce1893073a3c6ad20e8cac36726393dfb4856a4c",
+      "satisfaction":{
+        "type":"NONE"
+      },
+      "contribution":{
+        "type":"COMPLETE",
+        "condition":{
+
+        }
+      }
+    }
+  ],
+  "threshold":2,
+  "satisfaction":{
+    "type":"NONE"
+  },
+  "contribution":{
+    "type":"PARTIALCOMPLETE",
+    "n":2,
+    "m":2,
+    "items":[
+      0,
+      1
+    ],
+    "conditions":{
+      "[0, 1]":[
+        {
+          "csv":1000
+        }
+      ]
+    }
+  }
+}
+{{% /json %}}
+
+## Troubleshooting
+
+#### Nothing is printed
+
+This might mean that you have a `RUST_LOG` variable set to a value that suppresses the compiler's log. You can try adding `miniscriptc=info` to your `RUST_LOG` value and see if that works, or open a new clean
+shell.
diff --git a/content/repl/concept.md b/content/repl/concept.md
new file mode 100644 (file)
index 0000000..d57f541
--- /dev/null
@@ -0,0 +1,26 @@
+---
+title: "Concept"
+date: 2020-04-28T17:38:20+02:00
+draft: false
+weight: 2
+pre: "<b>2. </b>"
+---
+
+Now, in order to better grasp some of the design choiches made by Magical Bitcoin, it's important to understand the main concept driving the development of this project, and the goal that it's trying to
+achieve.
+
+Magical Bitcoin is aiming first of all to be a **set of libraries and tools**, all meant to be very reusable and adaptable. Developers working on their own wallets or other projects that are trying to integrate
+Bitcoin can pick the tools they need and piece them together to prototype and quickly ship a working product. This means that the REPL that we've just installed is designed to be a **very thin layer** over the
+APIs exposed by the various components of the library, **not a full, end-user-ready Bitcoin wallet**.
+
+This concept leads to a few design choices that are arguably very bad for the "UX" of this wallet, but that allow developers to work more directly with the underlying library. For instance:
+
+* Magical Bitcoin has an internal database that's used to store data about received transactions, spendable UTXOs, etc. This database is stored by default in your home folder, in `~/.magical-bitcoin`. The database
+  **will never** contain any data that can't be recreated purely by looking at the blockchain. Keys, descriptors, Electrum endpoints **are not stored in there**. This explains why you'll have to specify them every
+  time in the command line. It can be seen more like a *cache* and can be safely deleted without risking funds.
+* Magical Bitcoin doesn't automatically "monitor" the blockchain, instead there's a `sync` command that has to be called by the user.
+* When you create a transaction and then sign it, it's not automatically broadcasted to the network. There's a `broadcast` command that does this. Moreover, the command doesn't accept a normal Bitcoin raw transaction,
+  but instead a *PSBT*. That's because internally transactions are always moved as PSBTs, and again, the `broadcast` command is just a very thin wrapper over the raw library call.
+
+There are probably more of these examples, but hopefully by this point you'll have more or less understood the gist of it. If you are not a developer, some parts of this are gonna feel weird, inefficient, hard
+to understand, and that's absolutely normal. Just try to survive through the pain and you'll be rewarded!
diff --git a/content/repl/installation.md b/content/repl/installation.md
new file mode 100644 (file)
index 0000000..8ab8e06
--- /dev/null
@@ -0,0 +1,63 @@
+---
+title: "Installation"
+date: 2020-04-28T17:11:29+02:00
+draft: false
+weight: 1
+pre: "<b>1. </b>"
+---
+
+## Requirements
+
+The only requirement is a Linux/macOS system with a fairly recent Rust toolchain installed. Since Linux distros tend to lack behind with updates, the quickest way to install the Rust compiler and Cargo is
+[rustup.rs](https://rustup.rs/). You can head there and follow their instructions, after which you can test if everything went fine by running `cargo version`, which should print something like:
+
+```
+cargo 1.42.0 (86334295e 2020-01-31)
+```
+
+If you really don't wanna pipe the output of `curl` into `sh`, you can also try using a [Docker image](https://hub.docker.com/_/rust) and working inside of it, but that's meant for more advanced
+users and won't be covered in this guide.
+
+## Installing Magical Bitcoin
+
+Once Cargo is installed, you can proceed to install the interactive Magical Bitcoin shell directly from the GitHub repository, by running:
+
+```bash
+cargo install --git https://github.com/magicalbitcoin/magical-bitcoin-wallet --example magic
+```
+
+This command will probably take a while to finish, since it will fetch and compile all the dependencies and the `magical-bitcoin-wallet` itself. Once it's done, you can check if everything went fine
+by running `magic --help` which should print something like this:
+
+```text
+Magical Bitcoin Wallet 0.1.0
+Riccardo Casatta <riccardo@casatta.it>:Alekos Filini <alekos.filini@gmail.com>
+A modern, lightweight, descriptor-based wallet
+
+USAGE:
+    magic [FLAGS] [OPTIONS] --descriptor <DESCRIPTOR> [SUBCOMMAND]
+
+FLAGS:
+    -h, --help       Prints help information
+    -v               Sets the level of verbosity
+    -V, --version    Prints version information
+
+OPTIONS:
+    -c, --change_descriptor <DESCRIPTOR>    Sets the descriptor to use for internal addresses
+    -d, --descriptor <DESCRIPTOR>           Sets the descriptor to use for the external addresses
+    -n, --network <NETWORK>                 Sets the network [default: testnet]  [possible values: testnet, regtest]
+    -s, --server <SERVER:PORT>              Sets the Electrum server to use [default: tn.not.fyi:55001]
+    -w, --wallet <WALLET_NAME>              Selects the wallet to use [default: main]
+
+SUBCOMMANDS:
+    broadcast          Extracts the finalized transaction from a PSBT and broadcasts it to the network
+    create_tx          Creates a new unsigned tranasaction
+    get_balance        Returns the current wallet balance
+    get_new_address    Generates a new external address
+    help               Prints this message or the help of the given subcommand(s)
+    list_unspent       Lists the available spendable UTXOs
+    policies           Returns the available spending policies for the descriptor
+    repl               Opens an interactive shell
+    sign               Signs and tries to finalize a PSBT
+    sync               Syncs with the chosen Electrum server
+```
diff --git a/content/repl/interface.md b/content/repl/interface.md
new file mode 100644 (file)
index 0000000..90acc4f
--- /dev/null
@@ -0,0 +1,428 @@
+---
+title: "Interface"
+date: 2020-04-28T18:20:28+02:00
+draft: false
+weight: 3
+pre: "<b>3. </b>"
+---
+
+Remember the `magic --help` command you ran before? Let's analyze its output here to figure out the interface:
+
+## Flags
+
+```text
+FLAGS:
+    -h, --help       Prints help information
+    -v               Sets the level of verbosity
+    -V, --version    Prints version information
+```
+
+These are the optional flags that can be set with every command. The `-h` flag prints the help message, the `-V` flag only prints the version and the `-v` is actually ignored at the moment.
+
+### Verbosity
+
+If you want to increase the verbosity of the output, you should use the `RUST_LOG` environment variable. You can set it like so to see a lot more of what's going on behind the scenes, before running the `magic`
+command. You only have to do this once when you open a new shell, after that you can run the `magic` command multiple times.
+
+```bash
+export RUST_LOG="magical_bitcoin_wallet=debug"
+```
+
+## Options
+
+```text
+OPTIONS:
+    -c, --change_descriptor <DESCRIPTOR>    Sets the descriptor to use for internal addresses
+    -d, --descriptor <DESCRIPTOR>           Sets the descriptor to use for the external addresses
+    -n, --network <NETWORK>                 Sets the network [default: testnet]  [possible values: testnet, regtest]
+    -s, --server <SERVER:PORT>              Sets the Electrum server to use [default: tn.not.fyi:55001]
+    -w, --wallet <WALLET_NAME>              Selects the wallet to use [default: main]
+```
+
+These are the global options that can be set. They are pretty much like the flags, but they also take a value. The only **required** one is the `--descriptor` or `-d` flag, since every wallet **must have an
+associated descriptor**.
+
+The `--change-descriptor` flag can be used to set a different descriptor for the change addresses, sometimes called "internal" addresses in Bitcoin Core. Unfortunately there isn't
+[really consensus](https://freenode.irclog.whitequark.org/bitcoin-wizards/2020-01-25#26222504;) on a nice way to encode informations about the change derivation inside the standard descriptor, so we are
+stuck with having two separate ones. Keep in mind though, that even if you don't specify a change descriptor, you'll still be able to create transactions - the change address will simply be generated from the
+standard descriptor.
+
+The `--network` flag can be used to change the network. Right now only `testnet` and `regtest` are supported since the code is very much not production-ready yet.
+
+The `--server` flag can be used to select the Electrum server to use. By default it's connecting to a random `testnet` server that has been found online, but sometimes it has proven to be kinda unreliable.
+You can also try with `kirsche.emzy.de:50001` or find other servers [here](https://1209k.com/bitcoin-eye/ele.php?chain=tbtc) and see if you have more luck with those. Right now **only tcp, non-Tor** servers are supported.
+
+The `--wallet` flag can be used to select which wallet to use, if you have more than one of them. If you get a `ChecksumMismatch` error when you make some changes to your descriptor, it's because it doesn't
+match anymore the one you've used to initialize the cache. One solution could be to switch to a new wallet name, or delete the cache directory at `~/.magical-bitcoin` and start from scratch.
+
+## Subcommands
+
+```text
+SUBCOMMANDS:
+    broadcast          Extracts the finalized transaction from a PSBT and broadcasts it to the network
+    create_tx          Creates a new unsigned tranasaction
+    get_balance        Returns the current wallet balance
+    get_new_address    Generates a new external address
+    list_unspent       Lists the available spendable UTXOs
+    policies           Returns the available spending policies for the descriptor
+    repl               Opens an interactive shell
+    sign               Signs and tries to finalize a PSBT
+    sync               Syncs with the chosen Electrum server
+```
+
+These are the main "functions" of the wallet. Most of them are pretty self explanatory, but we'll go over them quickly anyways. You can get more details about every single command by running `magic <subcommand> --help`.
+
+### broadcast
+
+```text
+OPTIONS:
+        --psbt <BASE64_PSBT>    Sets the PSBT to broadcast
+```
+
+Broadcasts a transaction. The transaction has to be in PSBT format and has to be "finalizable" (i.e. it should contain enough partial signatures to construct a finalized valid signature).
+
+### create\_tx
+
+```text
+FLAGS:
+    -a, --send_all    Sends all the funds (or all the selected utxos). Requires only one addressees of value 0
+
+OPTIONS:
+    -f, --fee_rate <SATS_VBYTE>         Fee rate to use in sat/vbyte
+        --policy <POLICY>               Selects which policy will be used to satisfy the descriptor
+        --to <ADDRESS:SAT>...           Adds an addressee to the transaction
+        --unspendable <TXID:VOUT>...    Marks an utxo as unspendable
+        --utxos <TXID:VOUT>...          Selects which utxos *must* be spent
+```
+
+Creates a new unsigned PSBT. The flags allow to set a custom fee rate (the default is 1.0 sat/vbyte) with `--fee_rate` or `-f`, the list of UTXOs that should be considered unspendable with `--unspendable` (this
+option can be specified multiple times) and a list of UTXOs that must be spent with `--utxos` (again, this option can also be specified multiple times).
+
+The `--to` option sets the receiver address of the transaction, and should contain the address and amount in Satoshi separated by a colon, like: `--to --to 2NErbQPsooXRatRJdrXDm9wKR2fRiZDT9wL:50000`. This option
+can also be specified multiple times to send to multiple addresses at once.
+
+The `--send_all` flag can be used to send the value of all the spendable UTXOs to a single address, without creating a change output. If this flag is set, there must be only one `--to` address, and its value will
+be ignored (it can be set to 0).
+
+The `--policy` option is an advanced flag that can be used to select the spending policy that the sender intends to satisfy in this transaction. It's normally not required if there's no ambiguity, but sometimes
+with complex descriptor it has to be specified, or you'll get a `SpendingPolicyRequired` error. This flag should be set to an array of the list of child indexes that should be taken at each step when traversing the spending
+policies tree from the root, at least until there are no more ambiguities. This is probably better explained with an example:
+
+Let's assume our descriptor is: `thresh(2,c:pk(A),sj:and_v(vc:pk(B),n:older(6)),sjn:and_v(vc:pk(C),after(630000)))`. There are three conditions and we need to satisfy two of them to be able to spend. The conditions are:
+
+1. Sign with the key corresponding to `pk(A)`
+2. Sign with the key corresponding to `pk(B)` AND wait 6 blocks 
+2. Sign with the key corresponding to `pk(C)` AND wait that block 630,000 is reached
+
+So if we write down all the possible outcomes when we combine them, we get:
+
+1. Sign with `pk(A)` + `pk(B)` + wait 6 blocks
+2. Sign with `pk(A)` + `pk(C)` + wait block 630,000
+3. Sign with `pk(B)` + `pk(C)` + wait 6 blocks + wait block 630,000
+
+* If we choose option #1, the final transaction will need to have the `nSequence` of its inputs to a value greather than or equal to 6, but the `nLockTime` can stay at 0.
+* If we choose option #2, the final transaction will need to have its `nLockTime` set to a value greater than or equal to 630,000, but the `nSequence` can be set to a final value.
+* If we choose option #3, both the `nSequence` and `nLockTime` must be set.
+
+The wallet can't choose by itself which one of these combination to use, so the user has to provide this information with the `--policy` flag. Now, let's draw the condition tree to understand better how the chosen
+policy is represented:
+
+{{<mermaid align="center">}}
+graph TD;
+    subgraph ""
+        R["Root"] --> A["pk(A)"]
+        R["Root"] --> B
+        B --> B_0["pk(B)"]
+        B --> B_1["older(6)"]
+    end
+    C --> C_0["pk(C)"]
+    C --> C_1["after(630,000)"]
+    R["Root"] --> C
+{{< /mermaid >}}
+
+Let's imagine that we are walking down from the root, and we want to use option #1. So we will have to select `pk(A)` + the whole `B` node. Since the order is always mainteined, we can refer to them with their
+indexes, in this case they are children #0 and #1 of the root. So our final policy will be: `--policy [[0, 1]]`, which means "at the first step from the root, pick items #0 and #1".
+
+### get\_balance
+
+This subcommand has no extra flags, and simply returns the available balance in Satoshis. This command **must be called after [`sync`](#sync)**, since it only looks into the local cache to determine the list of UTXOs.
+
+### get\_new\_address
+
+This subcommand has no extra flags and returns a new address. It internally increments the derivation index and saves it in the database.
+
+### list\_unspent
+
+This subcommand has no extra flags and returns the list of available UTXOs and their value in Satoshi. Just like [`get_balance`](#get_balance) it **must be called after [`sync`](#sync)**, since it only operates
+on the internal cache.
+
+### policies
+
+This subcommand has no extra flags and returns the spending policies encoded by the descriptor in a more human-readable format. As an example, running the `policies` command on the descriptor shown earlier for the
+in the explanation of the [`create_tx`](#create_tx) command, it will return this:
+
+{{% json %}}
+{
+  "type":"THRESH",
+  "items":[
+    {
+      "type":"SIGNATURE",
+      "pubkey":"...",
+      "satisfaction":{
+        "type":"NONE"
+      },
+      "contribution":{
+        "type":"COMPLETE",
+        "condition":{
+
+        }
+      }
+    },
+    {
+      "type":"THRESH",
+      "items":[
+        {
+          "type":"SIGNATURE",
+          "pubkey":"...",
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"COMPLETE",
+            "condition":{
+
+            }
+          }
+        },
+        {
+          "type":"RELATIVETIMELOCK",
+          "value":6,
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"COMPLETE",
+            "condition":{
+              "csv":6
+            }
+          }
+        }
+      ],
+      "threshold":2,
+      "satisfaction":{
+        "type":"NONE"
+      },
+      "contribution":{
+        "type":"PARTIALCOMPLETE",
+        "n":2,
+        "m":2,
+        "items":[
+          0,
+          1
+        ],
+        "conditions":{
+          "[0, 1]":[
+            {
+              "csv":6
+            }
+          ]
+        }
+      }
+    },
+    {
+      "type":"THRESH",
+      "items":[
+        {
+          "type":"SIGNATURE",
+          "pubkey":"...",
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"COMPLETE",
+            "condition":{
+
+            }
+          }
+        },
+        {
+          "type":"ABSOLUTETIMELOCK",
+          "value":630000,
+          "satisfaction":{
+            "type":"NONE"
+          },
+          "contribution":{
+            "type":"COMPLETE",
+            "condition":{
+              "timelock":630000
+            }
+          }
+        }
+      ],
+      "threshold":2,
+      "satisfaction":{
+        "type":"NONE"
+      },
+      "contribution":{
+        "type":"PARTIALCOMPLETE",
+        "n":2,
+        "m":2,
+        "items":[
+          0,
+          1
+        ],
+        "conditions":{
+          "[0, 1]":[
+            {
+              "timelock":630000
+            }
+          ]
+        }
+      }
+    }
+  ],
+  "threshold":2,
+  "satisfaction":{
+    "type":"NONE"
+  },
+  "contribution":{
+    "type":"PARTIALCOMPLETE",
+    "n":3,
+    "m":2,
+    "items":[
+      0,
+      1,
+      2
+    ],
+    "conditions":{
+      "[0, 1]":[
+        {
+          "csv":6
+        }
+      ],
+      "[0, 2]":[
+        {
+          "timelock":630000
+        }
+      ],
+      "[1, 2]":[
+        {
+          "csv":6,
+          "timelock":630000
+        }
+      ]
+    }
+  }
+}
+{{% /json %}}
+
+This is a tree-like recursive structure, so it tends to get huge as more and more pieces are added, but it's in fact fairly simple. Let's analyze a simple node of the tree:
+
+```json
+{
+  "type":"SIGNATURE",
+  "pubkey":"...",
+  "satisfaction":{
+    "type":"NONE"
+  },
+  "contribution":{
+    "type":"COMPLETE",
+    "condition":{}
+  }
+}
+```
+
+* `type`, as the name implies, represents the type of node. It defines what should be provided to satisfy that particular node. Generally some other data are provided to give meaning to
+  the type itself (like the `pubkey` field here in the example). There are basically two families of types: some of them can only be used as leaves, while some other can only be used as intermediate nodes.
+
+  Possible leaf nodes are:
+    - `SIGNATURE`, requires a signature made with the specified key. Has a `pubkey` if it's a single key, a `fingerprint` if the key is an xpub, or a `pubkey_hash` if the full public key is not present in the descriptor.
+    - `SIGNATUREKEY`, requires a signature plus the raw public key. Again, it can have a `pubkey`, `fingerprint` or `pubkey_hash`.
+    - `SHA256PREIMAGE`, requires the preimage of a given `hash`.
+    - `HASH256PREIMAGE`, requires the preimage of a given `hash`.
+    - `RIPEMD160PREIMAGE`, requires the preimage of a given `hash`.
+    - `HASH160PREIMAGE`, requires the preimage of a given `hash`.
+    - `ABSOLUTETIMELOCK`, doesn't technically require anything to be satisfied, just waiting for the timelock to expire. Has a `value` field with the raw value of the timelock (can be both in blocks or time-based).
+    - `RELATIVETIMELOCK`, again only requires waiting for the timelock to expire. Has a `value` like `ABSOLUTETIMELOCK`.
+
+  Possible non-leaf nodes are:
+    - `THRESH`, defines a threshold of policies that has to be met to satisfy the node. Has an `items` field, which is a list of policies to satisfy and a `threshold` field that defines the threshold.
+    - `MULTISIG`, Similar to `THRESH`, has a `keys` field, which is a list of keys represented again as either `pubkey`, `fingerprint` or `pubkey_hash` and a `threshold` field.
+
+* `satisfaction` is currently not implemented and will be used to provide PSBT introspection, like understanding whether or not a node is already satisfied and to which extent in a PSBT.
+* `contribution` represents if so and how much, the provided descriptor can contribute to the node.
+
+  The possible types are:
+    - `NONE`, which means that the descriptor cannot contribute.
+    - `COMPLETE`, which means that the descriptor by itself is enough to completely satisfy the node. It also adds a `condition` field which represent any potential extra condition that has to be met to
+      consider the node complete. An example are the timelock nodes, that are always complete *but* they have an extra `csv` or `timelock` condition.
+    - `PARTIAL`, which means that the descriptor can partially satisfy the descriptor. This adds a `m`, `n`, `items` that respectively represent the threshold, the number of available items to satisfy and the items
+      that the provided descriptor can satisfy. Also adds a `conditions` field which is an integer to list of conditions map. The key is the child index and the map are all the possibile extra conditions that
+      have to be satisfied if that node is used in the threshold. For instance, if you have a threshold of a SIGNATURE and a RELATIVETIMELOCK, in this order, the `conditions` field will be `1 â‡’ csv(x)`,
+      because the item at index 1 needs the extra csv condition.
+    - `PARTIALCOMPLETE`, which is basically a `PARTIAL` with the size of `items` >= `m`. It's treated as a separate entity to make the code a bit more clean and easier to implement. Like `PARTIAL`, it also has
+      a `m`, `n`, `items` fields but the `conditions field` is a bit different: it's a list of integers to list of conditions map. The key represents the combination that can be used to satisfy the threshold,
+      and the value contains all the possible conditions that also have to be satisfied. For instance, if you have a 2-of-2 threshold of a TIMELOCK and a RELATIVETIMELOCK, the `conditions` field will be `[0, 1] â‡’
+      csv(x) + timelock(y)`, because if the combination of items 0 and 1 is picked, both of their conditions will have to be meet too.
+
+While the structure contains all of the intermediate nodes too, the root node is the most important one because defines how the descriptor can contribute to spend outputs sent to its addresses. 
+
+For instance, looking at the root node of the previous example (with the internal `items` omitted) from a descriptor that has all the three private keys for keys A, B and C, we can clearly see that it can satisfy
+the descriptor (type = `PARTIALCOMPLETE`) and the three options are `[0, 1] â‡’ csv(6)` (Option #1), `[0, 2] â‡’ timelock(630,000)` (Option #2) or `[1, 2] â‡’ csv(6) + timelock(630,000)` (Option #3).
+
+```json
+{
+  "type":"THRESH",
+  "items":[],
+  "threshold":2,
+  "satisfaction":{
+    "type":"NONE"
+  },
+  "contribution":{
+    "type":"PARTIALCOMPLETE",
+    "n":3,
+    "m":2,
+    "items":[
+      0,
+      1,
+      2
+    ],
+    "conditions":{
+      "[0, 1]":[
+        {
+          "csv":6
+        }
+      ],
+      "[0, 2]":[
+        {
+          "timelock":630000
+        }
+      ],
+      "[1, 2]":[
+        {
+          "csv":6,
+          "timelock":630000
+        }
+      ]
+    }
+  }
+}
+```
+
+### `repl`
+
+This subcommand has no extra flags and launches an interactive shell session.
+
+### `sign`
+
+```text
+OPTIONS:
+        --psbt <BASE64_PSBT>    Sets the PSBT to sign
+```
+
+Adds to the PSBT all the signatures it can produce with the secrets embedded in the descriptor (xprv or WIF keys). Returns the signed PSBT and, if there are enough item to satisfy the script, also the extracted raw
+Bitcoin transaction.
+
+### `sync`
+
+This subcommand has no extra flags. It connects to the chosen Electrum server and synchronizes the list of transactions received and available UTXOs.
diff --git a/content/repl/regtest.md b/content/repl/regtest.md
new file mode 100644 (file)
index 0000000..1fd756c
--- /dev/null
@@ -0,0 +1,34 @@
+---
+title: "Regtest"
+date: 2020-04-29T00:19:34+02:00
+draft: false
+weight: 4
+pre: "<b>4. </b>"
+---
+
+Running the REPL in regtest requires having a local Electrum server set-up. There are two main implementations, [`electrs`](https://github.com/romanz/electrs) in Rust and [`ElectrumX`](https://github.com/kyuupichan/electrumx) in Python. Since the Rust toolchain is already required to
+use Magical, this page will focus mostly on the former.
+
+Electrs can be installed by running:
+
+```bash
+cargo install --git https://github.com/romanz/electrs --bin electrs
+```
+
+Just like before, this command will probably take a while to finish.
+
+Once it's done, assuming you have a regtest bitcoind running in background, you can launch a new terminal and run the following command to actually start electrs:
+
+```bash
+electrs -vv --timestamp --db-dir /tmp/electrs-db --electrum-rpc-addr="127.0.0.1:50001" --network=regtest --cookie-file=$HOME/.bitcoin/regtest/.cookie
+```
+
+on macOS you should change the cookie-file to `$HOME/Library/Application Support/Bitcoin/regtest/.cookie`.
+
+This will start the Electrum server on port 50001. You can then add the `-n regtest -s localhost:50001` the `magic` commands to switch to the local regtest.
+
+## Troubleshooting
+
+#### Stuck with "*wait until bitcoind is synced (i.e. initialblockdownload = false)*"
+
+Just generate a few blocks with `bitcoin-cli generatetoaddress 1 <address>`
diff --git a/layouts/partials/custom-footer.html b/layouts/partials/custom-footer.html
new file mode 100644 (file)
index 0000000..15a980e
--- /dev/null
@@ -0,0 +1,2 @@
+<script type="text/javascript" src="/js/jsonview.js" charset="utf-8"></script>
+<script type="text/javascript" src="/js/main.js" charset="utf-8"></script>
diff --git a/layouts/partials/favicon.html b/layouts/partials/favicon.html
new file mode 100644 (file)
index 0000000..1eccb39
--- /dev/null
@@ -0,0 +1,7 @@
+<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png">
+<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
+<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
+<link rel="manifest" href="/icons/site.webmanifest">
+<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#5bbad5">
+<meta name="msapplication-TileColor" content="#da532c">
+<meta name="theme-color" content="#ffffff">
diff --git a/layouts/partials/logo.html b/layouts/partials/logo.html
new file mode 100644 (file)
index 0000000..814ef46
--- /dev/null
@@ -0,0 +1,3 @@
+<a id="logo" href="/">
+    <img src="/images/logo.svg" alt="Magical Bitcoin logo"/>
+</a>
diff --git a/layouts/partials/menu-footer.html b/layouts/partials/menu-footer.html
new file mode 100644 (file)
index 0000000..d5a655c
--- /dev/null
@@ -0,0 +1,10 @@
+<script type="text/javascript" src="/js/github-buttons.js"></script>
+
+<center>
+    <!-- https://buttons.github.io/ -->
+    <a class="github-button" href="https://github.com/MagicalBitcoin/magical-bitcoin-wallet/subscription" data-icon="octicon-eye" data-show-count="true" aria-label="Watch MagicalBitcoin/magical-bitcoin-wallet on GitHub">Watch</a>
+    <a class="github-button" href="https://github.com/MagicalBitcoin/magical-bitcoin-wallet" data-icon="octicon-star" data-show-count="true" aria-label="Star MagicalBitcoin/magical-bitcoin-wallet on GitHub">Star</a>
+    <a class="github-button" href="https://github.com/MagicalBitcoin/magical-bitcoin-wallet/fork" data-icon="octicon-repo-forked" data-show-count="true" aria-label="Fork MagicalBitcoin/magical-bitcoin-wallet on GitHub">Fork</a>
+</center>
+
+<center>Built with <a href="https://gohugo.io/">Hugo</a></center>
diff --git a/layouts/shortcodes/json.html b/layouts/shortcodes/json.html
new file mode 100644 (file)
index 0000000..62d3bdb
--- /dev/null
@@ -0,0 +1,2 @@
+{{ $_hugo_config := `{ "version": 1 }` }}
+<div class="json" data-json='{{ .Inner }}'></div>
diff --git a/static/css/jsonview.css b/static/css/jsonview.css
new file mode 100644 (file)
index 0000000..72419b3
--- /dev/null
@@ -0,0 +1,88 @@
+.json {
+        padding: 16px;
+        background-color: #272822;
+        color: #FFF;
+        font-family: "Consolas", menlo, monospace;
+}
+
+.line {
+       margin: 4px 0;
+       display: flex;
+       justify-content: flex-start;
+}
+
+.caret-icon {
+       width: 28px;
+       text-align: center;
+       cursor: pointer;
+}
+
+.json .caret-icon > i {
+        border: 0;
+}
+
+.empty-icon {
+       width: 20px;
+}
+
+.json-type {
+       margin-right: 4px;
+       margin-left: 4px;
+}
+
+.json-key {
+       color: #EEE;
+       margin-right: 4px;
+       margin-left: 4px;
+}
+
+.json-index {
+       margin-right: 4px;
+       margin-left: 4px;
+}
+
+.json-separator {
+
+}
+
+.json-value {
+       margin-left: 8px;
+}
+
+.json-number {
+       color: #f9ae58;
+}
+
+.json-boolean {
+       color: #ec5f66;
+}
+
+.json-string {
+       color: #86b25c;
+}
+
+.json-size {
+       margin-right: 4px;
+       margin-left: 4px;
+}
+
+.hide {
+       display: none;
+}
+
+.json .fas {
+       display: inline-block;
+       width: 0;
+       height: 0;
+       border-style: solid;
+}
+
+.json .fa-caret-down {
+       border-width: 6px 5px 0 5px;
+       border-color: #808080 transparent
+}
+
+.json .fa-caret-right {
+       border-width: 5px 0 5px 6px;
+       border-color: transparent transparent transparent #808080;
+}
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644 (file)
index 0000000..9f9f18e
--- /dev/null
@@ -0,0 +1,20 @@
+#descriptor-examples-table {
+}
+
+#descriptor-examples-table code, #descriptor-examples-table td:not(:first-child) {
+    overflow-x: auto;
+    white-space: pre-wrap;
+    white-space: -moz-pre-wrap;
+    white-space: -pre-wrap;
+    white-space: -o-pre-wrap;
+    word-wrap: break-word;
+    overflow-wrap: anywhere;
+}
+
+#descriptor-examples-table > table > thead > tr > th:nth-child(2) {
+    width: 45%;
+}
+
+#descriptor-examples-table > table > thead > tr > th:nth-child(2) {
+    width: 45%;
+}
diff --git a/static/icons/android-chrome-192x192.png b/static/icons/android-chrome-192x192.png
new file mode 100644 (file)
index 0000000..a2e4dad
Binary files /dev/null and b/static/icons/android-chrome-192x192.png differ
diff --git a/static/icons/android-chrome-512x512.png b/static/icons/android-chrome-512x512.png
new file mode 100644 (file)
index 0000000..3b4b06b
Binary files /dev/null and b/static/icons/android-chrome-512x512.png differ
diff --git a/static/icons/apple-touch-icon.png b/static/icons/apple-touch-icon.png
new file mode 100644 (file)
index 0000000..ed9281b
Binary files /dev/null and b/static/icons/apple-touch-icon.png differ
diff --git a/static/icons/browserconfig.xml b/static/icons/browserconfig.xml
new file mode 100644 (file)
index 0000000..b3930d0
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+    <msapplication>
+        <tile>
+            <square150x150logo src="/mstile-150x150.png"/>
+            <TileColor>#da532c</TileColor>
+        </tile>
+    </msapplication>
+</browserconfig>
diff --git a/static/icons/favicon-16x16.png b/static/icons/favicon-16x16.png
new file mode 100644 (file)
index 0000000..678299a
Binary files /dev/null and b/static/icons/favicon-16x16.png differ
diff --git a/static/icons/favicon-32x32.png b/static/icons/favicon-32x32.png
new file mode 100644 (file)
index 0000000..c0a3b56
Binary files /dev/null and b/static/icons/favicon-32x32.png differ
diff --git a/static/icons/favicon.ico b/static/icons/favicon.ico
new file mode 100644 (file)
index 0000000..b657197
Binary files /dev/null and b/static/icons/favicon.ico differ
diff --git a/static/icons/mstile-150x150.png b/static/icons/mstile-150x150.png
new file mode 100644 (file)
index 0000000..17106a6
Binary files /dev/null and b/static/icons/mstile-150x150.png differ
diff --git a/static/icons/safari-pinned-tab.svg b/static/icons/safari-pinned-tab.svg
new file mode 100644 (file)
index 0000000..a882dc1
--- /dev/null
@@ -0,0 +1,82 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="880.000000pt" height="880.000000pt" viewBox="0 0 880.000000 880.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.11, written by Peter Selinger 2001-2013
+</metadata>
+<g transform="translate(0.000000,880.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M5580 8047 c-3 -3 -30 -8 -60 -12 -118 -15 -299 -90 -401 -168 -93
+-70 -144 -120 -209 -203 -24 -30 -188 -292 -203 -324 -4 -8 -15 -28 -25 -45
+-52 -84 -192 -355 -192 -369 0 -4 -15 -37 -33 -74 -18 -37 -34 -70 -35 -75 -1
+-4 -9 -23 -17 -43 -8 -20 -15 -39 -15 -42 0 -3 -12 -35 -26 -71 -15 -36 -33
+-86 -40 -111 -63 -221 -70 -249 -78 -288 -1 -7 -6 -11 -11 -10 -8 3 -65 110
+-95 181 -6 12 -14 29 -20 37 -5 8 -60 119 -123 245 -127 257 -265 506 -297
+535 -3 3 -25 31 -49 63 -78 103 -185 192 -306 255 -115 59 -206 101 -237 108
+-10 2 -28 7 -40 10 -66 16 -252 24 -318 13 -25 -4 -63 -11 -85 -14 -22 -4 -48
+-11 -57 -16 -10 -5 -18 -8 -18 -5 0 5 -94 -31 -155 -59 -117 -55 -272 -188
+-351 -302 -18 -26 -37 -53 -41 -58 -4 -6 -45 -85 -90 -176 -81 -163 -136 -261
+-268 -474 -90 -145 -154 -256 -230 -401 -17 -33 -36 -67 -41 -75 -4 -8 -9 -20
+-10 -27 -2 -8 -9 -21 -17 -30 -8 -10 -22 -38 -32 -64 -10 -27 -21 -48 -25 -48
+-4 0 -10 -13 -13 -29 -3 -16 -13 -36 -22 -44 -9 -9 -15 -19 -15 -22 3 -14 -25
+-75 -34 -75 -5 0 -7 -2 -4 -6 3 -3 -7 -32 -23 -65 -16 -32 -29 -61 -29 -64 0
+-6 -67 -153 -80 -177 -6 -10 -10 -25 -10 -33 0 -8 -4 -15 -8 -15 -5 0 -9 -6
+-9 -12 0 -7 -7 -29 -16 -48 -8 -19 -28 -62 -43 -95 -15 -33 -29 -66 -30 -73
+-1 -8 -9 -28 -17 -45 -42 -89 -147 -349 -147 -362 0 -8 -4 -15 -10 -15 -5 0
+-10 -7 -10 -16 0 -8 -8 -34 -19 -57 -10 -23 -53 -136 -96 -252 -42 -115 -80
+-219 -85 -230 -4 -11 -8 -23 -9 -27 -1 -5 -9 -32 -20 -60 -10 -29 -26 -78 -35
+-108 -10 -30 -20 -62 -24 -70 -3 -8 -6 -17 -7 -20 0 -3 -9 -32 -19 -65 -10
+-33 -19 -64 -20 -70 -2 -5 -8 -30 -15 -55 -7 -25 -15 -54 -17 -65 -2 -11 -12
+-50 -23 -87 -11 -38 -17 -68 -14 -68 3 0 0 -7 -7 -15 -7 -8 -10 -15 -7 -15 4
+0 0 -18 -8 -40 -8 -22 -12 -40 -10 -40 2 0 -2 -18 -10 -40 -8 -22 -12 -40 -10
+-40 2 0 -5 -28 -15 -62 -11 -34 -17 -65 -14 -70 3 -4 0 -8 -7 -8 -7 0 -10 -3
+-7 -6 3 -3 -5 -44 -18 -92 -13 -48 -24 -87 -23 -87 1 0 -5 -20 -12 -45 -7 -25
+-13 -47 -14 -50 0 -3 -5 -23 -10 -45 -10 -47 -12 -54 -15 -57 -2 -3 -5 -16
+-13 -53 -3 -11 -21 -81 -40 -155 -20 -74 -38 -146 -41 -160 -4 -20 -76 -293
+-103 -390 -4 -14 -8 -137 -10 -273 -4 -234 -3 -253 18 -315 46 -143 145 -299
+251 -397 75 -70 107 -95 118 -95 6 0 10 -4 10 -8 0 -18 228 -120 307 -137 157
+-34 324 -38 440 -10 13 3 31 7 40 9 74 17 205 73 282 121 42 26 131 98 131
+106 0 5 7 9 15 9 8 0 15 3 15 8 0 4 13 21 28 37 63 68 196 275 177 275 -3 0 3
+12 12 27 10 15 17 28 16 30 -2 2 -2 5 -2 8 3 13 6 21 12 35 9 23 26 110 32
+159 3 24 12 71 21 105 9 33 17 66 18 71 1 6 5 16 9 23 5 6 6 12 3 12 -3 0 2
+23 10 52 9 28 18 60 20 70 2 10 6 27 9 38 3 11 7 29 10 40 3 11 7 28 9 37 5
+20 46 179 77 293 10 41 21 84 24 95 5 23 18 77 21 88 1 4 2 8 4 10 1 1 3 9 5
+17 2 8 7 26 10 40 3 14 8 36 11 50 2 14 9 36 13 50 14 37 61 220 65 250 1 9 5
+21 10 28 4 6 5 12 2 12 -3 0 1 18 9 40 8 22 15 44 15 48 0 4 5 23 10 42 5 19
+11 46 14 60 2 14 5 26 7 28 1 1 2 5 3 10 20 76 71 241 86 277 4 11 25 67 45
+125 36 102 97 265 114 305 5 11 21 52 36 90 15 39 33 84 40 100 26 59 44 101
+78 185 30 75 56 136 87 205 5 11 20 46 33 79 13 32 27 55 29 50 3 -5 41 -76
+83 -159 93 -180 188 -361 267 -509 32 -60 58 -113 58 -117 0 -4 6 -14 13 -21
+6 -8 19 -27 28 -44 106 -201 155 -295 197 -377 44 -86 120 -203 159 -247 76
+-86 131 -138 220 -211 66 -53 293 -172 349 -182 11 -2 37 -9 59 -15 69 -18
+117 -24 225 -25 146 -1 187 7 309 62 120 55 188 86 246 112 22 10 56 32 75 49
+67 60 150 143 150 151 0 4 9 18 20 31 40 46 92 135 155 263 61 126 155 336
+160 359 3 14 14 43 31 82 8 17 15 40 17 50 2 11 11 44 22 74 17 52 19 53 28
+30 5 -14 17 -41 25 -60 9 -19 17 -38 18 -42 1 -5 3 -11 4 -15 1 -5 2 -11 1
+-15 0 -5 4 -8 9 -8 5 0 9 -3 9 -7 -1 -5 0 -11 1 -15 1 -5 3 -11 5 -15 1 -5 6
+-19 12 -33 14 -32 68 -175 100 -265 14 -38 29 -79 34 -90 5 -11 33 -93 62
+-181 30 -89 56 -165 59 -170 3 -5 11 -31 18 -59 7 -27 16 -54 20 -60 4 -5 27
+-71 50 -145 23 -74 47 -141 52 -148 6 -6 8 -12 5 -12 -3 0 15 -60 39 -132 25
+-73 47 -137 48 -143 2 -5 6 -17 9 -25 3 -8 19 -53 36 -100 82 -233 143 -366
+258 -556 32 -53 63 -105 69 -115 6 -10 18 -27 27 -37 10 -10 17 -23 17 -29 0
+-6 3 -13 8 -15 12 -5 64 -78 55 -78 -4 0 -3 -4 4 -8 6 -4 49 -55 95 -113 183
+-233 262 -311 397 -393 109 -66 283 -128 401 -143 63 -8 204 -9 245 -2 22 4
+57 10 78 13 104 16 242 75 359 153 58 39 228 201 228 218 0 4 11 21 24 38 38
+52 102 186 122 257 49 180 52 357 8 520 -8 30 -17 63 -19 73 -2 11 -23 58 -46
+105 -60 125 -87 161 -224 297 -50 50 -117 131 -151 180 -56 83 -74 116 -116
+215 -14 32 -128 362 -133 385 -1 5 -5 17 -8 25 -10 23 -58 173 -62 192 -2 9
+-8 25 -14 36 -5 10 -12 30 -15 43 -4 21 -143 429 -195 574 -10 28 -24 66 -31
+85 -6 19 -15 44 -20 55 -16 37 -84 220 -86 230 -2 6 -48 123 -104 260 -56 138
+-110 273 -120 300 -10 28 -28 75 -40 105 -12 30 -35 93 -51 140 -16 47 -34 94
+-39 105 -8 18 -107 304 -114 330 -2 6 -6 17 -9 25 -3 8 -11 33 -17 55 -6 22
+-15 49 -20 60 -8 18 -119 356 -125 380 -1 6 -5 17 -8 25 -7 18 -30 92 -33 103
+-1 4 -3 9 -4 12 -1 3 -3 8 -4 13 -3 10 -85 268 -103 322 -8 25 -16 50 -17 55
+-10 44 -60 193 -68 203 -6 6 -8 12 -5 12 3 0 -23 84 -59 188 -35 103 -66 194
+-68 203 -11 43 -94 203 -143 276 -52 78 -60 85 -175 155 -66 40 -133 80 -147
+88 -14 8 -44 26 -66 40 -22 14 -48 30 -57 35 -10 6 -49 29 -88 53 -39 23 -85
+45 -103 48 -46 8 -261 17 -267 11z"/>
+</g>
+</svg>
diff --git a/static/icons/site.webmanifest b/static/icons/site.webmanifest
new file mode 100644 (file)
index 0000000..ccaa826
--- /dev/null
@@ -0,0 +1,19 @@
+{
+    "name": "MagicalBitcoin Docs",
+    "short_name": "MagicalBitcoin Docs",
+    "icons": [
+        {
+            "src": "/android-chrome-192x192.png",
+            "sizes": "192x192",
+            "type": "image/png"
+        },
+        {
+            "src": "/android-chrome-512x512.png",
+            "sizes": "512x512",
+            "type": "image/png"
+        }
+    ],
+    "theme_color": "#ffffff",
+    "background_color": "#ffffff",
+    "display": "standalone"
+}
diff --git a/static/images/logo.svg b/static/images/logo.svg
new file mode 100644 (file)
index 0000000..b284a89
--- /dev/null
@@ -0,0 +1,283 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 61.944702 37.660267"
+   height="37.660267mm"
+   width="61.944702mm"
+   sodipodi:docname="logo.svg"
+   inkscape:version="0.92.4 (unknown)">
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1996"
+     inkscape:window-height="1295"
+     id="namedview67"
+     showgrid="false"
+     inkscape:zoom="3.3638608"
+     inkscape:cx="96.139344"
+     inkscape:cy="94.160306"
+     inkscape:window-x="2"
+     inkscape:window-y="18"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="layer1" />
+  <defs
+     id="defs2">
+    <image
+       id="IMAGE_DEF_6be9a5e8-dd61-45a9-886f-027a2e91e056"
+       x="0"
+       y="0"
+       width="150"
+       height="125"
+       xlink:href="data:image/jpeg;base64,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" />
+  </defs>
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     transform="translate(-8.5917266,-5.0472018)">
+    <g
+       style="display:inline"
+       transform="matrix(0.35277776,0,0,0.35277776,-90.113005,-52.212131)"
+       id="g4568">
+      <g
+         transform="translate(-297.27747,-13.476579)"
+         id="g4847">
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_775d2ab3-13de-4379-bf67-4b78acad5b1a"
+           d="m 581.5547,222.0713 -0.066,-0.014 q -0.002,0.003 0.774,-3 0.775,-3.004 1.255,-4.875 0.48,-1.872 1.736,-4.934 1.257,-3.061 2.029,-4.674 0.772,-1.613 1.663,-3.014 0.891,-1.401 1.522,-2.777 0.261,0.085 1.357,2.325 1.095,2.239 2.538,5.049 1.442,2.809 2.153,4.107 0.711,1.299 0.997,1.895 0.287,0.596 0.769,0.762 0.104,0.071 0.783,-1.475 0.678,-1.546 1.219,-4.378 0.54,-2.833 1.034,-5.069 0.495,-2.237 2.313,-5.01 0.12,0.026 1.024,2.896 0.904,2.871 1.678,5.186 0.774,2.315 1.601,4.333 0.827,2.018 1.409,3.697 0.583,1.678 1.123,3.34 0.539,1.662 0.846,2.409 0.307,0.746 0.884,1.592 0.577,0.845 1.268,1.617 l 0.181,0.059"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_08201522-c15b-4636-a6ab-4bb37e3bdea2"
+           d="m 623.0177,223.1873 0.008,0.117 0.022,10e-4 q 0.084,-0.347 0.21,-0.968 0.126,-0.622 0.253,-1.779 0.128,-1.157 0.169,-2.254 0.041,-1.097 0.267,-6.257 0.226,-5.16 0.608,-8.95 0.382,-3.789 0.701,-5.637 0.32,-1.848 0.503,-2.824 0.183,-0.977 0.591,-3.276 0.409,-2.299 0.674,-3.721 0.264,-1.422 0.767,-2.548 0.502,-1.125 1.941,-4.799 0.175,-0.042 1.148,3.451 0.972,3.493 1.57,5.628 0.597,2.136 0.863,3.349 0.266,1.213 0.513,2.377 0.248,1.164 0.528,2.362 0.281,1.198 0.491,2.048 0.21,0.849 0.413,1.688 0.202,0.838 1.139,4.299 0.937,3.461 1.588,5.839 0.651,2.378 1.047,3.7 0.396,1.323 0.755,2.534 0.358,1.212 0.581,2.118 0.224,0.907 0.444,1.993 l 0.248,-0.184"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_6981e138-0bb8-40c3-a716-dbe2afdbb6d9"
+           d="m 620.7327,209.4113 q 0.078,0.032 1.898,0.056 1.82,0.024 4.679,0.354 2.859,0.33 5.13,0.471 2.271,0.142 4.275,-0.006 2.004,-0.147 3.199,-0.699 1.196,-0.553 1.386,-0.662"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_916f6a24-089b-40f2-ac91-597d9bd156e5"
+           d="m 661.4307,188.4453 q -0.308,0.242 -0.359,0.24 -0.737,0.198 -2.571,0.721 -1.835,0.522 -3.256,0.949 -1.421,0.427 -2.115,0.603 -0.694,0.176 -1.141,0.31 -0.448,0.135 -0.767,0.222 -0.32,0.087 -0.652,0.222 -0.333,0.135 -0.525,0.228 -0.192,0.092 -0.495,0.316 -0.303,0.223 -0.409,0.337 -0.105,0.114 -0.135,0.15 -0.029,0.036 -0.355,0.67 -0.325,0.635 -0.592,1.439 -0.267,0.804 -0.541,2.163 -0.273,1.358 -0.353,2.134 -0.08,0.776 -0.027,2.315 0.054,1.538 0.265,2.882 0.212,1.344 0.477,2.71 0.265,1.366 0.676,2.499 0.412,1.132 0.95,2.538 0.538,1.406 0.655,2.163 0.116,0.757 0.603,1.877 l 0.198,0.05 q 0.357,-0.042 0.385,-0.057 0.221,-0.133 2.45,-0.718 2.23,-0.585 3.388,-0.734 1.159,-0.148 2.004,-0.442 0.845,-0.294 1.285,-0.623 0.441,-0.328 0.679,-0.478 0.239,-0.15 0.626,-0.354 0.388,-0.205 0.449,-0.239 0.062,-0.034 0.639,-0.423 0.577,-0.388 0.926,-0.753 0.349,-0.364 0.505,-0.589 0.155,-0.226 0.226,-0.346 0.07,-0.119 0.095,-0.172 0.025,-0.052 0.267,-0.623 0.242,-0.572 0.487,-1.873 0.245,-1.301 0.32,-2.321 0.074,-1.019 -0.002,-1.432 -0.075,-0.413 -0.222,-0.718 -0.147,-0.305 -0.288,-0.439 -0.141,-0.134 -0.167,-0.185 -0.026,-0.051 -0.977,-0.391 -0.951,-0.34 -2.978,-1.071 0.058,-0.324 0.59,-0.479 0.531,-0.154 1.766,-0.167 1.235,-0.013 2.346,0.375 0.17,0.282 0.274,0.576 0.104,0.294 0.708,3.186 0.604,2.893 0.983,4.274 0.38,1.382 0.75,2.537 0.371,1.155 0.837,2.482 0.466,1.326 0.826,2.757 0.361,1.431 0.622,2.98 0.025,-0.123 -0.04,-0.534"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_ea9943e4-922f-46da-b7ce-6609a85db650"
+           d="m 680.0627,189.9413 q -0.199,0.015 -0.317,1.383 -0.117,1.367 0.417,4.445 0.534,3.078 0.855,6.246 0.322,3.168 0.302,6.934 -0.02,3.765 0.038,6.319 0.058,2.553 0.344,6.103 0.078,0.076 0.582,-0.632"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_1ff0d426-b09b-4331-ba8b-c720a5b1274f"
+           d="m 700.1337,194.3053 q -0.122,0.086 -0.188,0.085 -0.065,-0.001 -1.189,0.735 -1.124,0.737 -1.971,1.238 -0.847,0.501 -1.604,1.064 -0.757,0.562 -1.394,1.292 -0.637,0.729 -0.812,1.15 -0.176,0.421 -0.204,0.621 -0.028,0.2 -0.014,0.287 0.014,0.087 0.036,0.216 0.021,0.128 0.038,0.199 0.017,0.07 0.06,0.171 0.043,0.101 -0.182,2.366 -0.224,2.265 -0.342,3.718 -0.118,1.454 -0.067,2.261 0.05,0.807 0.307,2.047 0.257,1.239 0.429,2.14 0.172,0.9 0.388,1.603 0.217,0.703 0.399,1.068 0.182,0.365 0.353,0.665 0.171,0.301 0.446,0.723 0.275,0.422 1.171,1.038 0.895,0.616 2.285,0.866 1.39,0.249 2.234,0.258 0.845,0.009 1.135,0 0.289,-0.009 1.04,-0.026 0.75,-0.017 4.4,0.491 l 0.219,-0.08"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_087b2a93-132c-4926-aeed-56253c97b7eb"
+           d="m 595.4027,235.3103 q -0.481,0.202 0.235,3.539 0.716,3.336 1.293,5.838 0.577,2.502 0.882,3.81 0.306,1.308 0.568,2.425 0.263,1.117 0.734,3.152 0.471,2.035 0.861,3.776 0.39,1.741 2.202,10.64 l 0.032,0.005 q 0.069,-0.047 0.124,-1.654 0.056,-1.607 -0.018,-2.062"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_9ae4ef25-bccb-4f06-b60c-caebfca46642"
+           d="m 595.4637,235.8553 -0.077,-0.1 -0.021,-0.314 q 0.048,-0.648 0.853,-1.754 0.805,-1.105 1.482,-1.766 0.677,-0.66 2.166,-1.041 1.49,-0.381 3.197,-0.232 1.707,0.15 2.526,0.352 0.819,0.203 1.303,0.749 0.483,0.547 0.763,1.114 0.28,0.567 0.101,1.941 -0.18,1.374 -0.462,2.272 -0.282,0.898 -1.195,3.079 -0.914,2.181 -1.852,3.935 -0.938,1.754 -2.379,3.006 l -0.003,-0.127 q 0.171,-0.328 0.177,-0.33 0.007,-0.002 0.907,-0.599 0.9,-0.596 2.386,-0.741 1.486,-0.146 2.848,0.077 1.362,0.223 2.704,0.438 1.341,0.214 2.745,0.798 1.405,0.583 2.42,1.4 1.015,0.818 1.463,1.482 0.449,0.664 0.483,1.689 0.033,1.025 -0.413,2.361 -0.445,1.337 -1.91,3.465 -1.465,2.129 -2.385,3.37 -0.92,1.241 -2.094,2.535 -1.173,1.295 -1.859,2 -0.685,0.705 -1.689,1.404 -1.005,0.699 -1.688,0.907 -0.684,0.209 -1.208,0.167 -0.524,-0.042 -0.954,-0.916 -0.43,-0.873 -0.577,-1.268"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_875a5a32-edf4-4288-bc6c-4277c648bf31"
+           d="m 598.7477,222.2153 q -0.207,0.312 -0.197,0.395 -0.085,0.241 0.143,1.675 0.227,1.434 0.49,2.647 0.263,1.214 0.767,2.878 0.504,1.665 1.337,4.186 0.833,2.521 1.499,4.644 0.666,2.123 1.164,3.848 0.499,1.726 0.869,3.044 0.37,1.318 0.732,2.684 0.363,1.366 0.586,2.222 0.223,0.856 0.493,1.78 0.27,0.925 0.595,2.237 0.324,1.311 0.793,3.317 0.469,2.006 0.839,3.642 0.37,1.635 0.772,3.52 0.403,1.884 0.647,3.087 0.244,1.203 0.791,3.345 0.548,2.143 0.987,3.78 0.44,1.637 0.732,2.89 0.031,-0.101 -0.124,-1.011 -0.155,-0.909 -0.316,-1.588"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_568973b0-2fe1-45d1-b6ca-4757a5959e1d"
+           d="m 622.1267,239.0363 -0.041,0.011 q -0.108,0.078 0.788,5.782 0.897,5.704 2.015,18.343 0.023,-0.024 0.097,-0.639 0.075,-0.615 0.048,-0.999"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_3d2e042f-2fc6-4293-bd63-fe2c1964cf60"
+           d="m 618.8127,229.7433 q -0.234,-0.069 -0.836,0.244 -0.035,0.026 0.156,-0.006 0.191,-0.031 0.419,-0.129"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_123f13cc-0ccd-43ed-89c7-0205b585a2b2"
+           d="m 631.6877,231.6403 q -0.021,0.032 -0.353,0.019 -0.132,0.22 0.046,5.166 0.178,4.946 0.413,7.631 0.234,2.684 0.402,3.943 0.167,1.258 0.397,2.436 0.229,1.178 0.616,2.107 0.387,0.93 0.906,1.655 0.518,0.725 1.668,1.087 1.15,0.363 2.75,0.056 1.6,-0.306 2.756,-0.575 1.156,-0.268 1.751,-0.35 l 0.192,-0.088"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_42b548be-bfc8-4742-b9cf-76109083c994"
+           d="m 631.8607,237.5603 -0.044,-0.052 q -0.064,-0.241 1.422,-0.469 1.487,-0.227 2.571,-0.217 1.085,0.011 1.527,-0.158 0.441,-0.168 0.688,-0.296"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_c399ecc9-90bf-423f-9f42-c1cdc04702f8"
+           d="m 657.5677,231.5333 -0.252,-0.081 q -0.221,-0.097 -1.17,0.172 -0.949,0.269 -1.544,0.478 -0.594,0.209 -1.787,0.594 -1.193,0.384 -2.099,0.868 -0.906,0.483 -1.349,0.988 -0.442,0.504 -0.642,1.392 -0.2,0.888 -0.269,1.382 -0.068,0.495 0.062,1.255 0.13,0.76 0.186,3.263 0.055,2.503 0.286,5.07 0.231,2.568 0.431,4.079 0.199,1.511 0.781,2.98 0.581,1.469 1.102,2.244 0.521,0.775 0.846,1.068 0.325,0.292 1.139,0.813 0.814,0.52 2.792,0.804 1.978,0.283 2.175,0.267"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_35c6d01b-6d6a-463c-bc33-db998a162dc2"
+           d="m 673.0727,237.1623 q -0.159,0.033 -0.256,0.033 -0.098,0.001 -0.285,-0.016 -0.188,-0.016 -0.204,-0.019 -0.016,-0.002 -0.468,-0.067 -0.451,-0.065 -0.771,-0.049 -0.319,0.015 -0.613,0.199 -0.294,0.183 -0.455,0.326 -0.161,0.143 -0.359,0.359 -0.198,0.216 -1.069,1.353 -0.872,1.137 -1.646,2.721 -0.774,1.584 -1.363,4.169 -0.589,2.584 -0.889,4.347 -0.299,1.762 -0.244,3.094 0.056,1.332 0.198,2.131 0.142,0.799 0.462,1.525 0.32,0.725 1.629,1.15 1.309,0.424 2.138,0.558 0.828,0.132 1.792,-0.02 0.963,-0.152 2.357,-1.028 1.394,-0.875 2.548,-1.946 1.154,-1.07 1.863,-2.221 0.708,-1.151 1.011,-2.616 0.304,-1.466 0.471,-2.297 0.167,-0.831 -0.171,-3.015 -0.338,-2.184 -0.778,-3.676 -0.44,-1.493 -1.029,-2.414 -0.589,-0.921 -1.302,-1.689 -0.712,-0.769 -1.33,-1.534 -0.617,-0.765 -0.827,-1.763"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_15986227-c67b-4c31-b4fa-5f4f16774103"
+           d="m 686.7767,238.5943 q -0.537,0.028 -0.251,4.831 0.286,4.803 0.433,7.88 0.146,3.078 0.213,4.611 0.066,1.533 -0.08,3.207 0.024,-0.151 0.03,-0.345 0.007,-0.195 0,-0.445"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_67572e74-4970-4bc0-ba49-97733590057d"
+           d="m 696.7877,230.7963 q -0.048,-0.283 -0.096,-0.344 -0.148,0.169 -0.267,2.222 -0.118,2.054 -0.096,3.234 0.021,1.18 -0.074,5.888 -0.095,4.708 -0.035,7.898 0.06,3.191 0.198,4.624 0.138,1.434 0.294,2.665 0.156,1.231 0.255,1.855 0.098,0.625 0.286,0.226"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_66d34fd8-ac5b-447a-b875-c1cdfa0610d6"
+           d="m 698.8807,235.6863 -0.088,0.045 -0.046,0.005 q 0.06,-0.05 0.862,-0.493 0.803,-0.443 1.604,-0.751 0.8,-0.309 1.633,-0.518 0.833,-0.208 1.646,-0.268 0.812,-0.061 1.292,0.03 0.479,0.091 0.854,0.272 0.375,0.182 0.643,0.399 0.268,0.217 0.501,0.452 0.233,0.235 0.374,0.408 0.141,0.174 0.183,0.23 0.042,0.057 0.191,0.333 0.149,0.276 0.181,0.367 0.031,0.09 0.1,0.272 0.068,0.182 0.51,2.252 0.442,2.071 0.674,3.487 0.231,1.416 0.857,4.944 0.625,3.527 0.974,5.42 0.35,1.892 0.51,3.046 0.16,1.154 0.188,2.192 l 0.09,0.214"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_f7dd4de3-2feb-4753-937a-c818067e64a0"
+           d="m 714.6037,226.4953 q -0.028,-0.043 0.048,-3.462 0.077,-3.419 0.115,-5.501 0.038,-2.082 0.042,-3.218 0.003,-1.136 0.03,-3.008 0.027,-1.873 0.067,-2.88 0.041,-1.008 0.185,-2.815 0.143,-1.808 0.376,-3.824 0.232,-2.016 0.462,-3.268 0.23,-1.252 0.486,-2.125 0.256,-0.874 0.507,-1.368 0.251,-0.494 0.59,-0.77 0.339,-0.276 0.696,-0.36 0.357,-0.084 0.566,-0.071 0.209,0.013 0.33,0.027 0.121,0.013 0.137,0.02 0.016,0.006 0.236,0.059 0.221,0.053 0.531,0.44 0.31,0.387 0.651,1.667 0.342,1.28 0.783,3.33 0.442,2.051 1.006,4.143 0.564,2.093 0.885,3.223 0.32,1.13 2.039,6.435 1.719,5.305 2.066,6.388 0.347,1.083 0.703,2.688 0.355,1.606 0.59,3.143 0.234,1.538 0.716,3.189 0.023,0.095 0.382,-0.152 0.359,-0.247 0.502,-0.387"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_2a02b2ca-95d7-4b11-848c-8551f7fccff0"
+           d="m 711.4517,211.0853 q -0.166,0.106 -0.334,0.22 -0.168,0.113 -0.17,0.113 -0.003,0 -0.066,0.101 -0.063,0.102 2.229,0.095 2.292,-0.006 4.637,0.142 2.344,0.148 3.433,0.237 1.089,0.089 1.789,0.095 0.701,0.005 1.967,-0.015 1.267,-0.021 2.354,-0.225 0.022,-0.032 0.058,-0.172 0.036,-0.141 0.046,-0.291"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#4dd8e6;stroke-width:9.01000023;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_ad991580-9837-4a4c-aebb-c1626e6d510b"
+           d="m 736.7317,193.4523 -0.047,-0.035 q -0.27,-0.022 -0.326,1.842 -0.056,1.865 0.05,3.332 0.106,1.467 0.203,2.285 0.097,0.819 0.241,2.255 0.144,1.435 0.249,2.396 0.105,0.96 0.157,1.621 0.051,0.662 0.334,3.758 0.284,3.096 0.597,5.088 0.314,1.991 0.472,2.985 0.158,0.993 0.348,1.667 0.189,0.674 0.601,1.554 0.412,0.88 0.572,1.443 0.161,0.563 0.324,1.285 0.267,0.142 0.931,0.031 0.664,-0.112 1.833,-0.468 1.17,-0.356 2.334,-0.592 1.165,-0.236 1.752,-0.361 0.586,-0.126 0.739,-0.176"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_fec0b5d7-c5b4-4fde-ac0b-22535f0f5206"
+           d="m 581.5547,222.0713 -0.066,-0.014 q -0.002,0.003 0.774,-3 0.775,-3.004 1.255,-4.875 0.48,-1.872 1.736,-4.934 1.257,-3.061 2.029,-4.674 0.772,-1.613 1.663,-3.014 0.891,-1.401 1.522,-2.777 0.261,0.085 1.357,2.325 1.095,2.239 2.538,5.049 1.442,2.809 2.153,4.107 0.711,1.299 0.997,1.895 0.287,0.596 0.769,0.762 0.104,0.071 0.783,-1.475 0.678,-1.546 1.219,-4.378 0.54,-2.833 1.034,-5.069 0.495,-2.237 2.313,-5.01 0.12,0.026 1.024,2.896 0.904,2.871 1.678,5.186 0.774,2.315 1.601,4.333 0.827,2.018 1.409,3.697 0.583,1.678 1.123,3.34 0.539,1.662 0.846,2.409 0.307,0.746 0.884,1.592 0.577,0.845 1.268,1.617 l 0.181,0.059"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_f8266152-af72-4c20-b22b-07ce2fd1380c"
+           d="m 623.0177,223.1873 0.008,0.117 0.022,10e-4 q 0.084,-0.347 0.21,-0.968 0.126,-0.622 0.253,-1.779 0.128,-1.157 0.169,-2.254 0.041,-1.097 0.267,-6.257 0.226,-5.16 0.608,-8.95 0.382,-3.789 0.701,-5.637 0.32,-1.848 0.503,-2.824 0.183,-0.977 0.591,-3.276 0.409,-2.299 0.674,-3.721 0.264,-1.422 0.767,-2.548 0.502,-1.125 1.941,-4.799 0.175,-0.042 1.148,3.451 0.972,3.493 1.57,5.628 0.597,2.136 0.863,3.349 0.266,1.213 0.513,2.377 0.248,1.164 0.528,2.362 0.281,1.198 0.491,2.048 0.21,0.849 0.413,1.688 0.202,0.838 1.139,4.299 0.937,3.461 1.588,5.839 0.651,2.378 1.047,3.7 0.396,1.323 0.755,2.534 0.358,1.212 0.581,2.118 0.224,0.907 0.444,1.993 l 0.248,-0.184"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_a4c2b498-ccac-4557-a79b-707153e48c5f"
+           d="m 620.7327,209.4113 q 0.078,0.032 1.898,0.056 1.82,0.024 4.679,0.354 2.859,0.33 5.13,0.471 2.271,0.142 4.275,-0.006 2.004,-0.147 3.199,-0.699 1.196,-0.553 1.386,-0.662"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_ed0b7ac6-022b-4bb0-981b-9494d2c8e404"
+           d="m 661.4307,188.4453 q -0.308,0.242 -0.359,0.24 -0.737,0.198 -2.571,0.721 -1.835,0.522 -3.256,0.949 -1.421,0.427 -2.115,0.603 -0.694,0.176 -1.141,0.31 -0.448,0.135 -0.767,0.222 -0.32,0.087 -0.652,0.222 -0.333,0.135 -0.525,0.228 -0.192,0.092 -0.495,0.316 -0.303,0.223 -0.409,0.337 -0.105,0.114 -0.135,0.15 -0.029,0.036 -0.355,0.67 -0.325,0.635 -0.592,1.439 -0.267,0.804 -0.541,2.163 -0.273,1.358 -0.353,2.134 -0.08,0.776 -0.027,2.315 0.054,1.538 0.265,2.882 0.212,1.344 0.477,2.71 0.265,1.366 0.676,2.499 0.412,1.132 0.95,2.538 0.538,1.406 0.655,2.163 0.116,0.757 0.603,1.877 l 0.198,0.05 q 0.357,-0.042 0.385,-0.057 0.221,-0.133 2.45,-0.718 2.23,-0.585 3.388,-0.734 1.159,-0.148 2.004,-0.442 0.845,-0.294 1.285,-0.623 0.441,-0.328 0.679,-0.478 0.239,-0.15 0.626,-0.354 0.388,-0.205 0.449,-0.239 0.062,-0.034 0.639,-0.423 0.577,-0.388 0.926,-0.753 0.349,-0.364 0.505,-0.589 0.155,-0.226 0.226,-0.346 0.07,-0.119 0.095,-0.172 0.025,-0.052 0.267,-0.623 0.242,-0.572 0.487,-1.873 0.245,-1.301 0.32,-2.321 0.074,-1.019 -0.002,-1.432 -0.075,-0.413 -0.222,-0.718 -0.147,-0.305 -0.288,-0.439 -0.141,-0.134 -0.167,-0.185 -0.026,-0.051 -0.977,-0.391 -0.951,-0.34 -2.978,-1.071 0.058,-0.324 0.59,-0.479 0.531,-0.154 1.766,-0.167 1.235,-0.013 2.346,0.375 0.17,0.282 0.274,0.576 0.104,0.294 0.708,3.186 0.604,2.893 0.983,4.274 0.38,1.382 0.75,2.537 0.371,1.155 0.837,2.482 0.466,1.326 0.826,2.757 0.361,1.431 0.622,2.98 0.025,-0.123 -0.04,-0.534"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_4b2cf53d-418f-43e5-b9e2-0a2c926cd6a1"
+           d="m 680.0627,189.9413 q -0.199,0.015 -0.317,1.383 -0.117,1.367 0.417,4.445 0.534,3.078 0.855,6.246 0.322,3.168 0.302,6.934 -0.02,3.765 0.038,6.319 0.058,2.553 0.344,6.103 0.078,0.076 0.582,-0.632"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_2139f4b5-a596-4375-9464-88e75bfadfb0"
+           d="m 700.1337,194.3053 q -0.122,0.086 -0.188,0.085 -0.065,-0.001 -1.189,0.735 -1.124,0.737 -1.971,1.238 -0.847,0.501 -1.604,1.064 -0.757,0.562 -1.394,1.292 -0.637,0.729 -0.812,1.15 -0.176,0.421 -0.204,0.621 -0.028,0.2 -0.014,0.287 0.014,0.087 0.036,0.216 0.021,0.128 0.038,0.199 0.017,0.07 0.06,0.171 0.043,0.101 -0.182,2.366 -0.224,2.265 -0.342,3.718 -0.118,1.454 -0.067,2.261 0.05,0.807 0.307,2.047 0.257,1.239 0.429,2.14 0.172,0.9 0.388,1.603 0.217,0.703 0.399,1.068 0.182,0.365 0.353,0.665 0.171,0.301 0.446,0.723 0.275,0.422 1.171,1.038 0.895,0.616 2.285,0.866 1.39,0.249 2.234,0.258 0.845,0.009 1.135,0 0.289,-0.009 1.04,-0.026 0.75,-0.017 4.4,0.491 l 0.219,-0.08"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_b295e164-71b6-47a9-a565-32881d48851b"
+           d="m 595.4027,235.3103 q -0.481,0.202 0.235,3.539 0.716,3.336 1.293,5.838 0.577,2.502 0.882,3.81 0.306,1.308 0.568,2.425 0.263,1.117 0.734,3.152 0.471,2.035 0.861,3.776 0.39,1.741 2.202,10.64 l 0.032,0.005 q 0.069,-0.047 0.124,-1.654 0.056,-1.607 -0.018,-2.062"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_4e840c2f-af77-48ff-ac6f-fae48727b517"
+           d="m 595.4637,235.8553 -0.077,-0.1 -0.021,-0.314 q 0.048,-0.648 0.853,-1.754 0.805,-1.105 1.482,-1.766 0.677,-0.66 2.166,-1.041 1.49,-0.381 3.197,-0.232 1.707,0.15 2.526,0.352 0.819,0.203 1.303,0.749 0.483,0.547 0.763,1.114 0.28,0.567 0.101,1.941 -0.18,1.374 -0.462,2.272 -0.282,0.898 -1.195,3.079 -0.914,2.181 -1.852,3.935 -0.938,1.754 -2.379,3.006 l -0.003,-0.127 q 0.171,-0.328 0.177,-0.33 0.007,-0.002 0.907,-0.599 0.9,-0.596 2.386,-0.741 1.486,-0.146 2.848,0.077 1.362,0.223 2.704,0.438 1.341,0.214 2.745,0.798 1.405,0.583 2.42,1.4 1.015,0.818 1.463,1.482 0.449,0.664 0.483,1.689 0.033,1.025 -0.413,2.361 -0.445,1.337 -1.91,3.465 -1.465,2.129 -2.385,3.37 -0.92,1.241 -2.094,2.535 -1.173,1.295 -1.859,2 -0.685,0.705 -1.689,1.404 -1.005,0.699 -1.688,0.907 -0.684,0.209 -1.208,0.167 -0.524,-0.042 -0.954,-0.916 -0.43,-0.873 -0.577,-1.268"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_a4eabf5e-d4b9-4006-a6fd-68593a803f55"
+           d="m 598.7477,222.2153 q -0.207,0.312 -0.197,0.395 -0.085,0.241 0.143,1.675 0.227,1.434 0.49,2.647 0.263,1.214 0.767,2.878 0.504,1.665 1.337,4.186 0.833,2.521 1.499,4.644 0.666,2.123 1.164,3.848 0.499,1.726 0.869,3.044 0.37,1.318 0.732,2.684 0.363,1.366 0.586,2.222 0.223,0.856 0.493,1.78 0.27,0.925 0.595,2.237 0.324,1.311 0.793,3.317 0.469,2.006 0.839,3.642 0.37,1.635 0.772,3.52 0.403,1.884 0.647,3.087 0.244,1.203 0.791,3.345 0.548,2.143 0.987,3.78 0.44,1.637 0.732,2.89 0.031,-0.101 -0.124,-1.011 -0.155,-0.909 -0.316,-1.588"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_70e81a94-4c35-465c-b508-09fda0b1212a"
+           d="m 622.1267,239.0363 -0.041,0.011 q -0.108,0.078 0.788,5.782 0.897,5.704 2.015,18.343 0.023,-0.024 0.097,-0.639 0.075,-0.615 0.048,-0.999"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_adcf803f-5821-4409-8b58-30f1ad601bc3"
+           d="m 618.8127,229.7433 q -0.234,-0.069 -0.836,0.244 -0.035,0.026 0.156,-0.006 0.191,-0.031 0.419,-0.129"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_f82a091b-2cc7-4361-aa53-187d90554408"
+           d="m 631.6877,231.6403 q -0.021,0.032 -0.353,0.019 -0.132,0.22 0.046,5.166 0.178,4.946 0.413,7.631 0.234,2.684 0.402,3.943 0.167,1.258 0.397,2.436 0.229,1.178 0.616,2.107 0.387,0.93 0.906,1.655 0.518,0.725 1.668,1.087 1.15,0.363 2.75,0.056 1.6,-0.306 2.756,-0.575 1.156,-0.268 1.751,-0.35 l 0.192,-0.088"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_37725d65-0d61-4d1d-8511-f5aa99500a70"
+           d="m 631.8607,237.5603 -0.044,-0.052 q -0.064,-0.241 1.422,-0.469 1.487,-0.227 2.571,-0.217 1.085,0.011 1.527,-0.158 0.441,-0.168 0.688,-0.296"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_a07f1e70-59c5-4952-a37a-10f9522b6561"
+           d="m 657.5677,231.5333 -0.252,-0.081 q -0.221,-0.097 -1.17,0.172 -0.949,0.269 -1.544,0.478 -0.594,0.209 -1.787,0.594 -1.193,0.384 -2.099,0.868 -0.906,0.483 -1.349,0.988 -0.442,0.504 -0.642,1.392 -0.2,0.888 -0.269,1.382 -0.068,0.495 0.062,1.255 0.13,0.76 0.186,3.263 0.055,2.503 0.286,5.07 0.231,2.568 0.431,4.079 0.199,1.511 0.781,2.98 0.581,1.469 1.102,2.244 0.521,0.775 0.846,1.068 0.325,0.292 1.139,0.813 0.814,0.52 2.792,0.804 1.978,0.283 2.175,0.267"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_e8c9b28e-8ac8-4d35-a2db-5b1db5752fb1"
+           d="m 673.0727,237.1623 q -0.159,0.033 -0.256,0.033 -0.098,0.001 -0.285,-0.016 -0.188,-0.016 -0.204,-0.019 -0.016,-0.002 -0.468,-0.067 -0.451,-0.065 -0.771,-0.049 -0.319,0.015 -0.613,0.199 -0.294,0.183 -0.455,0.326 -0.161,0.143 -0.359,0.359 -0.198,0.216 -1.069,1.353 -0.872,1.137 -1.646,2.721 -0.774,1.584 -1.363,4.169 -0.589,2.584 -0.889,4.347 -0.299,1.762 -0.244,3.094 0.056,1.332 0.198,2.131 0.142,0.799 0.462,1.525 0.32,0.725 1.629,1.15 1.309,0.424 2.138,0.558 0.828,0.132 1.792,-0.02 0.963,-0.152 2.357,-1.028 1.394,-0.875 2.548,-1.946 1.154,-1.07 1.863,-2.221 0.708,-1.151 1.011,-2.616 0.304,-1.466 0.471,-2.297 0.167,-0.831 -0.171,-3.015 -0.338,-2.184 -0.778,-3.676 -0.44,-1.493 -1.029,-2.414 -0.589,-0.921 -1.302,-1.689 -0.712,-0.769 -1.33,-1.534 -0.617,-0.765 -0.827,-1.763"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_35f2b2ce-7dc6-4e6f-ba0e-09c89c00f336"
+           d="m 686.7767,238.5943 q -0.537,0.028 -0.251,4.831 0.286,4.803 0.433,7.88 0.146,3.078 0.213,4.611 0.066,1.533 -0.08,3.207 0.024,-0.151 0.03,-0.345 0.007,-0.195 0,-0.445"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_cab3b4b9-5036-49f0-a371-67524ac77ada"
+           d="m 696.7877,230.7963 q -0.048,-0.283 -0.096,-0.344 -0.148,0.169 -0.267,2.222 -0.118,2.054 -0.096,3.234 0.021,1.18 -0.074,5.888 -0.095,4.708 -0.035,7.898 0.06,3.191 0.198,4.624 0.138,1.434 0.294,2.665 0.156,1.231 0.255,1.855 0.098,0.625 0.286,0.226"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_fa59bbe0-f650-4ac3-b353-6b450ade9379"
+           d="m 698.8807,235.6863 -0.088,0.045 -0.046,0.005 q 0.06,-0.05 0.862,-0.493 0.803,-0.443 1.604,-0.751 0.8,-0.309 1.633,-0.518 0.833,-0.208 1.646,-0.268 0.812,-0.061 1.292,0.03 0.479,0.091 0.854,0.272 0.375,0.182 0.643,0.399 0.268,0.217 0.501,0.452 0.233,0.235 0.374,0.408 0.141,0.174 0.183,0.23 0.042,0.057 0.191,0.333 0.149,0.276 0.181,0.367 0.031,0.09 0.1,0.272 0.068,0.182 0.51,2.252 0.442,2.071 0.674,3.487 0.231,1.416 0.857,4.944 0.625,3.527 0.974,5.42 0.35,1.892 0.51,3.046 0.16,1.154 0.188,2.192 l 0.09,0.214"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_7811d5ee-cd8f-4bee-ae2b-c59e78bcaf56"
+           d="m 714.6037,226.4953 q -0.028,-0.043 0.048,-3.462 0.077,-3.419 0.115,-5.501 0.038,-2.082 0.042,-3.218 0.003,-1.136 0.03,-3.008 0.027,-1.873 0.067,-2.88 0.041,-1.008 0.185,-2.815 0.143,-1.808 0.376,-3.824 0.232,-2.016 0.462,-3.268 0.23,-1.252 0.486,-2.125 0.256,-0.874 0.507,-1.368 0.251,-0.494 0.59,-0.77 0.339,-0.276 0.696,-0.36 0.357,-0.084 0.566,-0.071 0.209,0.013 0.33,0.027 0.121,0.013 0.137,0.02 0.016,0.006 0.236,0.059 0.221,0.053 0.531,0.44 0.31,0.387 0.651,1.667 0.342,1.28 0.783,3.33 0.442,2.051 1.006,4.143 0.564,2.093 0.885,3.223 0.32,1.13 2.039,6.435 1.719,5.305 2.066,6.388 0.347,1.083 0.703,2.688 0.355,1.606 0.59,3.143 0.234,1.538 0.716,3.189 0.023,0.095 0.382,-0.152 0.359,-0.247 0.502,-0.387"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_56409a85-5999-41ba-b3c1-2f514a227064"
+           d="m 711.4517,211.0853 q -0.166,0.106 -0.334,0.22 -0.168,0.113 -0.17,0.113 -0.003,0 -0.066,0.101 -0.063,0.102 2.229,0.095 2.292,-0.006 4.637,0.142 2.344,0.148 3.433,0.237 1.089,0.089 1.789,0.095 0.701,0.005 1.967,-0.015 1.267,-0.021 2.354,-0.225 0.022,-0.032 0.058,-0.172 0.036,-0.141 0.046,-0.291"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           id="STROKE_0c0cad53-b92c-4181-ad14-b6cfb71cd042"
+           d="m 736.7317,193.4523 -0.047,-0.035 q -0.27,-0.022 -0.326,1.842 -0.056,1.865 0.05,3.332 0.106,1.467 0.203,2.285 0.097,0.819 0.241,2.255 0.144,1.435 0.249,2.396 0.105,0.96 0.157,1.621 0.051,0.662 0.334,3.758 0.284,3.096 0.597,5.088 0.314,1.991 0.472,2.985 0.158,0.993 0.348,1.667 0.189,0.674 0.601,1.554 0.412,0.88 0.572,1.443 0.161,0.563 0.324,1.285 0.267,0.142 0.931,0.031 0.664,-0.112 1.833,-0.468 1.17,-0.356 2.334,-0.592 1.165,-0.236 1.752,-0.361 0.586,-0.126 0.739,-0.176"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/static/images/wizard.svg b/static/images/wizard.svg
new file mode 100644 (file)
index 0000000..5fc405b
--- /dev/null
@@ -0,0 +1,327 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   width="146.4061mm"
+   height="113.87497mm"
+   viewBox="0 0 146.4061 113.87497"
+   version="1.1"
+   id="svg8">
+  <defs
+     id="defs2" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-29.579131,-49.556658)"
+     id="layer1">
+    <g
+       id="g4568"
+       transform="matrix(0.35277776,0,0,0.35277776,-68.579107,49.025157)"
+       style="display:inline">
+      <g
+         id="New_Layer_1"
+         style="opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 289.024,471.886 q -0.077,0.279 -0.408,-0.487 -0.331,-0.767 -0.633,-1.709 -0.301,-0.943 -0.508,-1.653 -0.206,-0.71 -1.092,-2.877 -0.885,-2.166 -3.193,-12.951 0.713,-0.501 2.895,3.442 2.182,3.942 4.005,7.206 1.823,3.263 3.648,5.663 0.823,0.278 -1.792,-5.826 -2.614,-6.105 -4.01,-9.839 -1.396,-3.734 -1.94,-5.403 -0.544,-1.67 -0.784,-2.627 -0.239,-0.957 -0.35,-1.531 -0.111,-0.574 -0.028,-1.714 0.301,-0.911 2.411,1.966 2.11,2.876 4.197,6.26 2.088,3.383 3.571,5.665 1.482,2.281 3.34,3.88 0.819,-0.289 -2.186,-7.035 -3.005,-6.745 -5.25,-11.313 -2.245,-4.568 -3.235,-9.534 0.287,-0.775 2.54,3.149 2.252,3.923 4.65,8.822 2.398,4.898 5.087,8.988 0.58,-0.765 -2.027,-6.968 -2.608,-6.202 -4.278,-10.512 -1.669,-4.31 -2.505,-6.258 -0.836,-1.949 -1.937,-5.196 -1.102,-3.247 -1.029,-7.43 -0.178,0.059 0.671,-0.05 0.848,-0.109 5.477,8.289 4.629,8.398 7.481,13.949 2.851,5.55 5.649,9.528 -0.032,0.338 0.082,-0.386 0.114,-0.724 -0.234,-2.281 -0.348,-1.558 -1.863,-5.47 -1.516,-3.912 -3.836,-10.483 -2.321,-6.572 -4.026,-11.207 -1.706,-4.635 -2.462,-12.198 1.113,-1.317 5.332,7.436 4.219,8.753 6.511,14.17 2.292,5.416 3.999,9.518 1.706,4.101 4.282,8.131 0.747,-0.288 -1.655,-7.081 -2.402,-6.793 -3.96,-11.708 -1.559,-4.916 -2.43,-7.745 -0.87,-2.829 -1.372,-4.162 -0.501,-1.334 -2.237,-7.078 -1.737,-5.744 -2.853,-9.625 -1.116,-3.881 -1.843,-9.631 0.711,-0.51 2.285,2.736 1.574,3.246 2.832,6.167 1.259,2.921 2.314,5.538 1.055,2.617 2.465,6.458 1.41,3.841 3.17,8.093 1.761,4.252 3.7,8.741 1.938,4.489 3.403,7.674 1.464,3.184 2.366,4.886 0.902,1.701 2.077,2.606 0.497,-0.699 0.322,-3.196 -0.175,-2.498 -3.202,-11.901 -3.026,-9.404 -5.146,-16.44 -2.121,-7.037 -3.033,-10.26 -0.913,-3.223 -1.962,-7.33 -1.05,-4.108 -1.302,-10.032 0,-0.299 0.792,0.632 0.791,0.932 2.995,6.206 2.205,5.274 3.244,8.25 1.038,2.977 3.736,11.1 2.697,8.122 4.785,13.844 2.089,5.722 3.5,9.263 1.41,3.54 3.036,6.172 0.786,-0.505 -1.102,-6.283 -1.888,-5.777 -3.639,-11.081 -1.752,-5.304 -2.852,-9.055 -1.099,-3.751 -1.758,-5.97 -0.658,-2.219 -2.196,-7.594 -1.539,-5.375 -2.656,-9.509 -1.118,-4.134 -2.191,-8.822 -1.074,-4.687 -1.48,-10.393 0.414,-0.544 2.02,3.167 1.606,3.712 3.756,9.819 2.15,6.107 4.03,11.784 1.88,5.677 3.224,9.3 1.344,3.622 2.162,5.873 0.817,2.25 2.457,6.824 1.641,4.573 3.915,8.739 1.073,-0.265 -0.721,-7.995 -1.793,-7.73 -3.045,-12.646 -1.251,-4.915 -1.81,-7.261 -0.558,-2.346 -1.618,-7.512 -1.06,-5.166 -1.938,-9.421 -0.878,-4.256 -1.664,-9.26 -0.786,-5.005 -0.721,-9.474 1.024,-0.41 3.475,6.338 2.45,6.747 4.392,13.084 1.943,6.337 2.999,10.131 1.056,3.795 3.154,9.443 h 0.081 q 0.448,-0.404 -1.595,-9.328 -2.043,-8.923 -2.91,-13.933 -0.867,-5.009 -1.59,-8.228 -0.722,-3.218 -1.383,-16.333 1.096,-0.394 2.796,3.43 1.699,3.824 4.323,9.828 0.019,-0.241 -0.09,-1.033 -0.109,-0.792 -0.326,-1.292"
+           id="STROKE_d8cd2dd3-1122-4ed9-9eae-dc50b021c31e"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.796;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 555.06,272.656 q -0.428,-0.447 -2.13,-8.124 -0.081,-0.018 -0.161,-0.018 -0.198,-0.159 -0.26,22.462 -0.339,-0.039 -0.896,-3.474 -0.558,-3.435 -1.035,-6.149 -0.477,-2.714 -1.578,-4.655 -0.23,-0.414 -0.425,0.973 -0.194,1.387 -0.238,8.587 -0.044,7.199 -0.027,12.041 0.017,4.842 0.307,18.838 -0.061,-0.301 -1.257,-8.384 -1.195,-8.083 -3.457,-16.126 h -0.057 q -0.079,0.203 -0.134,5.877 -0.055,5.675 0.869,12.492 0.924,6.816 1.551,11.597 0.628,4.78 0.784,7.315 0.156,2.536 0.057,4.199 -0.271,-0.02 -1.12,-4.73 -0.848,-4.71 -2.258,-12.283 -1.409,-7.572 -2.857,-15.199 -0.436,0.261 0.96,9.146 1.397,8.886 2.522,16.495 0.563,3.804 0.972,6.772 0.409,2.968 0.665,5.099 0.255,2.131 0.421,3.681 0.166,1.55 0.281,3.003 0.115,1.454 0.191,2.707 0.076,1.253 0.007,4.569 -0.224,0.1 -0.779,-1.659 -0.556,-1.759 -1.501,-5.719 -0.945,-3.96 -2.111,-8.859 -1.166,-4.9 -2.515,-10.518 -1.349,-5.619 -2.722,-10.304 -1.374,-4.685 -2.532,-7.051 -0.126,0.277 0.054,2.204 0.179,1.927 0.701,5.714 0.521,3.787 0.95,6.809 0.429,3.023 0.908,6.256 0.479,3.233 0.75,5.621 0.27,2.388 0.533,4.78 0.262,2.392 0.602,5.552 0.339,3.16 0.681,5.822 0.342,2.661 0.592,4.512 0.251,1.85 0.514,3.745 0.263,1.895 0.535,4.047 0.272,2.152 0.515,4.432 0.243,2.28 0.5,4.839 0.258,2.558 0.669,5.889 0.027,-0.137 -0.151,-1.361 -0.177,-1.223 -0.499,-3.32 -0.321,-2.096 -0.604,-4.014 -0.283,-1.917 -0.509,-3.393 -0.226,-1.475 -0.524,-3.269 -0.298,-1.794 -0.666,-3.746 -0.368,-1.952 -0.794,-4.016 -0.426,-2.064 -0.894,-4.186 -0.468,-2.122 -0.969,-4.267 -0.5,-2.146 -0.958,-4.27 -0.457,-2.125 -0.871,-4.222 -0.413,-2.098 -0.781,-4.167 -0.368,-2.069 -0.691,-4.11 -0.329,0.505 1.492,11.508 0.455,2.751 0.866,5.281 0.41,2.53 0.777,4.839 0.366,2.309 0.688,4.397 0.321,2.087 0.734,4.88 0.413,2.793 0.904,5.899 0.492,3.106 0.848,5.426 0.356,2.32 0.41,3.788 0.054,1.468 -0.543,1.897 -0.597,0.428 -1.727,-0.726 -1.129,-1.155 -4.948,-5.279 -0.119,-0.199 -2.035,-5.438 -1.916,-5.238 -2.919,-8.479 -1.002,-3.241 -0.438,-3.386 0.564,-0.144 2.034,1.836 1.469,1.98 2.714,3.598 1.245,1.618 1.923,2.117 0.677,0.5 0.947,-0.199 0.27,-0.699 0.009,-2.865 -0.26,-2.165 -0.72,-4.639 -0.46,-2.473 -0.842,-4.374 -0.382,-1.9 -0.631,-3.109 -0.25,-1.209 -0.571,-2.894 -0.321,-1.685 -0.712,-3.845 -0.392,-2.16 -0.884,-5.059 -0.492,-2.898 -1.084,-6.534 -0.045,0.444 -0.04,3.126 0.005,2.682 1.093,11.505 1.089,8.822 1.587,13.488 0.498,4.666 1.781,13.863 1.282,9.197 2.101,14.223 0.82,5.025 1.314,7.832 0.495,2.807 2.038,11.078 1.543,8.271 2.668,16.854 0.264,-0.261 -1.484,-7.011 -1.747,-6.75 -2.913,-10.864 -1.166,-4.115 -3.362,-12.323 -2.197,-8.208 -3.237,-12.49 -1.039,-4.281 -1.605,-6.686 -0.565,-2.404 -1.108,-4.836 -0.542,-2.432 -1.442,-6.458 -0.899,-4.025 -1.989,-8.695 -1.091,-4.67 -1.91,-8.32 -0.819,-3.651 -2.255,-10.86 h -0.061 q -0.191,1.193 -0.041,6.364 0.149,5.171 0.515,7.918 0.366,2.746 0.579,4.13 0.214,1.384 1.067,9.032 0.853,7.648 2.213,17.658 1.359,10.011 2.287,15.829 0.927,5.817 1.532,9.29 0.604,3.473 1.095,6.338 0.491,2.865 1.497,8.043 1.006,5.177 3.196,19.491 0.12,0.091 -2.112,-6.471 -2.231,-6.563 -4.022,-12.877 -1.792,-6.314 -2.652,-9.553 -0.861,-3.238 -1.438,-5.527 -0.577,-2.288 -1.076,-4.354 -0.499,-2.066 -1.306,-5.682 -0.806,-3.617 -2.387,-11.104 -1.581,-7.488 -3.827,-18.173 -0.482,0.322 1.08,9.176 1.562,8.853 2.61,14.076 1.048,5.222 1.566,7.789 0.517,2.567 0.778,3.905 0.262,1.338 1.766,8.284 1.503,6.946 2.356,10.7 0.852,3.754 1.42,6.195 0.568,2.441 1.128,4.728 0.56,2.287 1.444,5.894 0.884,3.608 1.747,6.907 0.863,3.3 1.548,5.417 0.684,2.118 4.929,19.672 0.301,-0.218 -0.502,-3.747 -0.802,-3.529 -3.404,-11.496 -2.602,-7.967 -4.323,-13.65 -1.72,-5.682 -3.75,-13.307 -2.03,-7.625 -3.079,-11.618 -1.049,-3.992 -2.153,-8.398 -1.104,-4.406 -1.771,-7.179 -0.667,-2.772 -1.242,-5.318 -0.574,-2.545 -1.543,-8.254 -0.245,0.715 0.987,6.233 1.231,5.518 2.529,10.866 1.297,5.349 2.029,8.556 0.733,3.207 1.178,5.138 0.445,1.931 1.11,4.784 0.664,2.853 2.205,9.935 1.54,7.081 3.188,13.929 1.648,6.847 2.546,10.219 0.899,3.372 1.513,5.292 0.615,1.921 3.575,13.234 0.242,-0.536 -1.492,-5.808 -1.734,-5.271 -2.799,-8.214 -1.066,-2.942 -2.541,-7.293 -1.475,-4.35 -4.102,-12.776 -2.626,-8.426 -4.018,-12.744 -1.393,-4.317 -3.029,-10.087 -1.636,-5.77 -2.641,-11.511 -1.005,-5.742 -1.4,-10.822 0.207,0.344 0.83,3.063 0.623,2.718 1.56,6.386 0.936,3.668 1.75,6.913 0.813,3.244 1.996,8.088 1.182,4.845 2.676,10.713 1.493,5.869 2.296,9.005 0.803,3.135 1.253,5.025 0.45,1.89 2.907,10.529 2.457,8.639 3.761,13.169 1.305,4.531 1.99,7.31 0.686,2.779 1.126,6.472 0.617,0.041 -3.529,-9.63 -4.147,-9.672 -6.879,-16.342 -2.733,-6.669 -4.74,-12.079 -2.008,-5.409 -3.002,-8.097 -0.994,-2.687 -3.694,-10.633 -2.699,-7.945 -5.417,-19.483 -0.521,-0.144 2.269,10.128 2.79,10.272 4.957,18.329 2.167,8.058 3.419,12.216 1.252,4.158 4.01,12.571 2.758,8.413 4.144,12.693 1.386,4.281 2.07,6.61 0.683,2.328 1.253,5.425 0.155,-1 -1.769,-5.926 -1.923,-4.927 -3.916,-9.442 -1.992,-4.515 -2.989,-6.713 -0.997,-2.197 -2.487,-5.75 -1.489,-3.553 -2.459,-5.865 -0.97,-2.312 -3.132,-8 -2.161,-5.689 -3.574,-9.291 -1.413,-3.602 -4.232,-10.814 -2.819,-7.211 -6.289,-17.775 -0.517,0.183 3.062,11.758 3.579,11.575 5.57,17.901 1.99,6.327 3.158,10.034 1.167,3.707 2.643,8.291 1.476,4.584 3.314,9.869 1.837,5.285 2.987,8.399 1.149,3.115 3.331,8.622 2.181,5.508 3.494,11.621 -0.08,-0.229 -4.558,-8.818 -4.479,-8.589 -6.936,-13.2 -2.457,-4.611 -3.612,-7.069 -1.154,-2.458 -2.027,-4.177 -0.873,-1.718 -3.24,-6.856 -2.366,-5.138 -3.826,-8.586 -1.459,-3.449 -3.749,-9.137 -2.29,-5.688 -10.48,-23.236 h -0.123 q -0.793,0.505 1.395,7.471 2.188,6.966 4.18,12.636 1.992,5.669 2.851,8.346 0.859,2.676 3.333,10.087 2.475,7.411 3.718,11.166 1.243,3.755 2.101,6.2 0.859,2.445 2.56,7.382 1.7,4.937 2.569,10.571 -0.174,-0.178 -4.478,-9.621 -4.304,-9.444 -6.61,-14.539 -2.306,-5.095 -3.437,-7.522 -1.131,-2.427 -2.779,-6.097 -1.647,-3.669 -3.01,-6.851 -1.363,-3.181 -2.065,-4.884 -0.702,-1.703 -2.113,-5.264 -1.411,-3.56 -4.419,-10.595 -3.007,-7.035 -6.036,-14.586 -0.188,0.975 1.134,5.033 1.322,4.059 2.3,6.878 0.978,2.82 2.43,6.967 1.451,4.147 2.776,8.198 1.325,4.051 3.22,10.039 1.894,5.987 4.196,12.386 2.302,6.399 3.617,9.873 1.314,3.473 1.995,5.378 0.681,1.905 1.501,4.107 0.821,2.202 5.495,15.472 0.267,0 -2.194,-5.009 -2.46,-5.01 -4.451,-8.975 -1.991,-3.966 -3.146,-5.884 -1.154,-1.918 -7.306,-15.685 -6.152,-13.768 -9.854,-22.634 -3.702,-8.866 -5.495,-13.17 -1.793,-4.304 -2.811,-6.607 -1.017,-2.303 -1.876,-4.363 -0.858,-2.059 -2.721,-6.238 -0.742,-0.147 2.272,8.286 3.014,8.433 5.875,17.044 1.43,4.305 2.514,7.52 1.084,3.214 1.822,5.337 0.738,2.124 1.294,3.699 0.555,1.575 1.114,3.115 0.558,1.54 0.892,2.385 0.333,0.844 1.056,2.738 0.722,1.893 1.663,4.368 0.94,2.474 1.835,4.989 0.895,2.516 1.849,5.247 0.953,2.731 1.744,4.977 0.79,2.246 1.712,4.865 0.923,2.618 1.895,5.411 0.972,2.793 1.894,5.526 0.116,-0.07 -0.416,-1.367 -0.532,-1.297 -2.122,-4.801 -1.59,-3.503 -3.186,-7.007 -1.597,-3.503 -2.924,-6.351 -1.327,-2.847 -2.262,-4.826 -0.934,-1.978 -1.548,-3.26 -0.614,-1.281 -1.613,-3.496 -0.999,-2.215 -2.345,-5.274 -1.347,-3.059 -2.506,-5.75 -1.158,-2.69 -2.15,-5.061 -0.992,-2.371 -1.732,-4.13 -0.74,-1.758 -1.229,-2.905 -0.976,-2.294 -2.427,-5.652 -1.451,-3.357 -2.71,-6.305 -1.26,-2.947 -6.379,-16.211 -0.525,0.48 2.793,10.151 3.318,9.672 5.15,15.147 1.831,5.476 2.802,8.301 0.97,2.825 1.771,5.261 0.802,2.436 1.468,4.424 0.667,1.987 1.471,4.358 0.804,2.371 1.654,4.902 0.849,2.531 1.523,4.575 0.673,2.044 1.474,4.533 0.801,2.489 1.603,5.183 0.802,2.694 1.569,5.438 0.768,2.743 1.438,5.263 0.67,2.52 1.221,4.72 0.12,0.077 -0.831,-1.727 -0.952,-1.804 -2.004,-3.935 -1.053,-2.131 -2.514,-5.153 -1.462,-3.022 -2.893,-5.992 -1.432,-2.971 -2.796,-5.733 -1.364,-2.763 -2.681,-5.401 -1.317,-2.638 -2.617,-5.286 -1.301,-2.648 -2.423,-4.936 -1.122,-2.288 -2.072,-4.239 -0.949,-1.951 -1.727,-3.567 -0.777,-1.617 -1.383,-2.899 -2.422,-5.13 -3.526,-7.346 -1.105,-2.216 -2.6,-5.039 -1.496,-2.823 -6.182,-11.856 0.055,0.638 -0.006,1.333 -0.062,0.695 1.986,6.56 2.047,5.864 4.16,11.77 2.112,5.906 3.15,8.929 1.038,3.024 2.659,7.617 1.621,4.594 3.078,8.499 1.458,3.906 2.713,7.17 1.256,3.263 2.909,7.376 1.654,4.114 3.325,10.435 0.364,-0.286 -2.929,-5.869 -3.293,-5.582 -5.842,-10.337 -2.548,-4.755 -5.02,-9.597 -2.472,-4.842 -4.056,-7.985 -1.585,-3.143 -3.965,-7.857 -2.379,-4.715 -3.871,-7.626 -1.491,-2.912 -2.185,-4.323 -0.694,-1.412 -1.395,-2.666 -0.701,-1.255 -2.135,-3.901 -1.434,-2.646 -6.214,-12.015 -0.66,0.514 1.814,7.574 2.473,7.061 4.042,11.126 1.57,4.065 2.418,6.135 0.849,2.07 4.165,10.941 3.317,8.871 5.318,14.315 2.001,5.444 3.727,11.892 0.151,-0.238 -1.811,-3.78 -1.961,-3.543 -3.178,-5.599 -1.218,-2.056 -2.686,-4.718 -1.469,-2.663 -3.607,-6.591 -2.137,-3.927 -3.228,-5.922 -1.092,-1.995 -2.81,-5.275 -1.719,-3.279 -3.19,-6.157 -1.471,-2.878 -4.246,-8.03 -2.775,-5.152 -4.85,-9.065 -2.075,-3.913 -4.088,-7.901 -2.014,-3.988 -4.262,-7.348 -0.592,0.366 0.661,4.976 1.252,4.61 2.507,8.062 1.256,3.453 1.93,5.687 0.674,2.234 3.786,10.163 3.111,7.929 5.877,14.374 2.766,6.445 4.23,10.136 1.464,3.69 2.493,7 h 0.024 q 0.383,-0.326 -3.279,-7.707 -3.662,-7.381 -6.475,-13.11 -2.814,-5.729 -4.084,-8.372 -1.271,-2.643 -5.852,-12.503 -4.582,-9.86 -7.536,-16.528 -2.955,-6.667 -4.632,-11.787 -0.224,0.442 2.217,6.247 2.442,5.805 5.482,13.681 3.041,7.875 4.687,12.174 1.645,4.299 3.261,8.383 1.616,4.083 5.573,14.359 0.414,0.026 -1.752,-4.281 -2.166,-4.308 -3.489,-6.771 -1.323,-2.462 -4.992,-10.504 -3.668,-8.041 -7.299,-16.878 -3.632,-8.838 -5.319,-13.014 -1.687,-4.176 -2.437,-6.062 -0.749,-1.886 -1.23,-3.09 -0.481,-1.205 -3.242,-8.047 -0.776,0.062 2.347,9.669 3.122,9.607 4.832,14.757 1.709,5.151 2.514,7.736 0.806,2.585 1.66,5.403 0.855,2.819 2.035,6.389 1.18,3.57 2.418,11.053 -0.592,-0.693 -5.45,-9.916 -4.857,-9.223 -17.64,-36.864 -0.481,0.853 0.841,5.723 1.322,4.87 2.272,8.226 0.95,3.357 1.334,4.912 0.384,1.555 0.663,2.588 0.279,1.033 1.739,6.473 1.46,5.44 2.499,9.593 1.04,4.153 1.002,8.62 -0.338,0.151 -2.515,-3.887 -2.178,-4.039 -4.304,-7.996 -2.126,-3.957 -3.983,-7.534 -1.857,-3.578 -2.992,-5.722 -1.135,-2.145 -6.628,-13.918 h -0.018 q -0.108,0.575 0.252,1.39 0.36,0.814 3.42,9.521 3.059,8.706 4.623,13.398 1.565,4.692 2.538,7.412 0.973,2.719 2.648,10.525 -0.026,0.082 -1.378,-2.393 -1.352,-2.475 -3.566,-6.55 -2.213,-4.075 -4.63,-8.909 -2.416,-4.834 -4.316,-9.037 -1.9,-4.203 -3.484,-7.831 -0.282,-0.03 3.181,11.051 3.462,11.082 5.788,18.13 2.326,7.048 3.285,12.561 0.058,0.465 -2.54,-4.832 -2.598,-5.296 -4.143,-8.567 -1.544,-3.272 -3.091,-6.677 -1.548,-3.404 -2.352,-5.369 -0.804,-1.965 -1.092,-4.025 -0.116,-0.176 2.02,5.189 2.136,5.365 3.415,9.897 1.28,4.531 2.057,7.153 0.777,2.622 1.016,7.61 -0.606,1.094 -8.706,-7.819 0.402,0.208 2.928,3.552 2.527,3.344 5.426,8.237 2.899,4.893 4.221,7.497 1.322,2.603 2.018,4.138 0.697,1.535 0.448,3.073 -0.657,1.091 -5.272,-2.594 -4.614,-3.684 -7.048,-5.828 -2.434,-2.145 -4.677,-3.991 -2.244,-1.846 -11.724,-10.031 -0.316,0.157 0.891,2.701 1.206,2.543 5.683,6.993 4.477,4.451 7.328,7.062 2.85,2.611 6.92,5.55 0.173,0.051 -2.782,-1.982 -2.955,-2.033 -4.765,-3.271 -1.81,-1.238 -2.631,-1.831 -0.82,-0.593 -1.961,-1.349 -1.14,-0.757 -1.855,-1.216 -0.715,-0.46 -1.281,-0.776 -0.566,-0.316 -1.945,-1.168 -1.379,-0.851 -5.87,-2.09 -0.006,0.609 0.176,0.942 0.182,0.332 0.802,1.004 0.619,0.672 1.713,1.727 1.094,1.055 2.152,1.975 1.058,0.92 2.65,2.316 1.592,1.396 3.239,2.792 1.646,1.397 5.362,4.28 3.716,2.883 5.459,4.362 1.744,1.478 2.962,2.613 1.219,1.135 1.438,2.442 -0.756,0.344 -1.84,0.107 -1.083,-0.236 -1.954,-0.625 -0.871,-0.388 -1.522,-0.638 -0.652,-0.25 -3.42,-1.745 -2.769,-1.494 -6.575,-3.536 -3.807,-2.043 -6.008,-3.028 -2.202,-0.986 -3.5,-1.575 -1.299,-0.589 -6.415,-2.983 -0.262,-0.045 5.315,2.586 5.577,2.631 10.02,5.027 4.443,2.395 7.511,4.366 3.068,1.971 5.753,3.898 2.685,1.927 4.35,3.226 1.665,1.3 2.418,3.185 -0.421,0.631 -5.761,-1.557 -5.34,-2.188 -9.025,-3.729 -3.684,-1.54 -7.446,-2.968 -3.762,-1.429 -9.479,-4.221 -5.717,-2.791 -10.676,-5.742 -0.338,-0.472 3.772,1.269 4.11,1.741 6.414,2.657 2.305,0.916 6.706,2.914 4.401,1.998 8.59,4.044 4.189,2.046 7.143,3.715 2.955,1.668 4.819,2.973 1.864,1.304 2.657,3.31 -0.436,1.089 -9.837,-1.119 -9.4,-2.207 -14.504,-3.518 -5.103,-1.31 -8.413,-2.064 -3.31,-0.754 -14.848,-2.89 -0.247,0.507 7.03,2.284 7.277,1.778 16.679,4.702 9.402,2.924 15.375,4.96 5.974,2.036 11.584,4.985 v 0.061 q -0.585,0.355 -3.807,-0.353 -3.222,-0.707 -11.801,-2.453 -8.578,-1.745 -13.691,-2.588 -5.112,-0.842 -8.528,-1.426 -3.415,-0.584 -10.394,-1.541 -0.278,-0.265 0.377,0.339 0.655,0.604 3.493,1.7 2.838,1.096 7.155,2.106 4.316,1.01 11.316,3.011 6.999,2.001 11.328,3.41 4.328,1.41 7.617,2.471 0.194,0.481 -6.099,-2.189 -6.292,-2.67 -10.505,-4.28 -4.213,-1.61 -6.99,-2.58 -2.776,-0.97 -6.639,-2.129 -3.862,-1.16 -6.973,-1.815 -3.111,-0.656 -5.686,-1.086 0.16,0.361 0.321,0.723"
+           id="STROKE_8a686c27-3dff-4d1a-8819-128f7c1ecd4c"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.36999989;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 500.774,272.578 q -0.346,-0.175 -1.778,-2.431 -1.433,-2.255 -3.7,-5.368 -2.267,-3.113 -3.494,-4.583 -1.226,-1.47 -3.323,-4.05 -2.098,-2.58 -5.476,-6.76 -0.172,-0.106 0.308,1.059 0.481,1.165 1.613,3.601 1.133,2.436 2.231,5.092 1.098,2.657 2.162,5.535 1.063,2.878 1.877,6.018 0.814,3.14 1.379,6.542 -0.315,0.123 -0.969,-1.032 -0.655,-1.154 -1.649,-3.586 -0.995,-2.432 -2.186,-5.174 -1.191,-2.742 -2.579,-5.795 -1.388,-3.052 -2.534,-5.449 -1.146,-2.397 -2.05,-4.137 -0.903,-1.741 -2.3,-4.165 -1.397,-2.424 -3.286,-5.531 -0.129,0.15 0.143,1.391 0.272,1.24 0.944,3.572 0.672,2.332 1.472,5.157 0.799,2.825 1.725,6.143 0.926,3.318 1.661,5.827 0.734,2.51 1.548,5.063 0.814,2.552 1.501,4.636 0.687,2.083 1.331,4.023 0.643,1.939 1.472,4.428 0.828,2.489 1.536,4.733 0.708,2.243 1.294,4.241 0.587,1.997 1.092,3.785 0.504,1.789 0.927,3.369 0.035,-0.007 -0.38,-0.884 -0.415,-0.877 -1.279,-2.625 -0.864,-1.748 -1.849,-3.712 -0.984,-1.965 -1.753,-3.492 -0.769,-1.527 -1.65,-3.272 -0.881,-1.745 -1.775,-3.494 -0.895,-1.749 -1.804,-3.503 -0.908,-1.753 -1.83,-3.51 -0.922,-1.756 -1.858,-3.517 -0.936,-1.761 -1.886,-3.526 -0.949,-1.765 -1.913,-3.534 -0.963,-1.769 -1.94,-3.542 -0.977,-1.773 -1.968,-3.55 -0.133,-0.362 -0.08,0.639 0.052,1.001 0.67,3.101 0.617,2.101 1.154,3.535 0.536,1.434 1.243,3.607 0.707,2.173 1.325,4.107 0.618,1.935 1.383,4.354 0.764,2.42 1.526,4.792 0.761,2.372 1.52,4.696 0.758,2.323 1.514,4.599 0.755,2.276 1.508,4.504 0.753,2.228 1.448,4.272 0.696,2.044 1.334,3.904 0.638,1.861 1.219,3.538 0.581,1.677 1.105,3.17 0.523,1.493 1.054,3.232 0.53,1.74 1.067,3.725 0.538,1.986 1.082,4.218 0.544,2.232 1.095,4.711 -0.063,-0.197 -0.696,-1.907 -0.632,-1.71 -1.834,-4.935 -1.201,-3.224 -2.288,-6.026 -1.087,-2.802 -2.062,-5.183 -0.975,-2.381 -1.965,-4.794 -0.991,-2.414 -2.021,-4.878 -1.029,-2.464 -2.066,-4.82 -1.037,-2.356 -2.092,-4.613 -1.054,-2.256 -2.556,-5.136 -1.502,-2.879 -3.328,-6.283 -0.307,0.162 -0.105,1.963 0.202,1.802 1.219,5.487 1.018,3.685 1.983,6.99 0.965,3.306 1.664,6.064 0.7,2.758 1.142,4.844 0.442,2.086 0.689,3.55 0.247,1.464 0.64,3.648 0.393,2.184 0.929,5.087 0.536,2.902 1.023,5.455 0.487,2.552 0.93,4.758 0.443,2.206 0.937,4.54 0.495,2.333 1.041,4.794 0.546,2.461 1.043,4.992 0.497,2.532 0.945,5.134 0.448,2.602 0.635,5.442 0.187,2.839 0.114,5.916 -0.515,0.46 -1.631,-1.39 -1.116,-1.85 -2.103,-3.815 -0.987,-1.966 -2.217,-4.662 -1.23,-2.697 -2.365,-5.15 -1.136,-2.453 -2.177,-4.662 -1.04,-2.209 -1.987,-4.173 -0.946,-1.965 -1.797,-3.686 -0.852,-1.721 -1.855,-3.871 -1.003,-2.149 -2.157,-4.728 -1.154,-2.578 -2.459,-5.585 -1.306,-3.007 -2.763,-6.443 -0.15,-0.106 -0.019,0.907 0.131,1.014 0.544,3.146 0.414,2.133 1.024,4.651 0.61,2.519 1.117,4.504 0.507,1.985 1.114,4.277 0.607,2.291 1.144,4.296 0.538,2.004 1.24,4.58 0.702,2.576 1.361,4.863 0.659,2.286 1.521,5.211 0.862,2.925 1.928,6.489 1.065,3.564 1.864,6.307 0.798,2.743 1.33,4.666 0.531,1.922 0.961,3.616 0.43,1.693 0.922,3.891 0.492,2.197 0.639,5.755 -0.17,-0.072 -0.646,-1.135 -0.476,-1.064 -1.257,-3.119 -0.782,-2.055 -1.653,-4.15 -0.87,-2.095 -1.829,-4.229 -0.959,-2.135 -1.775,-3.958 -0.816,-1.824 -1.826,-4.093 -1.009,-2.27 -1.791,-4.04 -0.782,-1.771 -1.462,-3.32 -0.679,-1.549 -1.541,-3.617 -0.861,-2.069 -2.131,-5.174 -1.27,-3.105 -2.311,-5.713 -1.042,-2.607 -1.854,-4.718 -0.813,-2.111 -1.627,-4.362 -0.814,-2.25 -1.628,-4.64 -0.317,0.549 0.637,4.156 0.954,3.608 1.827,6.422 0.874,2.814 1.29,4.268 0.416,1.455 0.675,2.242 0.26,0.787 1.245,4.079 0.984,3.292 1.643,5.533 0.66,2.242 1.259,4.272 0.599,2.031 1.077,3.663 0.479,1.633 1.036,3.544 0.558,1.912 1.181,3.927 0.623,2.015 1.311,4.132 0.688,2.118 1.293,4.002 0.605,1.883 1.388,4.356 0.784,2.474 1.877,6.063 1.094,3.589 2.526,8.147 0.166,-0.191 -0.343,-1.514 -0.508,-1.323 -1.689,-3.779 -1.182,-2.455 -2.137,-4.388 -0.954,-1.934 -1.681,-3.344 -0.727,-1.411 -1.518,-3.016 -0.791,-1.604 -1.645,-3.402 -0.855,-1.798 -1.52,-3.178 -0.664,-1.38 -1.139,-2.342 -0.474,-0.962 -1.456,-2.97 -0.982,-2.008 -2.471,-5.062 -1.489,-3.055 -2.693,-5.575 -1.204,-2.521 -2.123,-4.507 -0.919,-1.987 -1.63,-3.521 -0.711,-1.535 -1.467,-3.159 -0.756,-1.625 -1.524,-3.177 -0.195,-0.056 -0.023,0.939 0.172,0.996 0.709,3.044 0.538,2.048 1.319,4.468 0.781,2.421 1.428,4.329 0.647,1.909 1.42,4.113 0.773,2.203 1.47,4.172 0.696,1.97 1.626,4.572 0.929,2.602 1.863,5.135 0.933,2.533 1.997,5.466 1.064,2.932 2.259,6.264 1.195,3.332 2.17,5.995 0.975,2.663 1.73,4.657 0.755,1.994 1.515,4.025 0.76,2.031 1.525,4.099 0.764,2.068 1.339,4.135 0.575,2.066 0.96,4.13 -0.227,0.135 -0.947,-1.212 -0.72,-1.347 -1.384,-2.728 -0.663,-1.381 -1.51,-3.244 -0.846,-1.863 -1.686,-3.67 -0.839,-1.806 -2.086,-4.431 -1.248,-2.624 -2.88,-5.895 -1.633,-3.272 -3.243,-6.425 -1.609,-3.154 -3.196,-6.19 -1.586,-3.036 -2.751,-5.323 -1.165,-2.286 -1.907,-3.823 -0.743,-1.537 -1.747,-3.527 -1.003,-1.99 -2.268,-4.433 -1.265,-2.444 -2.346,-4.888 -1.082,-2.445 -1.979,-4.89 -0.045,0.09 0.399,1.153 0.443,1.063 1.375,3.098 0.932,2.034 1.796,3.9 0.865,1.866 2.06,4.41 1.195,2.544 1.817,4.063 0.621,1.519 1.641,3.7 1.02,2.182 1.937,4.111 0.916,1.928 2.069,4.331 1.153,2.402 2.174,4.522 1.02,2.119 1.91,3.955 0.889,1.836 1.646,3.389 0.757,1.553 1.695,3.458 0.938,1.904 2.216,4.379 1.277,2.474 2.582,4.884 1.305,2.409 2.346,4.213 1.042,1.803 2.21,3.6 1.168,1.796 2.058,3.176 0.89,1.38 1.597,1.893 0.706,0.514 1.45,0.666 0.744,0.152 1.025,-2.536 0.28,-2.689 0.296,-4.334 0.016,-1.644 -0.265,-3.447 -0.281,-1.803 -0.852,-4.312 -0.572,-2.51 -1.039,-4.437 -0.466,-1.928 -1.007,-3.946 -0.542,-2.019 -1.106,-4.064 -0.565,-2.045 -1.242,-4.331 -0.676,-2.285 -1.654,-5.492 -0.977,-3.208 -1.912,-6.307 -0.934,-3.099 -1.825,-6.09 -0.891,-2.992 -1.558,-5.551 -0.666,-2.559 -1.108,-4.685 -0.442,-2.127 -0.736,-3.872 -0.293,-1.744 -0.511,-3.787 -0.217,-2.043 -0.167,-3.565 0.05,-1.522 0.091,-2.215 0.042,-0.694 0.519,-1.582 0.478,-0.888 1.165,-0.805 0.687,0.082 1.405,0.499 0.719,0.417 1.576,1.642 0.857,1.224 2.092,3.395 1.235,2.172 2.112,3.892 0.877,1.721 1.267,2.673 0.389,0.953 0.924,2.24 0.536,1.286 1.347,3.225 0.812,1.938 1.899,4.529 1.088,2.59 2.451,5.832 1.364,3.242 2.562,6.089 1.199,2.848 2.232,5.3 1.033,2.453 1.901,4.511 0.868,2.059 1.923,4.554 1.054,2.496 2.108,4.906 1.053,2.41 2.105,4.65 1.052,2.24 1.67,3.619 0.618,1.379 1.952,3.954 1.334,2.576 2.674,5.354 1.34,2.779 3.149,4.95 0.177,-0.1 0.327,-2.204 0.15,-2.104 -0.17,-4.225 -0.32,-2.121 -1.061,-4.96 -0.741,-2.84 -1.587,-5.512 -0.845,-2.673 -1.506,-4.636 -0.66,-1.963 -1.417,-4.107 -0.757,-2.144 -1.427,-4.038 -0.671,-1.894 -1.545,-4.361 -0.875,-2.466 -1.693,-4.756 -0.819,-2.289 -1.701,-5.06 -0.881,-2.77 -1.828,-6.026 -0.946,-3.257 -1.683,-5.953 -0.736,-2.696 -1.277,-4.878 -0.541,-2.181 -1.052,-4.21 -0.51,-2.028 -0.997,-3.927 -0.487,-1.899 -1.235,-4.984 -0.747,-3.085 -1.911,-7.867 -1.164,-4.781 -2.216,-10.437 -1.051,-5.656 -1.551,-10.76 0.446,-0.891 1.99,3.174 1.544,4.066 2.975,8.221 1.431,4.155 3.181,9.368 1.749,5.214 2.781,8.307 1.032,3.094 1.926,5.794 0.895,2.7 1.667,4.984 0.773,2.283 1.486,4.354 0.713,2.071 1.518,4.247 0.805,2.177 1.431,3.836 0.627,1.659 1.346,3.536 0.72,1.877 1.37,3.573 0.651,1.695 1.522,3.965 0.872,2.271 1.757,4.573 0.886,2.303 1.612,4.25 0.726,1.947 1.575,4.334 0.849,2.387 2.325,4.32 0.147,-0.444 0.355,-2.291 0.208,-1.846 -0.239,-4.262 -0.448,-2.416 -1.482,-6.016 -1.035,-3.6 -1.99,-6.672 -0.956,-3.071 -1.833,-5.614 -0.878,-2.543 -1.53,-4.437 -0.652,-1.893 -1.291,-3.761 -0.64,-1.868 -1.052,-2.897 -0.411,-1.029 -1.173,-3.081 -0.762,-2.052 -2.012,-5.47 -1.25,-3.418 -2.204,-6.117 -0.953,-2.699 -1.611,-4.68 -0.657,-1.981 -1.176,-3.572 -0.519,-1.592 -0.899,-2.794 -0.381,-1.203 -1.053,-3.193 -0.671,-1.99 -1.634,-4.767 -0.962,-2.777 -1.908,-6.404 -0.946,-3.626 -1.875,-8.101 0.336,0.641 1.334,3.15 0.999,2.508 1.71,4.346 0.711,1.838 1.467,3.842 0.756,2.004 1.687,4.574 0.931,2.57 2.038,5.705 1.107,3.136 2.085,5.787 0.977,2.65 1.826,4.815 0.848,2.165 1.591,4.098 0.743,1.934 1.381,3.636 0.638,1.702 1.64,4.255 1.001,2.554 2.366,5.958 1.365,3.405 2.503,6.101 1.139,2.697 2.051,4.685 0.913,1.988 1.593,3.449 0.68,1.461 1.351,2.861 0.672,1.401 1.033,2.189 0.362,0.787 1.167,2.428 0.805,1.641 1.832,3.708 1.027,2.068 1.863,3.747 0.835,1.679 1.822,3.658 0.987,1.98 2.125,4.261 1.138,2.28 2.427,4.862 0.085,-0.825 -0.261,-2.298 -0.346,-1.474 -1.035,-3.599 -0.688,-2.125 -1.835,-5.393 -1.147,-3.267 -2.146,-6.019 -0.999,-2.751 -1.85,-4.986 -0.851,-2.235 -1.887,-4.885 -1.036,-2.65 -2.257,-5.716 -1.222,-3.066 -2.249,-5.652 -1.028,-2.587 -1.861,-4.693 -0.833,-2.107 -1.674,-4.34 -0.841,-2.233 -1.474,-3.939 -0.633,-1.707 -1.339,-3.631 -0.705,-1.924 -1.346,-3.649 -0.641,-1.725 -1.507,-4.013 -0.865,-2.289 -1.763,-4.544 -0.897,-2.255 -1.71,-4.541 -0.812,-2.287 -1.4,-4.01 -0.587,-1.723 -1.221,-3.644 -0.634,-1.921 -1.189,-3.652 -0.555,-1.732 -1.268,-4.045 -0.713,-2.312 -1.346,-4.637 -0.634,-2.325 -1.194,-4.495 -0.56,-2.17 -1.047,-4.186 -0.486,-2.016 -0.872,-3.789 -0.386,-1.772 -0.814,-4.067 -0.428,-2.296 -0.386,-6.458 l 0.283,-0.142 q 0.322,-0.013 0.977,1.342 0.655,1.355 1.642,4.078 0.988,2.724 2.002,5.52 1.013,2.797 2.052,5.667 1.039,2.87 1.854,5.142 0.815,2.271 1.702,4.781 0.886,2.51 1.982,5.661 1.096,3.152 1.935,5.521 0.84,2.37 1.377,4.134 0.538,1.765 1.251,3.818 0.712,2.054 1.334,3.813 0.623,1.76 1.393,3.91 0.77,2.15 1.534,4.226 0.765,2.077 1.523,4.081 0.757,2.004 1.509,3.935 0.752,1.93 1.497,3.788 0.746,1.858 1.41,3.507 0.664,1.648 1.537,3.807 0.873,2.159 1.711,4.2 0.838,2.041 1.51,3.711 0.671,1.669 1.177,2.967 0.505,1.298 1.801,3.969 1.296,2.671 3.383,6.715 0.327,-0.5 0.239,-3.197 -0.088,-2.697 -0.591,-5.018 -0.503,-2.322 -1.451,-5.166 -0.948,-2.845 -2.049,-5.953 -1.1,-3.109 -2.354,-6.481 -1.254,-3.372 -2.219,-5.914 -0.965,-2.541 -1.64,-4.251 -0.676,-1.71 -1.553,-4.018 -0.877,-2.308 -1.586,-4.189 -0.708,-1.881 -1.54,-4.103 -0.832,-2.223 -1.591,-4.3 -0.76,-2.078 -1.447,-4.01 -0.687,-1.932 -1.302,-3.719 -0.614,-1.787 -1.428,-4.249 -0.813,-2.462 -1.626,-4.924 -0.814,-2.461 -1.356,-4.101 -0.541,-1.639 -1.242,-3.761 -0.701,-2.122 -1.56,-4.726 -0.86,-2.604 -1.616,-4.935 -0.755,-2.33 -1.406,-4.387 -0.652,-2.057 -1.141,-4.387 -0.49,-2.329 -0.817,-4.931 0.131,-0.011 0.599,0.976 0.468,0.986 1.271,2.97 0.804,1.983 1.488,3.707 0.684,1.724 1.532,3.92 0.848,2.196 1.478,3.869 0.631,1.672 1.147,2.937 0.517,1.265 1.331,3.76 0.815,2.495 1.606,4.759 0.791,2.265 1.446,4.113 0.656,1.849 1.439,4.036 0.783,2.187 1.556,4.289 0.773,2.102 1.536,4.119 0.762,2.017 1.514,3.948 0.752,1.932 1.494,3.778 0.741,1.846 1.401,3.487 0.66,1.641 1.527,3.795 0.867,2.154 1.696,4.205 0.83,2.052 1.491,3.673 0.661,1.622 1.03,2.517 0.369,0.894 0.976,2.21 0.607,1.316 1.574,3.351 0.967,2.035 2.294,4.789 1.327,2.755 3.015,6.228 0.2,-0.48 0.15,-2.521 -0.049,-2.042 -0.756,-4.48 -0.708,-2.437 -2.09,-5.951 -1.383,-3.514 -2.541,-6.346 -1.159,-2.832 -1.859,-4.444 -0.701,-1.613 -1.307,-3.055 -0.606,-1.442 -1.35,-3.252 -0.744,-1.809 -1.626,-3.986 -0.882,-2.176 -1.903,-4.72 -1.021,-2.544 -1.961,-4.938 -0.94,-2.394 -1.8,-4.638 -0.86,-2.245 -1.639,-4.339 -0.78,-2.095 -1.479,-4.04 -0.699,-1.945 -1.295,-3.626 -0.596,-1.681 -1.335,-3.807 -0.739,-2.125 -1.597,-4.794 -0.857,-2.668 -1.439,-4.487 -0.582,-1.819 -1.429,-4.6 -0.846,-2.782 -1.445,-4.742 -0.598,-1.96 -1.23,-4.026 -0.633,-2.066 -1.113,-5.303 -0.48,-3.237 -0.809,-7.643 l 0.18,-0.1 q 0.155,0.007 0.686,1.128 0.531,1.12 1.437,3.355 0.906,2.235 1.867,4.746 0.961,2.511 1.695,4.464 0.735,1.953 1.563,4.184 0.828,2.231 1.61,4.334 0.781,2.102 1.516,4.076 0.735,1.974 1.422,3.82 0.688,1.845 1.65,4.421 0.961,2.575 2.055,5.494 1.095,2.92 2.002,5.325 0.907,2.405 1.697,4.492 0.79,2.087 1.8,4.739 1.01,2.652 1.889,4.913 0.879,2.261 1.531,3.962 0.651,1.701 1.076,2.841 0.424,1.141 1.05,2.776 0.625,1.635 1.451,3.764 0.827,2.129 1.776,4.186 0.95,2.057 2.023,4.041 h 0.161 q 0.237,-0.614 0.109,-2.315 -0.128,-1.702 -0.846,-3.883 -0.718,-2.18 -2.068,-5.407 -1.351,-3.227 -2.412,-5.735 -1.061,-2.507 -1.832,-4.295 -0.771,-1.788 -1.619,-3.951 -0.848,-2.163 -1.772,-4.701 -0.924,-2.538 -1.765,-5.079 -0.84,-2.541 -1.597,-5.085 -0.756,-2.544 -1.126,-5.52 -0.371,-2.977 -0.354,-6.385 0.442,-0.104 1.222,1.081 0.779,1.185 1.898,3.659 1.118,2.474 2.144,4.866 1.026,2.392 1.725,4.124 0.7,1.733 1.302,3.262 0.602,1.53 1.34,3.434 0.737,1.903 1.611,4.182 0.873,2.278 1.882,4.93 1.009,2.653 2.011,5.337 1.002,2.684 1.998,5.396 0.996,2.713 1.99,5.432 0.995,2.719 1.984,5.402 0.249,-0.156 0.172,-2.595 -0.077,-2.44 -1.008,-6.167 -0.931,-3.727 -1.522,-7.817 -0.591,-4.089 -1.124,-6.669 -0.533,-2.58 -1.045,-4.546 -0.512,-1.967 -1.209,-3.403 -0.697,-1.437 -1.195,-2.624 -0.497,-1.188 -0.974,-1.645 -0.476,-0.456 -0.637,-0.51"
+           id="STROKE_50635851-6767-476c-bb59-f4dc6757af60"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.15399981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 461.698,401.439 q -0.795,0.317 -2.446,-2.514 -1.65,-2.832 -4.529,-8.91 -2.879,-6.079 -4.67,-9.562 -1.791,-3.484 -5.099,-9.928 -3.308,-6.444 -4.875,-9.888 -1.566,-3.444 -2.417,-5.301 -0.851,-1.857 -1.718,-3.44 -0.614,0.762 1.392,6.62 2.007,5.859 4.531,11.668 2.525,5.81 5.297,12.16 2.772,6.35 4.822,10.983 2.049,4.633 3.136,6.977 1.086,2.344 1.831,3.951 0.744,1.608 1.587,3.577 0.842,1.969 3.036,7.566 -0.086,-0.486 -0.339,-1.083 -0.252,-0.598 -0.809,-1.896 -0.557,-1.299 -1.267,-2.699 -0.709,-1.4 -2.984,-5.998 -2.274,-4.599 -3.434,-7.165 -1.159,-2.565 -3.167,-6.782 -2.007,-4.217 -3.406,-6.983 -1.399,-2.766 -3.9,-7.832 -2.501,-5.067 -4.369,-9.058 -1.868,-3.992 -4.509,-9.229 -2.642,-5.238 -5.195,-10.396 -0.109,0.435 3.401,10.736 3.509,10.301 5.592,17.523 2.084,7.223 3.886,13.113 1.803,5.889 2.878,9.321 1.075,3.432 1.665,5.334 0.59,1.903 1.199,4.2 0.61,2.297 1.036,4.374 0.427,2.077 0.523,4.219 -0.504,0.002 -2.108,-3.425 -1.605,-3.427 -2.766,-5.66 -1.162,-2.234 -2.295,-4.642 -1.133,-2.409 -5.665,-11.91 -4.532,-9.502 -7.88,-16.426 -3.348,-6.925 -9.216,-22.183 -0.147,0.062 1.271,3.684 1.419,3.622 2.915,7.582 1.497,3.959 2.931,8.55 1.435,4.591 2.315,7.548 0.88,2.957 1.296,4.451 0.417,1.494 1.653,5.261 1.236,3.768 3.586,17.565 -0.415,0.16 -6.028,-10.672 -5.614,-10.831 -9.235,-17.888 -3.62,-7.057 -5.214,-10.346 -1.594,-3.289 -2.675,-6.144 -1.082,-2.855 -1.478,-5.641 l 0.08,-0.057 q 0.563,0.331 3.846,6.887 3.283,6.556 5.694,12.338 2.411,5.782 4.402,10.822 1.991,5.039 3.4,8.768 1.41,3.728 2.418,5.864 1.007,2.135 4.676,14.572 -0.359,-0.605 -2.233,-3.916 -1.875,-3.312 -3.281,-5.708 -1.406,-2.396 -2.516,-4.443 -1.11,-2.047 -2.443,-4.492 -1.333,-2.446 -3.182,-5.728 -1.849,-3.283 -2.908,-5.267 -1.059,-1.983 -1.542,-2.893 -0.483,-0.91 -3.472,-6.676 -2.989,-5.766 -9.317,-19.773 -0.533,-0.361 1.792,5.237 2.325,5.598 4.267,10.997 1.942,5.399 2.879,8.332 0.938,2.932 2.429,7.179 1.491,4.247 2.951,8.512 1.46,4.265 2.069,8.408 -0.169,0.105 -1.247,-1.501 -1.079,-1.606 -4.276,-7.455 -3.196,-5.85 -6.767,-12.522 -3.571,-6.671 -6.082,-11.795 -2.511,-5.123 -4.506,-9.209 -1.995,-4.087 -4.099,-7.983 -0.573,0.14 1.042,4.654 1.616,4.513 2.858,7.467 1.242,2.954 3.023,8.061 1.782,5.108 2.94,8.253 1.158,3.145 2.68,7.554 1.522,4.408 2.162,8.984 -0.397,-0.147 -3.128,-4.844 -2.731,-4.697 -6.495,-12.025 -3.763,-7.327 -6.443,-12.615 -2.679,-5.287 -4.166,-8.455 -1.486,-3.168 -2.58,-7.137 0.021,0.087 2.054,4.915 2.033,4.827 3.655,9.199 1.622,4.371 2.469,6.584 0.848,2.212 2.11,5.71 1.261,3.498 2.001,6.125 0.74,2.627 1.231,5.702 -1.257,0.213 -23.326,-42.929 -0.386,0.105 1.182,5.039 1.568,4.934 2.446,7.664 0.878,2.729 2.064,6.516 1.186,3.787 1.63,8.004 -0.462,0.118 -3.649,-5.98 -3.186,-6.098 -5.602,-11.043 -2.416,-4.945 -9.371,-19.645 -0.084,0.117 1.111,2.492 1.195,2.375 2.166,4.114 0.971,1.74 2.761,5.22 1.79,3.479 3.856,8.067 2.066,4.588 3.529,7.725 1.464,3.137 3.419,7.023 1.955,3.886 3.117,6.277 1.162,2.39 2.904,6.016 1.742,3.627 2.705,5.566 0.963,1.94 2.015,4.457 1.052,2.518 2.234,5.787 -0.13,-0.288 -2.926,-6.099 -2.796,-5.81 -5.092,-10.277 -2.296,-4.466 -3.426,-6.62 -1.13,-2.155 -1.738,-3.269 -0.608,-1.115 -1.928,-3.684 -1.32,-2.57 -3.013,-5.929 -1.694,-3.359 -3.056,-6.13 -1.362,-2.772 -2.987,-5.684 -1.624,-2.912 -4.15,-8.125 -2.525,-5.214 -4.12,-8.48 -1.596,-3.266 -2.232,-6.511 0.316,-0.087 3.817,6.431 3.5,6.518 7.881,16.115 4.381,9.596 7.223,16.089 2.842,6.493 7.981,15.968 0.355,-0.173 -1.225,-3.294 -1.579,-3.122 -3.129,-5.745 -1.551,-2.623 -2.4,-4.271 -0.849,-1.649 -5.603,-10.919 -4.753,-9.27 -7.278,-14.08 -2.525,-4.81 -3.643,-7.009 -1.117,-2.199 -2.34,-4.473 -1.223,-2.274 -2.668,-4.812 -0.67,-0.11 3.314,8.347 3.983,8.457 10.385,24.304 -0.074,-0.25 -1.818,-3.513 -1.745,-3.263 -3.75,-7.446 -2.004,-4.184 -3.69,-7.903 -1.686,-3.718 -8.674,-20.088 -0.098,-0.185 1.491,3.676 1.589,3.86 2.604,7.078 1.014,3.217 1.518,5.127 0.504,1.91 1.22,4.811 0.715,2.901 1.765,6.699 1.051,3.797 2.154,15.113 0.071,0.355 -0.492,-0.132 -0.563,-0.487 -2.364,-3.546 -1.802,-3.059 -3.293,-6.042 -1.491,-2.984 -2.408,-4.538 -0.917,-1.555 -3.595,-7.44 -2.677,-5.885 -5.015,-12.502 -0.328,0.17 0.462,3.525 0.791,3.354 1.83,7.63 1.038,4.276 1.96,11.952 0.245,0.435 -1.863,-3.54 -2.108,-3.976 -3.673,-10.703 0.732,0.098 6.358,15.887 0.551,-0.118 -0.497,-3.868 -1.049,-3.751 -2.192,-7.895 -1.143,-4.143 -1.632,-6.925 -0.489,-2.781 -0.637,-4.34 -0.149,-1.559 -0.174,-2.917 -0.025,-1.358 -0.014,-2.366 0.012,-1.008 0.388,-1.465 0.376,-0.458 1.303,-0.708 0.927,-0.25 4.088,3.402 3.161,3.652 5.013,6.222 1.853,2.571 3.658,5.169 1.805,2.597 2.944,4.03 1.138,1.432 2.353,2.194 0.855,-0.246 -1.584,-6.129 -2.439,-5.882 -3.856,-9.746 -1.416,-3.864 -3.031,-8.304 -1.615,-4.44 -2.514,-7.072 -0.898,-2.632 -0.791,-5.878 1.222,-0.87 5.668,6.659 4.446,7.529 7.383,12.709 2.937,5.179 5.803,9.774 2.866,4.594 4.19,6.744 1.323,2.149 2.58,3.896 1.257,1.747 3.243,3.207 0.944,-0.157 -2.128,-6.197 -3.071,-6.039 -5.208,-10.871 -2.136,-4.832 -3.268,-7.59 -1.132,-2.758 -3.483,-8.032 -2.352,-5.274 -3.696,-8.325 -1.343,-3.052 -1.731,-5.988 0.195,-0.305 2.083,2.086 1.887,2.39 5.63,8.986 3.744,6.595 6.017,10.853 2.273,4.258 4.35,8.118 2.076,3.859 4.301,6.927 0.653,0.359 -0.563,-3.503 -1.215,-3.861 -2.943,-7.13 -1.728,-3.269 -3.697,-7.504 -1.969,-4.235 -3.253,-7.194 -1.283,-2.959 -2.27,-5.311 -0.987,-2.352 -2.068,-4.902 -1.081,-2.55 -1.662,-3.947 -0.581,-1.396 -0.936,-2.195 -0.355,-0.798 -1.965,-4.404 -1.609,-3.607 -2.887,-9.353 0.551,-0.252 2.934,3.698 2.384,3.95 4.282,7.524 1.898,3.574 3.679,7.323 1.78,3.749 2.662,5.563 0.883,1.813 2.48,4.951 1.598,3.137 2.905,5.551 1.308,2.413 2.793,5.513 1.486,3.1 2.487,5.221 1.002,2.12 2.798,4.239 0.64,-0.684 -0.59,-4.716 -1.231,-4.031 -4.373,-11.671 -3.142,-7.641 -4.983,-12.056 -1.841,-4.415 -4.095,-9.992 -2.253,-5.576 -3.574,-9.432 -1.32,-3.856 -2.094,-6.22 -0.773,-2.363 -0.674,-5.448 0.904,-0.099 2.986,3.673 2.081,3.773 5.38,10.845 3.299,7.072 4.893,10.58 1.595,3.507 2.356,5.181 0.762,1.673 2.561,5.629 1.8,3.957 3.693,7.972 1.894,4.016 4.348,9.019 0.496,-0.883 -0.81,-4.644 -1.305,-3.761 -3.405,-8.651 -2.1,-4.89 -4.048,-10.045 -1.947,-5.154 -5.515,-14.505 -3.568,-9.351 -5.381,-14.296 -1.813,-4.946 -3.178,-9.558 -1.365,-4.613 -2.237,-7.768 -0.872,-3.156 -0.42,-6.099 1.286,-0.269 4.825,6.629 3.538,6.898 6.017,12.808 2.48,5.91 3.655,8.736 1.175,2.827 1.922,4.904 0.746,2.078 2.201,5.564 1.456,3.486 2.479,5.567 1.023,2.08 2.275,3.295 0.624,-0.606 0.251,-3.489 -0.374,-2.882 -3.155,-11.602 -2.782,-8.72 -4.135,-13.149 -1.353,-4.43 -1.954,-6.533 -0.601,-2.103 -1.144,-4.259 -0.542,-2.156 -0.902,-3.323 -0.359,-1.167 -0.875,-3.497 -0.515,-2.33 -0.387,-4.68 0.099,-0.277 0.727,0.554 0.628,0.832 2.038,3.798 1.41,2.965 2.912,6.542 1.501,3.576 3.872,9.354 2.371,5.778 4.991,12.152 2.621,6.375 4.319,10.524 1.698,4.149 3.551,7.487 0.944,-0.585 -1.918,-8.712 -2.863,-8.128 -4.621,-13.15 -1.758,-5.021 -2.731,-7.7 -0.973,-2.678 -1.928,-5.595 -0.955,-2.917 -1.521,-4.684 -0.567,-1.767 -1.592,-5.269 -1.025,-3.502 -1.131,-9.974 1.082,-0.162 4.039,5.824 2.956,5.986 5.122,11.426 2.167,5.441 3.886,9.632 1.719,4.192 2.832,6.923 1.112,2.732 2.751,4.628 1.004,-0.334 -1.215,-6.217 -2.22,-5.884 -3.554,-9.406 -1.335,-3.521 -1.892,-5.134 -0.558,-1.613 -1.727,-4.863 -1.169,-3.25 -1.721,-5.518 -0.553,-2.267 -0.604,-4.206 0.914,0.159 2.11,2.638 1.197,2.478 2.092,4.246 0.896,1.767 3.668,8.09 2.773,6.322 7.317,15.576 h 0.142 q 0.132,-0.521 0.115,-0.802 -0.016,-0.282 -0.016,-0.703"
+           id="STROKE_9cc1ad25-140a-4295-98a6-36e20dfca959"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.70599985;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 488.18,395.261 q 0.129,0.727 5.149,13.597 h 0.019 q -0.002,-0.663 -1.594,-4.926 -1.593,-4.262 -3.637,-9.856 -2.044,-5.594 -3.313,-9.01 -1.27,-3.416 -3.889,-10.269 0.186,0.052 0.92,1.523 0.735,1.471 1.423,2.929 0.689,1.459 1.577,3.396 0.887,1.938 1.674,3.67 0.788,1.733 1.829,4.049 1.04,2.315 2.061,4.662 1.02,2.346 2.038,4.507 1.018,2.161 2.581,5.215 1.563,3.055 2.653,5.221 1.089,2.167 1.924,3.911 0.834,1.744 3.583,7.219 2.75,5.475 5.339,9.622 0.459,-0.164 -0.423,-2.789 -0.881,-2.626 -2.227,-6.032 -1.345,-3.407 -3.302,-8.127 -1.958,-4.72 -3.46,-8.357 -1.502,-3.637 -2.593,-6.294 -1.091,-2.658 -1.923,-4.692 -0.831,-2.034 -1.818,-4.457 -0.987,-2.423 -1.978,-4.978 -0.991,-2.556 -1.69,-4.514 -0.699,-1.958 -1.219,-3.399 -0.52,-1.442 -0.861,-2.369 -0.341,-0.927 -0.891,-2.444 -0.551,-1.517 -1.31,-3.624 -1.52,-4.215 -2.14,-9.089 1.025,-0.03 2.877,3.575 1.852,3.606 4.532,9.91 2.68,6.304 6.078,13.578 3.398,7.273 5.117,10.798 1.72,3.525 3.788,7.787 2.069,4.262 3.265,6.531 1.196,2.269 1.966,3.482 0.771,1.212 1.825,1.79 0.528,-0.239 0.475,-3.07 -0.052,-2.831 -1.713,-7.867 -1.661,-5.035 -3.786,-11.842 -2.126,-6.807 -3.053,-10.1 -0.928,-3.292 -1.55,-5.654 -0.621,-2.362 -0.283,-5.739 1.04,-0.888 4.571,6.774 3.532,7.662 7.516,15.868 3.984,8.206 7.748,14.948 0.473,-0.376 -0.849,-5.568 -1.322,-5.191 -2.632,-10.644 -1.309,-5.453 -1.748,-7.079"
+           id="STROKE_e2cea238-5206-4313-96ed-eaec17f1c745"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.76900005;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 483.239,331.631 q -0.012,-0.111 -0.004,0.279 0.009,0.389 -0.324,0.812 -0.333,0.423 -0.977,-0.054 -0.644,-0.478 -1.305,-1.603 -0.66,-1.126 -1.555,-3.075 -0.896,-1.95 -2.029,-4.399 -1.134,-2.449 -2.56,-5.663 -1.427,-3.214 -2.644,-6.166 -1.217,-2.953 -2.634,-6.53 -1.418,-3.577 -2.416,-6.371 -0.998,-2.793 -1.723,-6.605 0.315,-0.016 0.945,0.974 0.63,0.991 1.733,3.76 1.103,2.769 2.318,6.254 1.215,3.484 2.128,6.148 0.913,2.663 1.873,5.388 0.959,2.726 1.866,5.063 0.907,2.338 1.781,4.381 0.874,2.043 1.738,3.904 0.864,1.86 1.735,3.622 0.245,-0.081 0.237,-1.082 -0.009,-1 -0.272,-2.929 -0.264,-1.928 -0.665,-3.866 -0.402,-1.938 -0.94,-3.881 -0.538,-1.943 -0.938,-3.326 -0.399,-1.382 -0.659,-2.204"
+           id="STROKE_9e2c6edb-af2d-4c5c-b2ba-8ad1c0f6c692"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 522.154,304.875 q -1.509,1.072 -3.668,-3.404 -2.158,-4.476 -3.48,-7.518 -1.322,-3.042 -2.138,-4.845 -0.815,-1.802 -4.97,-8.906 -0.284,0.41 1.829,4.588 2.113,4.177 3.515,7.23 1.401,3.053 2.505,5.64 1.103,2.587 1.753,4.294 0.651,1.708 1.187,3.162 0.186,-0.268 -0.769,-4.159 -0.955,-3.891 -1.338,-5.074"
+           id="STROKE_a859cd2b-8485-4374-a9b3-a47f7a1ae43a"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 535.62,356.421 q 0.225,0.119 0.98,0.646 0.31,0.329 1.755,1.132 1.446,0.803 2.061,0.714 0.615,-0.09 0.691,-1.041 0.077,-0.95 -0.194,-2.064 -0.27,-1.114 -0.677,-2.383 -0.407,-1.269 -0.812,-2.435 -0.406,-1.165 -0.488,-1.668 -0.082,-0.503 -0.122,-1.224 -0.039,-0.722 -0.066,-1.452 -0.027,-0.731 -0.047,-1.507 0.379,0.22 0.877,1.389 0.497,1.169 0.497,1.279 -0.001,0.109 -0.119,0.039 -0.118,-0.07 0.178,0.465 0.297,0.535 1.301,2.325 l 0.082,0.006 q 0.184,-0.221 0.099,-1.383 -0.086,-1.162 0.367,-1.567 0.454,-0.405 1.048,-0.764 0.595,-0.36 0.502,-2.445 -0.093,-2.085 -0.446,-3.87 -0.354,-1.785 -0.507,-2.279"
+           id="STROKE_a1cb5f10-8b6f-437e-9e38-78941751ffd6"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 349.441,473.657 q 0.702,-0.014 5.476,-3.993 4.775,-3.979 8.183,-7.505 3.408,-3.527 7.197,-7.443 3.788,-3.916 6.919,-6.992 3.13,-3.075 7.012,-6.045 0.166,0.278 -1.686,1.98 -1.853,1.701 -3.833,3.203 -1.98,1.501 -3.519,2.726 -1.54,1.226 -6.841,4.745 -5.3,3.519 -8.781,5.53 -3.48,2.011 -5.741,3.152 -2.261,1.14 -3.731,1.771 -1.471,0.631 -3.739,1.042 -0.635,-0.276 1.716,-2.336 2.35,-2.06 5.909,-5.167 3.559,-3.106 5.92,-5.127 2.362,-2.021 5.323,-4.747 2.961,-2.726 5.127,-4.453 2.166,-1.727 5.306,-4.586 3.14,-2.859 4.656,-4.446 1.515,-1.588 2.721,-2.985 1.205,-1.398 1.495,-3.3 -0.86,-0.834 -4.909,0.678 -4.049,1.511 -7.29,3.224 -3.242,1.712 -5.27,2.719 -2.028,1.008 -5.975,3.091 -3.946,2.082 -8.371,3.407 0.001,-0.567 3.495,-2.703 3.494,-2.135 7.905,-5.353 4.411,-3.218 8.301,-6.034 3.89,-2.815 5.972,-4.274 2.082,-1.458 4.554,-2.985 2.472,-1.528 3.934,-2.36 1.461,-0.832 2.529,-1.786 0.124,-0.497 -4.386,1.682 -4.51,2.178 -8.757,4.92 -4.247,2.742 -9.373,5.918 -5.126,3.176 -9.719,5.712 0.383,-0.165 2.924,-1.632 2.54,-1.467 6.983,-4.312 4.442,-2.844 7.426,-4.765 2.983,-1.921 4.684,-2.73 1.7,-0.809 3.471,-1.507 1.772,-0.699 4.924,-0.721 0.443,0.856 -2.209,3.049 -2.652,2.194 -7.844,3.952 0.467,0.261 1.528,-2.116 1.061,-2.376 1.203,-2.816"
+           id="STROKE_e71aa746-0a25-4794-a0eb-95c86e056cdb"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 357.585,434.374 q 0.055,-0.254 0.246,1.144 -0.26,0.583 -3.262,-0.667 -3.003,-1.249 -4.632,-2.125 -1.63,-0.875 -2.94,-1.727 -1.311,-0.853 -2.063,-1.37 -0.753,-0.517 -1.128,-1.106 -0.376,-0.59 -0.434,-0.871 -0.058,-0.281 0.072,-0.652 0.131,-0.37 3.297,-0.453 3.167,-0.084 7.043,0.279 3.877,0.363 11.511,0.31 -0.005,-0.51 -5.882,-3.674 -5.876,-3.164 -7.241,-3.926"
+           id="STROKE_9614416e-f3c2-436d-acec-c86986bdd2f1"
+           style="opacity:1;fill:none;stroke:#0869ff;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_3"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 351.416,419.373 q -0.024,0 -0.123,0 0.666,0.428 10.411,1.265 -0.024,-0.09 -0.023,-0.049 0.001,0.041 0.028,-0.145 0.027,-0.186 -0.934,-0.749 -0.96,-0.563 -2.797,-1.099 -1.837,-0.536 -6.77,-0.789 0.166,0.401 3.246,1.275 3.08,0.874 5.904,1.093 2.824,0.22 4.185,0.214 1.361,-0.006 1.897,-0.159 0.535,-0.153 0.769,-0.557 0.235,-0.403 -0.201,-0.727 -0.435,-0.325 -2.225,-1.021 -1.79,-0.696 -3.702,-1.451 -1.911,-0.755 -11.134,-0.93 0.051,0.186 -0.091,0.119 -0.142,-0.067 0.333,0.322 0.475,0.389 2.895,1.432 2.419,1.043 6.073,1.38 3.654,0.338 5.407,0.326 1.753,-0.012 2.769,-0.005 1.016,0.006 1.208,-0.019 0.191,-0.026 0.688,-0.529 0.496,-0.504 -1.856,-1.695 -2.353,-1.19 -6.892,-2.055 -4.539,-0.865 -10.435,-0.559 -0.013,0.011 0.056,0.468 0.07,0.457 2.025,1.378 1.955,0.922 4.577,1.34 2.622,0.419 4.344,0.357 1.722,-0.062 2.569,-0.314 0.847,-0.252 1.204,-0.462 0.357,-0.209 0.661,-0.597 0.304,-0.388 0.129,-0.753 -0.174,-0.365 -0.45,-0.593 -0.276,-0.228 -0.516,-0.341 -0.24,-0.112 -0.52,-0.34 -0.279,-0.228 -3.177,-1.802 -2.898,-1.574 -12.045,-2.656 -0.016,0.197 -0.119,0.213 -0.103,0.017 0.92,0.994 1.023,0.976 3.762,2.07 2.738,1.094 4.355,1.522 1.617,0.429 2.476,0.604 0.859,0.175 2.399,0.344 1.54,0.17 3.175,-0.153 -0.193,-0.938 -0.125,-0.871 0.069,0.067 -1.888,-1.284 -1.957,-1.35 -4.341,-2.598 -2.384,-1.248 -8.167,-2.326 -0.264,0.81 3.227,2.71 3.492,1.899 12.461,2.523 0.665,-1.009 -3.023,-2.743 -3.687,-1.733 -6.893,-2.43 -3.205,-0.697 -5.928,-0.481 -0.592,0.455 1.236,1.506 1.828,1.05 4.861,1.886 3.032,0.836 5.843,1.228 2.811,0.393 5.146,-0.528 0.505,-0.586 -1.612,-1.725 -2.118,-1.14 -6.398,-2.66 -4.28,-1.52 -11.566,-1.851 -0.041,0.633 3.132,1.947 3.174,1.315 6.696,1.952 3.522,0.637 8.61,0.53 0.986,-0.862 -1.612,-2.817 -2.599,-1.955 -6.11,-3.461 -3.512,-1.505 -12.265,-3.373 -0.085,0.486 2.675,1.775 2.761,1.289 5.587,2.173 2.826,0.883 5.772,1.044 2.946,0.16 4.509,0.223 1.562,0.064 2.576,-0.232 1.013,-0.295 1.574,-0.621 0.56,-0.325 0.782,-0.655 0.221,-0.33 0.213,-0.569 -0.008,-0.239 -0.013,-0.585 -0.005,-0.345 -1.39,-1.211 -1.386,-0.867 -4.573,-1.984 -3.188,-1.118 -7.647,-1.447 -4.459,-0.329 -8.516,0.187 -0.115,1.071 3.931,2.329 4.046,1.258 7.509,1.718 3.462,0.46 7.065,0.706 3.603,0.245 5.488,0.211 1.885,-0.034 2.88,-0.293 0.996,-0.26 1.16,-0.608 0.164,-0.348 0.031,-0.784 -0.133,-0.436 -0.232,-0.642 -0.1,-0.206 -2.505,-1.553 -2.406,-1.347 -5.947,-2.426 -3.542,-1.08 -7.036,-2.009 -3.494,-0.929 -14.63,-1.142 -0.404,0.469 3.151,1.905 3.555,1.436 6.544,2.085 2.988,0.649 6.122,0.775 3.134,0.125 4.642,0.162 1.507,0.036 3.723,0.019 2.216,-0.018 3.617,-0.277 1.4,-0.259 2.057,-0.805 0.656,-0.545 -0.123,-1.654 -0.78,-1.109 -2.291,-2.051 -1.512,-0.942 -3.253,-1.789 -1.742,-0.847 -4.667,-1.932 -2.925,-1.084 -6.8,-1.805 -3.875,-0.721 -6.071,-0.855 -2.196,-0.135 -3.847,-0.201 -1.651,-0.066 -4.873,0.326 -0.754,0.285 2.878,1.796 3.632,1.51 9.495,2.313 5.863,0.802 9.816,0.913 3.952,0.111 5.777,0.135 1.825,0.023 2.804,-0.117 0.98,-0.14 1.503,-0.503 0.524,-0.364 0.651,-1.064 0.126,-0.7 -0.861,-1.601 -0.987,-0.902 -3.31,-2.12 -2.323,-1.218 -6.238,-2.581 -3.914,-1.363 -7.807,-2.105 -3.893,-0.742 -6.227,-0.791 -2.334,-0.049 -3.463,-0.084 -1.13,-0.034 -1.758,0.189 -0.629,0.224 -0.828,0.615 -0.2,0.39 0.367,0.882 0.567,0.491 1.207,0.81 0.641,0.319 1.879,0.959 1.238,0.64 5.89,1.4 4.653,0.76 8.707,0.834 4.054,0.075 6.041,0.091 1.987,0.015 3.177,-0.219 1.19,-0.234 1.863,-0.642 0.673,-0.409 0.751,-0.683 0.078,-0.274 0.062,-0.931 -0.016,-0.656 -1.55,-1.652 -1.534,-0.996 -2.945,-1.546 -1.41,-0.549 -2.302,-0.862 -0.891,-0.312 -3.356,-1.033 -2.465,-0.72 -6.714,-1.681 -4.248,-0.961 -7.667,-1.311 -3.42,-0.35 -6.198,-0.125 -0.507,0.583 1.942,2.072 2.449,1.488 5.817,2.453 3.368,0.966 6.638,1.373 3.269,0.407 5.674,0.482 2.404,0.075 4.317,0.193 1.912,0.118 3.179,-0.16 1.267,-0.277 1.842,-0.408 0.576,-0.132 1.114,-1.156 0.539,-1.023 -0.794,-2.437 -1.333,-1.414 -5.143,-2.893 -3.81,-1.479 -7.882,-2.759 -4.072,-1.28 -13.794,-1.996 -0.024,0.806 -0.05,0.695 -0.025,-0.112 0.21,0.224 0.236,0.335 1.257,1.12 1.021,0.785 2.358,1.277 1.336,0.492 2.316,0.888 0.98,0.395 4.824,1.193 3.844,0.798 7.119,0.968 3.275,0.17 5.206,0.227 1.93,0.058 2.987,-0.114 1.056,-0.171 1.439,-1.002 0.383,-0.831 -0.564,-1.772 -0.947,-0.941 -2.754,-1.965 -1.806,-1.024 -3.891,-1.896 -2.085,-0.871 -4.924,-1.769 -2.839,-0.898 -5.222,-1.39 -2.384,-0.493 -3.998,-0.801 -1.615,-0.309 -4.662,-0.582 -3.047,-0.272 -5.531,-0.292 -2.484,-0.02 -4.387,0.499 -0.611,0.873 2.412,2.445 3.022,1.573 6.981,2.367 3.96,0.794 6.92,1.122 2.96,0.329 6.191,0.413 3.231,0.085 5.437,-0.047 2.206,-0.131 3.465,-0.506 1.259,-0.375 1.863,-1.234 0.604,-0.86 -1.357,-2.119 -1.961,-1.259 -4.247,-2.086 -2.287,-0.826 -4.069,-1.273 -1.781,-0.448 -3.221,-0.769 -1.44,-0.321 -3.241,-0.62 -1.801,-0.3 -4.549,-0.618 -2.747,-0.318 -5.759,0.618 -0.463,1.395 2.516,2.546 2.979,1.15 5.874,1.556 2.895,0.407 6.109,0.46 3.214,0.053 5.154,0.022 1.94,-0.031 3.152,-0.452 1.211,-0.421 1.601,-0.767 0.389,-0.346 0.57,-1.008 0.181,-0.663 -0.098,-1.401 -0.279,-0.738 -2.405,-1.81 -2.126,-1.072 -3.978,-1.6 -1.852,-0.529 -4.85,-1.119 -2.999,-0.589 -4.559,-0.761 -1.559,-0.172 -2.427,-0.21 -0.867,-0.039 -1.567,0.07 -0.735,0.83 2.749,1.854 3.485,1.024 11.031,2.078 0.027,0.04 0.062,0.047 0.035,0.007 0.031,0.009 -0.004,0.003 -0.381,-0.305 -0.377,-0.307 -0.987,-0.544 -0.61,-0.237 -0.943,-0.333 -0.334,-0.097 -3.692,-1.361 -3.359,-1.263 -7.468,-2.083 -0.03,0.281 0.073,0.558 0.102,0.277 1.661,0.522 1.558,0.245 2.675,0.01 1.117,-0.235 1.642,-0.537 0.525,-0.302 0.723,-0.505 0.197,-0.204 0.109,-0.374 -0.088,-0.171 -0.343,-0.372 -0.256,-0.202 -0.591,-0.316 -0.335,-0.115 -2.502,-0.54 -2.167,-0.425 -4.035,-0.521 -1.868,-0.096 -2.927,-0.163 -1.059,-0.067 -2.001,0.255 -0.943,0.323 -1.276,0.772 -0.333,0.449 -0.566,1.377 -0.233,0.927 0.725,1.611 0.957,0.683 5.452,2.793 -1.148,-0.075 -0.888,-0.081 -0.695,-0.634 -7.18,-1.403 -0.354,-0.002 0.5,1.123 0.019,-0.06 -0.13,-0.252 -0.148,-0.191 -0.446,-0.514"
+           id="STROKE_6b126830-1068-45f2-af10-095c765a6e8e"
+           style="opacity:1;fill:none;stroke:#f1c25a;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_2"
+         style="opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 349.205,441.559 q -1.341,-0.037 1.711,0.145 3.053,0.182 4.884,0.186 1.831,0.005 2.9,-0.15 1.07,-0.156 1.201,-0.075 0.131,0.081 1.503,-0.341 1.371,-0.421 3.409,-0.87 0.411,-0.51 0.409,-0.487 -0.003,0.023 -0.031,0.047 0.532,-0.395 0.474,-0.361 -0.058,0.035 -0.004,-0.015 0.054,-0.049 0.357,-0.155 0.304,-0.106 0.88,-0.346 0.577,-0.241 0.935,-0.575 0.359,-0.334 0.719,-0.7 0.36,-0.365 0.366,-0.383 0.006,-0.018 10e-4,0.031 -0.006,0.05 0.105,-0.165 0.111,-0.214 0.159,-0.413 0.049,-0.199 0.03,-0.239 -0.019,-0.041 0.044,0.023 0.063,0.064 0.094,-0.528 0.031,-0.591 -0.009,-0.877 -0.04,-0.285 -0.282,-0.575 -0.242,-0.289 -0.27,-0.315 -0.027,-0.025 -0.046,-0.043 -0.019,-0.018 0.026,0.03 0.044,0.049 -0.158,-0.17 -0.202,-0.219 -0.346,-0.373 -0.145,-0.154 -0.062,-0.068 0.082,0.087 -0.279,-0.277 -0.36,-0.364 -0.347,-0.346 0.014,0.018 0.012,0.014 -10e-4,-0.004 0.003,0 0.004,0.004 -0.372,-0.314 -0.376,-0.317 -0.363,-0.303 -0.987,-0.838 -5.247,-1.608 -4.26,-0.77 -16.742,-0.635 0,0.018 0,0.276 0.207,0.003 1.055,0.095 0.848,0.091 2.827,0.319 1.978,0.229 4.728,0.128 2.749,-0.101 4.787,-0.494 2.037,-0.392 4.44,-1.148 2.403,-0.756 3.474,-1.226 1.071,-0.469 2.018,-1.252 0.948,-0.783 1.108,-1.313 0.16,-0.529 0.038,-0.723 -0.122,-0.194 -0.109,-0.185 0.012,0.009 0.042,0.028 0.03,0.019 -0.085,-0.058 -0.115,-0.078 -0.017,-0.018 0.099,0.061 -0.279,-0.174 -0.377,-0.235 -0.565,-0.355 -0.188,-0.12 -0.219,-0.138 -0.032,-0.017 0.061,0.011 0.092,0.029 -0.394,-0.115 0.118,0.086 1.013,-0.374 0.895,-0.46 1.54,-1.323 0.644,-0.862 0.981,-1.454 0.337,-0.592 0.414,-0.822 0.078,-0.23 0.151,-0.412 0.073,-0.183 0.157,-0.523 0.084,-0.34 0.214,-0.601 0.13,-0.261 0.317,-0.534 0.186,-0.273 0.306,-0.427 0.121,-0.153 0.105,-0.129 -0.015,0.024 0.119,-0.116 0.135,-0.139 0.338,-0.339 0.204,-0.199 0.158,-0.143 -0.045,0.056 0.234,-0.252 0.278,-0.307 1.539,-1.079 1.261,-0.771 2.647,-1.582 1.386,-0.811 2.086,-1.481 0.7,-0.67 0.955,-1.014 0.255,-0.344 0.879,-1.173 0.624,-0.828 1.255,-1.622 0.63,-0.795 1.099,-1.508 0.468,-0.714 1.093,-1.325 0.624,-0.61 1.074,-0.849 0.45,-0.239 0.335,-0.181 -0.116,0.059 1.032,-0.332 1.147,-0.391 2.305,-0.692 1.159,-0.301 1.815,-0.439 0.656,-0.139 0.716,-0.181 0.059,-0.042 0.307,-0.148 0.247,-0.105 0.792,-0.404 0.546,-0.299 0.892,-0.493 0.346,-0.195 0.76,-0.471 0.413,-0.276 0.918,-0.598 0.504,-0.322 1.289,-0.766 0.785,-0.443 1.313,-0.723 0.527,-0.279 0.612,-0.317 0.084,-0.037 1.488,-0.814 1.405,-0.777 3.789,-1.901 2.385,-1.125 3.729,-1.818 1.345,-0.693 2.696,-0.951 1.352,-0.258 2.433,-0.557 1.081,-0.298 1.511,-0.486 0.43,-0.187 2.231,-1.271 1.8,-1.084 2.922,-1.514 1.122,-0.43 2.017,-1.066 0.895,-0.637 1.335,-1.066 0.44,-0.43 0.935,-0.833 0.494,-0.403 0.96,-0.624 0.466,-0.22 1.066,-0.776 0.6,-0.555 0.883,-0.96 0.282,-0.405 0.41,-0.718 0.127,-0.313 0.08,-0.175 -0.047,0.139 0.076,-0.232 0.124,-0.371 0.31,-0.94 0.185,-0.569 0.312,-0.874 0.127,-0.305 0.303,-0.681 0.175,-0.377 0.201,-0.814 0.025,-0.436 0.986,-1.52 0.96,-1.083 1.795,-1.596 0.835,-0.514 1.428,-0.884 0.594,-0.37 0.694,-0.418 0.1,-0.048 0.226,-0.121 0.126,-0.072 0.347,-0.068 0.222,0.004 0.45,0.004 0.228,-0.001 0.187,0 -0.04,10e-4 -0.025,-0.01 0.015,-0.011 0.344,0.002 0.328,0.012 0.297,0.026 -0.031,0.013 0.293,0.127 0.324,0.115 0.285,0.092 -0.038,-0.023 0.219,0.043 0.257,0.065 0.514,0.125 0.256,0.061 0.469,0.106 0.213,0.045 0.405,0.089 0.192,0.043 0.252,0.044 0.061,0.002 0.096,0.024 0.035,0.022 0.034,-0.042 -0.002,-0.064 0.988,0.096 0.99,0.16 1.55,0.393 0.559,0.233 0.895,0.426 0.336,0.193 0.649,0.435 0.313,0.241 0.384,0.27 0.072,0.029 0.611,0.472 0.54,0.444 0.999,1.238 0.459,0.794 0.6,1.327 0.142,0.533 0.219,0.808 0.077,0.275 0.1,0.477 0.023,0.202 0.035,0.162 0.012,-0.04 0.115,0.798 0.103,0.838 0.104,1.8 0.002,0.962 0.004,1.64 0.002,0.677 -0.165,1.106 -0.168,0.43 -0.239,0.65 -0.07,0.22 -0.068,0.222 0.003,0.002 -0.505,1.376 -0.508,1.373 -0.7,2.325 -0.192,0.953 -0.138,1.626 0.054,0.673 0.086,0.786 0.031,0.113 0.029,0.089 -0.002,-0.024 0.131,0.213 0.132,0.238 0.113,0.178 -0.019,-0.06 -0.019,0.043 0,0.103 0.526,0.476 0.525,0.373 0.883,0.495 0.358,0.123 0.362,0.132 0.004,0.009 0.174,0.072 0.169,0.063 0.376,0.149 0.207,0.087 0.138,0.059 -0.069,-0.028 0.122,0.057 0.192,0.085 0.66,0.239 0.468,0.155 0.719,0.134 0.251,-0.022 0.454,-0.014 0.202,0.008 0.358,-0.004 0.156,-0.011 0.062,0.002 -0.094,0.013 0.259,0.001 0.352,-0.012 0.91,-0.24 0.558,-0.227 1.448,-0.92 0.89,-0.692 1.476,-1.352 0.586,-0.659 0.955,-0.98 0.369,-0.32 1.01,-0.516 0.641,-0.195 1.116,-0.367 0.475,-0.172 0.683,-0.234 0.208,-0.063 0.554,-0.142 0.346,-0.08 0.151,-0.037 -0.196,0.044 0.231,-0.072 0.428,-0.117 0.916,-0.173 0.488,-0.057 1.112,-0.474 0.624,-0.416 0.921,-0.731 0.297,-0.315 0.418,-0.456 0.12,-0.141 0.272,-0.351 0.153,-0.21 0.28,-0.234 0.127,-0.024 0.579,-0.926 0.452,-0.902 0.688,-1.776 0.236,-0.873 0.368,-1.393 0.132,-0.519 0.179,-0.744 0.047,-0.225 0.078,-0.38 0.031,-0.156 0.051,-0.351 0.02,-0.195 0.041,-0.18 0.022,0.015 -0.066,-0.177 -0.087,-0.191 0.67,-2.089 0.756,-1.897 1.369,-3.087 0.612,-1.189 0.767,-2.001 0.154,-0.812 0.235,-1.238 0.08,-0.426 0.152,-0.851 0.072,-0.426 0.056,-1.24 -0.017,-0.814 -0.184,-1.3 -0.167,-0.485 -0.595,-1.943 -0.427,-1.458 -1.18,-2.799 -0.752,-1.342 -2.143,-2.677 -1.391,-1.334 -2.234,-1.999 -0.843,-0.666 -1.602,-1.254 -0.76,-0.588 -1.34,-0.943 -0.58,-0.355 -0.86,-0.511 -0.28,-0.156 -0.537,-0.29 -0.258,-0.134 -1.05,-0.47 -0.792,-0.335 -1.205,-0.507 -0.413,-0.172 -0.457,-0.167 -0.043,0.006 -0.28,-0.143 -0.236,-0.149 -0.889,-0.259 -0.653,-0.111 -0.934,-0.148 -0.282,-0.037 -1.166,0.062 -0.884,0.099 -1.866,0.089 -0.981,-0.011 -1.417,-0.02 -0.436,-0.008 -0.908,-0.223 -0.472,-0.215 -0.825,-0.414 -0.353,-0.199 -0.653,-0.4 -0.3,-0.202 -0.438,-0.311 -0.138,-0.11 -0.157,-0.159 -0.018,-0.05 -0.005,0.01 0.014,0.061 -1.248,-1.084 -1.263,-1.145 -2.261,-3.144 -0.999,-1.999 -1.813,-3.357 -0.814,-1.359 -1.364,-2.096 -0.55,-0.737 -0.721,-1.117 -0.171,-0.38 -0.279,-0.518 -0.108,-0.138 -0.192,-0.299 -0.084,-0.161 -0.225,-0.349 -0.14,-0.188 10e-4,-0.037 0.142,0.151 -0.558,-0.661 -0.7,-0.812 -1.115,-1.278 -0.415,-0.466 -0.691,-0.803 -0.277,-0.337 -0.577,-0.629 -0.299,-0.293 -0.273,-0.268 0.025,0.025 0.038,0.035 0.014,0.011 -0.01,-0.014 -0.024,-0.025 -0.308,-0.292 -0.284,-0.267 -0.33,-0.294 -0.046,-0.026 -0.005,-0.004 0.041,0.022 -0.03,-0.023 -0.071,-0.046 -0.664,-0.612 -0.594,-0.567 -1.277,-0.822 -0.683,-0.255 -0.836,-0.278 -0.153,-0.022 -0.404,-0.081 -0.252,-0.06 -0.527,-0.115 -0.275,-0.056 -1.021,-0.059 -0.746,-0.003 -1.331,0.113 -0.586,0.116 -0.593,0.165 -0.008,0.048 -0.747,0.403 -0.739,0.355 -3.16,1.221 -2.42,0.867 -6.246,2.082 -3.825,1.216 -6.29,2.063 -2.464,0.848 -4.099,1.188 -1.635,0.34 -3.959,1.168 -2.324,0.827 -3.813,1.435 -1.488,0.608 -2.422,0.812 -0.934,0.205 -1.778,0.63 -0.844,0.426 -2.164,0.586 -1.32,0.16 -2.246,0.241 -0.927,0.082 -1.404,0.172 -0.476,0.09 -0.826,0.29 -0.35,0.2 -2.358,0.284 -2.008,0.085 -3.747,0.304 -1.74,0.219 -2.804,0.541 -1.064,0.322 -1.609,0.179 -0.545,-0.144 -2.079,0.048 -1.533,0.192 -3.236,0.579 -1.702,0.388 -2.592,0.553 -0.889,0.165 -3.601,0.844 -2.712,0.678 -4.443,0.898 -1.732,0.22 -3.482,0.348 -1.751,0.127 -3.653,0.199 -1.901,0.071 -3.133,-0.104 -1.232,-0.174 -1.796,-0.425 -0.565,-0.251 -0.884,-0.439 -0.319,-0.189 -0.655,-0.365 -0.335,-0.176 -0.576,-0.26 -0.24,-0.085 -0.32,-0.092 -0.08,-0.007 -0.044,-0.005 0.037,0.002 -0.229,-0.07 -0.266,-0.072 -0.955,-0.027 -0.688,0.046 -0.474,0.139 -0.29,0.672 -0.298,0.725 -0.008,0.052 -0.009,0.13 0,0.078 -0.04,0.055 -0.039,-0.022 -0.097,0.61 -0.058,0.632 -0.029,1.015 0.029,0.384 0.105,0.537 0.075,0.152 0.077,0.124 0.002,-0.028 0.002,-0.018 0,0.009 0.076,0.076 0.077,0.066 0.331,0.286 0.254,0.219 0.241,0.255 0.532,0.271 0.524,0.198 -0.14,0.335 3.176,-0.029 3.316,-0.364 5.869,-1.157 2.554,-0.794 4.305,-1.173 1.752,-0.379 2.447,-0.478 0.694,-0.098 3.095,-0.257 2.4,-0.159 4.747,0.264 2.346,0.424 4.445,1.145 2.1,0.72 4.827,0.927 0.05,0.208 -0.157,-0.477 -0.208,-0.684 -2.415,-1.358 -2.207,-0.673 -5.694,-1.31 -3.486,-0.637 -5.704,-0.879 -2.218,-0.242 -4.92,-0.286 -2.702,-0.044 -4.378,-0.018 -1.677,0.027 -2.576,0.427 -0.899,0.4 -1.777,0.48 -0.879,0.081 -1.471,-0.026 -0.592,-0.107 -0.876,-0.209"
+           id="STROKE_a10b4789-09e6-4af1-b781-0c12046cba59"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 346.399,426.431 q 0.825,0.257 0.581,0.184 0.413,-0.026 1.286,0.304 0.872,0.329 4.002,0.633 3.129,0.303 6.734,0.033 3.604,-0.27 7.37,-0.587 -0.611,-0.094 -5.56,-0.311 -4.949,-0.217 -7.735,-0.121 -2.787,0.096 -4.127,0.223 -1.341,0.128 -2.515,0.257 -1.174,0.128 -6.942,0.271 0.177,-0.071 3.113,0.163 2.937,0.234 6.573,-0.209 3.635,-0.444 7.007,-1.15 3.371,-0.707 5.267,-1.381 1.896,-0.674 2.878,-1.077 0.982,-0.404 1.484,-1.033 0.501,-0.629 0.439,-1.291 -0.062,-0.662 -0.204,-1.044"
+           id="STROKE_d658b499-43ca-44fd-a3ef-4f7a01d77516"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 362.489,423.263 q 0.268,-0.54 2.697,-1.947 2.428,-1.408 4.091,-2.374 1.662,-0.967 2.766,-1.988 1.103,-1.021 1.683,-2.246 0.579,-1.225 0.888,-1.784 0.309,-0.559 0.275,-1.195 -0.035,-0.637 -0.834,-0.975 -0.799,-0.339 -1.859,-1.51 -1.061,-1.171 -1.812,-2.196 -0.752,-1.026 -1.099,-1.576 -0.346,-0.55 -0.416,-0.864 -0.07,-0.315 -0.057,-0.254 0.014,0.061 -0.006,-0.278 -0.02,-0.339 0.004,-1.126 0.025,-0.787 0.028,-1.163 0.003,-0.376 0,-0.463 -0.003,-0.088 -0.037,-0.271 -0.033,-0.184 -0.068,-0.313 -0.034,-0.128 -0.088,-0.291 -0.054,-0.163 -0.11,-0.228 -0.057,-0.065 0.027,-0.344 0.085,-0.279 -0.566,-2.465 -0.65,-2.186 -1.247,-3.29 -0.597,-1.104 -0.793,-1.935 -0.195,-0.832 -0.276,-1.619 -0.081,-0.787 -0.053,-1.182 0.028,-0.395 0.101,-1.504 0.072,-1.109 -0.491,-3.307 -0.563,-2.198 -1.018,-4.725 -0.455,-2.527 -0.802,-4.087 -0.347,-1.561 -0.559,-2.129 -0.213,-0.569 -0.397,-1.335 -0.185,-0.765 -0.182,-1.213 0.004,-0.447 -10e-4,-0.786 -0.006,-0.339 0.069,-1.042 0.075,-0.702 0.036,-2.421 -0.038,-1.719 0.359,-3.101 0.398,-1.383 0.671,-2.31 0.273,-0.928 0.446,-1.454 0.172,-0.526 0.607,-0.707 0.434,-0.181 0.994,-0.441 0.56,-0.26 0.556,-0.997 -0.003,-0.737 -0.003,-0.999"
+           id="STROKE_7ebf25e2-0a05-4931-8adf-056e14a3798b"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 372.314,408.901 q 0,0.021 0,0.042 -0.628,-0.434 -1.328,-1.382 -0.7,-0.947 -1.534,-1.735 -0.835,-0.789 -2.242,-5.495 -1.407,-4.707 -2.431,-7.906 -1.025,-3.199 -2.053,-5.287 -1.028,-2.088 -1.751,-5.023 -0.722,-2.936 -1.161,-4.426 -0.439,-1.491 -0.672,-2.788 -0.234,-1.297 0.342,-3.209 0.576,-1.912 0.85,-3.291 0.273,-1.378 0.364,-2.372 0.091,-0.994 0.096,-2.33 0.005,-1.337 0.02,-1.974 0.015,-0.637 0.307,-0.848 0.292,-0.211 0.294,-0.206 0.002,0.004 0.031,-0.007 0.029,-0.011 0.051,-0.022 0.023,-0.01 -0.008,0.008 -0.031,0.017 0.128,-0.051 0.16,-0.069 0.399,-0.265 0.24,-0.195 0.183,-0.216 -0.058,-0.021 -0.026,-0.07 0.031,-0.049 0.025,0.01 -0.006,0.059 0.007,-0.298 0.014,-0.358 -0.014,-0.694 -0.028,-0.336 -0.071,-0.517"
+           id="STROKE_1e61a854-11c7-4e4d-9df7-180d7f59f734"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 376.688,408.341 q 0.169,0.513 1.607,2.005 0.037,0.011 -0.061,-0.123 -0.097,-0.133 -0.56,-0.78 -0.463,-0.647 -1.651,-2.004 -1.189,-1.357 -1.992,-2.164 -0.804,-0.807 -1.037,-1.972 0.705,-0.219 2.378,0.617 1.673,0.836 3.085,1.586 1.412,0.75 3.09,1.755 1.679,1.005 3.909,1.64 -0.455,-2.142 -11.139,-8.943 0.664,0.053 2.919,1.02 2.256,0.967 5.278,2.49 3.022,1.523 4.762,2.256 1.739,0.733 3.352,0.952 0.419,-0.011 -0.698,-1.22 -1.117,-1.21 -3.737,-2.888 -2.62,-1.679 -5.058,-3.107 -2.438,-1.429 -4.768,-4.037 0.342,-0.13 4.632,2.075 4.29,2.205 6.676,3.496 2.387,1.291 3.957,1.996 1.571,0.704 3.229,0.673 -0.109,0.264 0.095,-0.452 0.203,-0.716 -1.671,-2.524 -1.875,-1.808 -4.32,-3.692 -2.444,-1.884 -3.849,-3.051 -1.406,-1.167 -1.909,-2.497 -0.188,0.003 0.137,-0.107 0.324,-0.11 2.419,0.917 2.095,1.028 3.949,2.141 1.853,1.113 2.804,1.688 0.951,0.576 1.835,1.153 0.884,0.577 2.816,1.839 1.932,1.263 4.411,1.801 0.37,-0.231 -0.292,-2.004 -0.662,-1.773 -3.234,-4.153 -2.571,-2.379 -5.329,-4.303 -2.757,-1.925 -5.465,-3.857 -2.708,-1.933 -5.48,-4.308 -2.773,-2.376 -4.853,-5.028 0.253,-0.208 4.798,3.092 4.545,3.3 8.466,5.853 3.92,2.553 6.27,4.125 2.349,1.573 9.876,5.127 0.492,-0.72 -1.677,-2.748 -2.169,-2.028 -3.989,-3.424 -1.82,-1.397 -4.047,-2.972 -2.226,-1.576 -5.446,-3.888 -3.22,-2.312 -6.279,-4.57 -3.059,-2.258 -4.59,-3.427 -1.531,-1.169 -2.416,-2.004 -0.886,-0.836 -12.162,-8.506 0.026,0.327 5.426,4.518 5.4,4.192 11.041,8.278 5.64,4.085 9.056,6.517 3.416,2.432 8.059,5.493 4.643,3.061 9.972,5.967 0.231,-0.251 -0.568,-1.426 -0.799,-1.175 -5.397,-4.746 -4.599,-3.57 -7.395,-5.67 -2.796,-2.099 -5.542,-4.201 -2.746,-2.102 -4.41,-3.467 -1.665,-1.366 -5.814,-4.991 -4.15,-3.625 -8.325,-8.235 -0.096,-0.352 2.907,1.714 3.004,2.065 10.753,7.433 7.749,5.369 13.078,8.796 5.329,3.426 7.906,5.225 2.577,1.8 3.982,2.571 1.404,0.772 2.434,0.921 0.134,-0.71 -0.451,-1.993 -0.585,-1.283 -4.067,-4.288 -3.483,-3.006 -5.912,-4.715 -2.429,-1.709 -3.676,-2.598 -1.247,-0.888 -4.629,-3.332 -3.382,-2.445 -7.297,-5.219 -3.914,-2.774 -6.185,-4.504 -2.271,-1.73 -3.668,-2.89 -1.397,-1.161 -2.208,-1.854 -0.131,0.09 3.725,3.011 3.857,2.921 6.689,4.835 2.832,1.913 4.824,3.357 1.992,1.444 4.839,3.471 2.848,2.028 7.05,4.948 4.202,2.92 6.975,4.981 2.774,2.06 4.306,3.231 1.531,1.172 2.726,2.108 1.195,0.936 4.621,2.992 0.303,-0.713 -2.876,-3.499 -3.179,-2.787 -5.881,-4.714 -2.702,-1.928 -6.619,-4.66 -3.917,-2.731 -7.703,-5.849 -3.787,-3.118 -7.864,-6.848 -4.077,-3.73 -7.226,-7.562 0.064,-0.225 5.46,3.726 5.397,3.952 8.501,6.274 3.104,2.323 4.842,3.728 1.738,1.406 4.436,3.415 2.697,2.009 5.974,4.378 3.277,2.37 6.268,4.372 2.992,2.002 4.638,3.108 1.647,1.106 3.189,1.609 0.392,-0.539 -1.698,-3.113 -2.091,-2.573 -10.428,-8.529 -8.338,-5.956 -12.627,-9.029 -4.288,-3.072 -6.076,-4.447 -1.787,-1.374 -2.674,-2.135 -0.888,-0.762 -1.538,-1.352 0.083,0.222 7.86,5.528 7.776,5.306 15.439,9.808 7.663,4.501 11.953,7.05 4.291,2.55 7.57,3.81 0.322,-0.019 -0.306,-1.434 -0.629,-1.416 -3.147,-3.764 -2.517,-2.347 -6.886,-5.262 -4.369,-2.914 -8.193,-5.558 -3.825,-2.644 -6.227,-4.353 -2.402,-1.709 -5.132,-4.247 -2.729,-2.538 -4.834,-4.951 0.255,-0.04 3.589,2.377 3.335,2.417 5.907,4.048 2.572,1.63 6.873,4.265 4.301,2.634 7.106,4.505 2.805,1.87 16.507,9.4 0.696,-0.949 -5.266,-5.269 -5.963,-4.32 -9.817,-7.106 -3.854,-2.786 -6.48,-4.851 -2.625,-2.065 -5.197,-6.384 0.721,-0.362 6.682,3.84 5.961,4.202 9.776,7.022 3.816,2.82 5.872,4.338 2.055,1.517 5.557,3.834 3.502,2.316 6.875,4.335 0.022,-0.634 -2.339,-3.026 -2.361,-2.392 -4.854,-4.469 -2.494,-2.078 -4.046,-3.359 -1.553,-1.28 -3.732,-2.929 -2.179,-1.65 -5.658,-4.272 -3.479,-2.622 -6.837,-6.119 -3.358,-3.498 -5.827,-6.958 l 0.019,-0.039 q 0.299,-0.516 6.555,3.63 6.256,4.146 10.355,7.024 4.099,2.878 6.952,4.651 2.853,1.773 4.201,2.596 1.347,0.823 2.274,1.44 0.927,0.617 12.206,6.933 -0.15,-0.849 -3.714,-3.524 -3.564,-2.675 -5.707,-4.201 -2.143,-1.527 -3.406,-2.142 -1.263,-0.615 -5.349,-3.67 -4.086,-3.055 -6.176,-4.857 -2.089,-1.802 -3.031,-2.629 -0.942,-0.826 -1.623,-1.45 -0.682,-0.625 -2.729,-3.085 0.231,-0.608 5.892,2.978 5.66,3.585 10.097,6.815 4.438,3.229 7.18,5.208 2.743,1.979 9.813,6.426 0.331,-0.393 -1.219,-2.324 -1.55,-1.931 -4.129,-3.799 -2.58,-1.867 -4.658,-3.325 -2.079,-1.458 -7.529,-7.139 l 0.019,-0.022 q 0.559,-0.049 8.231,5.964 7.672,6.012 17.91,12.289 0.053,-1.383 -18.338,-11.833 0.007,0.529 13.397,16.971 -0.04,0.307 -3.692,-1.849 -3.651,-2.157 -5.838,-3.797 -2.187,-1.641 -3.336,-2.687 -1.15,-1.047 -2.42,-2.523 0.574,-0.118 4.717,3.327 4.143,3.446 7.031,6.014 2.888,2.568 4.389,5.302 -0.645,0.597 -5.266,-1.918 -4.621,-2.514 -9.586,-5.76 -0.156,0.547 2.363,3.404 2.518,2.857 4.318,5.36 1.8,2.503 2.87,4.834 0.056,1.384 -10.354,-5.378 -0.255,0.233 1.232,2.515 1.487,2.281 2.619,3.878 1.133,1.597 2.573,3.279 -0.751,0.185 -2.677,-1.202 -1.926,-1.387 -2.986,-2.562 -1.059,-1.175 -1.356,-1.536"
+           id="STROKE_18f4f969-49cb-49ba-8034-a79c3b7cbd29"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 435.462,354.624 q -0.726,-0.053 -8.342,-9.01 0.115,0.105 0.307,-0.135 0.191,-0.24 4.587,4.525 -0.23,0.249 -2.845,-1.157 -2.614,-1.406 -4.843,-2.389 -2.229,-0.982 -7.244,-1.325 -0.365,0.177 -0.026,1.199 0.339,1.022 1.758,2.009 1.42,0.987 2.08,2.248 0.32,0.054 -6.367,1.374 -6.687,1.32 -13.993,3.419 0.112,-0.047 -0.061,-0.285 -0.172,-0.237 1.197,-1.028 1.37,-0.791 2.454,-1.229 1.084,-0.438 2.872,-1.121 1.789,-0.684 13.416,-4.099 v -0.018 q -0.188,-0.283 -5.199,0.367 -5.011,0.651 -9.526,1.838 -4.515,1.186 -6.886,1.898 -2.37,0.711 -3.588,1.101 -1.218,0.389 -9.143,2.739 0.15,0.519 5.658,-1.236 5.507,-1.755 19.86,-3.1 -0.329,-0.013 -3.385,0.501 -3.056,0.515 -6.794,1.311 -3.738,0.796 -6.037,1.397 -2.299,0.601 -3.281,1.17 -0.983,0.569 -1.411,1.069 -0.429,0.5 -0.356,0.654 0.074,0.154 0.124,0.565 0.051,0.41 2.153,1.35 2.102,0.939 5.699,1.512 3.596,0.572 7.367,0.498 3.77,-0.075 5.659,-0.109 1.889,-0.035 4.623,-0.308 2.733,-0.273 4.907,-1.444 -0.274,-1.083 -5.941,-2.517 -5.667,-1.433 -9.61,-2.215 -3.942,-0.782 -12.551,-0.745 l -0.023,0.141 q 0.457,1.026 18.215,2.165 -0.1,-0.06 -0.34,-0.17 -0.241,-0.11 -0.624,-0.291"
+           id="STROKE_3595c78e-a8b4-400f-b444-5a05a3268b66"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 367.656,358.273 q 0,0.93 0.024,0.939 -0.816,0.497 3.746,4.312 -0.352,-0.389 -1.227,-2.751 -0.875,-2.362 -1.012,-2.826"
+           id="STROKE_c29e1873-0db5-461b-8e9d-4f72d1054329"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 457.967,385.596 q 0.194,0.68 0.179,0.499 0.366,0.486 0.265,0.319 0.322,0.049 0.302,0.06 0.038,0 0.142,0 0,0.022 0,0.043 -0.134,-0.025 -0.97,0.539 -0.836,0.565 -0.92,3.471 -0.143,-0.629 0.236,-1.056 0.38,-0.428 1.71,-0.148 0.286,0.266 0.032,0.415 -0.253,0.149 -0.619,0.342 -0.365,0.193 -0.558,0.297 -0.193,0.104 -0.109,0.078 0.084,-0.025 -0.789,0.338 -0.874,0.363 -2.042,1.77 -1.168,1.408 -2.311,4.221 0,-0.251 -0.021,-1.509 -0.021,-1.258 -0.064,-1.538"
+           id="STROKE_cb99324c-f2e9-45f3-900b-16f070dcf1b6"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 369.669,432.411 q 0,0.06 0,0.319 0.592,-0.105 0.359,-0.159 0.077,-0.928 0.057,-0.642 0.357,-0.759 0.23,-1.056 -0.127,-0.297 0.808,-1.587 0.936,-1.29 1.398,-1.589 0.462,-0.299 1.777,-1.583 1.316,-1.285 1.98,-3.077 0.664,-1.792 0.686,-2.533 0.021,-0.742 0.596,-1.654 0.575,-0.911 1.006,-1.434 0.431,-0.523 0.742,-0.889 0.312,-0.365 0.186,-0.219 -0.126,0.147 0.293,-0.667 0.419,-0.814 2.141,-2.044 1.722,-1.23 2.879,-2.025 1.157,-0.795 2.234,-1.631 1.078,-0.836 3.8,-2.531 2.723,-1.695 4.681,-2.622 1.958,-0.928 4.593,-1.572 2.635,-0.644 4.186,-1.01 1.551,-0.365 2.865,-1.206 1.314,-0.841 2.168,-1.704 0.854,-0.862 1.421,-1.439 0.567,-0.578 0.866,-0.942 0.299,-0.365 2.225,-1.554 1.926,-1.188 3.013,-1.769 1.088,-0.58 2.591,-1.748 1.503,-1.168 3.982,-2.28 2.478,-1.112 3.825,-1.797 1.347,-0.686 2.265,-1.486 0.919,-0.799 1.331,-1.143 0.413,-0.345 1.299,-0.702 0.887,-0.357 1.518,-0.526 0.632,-0.17 0.943,-0.27 0.312,-0.101 0.175,-0.107 -0.136,-0.006 1.42,-0.414 1.557,-0.408 3.221,-0.539 1.663,-0.131 2.928,-0.396 1.266,-0.264 1.771,-0.437 0.504,-0.173 0.791,-0.144 0.287,0.03 0.371,0.15 0.084,0.121 0.231,0.247 0.147,0.127 0.279,0.321 0.132,0.193 0.231,0.09 0.098,-0.102 0.923,1.253 0.825,1.356 1.094,2.274 0.269,0.918 0.751,1.405 0.482,0.488 1.396,0.849 0.914,0.361 1.708,0.436 0.794,0.074 1.215,-0.036 0.421,-0.11 0.726,-0.434 0.305,-0.323 0.922,-0.883 0.617,-0.56 0.877,-0.758"
+           id="STROKE_0d0602b9-f712-488a-96d8-75253d718152"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 444.693,397.266 q -0.059,0.159 -0.055,0.229 0.004,0.07 0.046,0.444 0.042,0.374 0.1,0.394 0.058,0.02 0.028,-0.021 -0.03,-0.041 0.182,0.196 0.212,0.238 1.035,0.672 0.824,0.435 2.331,0.477 1.507,0.043 2.314,-0.046 0.806,-0.089 1.198,-0.213 0.392,-0.125 1.012,-0.412 0.619,-0.288 1.214,-0.631 0.595,-0.342 1.292,-0.76 0.696,-0.419 1.32,-0.791 0.624,-0.372 1.026,-0.56 0.401,-0.188 1.341,-0.682 0.94,-0.495 1.834,-2.331 0.894,-1.835 1.15,-3.192 0.256,-1.357 0.318,-1.8"
+           id="STROKE_90bc9dbe-444f-446d-ab22-aba971c1b695"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 456.247,358.79 q -0.491,-0.056 -0.467,-0.056 -1.007,-0.293 -0.616,-0.106 0.391,0.187 -1.63,-0.485 -2.021,-0.672 -3.071,-1.249 -1.05,-0.577 -1.803,-1.111 -0.754,-0.534 -1.518,-1.447 -0.765,-0.913 -2.37,-3.122 -1.605,-2.209 -2.007,-2.691"
+           id="STROKE_7197d7e9-13b1-4095-887a-617a43140f08"
+           style="opacity:1;fill:none;stroke:#9ea6ad;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_4"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 351.132,405.252 q -0.008,-0.059 0.038,1.041 0.013,0.034 -0.003,-0.342 -0.016,-0.377 -0.035,-0.537"
+           id="STROKE_90e11b37-0696-4f87-9097-e84bcdc987e9"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <circle
+           r="3.4000001"
+           cy="375.27899"
+           cx="347.04199"
+           id="STROKE_f06507b4-0f35-4952-9f2c-b23d421abcaa"
+           style="opacity:1;fill:#010003;fill-opacity:1;stroke:#010003;stroke-width:0.1;stroke-opacity:1" />
+        <path
+           d="m 351.132,390.889 q -0.018,0 -0.283,0 0,-0.022 0,-0.043 -0.114,0.066 0.953,0.005 1.068,-0.061 2.471,-0.22 1.403,-0.158 2.567,-0.174 1.164,-0.017 2.351,-0.008 -0.019,0 -0.148,-0.03 -0.13,-0.03 -0.248,-0.09"
+           id="STROKE_9ed3f24f-70b0-434e-b377-94c8c7f25cc9"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 371.747,391.611 q -0.003,0.299 0.036,-2.245 0.04,-2.543 -0.607,-4.512 -0.647,-1.969 -0.789,-2.27"
+           id="STROKE_5e6abc61-7124-4aee-8470-844b5f9f5f1c"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_5"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 536.008,477.795 -0.171,0.16 q -0.126,-0.018 -2.821,0.604 -2.695,0.621 -4.247,0.87 -1.553,0.249 -2.728,0.521 -1.175,0.272 -1.221,0.309 -0.046,0.037 -2.019,0.538 -1.973,0.501 -5.018,0.736 -3.045,0.235 -4.85,0.246 -1.805,0.011 -2.674,0.073 -0.868,0.063 -1.208,0.086 -0.34,0.024 -1.581,0.087 -1.242,0.063 -1.608,0.086 -0.367,0.022 -1.307,0.08 -0.94,0.059 -2.815,0.078 -1.876,0.019 -3.323,0.038 -1.448,0.02 -3.936,-0.658 -2.488,-0.678 -3.656,-1.011 -1.167,-0.332 -2.353,-0.481 -1.185,-0.149 -1.985,-0.162 -0.799,-0.014 -1.068,-0.028 -0.269,-0.015 -0.326,0.024 -0.057,0.039 -1.413,-0.31 -1.356,-0.35 -4.085,-1.896 -2.729,-1.546 -4.226,-2.391 -1.497,-0.845 -3.323,-2.034 -1.827,-1.189 -3.078,-1.898 -1.25,-0.709 -1.811,-1.045 -0.561,-0.335 -1.129,-0.705 -0.568,-0.369 -2.277,-1.518 -1.71,-1.149 -3.437,-2.303 -1.727,-1.154 -2.418,-1.574 -0.691,-0.42 -2.828,-2.048 -2.138,-1.627 -3.066,-2.452 -0.928,-0.825 -2.01,-2.125 -1.082,-1.299 -1.605,-1.965 -0.523,-0.665 -0.824,-1.052 -0.301,-0.387 -0.467,-0.583 -0.166,-0.195 -0.462,-0.507 -0.297,-0.312 -0.343,-0.337 -0.045,-0.024 -2.366,-2.416 -2.321,-2.392 -3.829,-3.89 -1.509,-1.497 -2.63,-2.678 -1.121,-1.18 -2.009,-2.256 -0.888,-1.075 -1.941,-2.193 -1.053,-1.118 -1.741,-1.788 -0.689,-0.67 -1.364,-1.369 -0.675,-0.699 -2.195,-1.904 -1.519,-1.205 -2.49,-1.862 -0.97,-0.658 -1.591,-1.062 -0.62,-0.403 -1.021,-0.627 -0.402,-0.223 -0.442,-0.232 -0.04,-0.01 -1.987,-1.204 -1.947,-1.193 -3.34,-1.919 -1.394,-0.727 -2.728,-1.176 -1.334,-0.449 -2.266,-0.617 -0.932,-0.168 -1.226,-0.203 -0.294,-0.035 -1.131,-0.247 -0.836,-0.212 -2.04,-0.441 -1.205,-0.229 -2.013,-0.042 -0.808,0.186 -1.161,0.413 -0.353,0.226 -0.591,0.403 -0.239,0.177 -0.309,0.226 -0.069,0.049 -0.264,0.153 -0.196,0.104 -0.815,0.499 -0.62,0.395 -0.835,0.638 -0.215,0.244 -0.293,0.489 -0.078,0.245 -0.151,1.741 -0.074,1.496 -0.076,1.77 -0.002,0.274 0.035,1.379 0.037,1.106 0.141,1.739 0.104,0.633 0.158,0.981 0.054,0.348 0.128,1.16 0.075,0.812 0.115,1.442 0.04,0.63 0.276,2.812 0.236,2.183 0.189,6.399 -0.048,4.216 -0.015,6.692 0.032,2.476 -0.116,3.788 -0.148,1.313 -0.25,5.11 -0.102,3.796 -0.189,8.067 -0.086,4.271 -0.142,6.35 -0.056,2.078 -0.186,2.768 -0.13,0.689 -0.288,1.096 -0.159,0.406 -0.213,0.564 -0.054,0.157 -0.348,0.769 -0.294,0.612 -0.462,1.057 -0.167,0.446 -0.356,0.908 -0.189,0.462 -0.245,0.573 -0.055,0.111 -0.081,0.143 -0.026,0.032 -0.333,0.825 -0.308,0.792 -0.639,1.46 -0.331,0.669 -0.711,1.015 -0.38,0.346 -0.734,0.524 -0.355,0.178 -0.761,0.257 -0.407,0.079 -0.984,0.126 -0.576,0.046 -1.241,0.061 -0.664,0.016 -1.2,0.033 -0.535,0.017 -0.967,0.026 -0.432,0.008 -2.483,0.031 -2.05,0.023 -2.94,0.116 -0.891,0.094 -1.385,0.147 -0.494,0.054 -1.12,0.076 -0.625,0.023 -0.856,0.018 -0.231,-0.004 -1.635,0.065 -1.404,0.069 -3.997,0.072 -2.593,0.004 -3.931,-0.085 -1.337,-0.088 -2.109,0.035 -0.771,0.123 -1.375,0.257 -0.604,0.134 -1.623,0.248 -1.019,0.114 -2.267,0.277 -1.247,0.164 -1.851,0.233 -0.604,0.07 -0.625,0.078 -0.021,0.008 -1.424,0.069 -1.403,0.06 -3.056,0.156 -1.652,0.095 -3.574,-0.462 -1.921,-0.558 -3.465,-1.328 -1.545,-0.77 -2.647,-1.547 -1.102,-0.778 -1.492,-1.061 -0.39,-0.284 -2.251,-1.706 -1.86,-1.422 -2.897,-2.15 -1.036,-0.729 -2.275,-1.544 -1.24,-0.815 -2.198,-1.64 -0.959,-0.825 -1.745,-1.612 -0.786,-0.787 -2.678,-2.549 -1.892,-1.761 -2.742,-2.716 -0.851,-0.954 -1.216,-1.462 -0.365,-0.507 -0.488,-1.179 -0.123,-0.673 0.056,-1.191 0.18,-0.518 0.438,-0.866 0.257,-0.348 0.476,-0.62 0.219,-0.271 0.381,-0.452 0.162,-0.181 0.774,-1.122 0.612,-0.941 1.741,-2.426 1.129,-1.485 1.727,-2.188 0.599,-0.703 1.02,-1.149 0.422,-0.446 0.633,-0.638 0.21,-0.193 1.172,-0.806 0.961,-0.613 1.791,-1.078 0.83,-0.465 1.142,-0.637 0.311,-0.171 0.769,-0.407 0.459,-0.236 0.478,-0.238 0.019,-0.002 1.1,-0.589 1.081,-0.586 1.723,-1.17 0.643,-0.583 0.986,-1.005 0.343,-0.422 0.466,-0.586 0.123,-0.164 0.389,-0.551 0.266,-0.387 0.716,-1.047 0.449,-0.66 0.711,-1.047 0.262,-0.388 0.469,-0.742 0.206,-0.353 0.322,-0.628 0.115,-0.275 0.145,-0.309 0.03,-0.034 0.19,-0.606 0.16,-0.571 0.19,-1.169 0.03,-0.597 -0.123,-1.002 -0.154,-0.406 -0.349,-0.947 -0.196,-0.542 -0.328,-0.853 -0.132,-0.311 -0.353,-0.717 -0.222,-0.406 -0.231,-0.432 -0.01,-0.025 -0.242,-0.349 -0.232,-0.323 -0.563,-0.663 -0.33,-0.339 -0.727,-0.639 -0.397,-0.301 -0.973,-0.562 l -0.499,-0.14 q -1.204,-0.315 -1.246,-0.333 -0.043,-0.017 -0.301,-0.103 -0.258,-0.086 -0.823,-0.231 -0.566,-0.145 -1.2,-0.389 -0.634,-0.244 -1.106,-0.454 -0.472,-0.21 -1.103,-0.392 -0.63,-0.183 -1.747,-0.251 -1.117,-0.068 -2.828,-0.166 -1.711,-0.098 -1.995,-0.242 -0.284,-0.145 -0.294,-0.162 -0.009,-0.017 -0.228,-0.212 -0.219,-0.194 -0.578,-0.546"
+           id="STROKE_b4acac91-7231-4b8e-be6d-51507e92e025"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 334.327,438.16 -0.224,-0.038 q -0.392,-0.094 -0.384,-0.104 l -0.142,-0.078 q 0.052,-0.01 -1.655,-0.332 -1.707,-0.323 -2.432,-0.483 -0.726,-0.16 -1.45,-0.225 -0.724,-0.064 -1.612,-0.036 -0.889,0.028 -1.583,0.17 -0.695,0.143 -1.659,0.485 -0.963,0.343 -1.411,0.528 -0.449,0.185 -0.562,0.246 -0.114,0.061 -0.62,0.262 -0.506,0.201 -0.712,0.243 -0.207,0.042 -1.059,0.21 -0.852,0.168 -1.714,0.556 -0.863,0.387 -2.35,0.876 -1.488,0.49 -2.221,0.667 -0.733,0.177 -1.286,0.446 -0.553,0.269 -0.89,0.508 -0.337,0.239 -0.481,0.363 -0.143,0.124 -0.574,0.402 -0.431,0.278 -0.654,0.384 -0.223,0.107 -0.433,0.198 -0.209,0.091 -0.839,0.474 -0.629,0.384 -1.57,1.441 -0.941,1.058 -1.477,1.693 -0.537,0.635 -0.806,1.238 -0.269,0.602 -0.375,0.801 -0.106,0.2 -0.193,0.348 -0.087,0.148 -0.15,0.259 -0.062,0.112 -0.121,0.176 -0.058,0.064 -0.386,1.053 -0.327,0.989 -0.799,1.999 -0.471,1.009 -0.771,1.637 -0.3,0.628 -0.393,1.09 -0.093,0.462 -0.282,1.014 -0.19,0.552 -0.432,0.971 -0.241,0.42 -0.489,0.812 -0.248,0.393 -0.461,0.838 -0.213,0.444 -0.553,0.956 -0.339,0.512 -1.068,1.273 -0.728,0.761 -1.161,1.174 -0.433,0.413 -1.184,0.996 -0.751,0.583 -1.427,0.925 -0.676,0.342 -0.926,0.397 -0.25,0.056 -0.487,0.124 -0.236,0.068 -0.977,0.301 -0.741,0.233 -1.272,0.304 -0.532,0.071 -1.209,0.043 -0.678,-0.028 -1.045,-0.056 -0.368,-0.029 -1.101,-0.413 -0.734,-0.385 -1.147,-0.742 -0.412,-0.357 -0.593,-0.582 -0.181,-0.224 -0.423,-1.099 -0.241,-0.876 -0.529,-2.208 -0.288,-1.332 -0.576,-3.522 -0.287,-2.19 -0.39,-3.418 -0.102,-1.227 -0.003,-2.833 0.1,-1.606 0.423,-2.995 0.324,-1.389 0.78,-3.614 0.456,-2.225 0.999,-4.082 0.543,-1.856 1.007,-3.974 0.465,-2.118 0.932,-3.738 0.467,-1.62 0.825,-3.38 0.358,-1.76 0.464,-3.068 0.106,-1.309 0.148,-1.942 0.042,-0.633 0.145,-2.889 0.104,-2.256 0.246,-3.665 0.141,-1.409 0.386,-2.404 0.245,-0.994 1.207,-3.261 0.962,-2.267 1.758,-4.059 0.797,-1.792 1.341,-3.537 0.544,-1.746 1.116,-4.156 0.573,-2.411 0.971,-4.123 0.398,-1.712 0.83,-2.898 0.432,-1.185 0.718,-2.013 0.285,-0.828 0.633,-1.715 0.347,-0.888 1.305,-2.977 0.957,-2.09 1.583,-3.388 0.626,-1.299 0.856,-1.899 0.229,-0.601 1.265,-2.925 1.036,-2.325 1.65,-3.54 0.614,-1.215 1.09,-2.931 0.476,-1.715 0.848,-2.933 0.372,-1.217 1.684,-4.077 1.313,-2.86 1.813,-3.714 0.499,-0.855 0.796,-1.224 0.297,-0.368 0.92,-1.101 0.622,-0.733 2.019,-2.349 1.397,-1.616 2.172,-2.452 0.776,-0.837 1.066,-1.103 0.291,-0.266 0.944,-0.977 0.652,-0.711 1.47,-1.338 0.818,-0.626 1.545,-1.1 0.728,-0.474 1.503,-1.13 0.776,-0.655 1.746,-1.113 0.969,-0.458 1.601,-0.712 0.631,-0.254 1.908,-0.576 1.278,-0.322 2.282,-0.532 1.005,-0.21 2.712,-0.402 1.707,-0.191 2.905,-0.108 1.198,0.083 2.046,0.296 0.849,0.213 1.56,0.342 0.711,0.129 1.333,0.21 0.623,0.081 0.938,0.065 0.316,-0.016 0.464,-0.047"
+           id="STROKE_1d6fb721-7740-4a61-87a8-f0b69459f46b"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 347.983,442.283 q 0.013,0.012 0.095,0.241 0.083,0.228 0.13,0.337 0.065,0.07 -0.196,-1.111 -0.261,-1.18 -0.588,-2.15 -0.326,-0.97 -0.87,-2.385 -0.544,-1.414 -1.73,-3.709 -1.187,-2.294 -1.693,-3.183 -0.505,-0.89 -1.055,-2.2 -0.549,-1.31 -0.914,-2.535 -0.365,-1.226 -0.424,-1.731 -0.058,-0.505 -0.062,-0.978 -0.004,-0.473 0.007,-0.9 0.011,-0.427 0.02,-0.5 0.01,-0.074 0.011,-0.1 10e-4,-0.027 0.25,-0.685 0.248,-0.658 0.427,-1.165 0.178,-0.507 0.458,-1.039 0.279,-0.534 0.569,-0.991 0.29,-0.458 0.382,-0.616 0.092,-0.158 0.228,-0.419 0.136,-0.262 0.492,-0.885 0.356,-0.623 0.449,-0.992 0.092,-0.37 0.115,-0.67 0.023,-0.301 0.034,-0.471 0.011,-0.171 0.017,-0.99 0.007,-0.819 0.007,-0.997 -10e-4,-0.177 0.007,-0.207 0.007,-0.029 -0.026,-0.402 -0.033,-0.374 -0.378,-2.065 -0.346,-1.691 -0.535,-3.876 -0.19,-2.186 -0.213,-5.395 -0.023,-3.208 -0.224,-7.759 -0.201,-4.551 -0.338,-6.898 -0.136,-2.347 -0.108,-3.319 0.029,-0.972 -0.2,-6.032 -0.229,-5.061 -0.41,-8.017 -0.182,-2.956 -0.299,-4.385 -0.118,-1.429 -0.193,-2.489 -0.076,-1.059 -0.127,-1.587 -0.05,-0.528 -0.417,-3.573 -0.366,-3.046 -0.587,-6.616 -0.22,-3.571 -0.282,-3.822"
+           id="STROKE_dcd89aa2-2fa5-4415-8ed3-fb04f7cd2fa7"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 342.141,438.79 -0.048,-0.008 q -0.057,-0.107 -0.074,-0.122 -0.018,-0.015 -0.894,-1.504 -0.876,-1.488 -1.375,-2.464 -0.499,-0.976 -1.079,-1.987 -0.58,-1.01 -1.189,-2.304 -0.61,-1.294 -1.786,-4.551 -1.175,-3.258 -1.74,-4.782 -0.566,-1.523 -1.944,-6.703 -1.378,-5.179 -2.12,-7.849 -0.741,-2.67 -1.095,-3.994 -0.353,-1.325 -0.79,-3.376 -0.436,-2.052 -0.708,-3.267 -0.271,-1.216 -1.174,-5.448 -0.903,-4.232 -1.388,-7.085 -0.485,-2.853 -0.766,-5.027 -0.281,-2.174 -0.527,-4.812 -0.246,-2.638 -0.531,-7.234 -0.285,-4.596 -0.39,-6.977 -0.104,-2.382 -0.108,-3.004 -0.004,-0.621 -0.005,-1.709 -0.001,-1.088 0.762,-2.763 0.763,-1.674 0.882,-1.845"
+           id="STROKE_9e4ecdc3-338e-41e4-9820-cd08bd6a39aa"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 340.723,347.858 q 0.116,-0.17 0.117,-0.172 0.002,-10e-4 -0.146,-2.564 -0.147,-2.563 -0.236,-4.041 -0.088,-1.479 0.15,-2.751 0.238,-1.273 0.461,-1.916 0.223,-0.644 0.721,-2.026 0.497,-1.382 0.836,-2.678 0.339,-1.297 0.497,-2.522 0.158,-1.225 0.323,-1.986 0.165,-0.761 0.665,-2.368 0.5,-1.606 1.839,-4.565 1.339,-2.959 2.147,-4.668 0.809,-1.709 1.142,-2.576 0.333,-0.866 0.769,-1.789 0.435,-0.923 1.328,-2.626 0.893,-1.703 1.492,-2.888 0.599,-1.185 1.069,-3.379 0.47,-2.194 0.676,-4.204 0.207,-2.011 0.345,-3.304 0.138,-1.294 0.577,-2.66 0.439,-1.367 1.046,-3.92 0.608,-2.553 1.02,-4.083 0.411,-1.53 0.877,-3.386 0.466,-1.856 0.846,-2.951 0.379,-1.095 0.771,-2.143 0.391,-1.048 0.59,-1.707 0.199,-0.658 0.274,-0.815 0.074,-0.157 0.458,-1.689 0.385,-1.532 0.659,-2.659 0.273,-1.126 0.494,-2.189 0.221,-1.063 0.608,-2.406 0.387,-1.342 0.646,-2.081 0.258,-0.738 0.321,-1.055 0.063,-0.317 0.302,-1.207 0.238,-0.889 1.016,-2.733 0.777,-1.844 1.034,-2.611 0.258,-0.767 0.917,-1.721 0.659,-0.955 1.018,-1.485 0.359,-0.529 0.483,-0.726 0.124,-0.197 0.363,-0.598 0.239,-0.402 0.789,-1.257 0.551,-0.855 0.872,-1.406 0.322,-0.551 0.484,-1.078 0.162,-0.527 1.001,-2.02 0.839,-1.493 1.263,-2.269 0.424,-0.777 1.068,-1.474 0.643,-0.697 1.252,-1.184 0.609,-0.487 1.159,-0.788 0.55,-0.302 1.061,-0.319 0.077,0.054 0.342,0.415"
+           id="STROKE_bebbedc8-828a-4472-ba2e-60c84f40b8b3"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 387.278,345.428 -0.017,10e-4 q -0.013,0.066 -0.029,-0.653 -0.015,-0.719 0.231,-1.559 0.246,-0.84 0.434,-1.308 0.189,-0.467 0.55,-1.262 0.362,-0.795 0.687,-1.52 0.325,-0.725 0.854,-2.097 0.528,-1.372 1.021,-2.304 0.494,-0.932 0.911,-1.646 0.417,-0.714 1.626,-2.696 1.209,-1.983 2.151,-3.552 0.943,-1.57 1.45,-2.696 0.506,-1.127 0.759,-1.634 0.252,-0.507 0.454,-0.917 0.201,-0.41 0.85,-1.659 0.649,-1.248 0.892,-1.74 0.243,-0.492 0.587,-1.295 0.343,-0.802 0.508,-1.174 0.165,-0.372 0.317,-0.667 0.151,-0.294 0.247,-0.501 0.096,-0.207 1.127,-1.577 1.032,-1.37 2.389,-3.14 1.357,-1.77 2.247,-3.237 0.889,-1.467 2.19,-3.375 1.302,-1.908 2.242,-3.335 0.94,-1.426 1.432,-2.172 0.492,-0.747 1.338,-2.058 0.847,-1.31 1.459,-2.289 0.611,-0.978 1.946,-3.174 1.334,-2.196 1.997,-3.399 0.664,-1.203 1.013,-1.846 0.35,-0.644 0.648,-1.761 0.297,-1.118 0.339,-2.268 0.042,-1.151 -0.148,-2.097 -0.19,-0.945 -0.358,-1.412 -0.169,-0.466 -0.317,-0.844 -0.147,-0.378 -0.147,-0.395 0,-0.017 -0.262,-0.764 -0.262,-0.748 -0.56,-1.227 -0.299,-0.478 -0.522,-0.754 -0.224,-0.275 -0.41,-0.493 -0.186,-0.218 -0.2,-0.23 -0.015,-0.012 -0.391,-0.549 -0.376,-0.536 -1.465,-1.916 -1.089,-1.38 -2.079,-2.683 -0.989,-1.304 -1.453,-1.855 -0.465,-0.551 -0.878,-0.97 -0.413,-0.419 -1.073,-0.946 -0.66,-0.526 -2.025,-1.252 -1.366,-0.726 -3.004,-1.379 -1.638,-0.653 -3.387,-1.389 -1.749,-0.736 -2.565,-1.195 -0.816,-0.458 -1.763,-1.158 -0.947,-0.7 -1.791,-1.955 -0.844,-1.254 -1.297,-2.329 -0.453,-1.075 -1.003,-2.192 -0.549,-1.116 -0.923,-1.976 -0.374,-0.861 -0.756,-1.757 -0.382,-0.896 -1.874,-2.38 -1.491,-1.485 -2.479,-2.322 -0.989,-0.837 -1.92,-1.322 -0.932,-0.485 -1.835,-0.916 -0.903,-0.431 -1.993,-0.542 -1.091,-0.111 -2.053,0.128 -0.962,0.239 -1.646,0.346 -0.685,0.107 -1.072,0.09 -0.386,-0.018 -0.714,-0.359 -0.327,-0.341 -0.498,-0.589"
+           id="STROKE_cc6b3dfe-5c97-4d44-a76f-a9b90112a277"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 425.518,338.5 q -0.005,0.018 1.289,-0.207 1.295,-0.225 2.775,-0.719 1.481,-0.495 3.036,-1.368 1.555,-0.873 3.585,-1.954 2.031,-1.08 3.652,-2.235 1.621,-1.154 3.11,-2.587 1.489,-1.433 2.337,-2.26 0.847,-0.828 1.58,-2.106 0.733,-1.278 1.109,-2.114 0.375,-0.835 1.028,-1.968 0.653,-1.132 1.425,-2.718 0.772,-1.586 1.081,-2.78 0.309,-1.194 0.799,-2.534 0.491,-1.34 1.283,-3.247 0.792,-1.907 1.107,-2.846 0.314,-0.94 0.636,-2.04 0.322,-1.101 0.856,-2.402 0.534,-1.302 1.484,-4.227 0.95,-2.925 1.454,-5.639 0.505,-2.714 0.955,-4.937 0.45,-2.223 0.936,-3.785 0.486,-1.563 0.726,-2.977 0.24,-1.415 0.519,-2.67 0.28,-1.256 1.096,-3.626 0.815,-2.371 1.246,-3.627 0.43,-1.255 0.945,-2.162 0.515,-0.907 1.593,-4.645 1.078,-3.738 1.569,-5.952 0.491,-2.214 0.706,-3.146 0.214,-0.932 0.467,-1.765 0.253,-0.832 0.479,-1.623 0.225,-0.791 0.786,-3.525 0.561,-2.733 0.878,-4.464 0.318,-1.732 0.668,-3.009 0.349,-1.277 0.809,-2.362 0.46,-1.086 0.587,-1.334 0.128,-0.248 0.446,-0.643 0.318,-0.395 0.724,-0.536 l 0.286,0.1 q 0.1,0.006 0.225,-0.005 0.124,-0.011 0.305,-0.04 0.18,-0.03 0.353,-0.041 0.174,-0.012 0.357,-0.009 0.184,0.002 0.223,-0.017 0.038,-0.018 0.786,0.214 0.747,0.232 1.302,0.498 0.555,0.267 1.651,0.909 1.096,0.642 1.658,1.113 0.561,0.47 0.968,0.83 0.407,0.359 1.554,1.492 1.146,1.134 2.704,2.416 1.557,1.282 2.513,2.102 0.956,0.82 2.257,1.815 1.301,0.994 3.284,2.754 1.983,1.759 3.179,2.947 1.195,1.187 2.188,2.25 0.992,1.063 2.906,3.214 1.914,2.151 3.372,3.873 1.458,1.721 2.775,3.822 1.318,2.101 2.039,3.366 0.722,1.265 1.199,2.471 0.477,1.205 1.102,2.616 0.625,1.412 1.472,3.019 0.846,1.608 1.189,2.378 0.343,0.77 0.97,2.251 0.627,1.48 1.146,2.586 0.518,1.106 0.824,1.828 0.306,0.722 0.508,1.228 0.201,0.507 0.396,1.061 0.195,0.554 1.289,3.307 1.093,2.753 1.726,4.346 0.633,1.592 0.951,2.385 0.318,0.794 0.39,1.153 0.071,0.36 0.271,1.236 0.2,0.877 0.459,1.697 0.258,0.821 0.458,1.28 0.199,0.459 0.362,0.685 0.163,0.226 0.287,0.352 0.124,0.127 0.155,0.164 0.032,0.036 0.406,0.267 0.374,0.232 0.766,0.268 0.392,0.037 0.586,-0.016 0.193,-0.053 0.463,-0.195 0.269,-0.143 0.837,-0.646 0.569,-0.502 0.879,-0.794 0.31,-0.291 0.519,-0.473 0.209,-0.182 0.881,-0.705 0.671,-0.524 1.988,-1.626 1.317,-1.103 1.958,-1.63 0.642,-0.527 1.683,-2.041 1.041,-1.514 1.721,-2.605 0.679,-1.091 1.181,-3.332 0.502,-2.241 0.724,-3.752 0.222,-1.512 0.64,-4.014 0.419,-2.502 1.058,-5.445 0.639,-2.942 1.371,-5.2 0.733,-2.258 1.627,-4.376 0.894,-2.117 1.809,-4.049 0.916,-1.932 1.606,-3.071 0.691,-1.14 1.261,-1.831 0.57,-0.69 1.274,-1.47 0.704,-0.779 1.377,-1.375 0.674,-0.596 1.749,-1.139 1.075,-0.542 1.792,-0.764 0.717,-0.222 1.334,-0.551 0.025,-0.087 -0.005,-0.162 -0.03,-0.074 -0.184,-0.27"
+           id="STROKE_ff350931-7a65-425b-9f33-f898e97158d6"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 538.562,477.616 0.091,0.007 q 0.259,-0.305 0.015,-7.7 -0.244,-7.394 -0.135,-12.707 0.109,-5.312 0.281,-8.232 0.172,-2.92 0.524,-5.258 0.352,-2.339 1.322,-6.698 0.969,-4.359 1.458,-6.633 0.489,-2.275 1.822,-5.566 1.334,-3.292 2.507,-7.038 1.174,-3.747 2.155,-6.293 0.981,-2.546 1.426,-3.797 0.445,-1.251 1.464,-4.924 1.02,-3.673 2.52,-8.115 1.5,-4.443 2.236,-6.589 0.735,-2.146 1.161,-3.887 0.426,-1.742 0.889,-2.95 0.463,-1.209 1.106,-7.264 -0.044,-0.346 -0.053,-0.419 -0.009,-0.072 -0.166,-0.259 -0.156,-0.186 -0.255,-0.208 -0.098,-0.022 -0.15,-0.053 -0.053,-0.032 -0.524,0.122 -0.471,0.153 -0.848,0.544 -0.377,0.391 -0.639,0.719 -0.261,0.328 -0.408,0.474 -0.146,0.146 -0.16,0.174 -0.015,0.029 -0.418,0.328 -0.404,0.299 -1.336,1.763 -0.933,1.463 -2.294,4.388 -1.362,2.925 -1.986,4.366 -0.625,1.442 -1.016,2.634 -0.39,1.193 -2.677,6.3 -2.287,5.106 -3.827,8.313 -1.54,3.208 -3.246,5.655 -1.707,2.447 -2.564,3.654 -0.857,1.206 -1.473,1.846 -0.617,0.639 -1.537,0.722 -0.921,0.082 -1.29,-0.038 -0.369,-0.12 -0.589,-0.284 -0.22,-0.164 -0.524,-0.712 -0.304,-0.548 -0.374,-3.165 -0.071,-2.618 0.17,-4.655 0.241,-2.037 0.825,-4.285 0.584,-2.247 0.948,-3.864 0.364,-1.616 0.57,-3.042 0.207,-1.427 0.477,-3.301 0.27,-1.873 1.255,-7.212 0.984,-5.338 1.532,-8.506 0.548,-3.169 1.579,-7.136 1.03,-3.967 2.139,-7.455 1.108,-3.488 2.191,-7.037 1.082,-3.549 2.586,-7.288 1.504,-3.738 3.051,-9.784 1.547,-6.046 2.323,-9.507 0.775,-3.46 1.109,-5.19 0.333,-1.73 0.899,-5.492 0.565,-3.761 2.002,-9.216 1.437,-5.454 2.326,-8.842 0.89,-3.389 1.757,-10.279 0.868,-6.89 1.188,-10.389 0.32,-3.498 0.475,-5.038 0.156,-1.539 0.217,-2.409 0.061,-0.87 0.199,-3.426 0.139,-2.556 0.159,-5.064 0.021,-2.508 -0.146,-4.002 -0.166,-1.495 -0.353,-2.099 -0.186,-0.605 -0.299,-0.802 -0.112,-0.196 -0.227,-0.313 l -0.149,0.017"
+           id="STROKE_87ed0410-7f26-4d27-9e58-a6b8e9991bbf"
+           style="display:inline;opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_8"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 278.413,141.232 -0.069,-0.016 q -0.033,-0.279 -0.215,4.893 -0.181,5.172 -0.396,8.142 -0.216,2.97 -0.107,4.735 0.11,1.764 0.386,3.582 0.276,1.818 0.448,3.214 0.172,1.396 0.429,3.23 0.257,1.833 0.998,3.355 0.741,1.521 2.532,3.51 1.792,1.989 3.048,3.401 1.256,1.412 2.069,2.364 0.813,0.951 1.204,1.372 0.391,0.42 0.725,0.746 0.333,0.326 0.684,0.67 0.35,0.343 1.934,1.581 1.584,1.238 3.441,2.271 1.858,1.032 4.852,1.512 2.994,0.479 5.121,0.437 2.127,-0.042 3.42,-0.048 1.292,-0.006 2.931,-0.414 1.638,-0.408 4.042,-2.183 2.403,-1.775 4.349,-3.16 1.946,-1.385 4.31,-3.86 2.364,-2.475 3.38,-3.879 1.017,-1.405 3.376,-4.548 2.358,-3.144 4.959,-6.438 2.602,-3.294 4.159,-5.28 1.558,-1.986 3,-5.166 1.442,-3.181 2.597,-7.973 1.155,-4.791 1.6,-7.664 0.445,-2.872 0.498,-3.856 0.053,-0.984 0.172,-2.929 0.119,-1.946 -0.46,-4.414 -0.579,-2.468 -1.192,-3.793 -0.614,-1.326 -1.992,-3.08 -1.378,-1.753 -4.104,-3.956 -2.725,-2.203 -4.738,-3.651 -2.013,-1.448 -4.833,-1.963 -2.819,-0.515 -6.61,-0.611 -3.792,-0.096 -6.272,-0.039 -2.48,0.056 -9.071,2.886 -6.591,2.83 -10.132,4.282 -3.541,1.452 -5.564,2.404 -2.023,0.952 -4.823,4.101 -2.8,3.149 -5.523,7.588 -2.724,4.439 -4.326,7.65 -1.601,3.212 -2.334,6.2 -0.733,2.989 -0.721,6.12 0.011,3.13 0.262,5.583 0.25,2.453 2.651,6.516 2.4,4.062 5.211,7.521 2.811,3.458 4.281,5.309 1.471,1.85 2.793,3.592 1.323,1.741 2.762,3.599 1.44,1.858 3.418,3.227 1.978,1.369 5.168,1.933 3.19,0.565 5.903,0.488 2.714,-0.078 5.022,-1.194 2.307,-1.116 3.888,-2.412 1.581,-1.297 3.571,-4.351 1.991,-3.054 3.245,-6.045 1.254,-2.991 1.472,-6.555 0.217,-3.564 0.13,-5.451 -0.088,-1.886 -0.482,-3.675 -0.395,-1.789 -1.909,-4.908 -1.514,-3.118 -2.533,-4.571 -1.018,-1.453 -2.484,-3.043 -1.466,-1.59 -2.888,-2.941 -1.422,-1.351 -4.958,-3.252 -3.535,-1.901 -5.625,-2.827 -2.09,-0.927 -4.288,-1.454 -2.198,-0.528 -4.425,-0.622 -2.226,-0.093 -4.102,0.406 -1.876,0.5 -2.982,1.053 -1.105,0.553 -3.386,2.284 -2.281,1.731 -4.161,3.914 -1.881,2.183 -2.638,3.945 -0.757,1.762 -0.98,3.254 -0.223,1.493 -0.11,2.957 0.113,1.463 0.649,3.094 0.535,1.63 3.181,4.991 2.646,3.362 5.801,5.966 3.155,2.604 5.298,4.066 2.143,1.462 5.287,3.004 3.144,1.542 6.404,2.273 3.26,0.731 7.064,0.946 3.803,0.215 7.32,-0.419 3.516,-0.634 6.038,-1.7 2.522,-1.065 3.892,-2.068 1.369,-1.003 2.466,-2.525 1.096,-1.522 1.239,-3.991 0.142,-2.469 -0.256,-4.42 -0.398,-1.952 -1.707,-4.88 -1.309,-2.928 -3.873,-6.221 -2.564,-3.293 -5.562,-5.885 -2.998,-2.593 -5.328,-4.143 -2.33,-1.551 -4.052,-2.603 -1.721,-1.052 -4.956,-2.684 -3.235,-1.633 -6.613,-2.532 -3.378,-0.9 -5.325,-1.086 -1.947,-0.186 -3.921,-0.269 -1.975,-0.083 -4.216,0.478 -2.242,0.561 -3.567,1.282 -1.326,0.72 -2.928,2.249 -1.601,1.529 -2.294,3.289 -0.693,1.76 -0.924,3.873 -0.232,2.113 0.414,4.812 0.646,2.699 3.228,6.429 2.582,3.729 6.206,7.168 3.623,3.439 7.161,5.834 3.537,2.394 6.51,3.843 2.972,1.449 6.572,2.097 3.599,0.647 6.243,0.595 2.643,-0.051 4.649,-0.676 2.007,-0.624 3.723,-1.657 1.717,-1.033 2.504,-2.453 0.788,-1.42 0.972,-3.204 0.184,-1.784 -0.421,-3.598 -0.606,-1.815 -2.576,-4.408 -1.971,-2.594 -4.926,-5.067 -2.955,-2.472 -6.926,-4.813 -3.972,-2.34 -7.223,-3.733 -3.25,-1.394 -6.029,-1.928 -2.779,-0.535 -4.59,-0.511 -1.811,0.024 -3.269,0.792 -1.457,0.767 -2.866,2.735 -1.408,1.968 -1.933,4.59 -0.524,2.623 -0.376,4.627 0.148,2.004 1.645,4.554 1.497,2.55 4.027,4.915 2.531,2.365 5.812,4.214 3.282,1.85 6.15,2.857 2.869,1.007 6.358,1.406 3.488,0.4 6.448,0.105 2.959,-0.295 6.485,-1.617 3.526,-1.323 6.279,-2.993 2.752,-1.671 4.509,-3.309 1.757,-1.638 2.866,-3.758 1.11,-2.12 1.155,-4.382 0.045,-2.261 -1.043,-4.875 -1.087,-2.614 -3.576,-5.461 -2.489,-2.848 -4.757,-4.626 -2.269,-1.778 -6.279,-4.19 -4.01,-2.411 -7.647,-4.069 -3.638,-1.657 -7.116,-2.349 -3.478,-0.691 -5.724,-0.79 -2.247,-0.098 -4.135,0.298 -1.888,0.395 -3.37,1.436 -1.482,1.04 -2.575,2.833 -1.093,1.794 -1.309,3.879 -0.216,2.086 0.492,4.128 0.708,2.042 3.41,4.658 2.702,2.615 6.498,5.027 3.796,2.413 7.195,3.684 3.399,1.271 5.107,1.747 1.708,0.476 5,0.812 3.292,0.335 7.151,0.036 3.859,-0.298 7.657,-1.647 3.798,-1.348 6.413,-2.82 2.615,-1.471 4.216,-2.909 1.601,-1.438 2.383,-3.228 0.782,-1.79 0.851,-3.517 0.07,-1.728 -1.144,-3.917 -1.213,-2.188 -3.825,-4.294 -2.613,-2.107 -5.305,-3.538 -2.692,-1.43 -6.782,-2.979 -4.09,-1.55 -8.089,-2.299 -3.999,-0.75 -7.244,-0.929 -3.244,-0.179 -6.247,0.544 -3.002,0.722 -4.588,1.407 -1.585,0.684 -2.812,1.423 -1.227,0.738 -2.53,1.947 -1.303,1.21 -2.204,3.06 -0.9,1.849 -1.013,3.849 -0.113,2 0.59,4.016 0.703,2.016 2.939,4.396 2.235,2.379 5.426,4.389 3.19,2.009 5.391,3.081 2.202,1.071 5.355,1.704 3.153,0.632 5.015,0.744 1.862,0.112 4.428,0.044 2.565,-0.068 5.756,-1.183 3.192,-1.114 5.18,-2.522 1.987,-1.408 3.138,-2.805 1.151,-1.397 1.745,-2.819 0.595,-1.422 0.601,-3.564 0.006,-2.142 -0.311,-3.477 -0.317,-1.336 -1.775,-3.912 -1.457,-2.577 -3.825,-4.933 -2.367,-2.357 -4.741,-3.954 -2.374,-1.596 -4.872,-2.74 -2.498,-1.145 -4.544,-1.934 -2.046,-0.789 -5.188,-1.305 -3.143,-0.515 -6.347,-0.568 -3.204,-0.053 -6.732,1.069 -3.528,1.122 -5.881,2.287 -2.352,1.165 -4.031,2.551 -1.679,1.387 -2.366,2.864 -0.687,1.478 -0.697,2.808 -0.01,1.33 1.04,3.251 1.05,1.921 3.607,3.951 2.557,2.03 5.703,3.47 3.146,1.441 6.375,2.127 3.229,0.685 6.465,0.854 3.235,0.168 7.13,-0.499 3.895,-0.667 7.37,-2.046 3.476,-1.379 5.693,-2.917 2.218,-1.538 3.197,-2.486 0.98,-0.947 2.041,-2.415 1.061,-1.468 1.505,-3.9 0.445,-2.431 0.356,-4.239 -0.089,-1.808 -1.221,-3.931 -1.132,-2.123 -3.548,-4.092 -2.416,-1.968 -5.828,-3.578 -3.412,-1.609 -6.815,-2.489 -3.403,-0.879 -7.071,-1.09 -3.668,-0.212 -6.282,0.059 -2.614,0.271 -4.678,1.114 -2.064,0.844 -3.364,1.966 -1.301,1.122 -1.957,2.23 -0.655,1.107 -0.993,1.981 -0.338,0.874 -0.474,2.398 -0.136,1.525 -0.023,3.143 0.113,1.618 1.751,4.578 1.639,2.96 4.215,5.713 2.576,2.754 4.789,4.474 2.214,1.721 3.423,2.565 1.208,0.845 3.647,2.146 2.438,1.301 5.783,1.905 3.344,0.604 6.348,0.566 3.003,-0.039 5.769,-0.835 2.766,-0.796 4.928,-1.942 2.163,-1.146 3.603,-2.349 1.441,-1.202 2.346,-2.751 0.906,-1.55 1.193,-3.454 0.286,-1.904 -0.099,-3.564 -0.386,-1.66 -2.01,-3.6 -1.623,-1.941 -4.431,-3.674 -2.809,-1.733 -6.949,-2.784 -4.14,-1.051 -6.861,-1.386 -2.721,-0.335 -5.572,-0.16 -2.851,0.175 -4.503,0.402 -1.651,0.228 -4.381,1.409 -2.73,1.181 -4.583,2.33 -1.853,1.15 -3.817,3.036 -1.964,1.885 -3.045,3.16 -1.081,1.274 -1.704,3.192 -0.623,1.917 -0.573,3.785 0.051,1.868 1.192,3.871 1.142,2.003 2.943,3.485 1.802,1.482 3.249,2.272 1.447,0.789 3.845,1.307 2.399,0.518 4.618,0.22 2.219,-0.298 3.738,-0.744 1.519,-0.446 3.544,-1.539 2.025,-1.094 3.793,-2.308 1.768,-1.214 3.63,-2.875 1.863,-1.661 3.344,-3.685 1.481,-2.024 2.103,-4.146 0.621,-2.122 0.559,-3.881 -0.063,-1.759 -0.942,-3.418 -0.879,-1.66 -3.069,-3.073 -2.189,-1.414 -4.173,-2.122 -1.983,-0.708 -4.815,-1.186 -2.833,-0.479 -5.254,-0.605 -2.422,-0.127 -4.832,0.39 -2.411,0.517 -5.369,2.493 -2.959,1.977 -5.731,5.186 -2.772,3.209 -4.073,5.206 -1.302,1.997 -2.68,4.661 -1.378,2.665 -2.063,6.019 -0.685,3.354 -0.741,6.422 -0.057,3.069 0.568,5.649 0.624,2.579 2.234,5.162 1.609,2.582 3.982,4.66 2.373,2.079 4.747,3.351 2.374,1.272 5.396,1.756 3.021,0.484 5.973,0.255 2.952,-0.229 6.097,-1.41 3.144,-1.181 6.021,-2.641 2.876,-1.459 5.977,-3.685 3.1,-2.227 5.041,-4.178 1.942,-1.952 3.331,-3.982 1.389,-2.03 1.898,-4.774 0.509,-2.743 0.433,-4.998 -0.075,-2.254 -1.313,-5.01 -1.238,-2.756 -3.341,-5.191 -2.102,-2.436 -4.578,-4.127 -2.475,-1.691 -6.039,-3.334 -3.563,-1.643 -7.25,-2.577 -3.688,-0.934 -6.644,-1.14 -2.956,-0.206 -5.923,-0.079 -2.968,0.127 -6.25,1.572 -3.283,1.446 -5.182,2.425 -1.9,0.979 -4.924,3.29 -3.024,2.312 -5.356,4.87 -2.331,2.557 -3.683,4.847 -1.352,2.289 -2.15,4.47 -0.797,2.18 -1.158,5.311 -0.362,3.132 0.037,6.068 0.4,2.936 2.058,6.146 1.658,3.21 4.034,5.991 2.375,2.781 4.47,4.619 2.095,1.838 4.546,3.099 2.451,1.261 3.914,1.877 1.462,0.616 5.078,0.962 3.616,0.346 6.506,0.189 2.89,-0.157 6.461,-1.134 3.571,-0.976 8.243,-3.072 4.673,-2.097 8.519,-4.487 3.847,-2.389 6.592,-4.916 2.744,-2.527 4.727,-5.108 1.982,-2.582 3.069,-5.257 1.086,-2.675 1.471,-6.188 0.385,-3.512 -0.261,-7.06 -0.646,-3.548 -1.503,-5.803 -0.858,-2.254 -2.126,-4.883 -1.269,-2.63 -3.145,-5.66 -1.876,-3.03 -4.751,-5.653 -2.876,-2.622 -4.919,-3.977 -2.043,-1.356 -4.831,-2.809 -2.788,-1.454 -5.644,-2.276 -2.855,-0.822 -5.805,-1.04 -2.949,-0.219 -6.11,0.346 -3.161,0.565 -7.235,2.802 -4.075,2.237 -7.348,4.863 -3.273,2.626 -5.663,5.466 -2.39,2.841 -3.454,4.773 -1.063,1.932 -1.891,3.685 -0.827,1.752 -1.57,5.084 -0.742,3.331 -0.753,5.923 -0.011,2.591 0.165,4.488 0.177,1.897 1.371,4.792 1.195,2.894 2.768,5.273 1.573,2.38 4.213,4.931 2.64,2.551 4.41,3.815 1.77,1.263 3.804,2.376 2.035,1.114 4.847,2.093 2.812,0.98 6.005,1.335 3.193,0.354 6.287,0.303 3.094,-0.051 7.026,-0.897 3.932,-0.847 7.991,-2.974 4.06,-2.128 6.101,-3.392 2.042,-1.264 4.649,-3.473 2.607,-2.21 5.005,-5.007 2.397,-2.796 3.753,-5.367 1.355,-2.57 2.037,-6.103 0.683,-3.533 0.554,-7.286 -0.129,-3.754 -1.316,-7.445 -1.187,-3.692 -2.937,-6.632 -1.749,-2.941 -3.345,-4.864 -1.596,-1.922 -4.525,-3.98 -2.929,-2.058 -4.76,-3.102 -1.832,-1.043 -4.454,-1.869 -2.622,-0.826 -5.1,-1.112 -2.478,-0.285 -5.137,0.455 -2.659,0.74 -4.018,1.486 -1.36,0.746 -3.232,2.077 -1.873,1.33 -3.37,2.948 -1.496,1.617 -2.443,3.709 -0.947,2.092 -1.116,4.556 -0.17,2.464 0.034,4.202 0.203,1.737 1.293,4.195 1.089,2.458 2.995,4.9 1.906,2.443 4.653,4.621 2.747,2.177 4.932,3.272 2.184,1.094 3.565,1.494 1.382,0.4 3.215,0.389 1.834,-0.011 2.983,-0.283 1.149,-0.271 2.165,-0.86 1.017,-0.588 1.887,-1.821 0.87,-1.233 1.059,-2.259 0.189,-1.025 -0.031,-2.376 -0.221,-1.351 -1.872,-3.159 -1.652,-1.809 -3.755,-3.114 -2.103,-1.305 -5.53,-2.67 -3.426,-1.366 -7.096,-1.887 -3.67,-0.521 -6.009,-0.494 -2.338,0.026 -4.243,0.531 -1.904,0.504 -3.749,1.917 -1.846,1.412 -2.883,2.562 -1.037,1.15 -2.179,3.694 -1.142,2.544 -1.635,4.768 -0.493,2.224 -0.613,5.258 -0.12,3.035 0.021,4.885 0.14,1.851 0.874,3.965 0.734,2.115 1.917,3.857 1.183,1.741 2.915,3.239 1.732,1.498 3.561,2.144 1.83,0.647 3.063,0.535 1.233,-0.112 1.86,-0.676 0.627,-0.564 0.969,-1.034"
+           id="STROKE_85fdbd35-952a-42ad-a257-abc08cc29d48"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:6.79699993;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 290.955,133.756 q 0.058,0.009 2.196,1.423"
+           id="STROKE_f727cf4e-4df0-4fe7-b3a5-98f0d31dad78"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 291.105,159.097 q 0.627,0.52 2.905,2.214 2.278,1.694 5.634,2.561 3.356,0.868 6.129,0.954 2.772,0.087 5.528,-0.08 2.756,-0.167 5.263,-1.007 2.506,-0.84 3.88,-1.705 1.374,-0.866 2.358,-1.962 0.984,-1.095 1.25,-2.302 0.265,-1.208 0.041,-2.407 -0.225,-1.198 -2.399,-2.83 -2.175,-1.631 -4.423,-2.543 -2.249,-0.913 -4.61,-1.679 -2.361,-0.767 -5.631,-1.548 -3.271,-0.782 -6.388,-1.054 -3.117,-0.272 -5.152,-0.155 -2.035,0.116 -3.775,0.877 -1.74,0.761 -2.77,1.846 -1.03,1.086 -1.491,2.318 -0.461,1.231 -0.074,2.581 0.388,1.349 0.802,2.015 0.415,0.666 2.235,2.023 1.821,1.357 4.158,2.244 2.338,0.888 5.7,1.156 3.362,0.267 5.473,0.001 2.111,-0.268 4.176,-1.237 2.065,-0.97 4.703,-3.087 2.637,-2.118 4.477,-6.775 1.84,-4.656 2.362,-6.43"
+           id="STROKE_fcbdd5eb-3177-4c70-b1dd-97e51d6f5cfc"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 317.403,498.856 q 0.097,0.011 0.444,0.201 0.347,0.19 0.437,0.432 0.089,0.241 0.144,0.479 0.054,0.238 -1.379,1.266 -1.433,1.029 -3.611,2.251 -2.178,1.222 -3.357,1.786 -1.178,0.563 -2.115,1.03 -0.936,0.466 -4.043,1.549 -3.106,1.083 -5.438,1.679 -2.331,0.596 -3.497,0.927 -1.166,0.33 -3.798,0.766 -2.632,0.437 -4.1,0.562 -1.468,0.125 -2.363,0.292 -0.894,0.166 -2.411,0.366 -1.516,0.2 -3.79,-0.097 -2.275,-0.296 -3.39,-0.599 -1.115,-0.304 -2.347,-0.342 -1.232,-0.037 -2.036,-0.024 -0.805,0.014 -1.167,-0.253 -0.362,-0.268 -0.398,-0.368"
+           id="STROKE_bd3dfbb3-a92e-4c75-924d-ec58604f9624"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 316.381,498.747 q 0.02,0 0.129,-0.01 -0.267,-0.213 -2.062,-0.045 -1.796,0.167 -4.061,0.684 -2.265,0.518 -3.753,0.843 -1.488,0.324 -2.292,0.484 -0.804,0.161 -4.428,1.127 -3.624,0.967 -6.867,1.918 -3.243,0.951 -6.886,1.739 -3.643,0.787 -5.45,1.072 -1.806,0.286 -3.617,0.68 -1.81,0.395 -2.813,0.766 -1.002,0.371 -2.522,0.982 -1.519,0.61 -2.595,1.003 -1.076,0.393 -2.965,0.609 -1.89,0.215 -3.126,0.253 -1.237,0.037 -1.874,-0.042 -0.636,-0.078 -1.019,-0.199 -0.384,-0.121 -0.648,-0.397 -0.265,-0.277 -0.257,-0.392 0.007,-0.115 -0.066,-0.444 -0.073,-0.329 0.243,-0.768 0.316,-0.44 0.747,-0.726 0.431,-0.287 0.695,-0.441"
+           id="STROKE_b6ae9991-00c1-43f6-80ca-dd5b955cc8ac"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 316.673,497.726 q -0.112,-0.053 -1.717,-0.147 -1.605,-0.095 -2.525,-0.224 -0.919,-0.13 -4.936,0.153 -4.017,0.282 -6.669,0.56 -2.651,0.278 -4.033,0.381 -1.382,0.102 -2.299,0.213 -0.917,0.111 -6.937,0.754 -6.021,0.643 -9.485,0.925 -3.465,0.281 -5.185,0.445 -1.72,0.164 -2.589,0.264 -0.868,0.101 -1.734,0.152 -0.866,0.052 -4.384,0.578 -3.519,0.526 -5.341,0.877 -1.821,0.352 -3.06,0.473 -1.239,0.122 -2.319,0.173 0.111,0.03 2.838,-0.595 2.727,-0.626 3.21,-0.77"
+           id="STROKE_a8f12e8c-f965-4d84-9e11-73ddbc28812f"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 312.866,491.165 q -0.032,-0.121 -0.569,-0.669 -0.536,-0.548 -2.437,-1.07 -1.901,-0.522 -3.452,-0.778 -1.55,-0.255 -3.813,-0.336 -2.262,-0.081 -3.48,-0.126 -1.218,-0.045 -4.947,0.036 -3.729,0.081 -5.651,0.223 -1.923,0.142 -2.951,0.246 -1.027,0.104 -2.109,0.179 -1.081,0.074 -4.351,0.561 -3.27,0.486 -5.597,1.013 -2.326,0.527 -4.534,0.878 -2.208,0.35 -3.325,0.465 -1.117,0.114 -2.218,0.14 -1.1,0.027 -2.127,0.071 -1.028,0.045 -1.967,-0.074 -0.939,-0.118 -1.485,-0.336 -0.546,-0.218 -1.034,-0.373 -0.489,-0.155 -1,-0.686 -0.511,-0.531 -0.539,-0.603"
+           id="STROKE_9656dcb6-b9b3-418c-84c5-1da5d7857ef9"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 315.197,496.303 q 0.129,0.084 -0.152,-0.11 -0.281,-0.194 -1.368,-0.209 -1.087,-0.014 -2.324,-0.032 -1.236,-0.017 -3.622,0.025 -2.386,0.042 -7.594,0.153 -5.209,0.11 -7.854,0.148 -2.646,0.038 -3.843,0.059 -1.198,0.022 -2.253,0.035 -1.055,0.013 -5.564,0.09 -4.51,0.076 -8.398,0.002 -3.889,-0.074 -5.715,-0.181 -1.826,-0.107 -2.676,-0.17 -0.849,-0.062 -2.113,-0.13 -1.264,-0.069 -3.204,-0.27 -1.94,-0.201 -2.927,-0.399 -0.987,-0.199 -1.535,-0.351 -0.549,-0.152 -1.07,-0.372 -0.521,-0.219 -1.177,-0.537 -0.655,-0.319 -1.227,-1.728 -0.571,-1.409 -0.607,-1.528"
+           id="STROKE_b7620c27-8672-4adf-a85a-45f1521ee72f"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 308.672,486.935 q -0.013,-0.013 -0.89,-0.557 -0.878,-0.545 -4.389,-1.302 -3.511,-0.758 -7.105,-1.274 -3.594,-0.516 -5.643,-0.823 -2.048,-0.307 -2.993,-0.436 -0.945,-0.129 -1.445,-0.19 -0.501,-0.06 -2.873,-0.375 -2.373,-0.315 -5.009,-0.555 -2.636,-0.241 -4.747,-0.256 -2.111,-0.016 -3.632,0.053 -1.52,0.069 -5.318,0.755 -3.798,0.685 -5.712,1.122 -1.914,0.436 -2.988,0.717 -1.075,0.282 -1.828,0.471 -0.752,0.188 -0.808,0.171"
+           id="STROKE_1561f7e0-209a-4925-955f-5d1c83540777"
+           style="opacity:1;fill:none;stroke:#fff13a;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_9"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 322.563,497.172 q -0.137,0.042 -0.266,0.573 -0.128,0.53 -0.907,0.925 -0.779,0.395 -3.46,1.237 -2.682,0.843 -4.231,1.394 -1.549,0.551 -2.872,1.041 -1.323,0.489 -2.178,0.862 -0.855,0.372 -3.906,1.386 -3.052,1.013 -4.87,1.486 -1.817,0.472 -2.687,0.702 -0.869,0.23 -3.068,0.744 -2.199,0.514 -4.23,0.774 -2.03,0.26 -3.394,0.32 -1.363,0.059 -3.168,0.064 -1.804,0.004 -4.455,-0.032 -2.651,-0.037 -4.967,-0.113 -2.317,-0.077 -5.508,-0.247 -3.191,-0.171 -5.458,-0.353 -2.267,-0.181 -3.356,-0.344 -1.089,-0.163 -3.575,-0.266 -2.486,-0.104 -3.917,-0.05 -1.431,0.054 -2.083,0.116 -0.652,0.062 -2.071,0.246 -1.42,0.185 -3.667,1.302 0.375,0.195 0.337,0.156 -0.037,-0.039 0.237,-0.034 0.274,0.005 0.465,-0.003"
+           id="STROKE_72ac4500-9325-47fd-aef5-62e613b5b78c"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 318.06,500.6 q -0.299,0.073 -1.862,-0.044 -1.563,-0.116 -4.51,-0.623 -2.946,-0.508 -4.487,-0.762 -1.542,-0.255 -3.83,-0.44 -2.289,-0.184 -6.959,-0.494 -4.671,-0.31 -7.018,-0.472 -2.346,-0.161 -3.313,-0.189 -0.968,-0.027 -2.432,-0.058 -1.465,-0.03 -2.88,0.057 -1.414,0.087 -7.259,1.804 -5.845,1.716 -8.891,2.59 -3.046,0.874 -4.454,1.377 -1.409,0.504 -2.019,0.753 -0.609,0.249 -1.319,0.708 -0.71,0.459 -2.238,2.21 0.081,-0.047 0.163,-0.094"
+           id="STROKE_69972c6e-dc87-49a9-8d9a-c613097b2a1f"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 319.627,493.089 q 0.32,-0.098 1.788,0.135 0.441,0.562 -0.803,1.843 -1.244,1.282 -3.018,2.34 -1.774,1.058 -2.729,1.527 -0.956,0.47 -3.289,1.471 -2.332,1.001 -4.843,1.781 -2.51,0.781 -4.282,1.124 -1.771,0.344 -2.731,0.447 -0.96,0.103 -2.312,0.173 -1.353,0.07 -2.908,-0.04 -1.554,-0.111 -3.699,-0.799 -2.144,-0.688 -3.302,-1.158 -1.158,-0.469 -1.675,-0.7 -0.516,-0.231 -2.014,-0.899 -1.498,-0.669 -4.033,-1.589 -2.535,-0.919 -3.861,-1.373 -1.326,-0.454 -3.319,-1.176 -1.992,-0.721 -5.671,-1.25 -3.679,-0.528 -5.917,-0.698 -2.239,-0.171 -4.145,-0.75 0.036,-0.037 0.073,-0.064"
+           id="STROKE_89bdf89b-227f-40a9-8349-def1be6d5fb8"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 312.518,488.585 q 0.073,-0.008 0.618,-0.035 -0.194,-0.181 -3.002,0.306 -2.808,0.486 -4.62,0.772 -1.812,0.285 -2.827,0.412 -1.015,0.127 -1.879,0.287 -0.865,0.159 -4.486,0.774 -3.621,0.616 -6.261,0.883 -2.64,0.267 -3.875,0.398 -1.235,0.13 -4.087,0.268 -2.852,0.138 -4.351,0.18 -1.5,0.041 -2.275,0.041 -0.776,0 -3.337,-0.038 -2.562,-0.038 -5.081,0.203 -2.518,0.241 -4.001,0.515 -1.483,0.273 -2.35,0.49 -0.866,0.218 -7.76,1.408 0.135,-0.094 0.78,-0.333 0.646,-0.24 1.01,-0.349"
+           id="STROKE_d52331c8-5ec1-4cae-a4ed-b32c6d9e957b"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 299.94,484.796 q -0.031,0 -5.409,-0.019 -5.378,-0.018 -8.887,0.095 -3.508,0.114 -5.411,0.2 -1.903,0.087 -5.677,0.239 -3.774,0.152 -5.661,0.231 -1.887,0.079 -2.728,0.125 -0.841,0.045 -2.533,0.213 -1.693,0.167 -3.291,0.329 -1.599,0.161 -4.404,0.73 -2.805,0.568 -5.326,1.237 v 0.01 q 0.334,0 0.337,0 0.003,0 0.088,0 0.085,0.001 0.263,-0.004 0.177,-0.006 0.386,-0.015"
+           id="STROKE_9468bee7-09bc-4188-bc4c-397c103b4409"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 318.184,492.178 q -0.077,0.035 -0.765,-0.382 -0.688,-0.418 -2.034,-0.815 -1.346,-0.396 -3.274,-0.763 -1.927,-0.367 -3.081,-0.476 -1.155,-0.109 -4.06,-0.247 -2.905,-0.138 -4.487,-0.254 -1.582,-0.116 -4.058,-0.509 -2.476,-0.394 -5.442,-0.69 -2.965,-0.297 -4.769,-0.361 -1.805,-0.065 -3.48,-0.124 -1.675,-0.059 -2.639,-0.153 -0.963,-0.094 -1.21,-0.148"
+           id="STROKE_19e1ff3b-354f-4d5e-ad68-acd77f36b5f3"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 312.372,495.514 q -0.018,0.008 -0.142,0.082 -0.124,0.075 -0.466,0.306 -0.342,0.231 -0.449,0.25 -0.108,0.019 -0.729,0.167 -0.621,0.148 -1.804,0.188 -1.184,0.039 -2.684,-0.069 -1.5,-0.109 -3.973,-0.78 -2.474,-0.672 -4.424,-1.439 -1.95,-0.768 -3.061,-1.313 -1.111,-0.546 -2.414,-1.544 -1.302,-0.998 -1.639,-1.28"
+           id="STROKE_5279a1c1-f224-4848-8a7a-1ae14327c286"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.26999998;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 340.425,169.434 q 0.034,0.059 0.908,-0.326 -0.038,0.057 -0.038,0.055 10e-4,-0.003 -0.233,0.519 -0.235,0.522 -0.713,1.333 -0.477,0.811 -0.734,1.295 -0.257,0.483 -1.01,1.824 -0.753,1.34 -1.203,2.115 -0.449,0.774 -0.656,1.174 -0.208,0.401 -0.431,0.769 -0.222,0.368 -0.35,0.538 -0.129,0.169 -1.294,1.716 -1.165,1.547 -2.005,2.772 -0.84,1.225 -1.228,1.967 -0.388,0.742 -0.532,0.975 -0.144,0.233 -0.429,0.64 -0.286,0.407 -1.103,1.301 -0.817,0.893 -1.333,1.391 -0.516,0.497 -0.832,0.764 -0.315,0.267 -1.187,0.792 -0.871,0.524 -1.397,0.796 -0.525,0.271 -1.381,0.67 -0.855,0.398 -2.366,1.118 -1.511,0.72 -2.794,1.228 -1.282,0.509 -2.197,0.841 -0.916,0.332 -2.395,0.764 -1.479,0.433 -2.193,0.727 -0.713,0.294 -2.507,0.462 -1.794,0.168 -2.714,0.204 -0.92,0.035 -1.689,0.044 -0.769,0.009 -1.819,-0.096 -1.049,-0.105 -1.513,-0.163 -0.464,-0.058 -0.767,-0.112 -0.302,-0.054 -0.813,-0.165 -0.511,-0.11 -1.747,-0.257 -1.236,-0.147 -2.808,-0.58 -1.572,-0.434 -2.486,-0.63 -0.914,-0.195 -1.722,-0.438 -0.808,-0.242 -1.62,-0.61 -0.813,-0.368 -1.575,-0.654 -0.763,-0.286 -1.785,-0.927 -1.022,-0.642 -1.482,-0.913 -0.461,-0.271 -1.18,-0.902 -0.719,-0.632 -1.239,-1.096 -0.519,-0.465 -1.574,-1.534 -1.054,-1.069 -1.608,-1.583 -0.555,-0.515 -0.93,-1.077 -0.374,-0.563 -0.837,-1.178 -0.463,-0.615 -0.72,-1.008 -0.257,-0.392 -0.388,-0.615 -0.131,-0.224 -0.215,-0.349 -0.084,-0.125 -0.601,-0.997 -0.517,-0.872 -1.019,-1.853 -0.501,-0.982 -0.953,-1.618 -0.452,-0.636 -1.027,-1.838 -0.574,-1.202 -0.91,-1.968 -0.335,-0.767 -0.451,-1.66 -0.116,-0.893 -0.297,-2.125 -0.181,-1.231 -0.481,-2.474 -0.301,-1.244 -0.446,-1.93 -0.144,-0.686 -0.459,-1.855 -0.316,-1.169 -0.523,-1.886 -0.208,-0.717 -0.298,-1.643 -0.09,-0.925 -0.108,-2.188 -0.018,-1.262 0.031,-2.05 0.048,-0.788 0.296,-2.902 0.248,-2.113 0.345,-3.192 0.097,-1.078 0.156,-1.618 0.058,-0.541 0.093,-0.761 0.035,-0.22 0.067,-0.436 0.032,-0.215 0.402,-1.497 0.371,-1.282 0.897,-3.095 0.527,-1.813 0.707,-2.731 0.18,-0.917 0.374,-1.921 0.195,-1.004 0.743,-2.077 0.547,-1.073 1.121,-1.947 0.574,-0.875 1.156,-1.694 0.582,-0.819 1.107,-1.766 0.525,-0.946 1.374,-2.278 0.85,-1.332 1.364,-2.078 0.514,-0.746 1.113,-1.497 0.599,-0.75 1.274,-1.596 0.674,-0.847 1.188,-1.538 0.513,-0.692 1.243,-1.503 0.73,-0.812 1.21,-1.229 0.479,-0.417 1.321,-1.083 0.842,-0.667 1.513,-1.269 0.671,-0.602 1.374,-1.179 0.704,-0.577 1.202,-1.006 0.497,-0.429 1.351,-1.113 0.854,-0.683 2.07,-1.365 1.216,-0.682 2.344,-1.336 1.128,-0.653 1.618,-0.926 0.491,-0.273 1.662,-0.843 1.172,-0.569 2.768,-1.282 1.597,-0.714 2.553,-1.136 0.957,-0.422 1.506,-0.657 0.55,-0.235 1.641,-0.603 1.092,-0.367 2.097,-0.665 1.005,-0.298 1.58,-0.42 0.575,-0.123 0.911,-0.225 0.336,-0.102 2.8,-0.389 2.465,-0.287 4.148,-0.384 1.684,-0.097 2.6,-0.12 0.917,-0.024 2.039,-0.02 1.123,0.003 1.967,-0.002 0.844,-0.006 1.516,0.051 0.672,0.057 1.824,0.361 1.153,0.304 2.523,0.81 1.369,0.507 2.075,0.804 0.706,0.296 1.683,0.687 0.977,0.39 1.652,0.732 0.675,0.342 1.772,0.9 1.096,0.559 2.411,1.398 1.315,0.839 2.025,1.405 0.71,0.567 1.623,1.35 0.914,0.784 1.341,1.167 0.427,0.383 1.177,1.173 0.749,0.789 1.447,1.638 0.697,0.85 1.251,1.599 0.555,0.748 0.824,1.143 0.269,0.395 0.752,1.248 0.483,0.854 1.161,3.068 0.678,2.214 1.041,3.953 0.363,1.74 0.575,3.561 0.211,1.82 0.264,3.455 0.053,1.635 -0.227,3.296 -0.281,1.66 -0.778,3.289 -0.497,1.628 -0.742,2.465 -0.245,0.837 -0.287,1.249 -0.041,0.412 -0.407,1.813 -0.366,1.402 -0.829,2.584 -0.463,1.182 -0.639,2.248 -0.176,1.067 -0.329,2.168 -0.153,1.102 -1.065,3.576 -0.913,2.475 -1.334,3.781 -0.421,1.306 -2.044,4.456 -1.624,3.15 -2.555,4.742 -0.932,1.593 -1.702,3.423 -0.77,1.83 -1.304,3.058 -0.535,1.229 -0.87,1.824 -0.336,0.596 -0.881,1.073 -0.546,0.477 -1.213,0.589 -0.667,0.112 -1.085,0.155"
+           id="STROKE_0b0de3c4-f9e1-437a-8f43-00506f41f62e"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 287.47,159.19 0.005,0.005 q 0.037,0.023 2.208,-0.199 2.171,-0.223 7.026,-0.499 4.855,-0.276 7.39,-0.363 2.535,-0.088 3.747,-0.124 1.212,-0.036 2.549,-0.077 1.337,-0.04 4.231,-0.297 2.895,-0.257 5.949,-0.741 3.054,-0.484 4.827,-0.759 1.774,-0.275 2.707,-0.413 0.934,-0.138 1.843,-0.271 0.909,-0.133 1.833,-0.289 0.925,-0.157 5.919,-0.315 -0.01,0.032 -0.919,0.18 -0.91,0.149 -1.409,0.224"
+           id="STROKE_29b4d720-420c-40c6-ab14-24c68eac736e"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 286.504,153.481 q 0.016,0.073 0.026,0.077 0.009,0.005 0.059,0.087 0.05,0.081 1.245,0.178 1.194,0.098 2.142,0.089 0.948,-0.009 4.554,-0.417 3.607,-0.407 6.491,-0.715 2.884,-0.307 5.512,-0.661 2.628,-0.354 5.498,-0.819 2.87,-0.465 5.172,-0.824 2.302,-0.359 3.653,-0.545 1.351,-0.185 1.99,-0.26 0.64,-0.074 2.914,-0.364 2.273,-0.289 5.01,-0.674 2.738,-0.385 7.556,-0.927 -0.018,-0.011 -0.533,-0.106 -0.515,-0.094 -0.755,-0.152"
+           id="STROKE_a54fce70-c9d1-41ae-aca4-ee212bc00cb4"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 285.393,140.668 0.002,-0.012 q -0.066,-0.018 3.271,-0.007 3.337,0.012 7.223,-0.219 3.886,-0.231 5.836,-0.331 1.95,-0.1 4.301,-0.385 2.351,-0.285 4.121,-0.596 1.77,-0.311 4.724,-0.91 2.955,-0.599 5.015,-1.046 2.059,-0.446 3.238,-0.712 1.178,-0.266 3.293,-0.766 2.115,-0.5 3.417,-0.855 1.302,-0.355 3.575,-0.769 2.274,-0.415 3.454,-0.57 1.181,-0.154 2.959,-0.362 1.778,-0.209 3.127,-0.498 -0.037,-0.026 -0.649,-0.095 -0.612,-0.07 -1.017,-0.106"
+           id="STROKE_0c748367-de83-41db-a926-bc90271510eb"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 296.06,161.559 q -0.013,0.007 -0.252,0.038 -0.145,-0.107 -0.782,-0.824 -0.638,-0.718 -1.095,-1.333 -0.456,-0.616 -1.37,-2.325 -0.914,-1.71 -1.57,-3.02 -0.656,-1.31 -1.194,-2.71 -0.537,-1.4 -0.817,-2.684 -0.28,-1.283 -0.464,-3.091 -0.184,-1.808 -0.251,-2.719 -0.066,-0.91 0.09,-2.083 0.157,-1.172 0.497,-2.049 0.339,-0.877 0.725,-1.594 0.386,-0.718 0.917,-1.383 0.53,-0.665 1.214,-1.251 0.684,-0.586 1.482,-0.885 0.798,-0.299 1.606,-0.332 0.808,-0.033 1.485,0.136 0.677,0.169 1.697,0.993 1.021,0.824 2.106,2.207 1.085,1.382 1.83,2.525 0.746,1.143 1.686,2.79 0.941,1.647 1.606,2.72 0.664,1.073 1.61,3.288 0.945,2.215 1.32,3.28 0.374,1.066 0.856,2.528 0.481,1.461 0.722,2.549 0.241,1.088 0.187,2.001 -0.002,0.033 -0.193,-0.042 -0.191,-0.075 -0.333,-0.267 -0.143,-0.193 -0.352,-0.528 -0.209,-0.335 -0.483,-1.102 -0.274,-0.766 -0.331,-2.091 -0.057,-1.325 -0.073,-2.126 -0.015,-0.802 0.35,-2.403 0.365,-1.601 1.014,-3.125 0.649,-1.523 1.163,-2.601 0.514,-1.078 1.921,-3.105 1.408,-2.027 2.146,-3.137 0.737,-1.109 1.541,-1.931 0.803,-0.823 1.377,-1.198 0.575,-0.374 1.412,-0.688 0.837,-0.313 1.949,-0.418 1.113,-0.105 2.248,0.158 1.134,0.262 2.62,1.141 1.485,0.879 2.496,1.673 1.012,0.795 1.827,1.523 0.815,0.728 1.789,2.082 0.974,1.354 1.434,2.251 0.46,0.898 0.583,1.138 0.122,0.24 0.536,1.571 0.414,1.332 0.609,2.963 0.194,1.631 0.241,2.695 0.046,1.063 0.065,1.946 0.019,0.882 -0.043,1.712 -0.062,0.829 -0.304,1.832 -0.241,1.004 -0.733,2.483 -0.492,1.479 -1.026,2.873 -0.535,1.394 -0.823,2.14 -0.288,0.746 -0.845,1.533 -0.558,0.788 -1.648,1.379 -1.09,0.591 -1.577,0.801 -0.487,0.21 -0.838,0.267 -0.351,0.058 -0.763,-0.219 -0.412,-0.277 -0.619,-0.684 -0.206,-0.407 -0.22,-1.007 -0.014,-0.599 0.025,-0.912 0.039,-0.313 0.153,-0.533 0.115,-0.221 0.323,-0.468 0.207,-0.247 0.453,-0.334 0.246,-0.087 0.417,-0.085 0.17,0.002 0.253,0.017 0.083,0.015 0.102,0.027 0.019,0.012 0.215,0.342"
+           id="STROKE_25982462-bb9e-4ef6-8a5a-8697fc7888de"
+           style="opacity:1;fill:none;stroke:#ffb208;stroke-width:5.94999981;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_6"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 446.421,312.289 q 0,0.039 0.881,0.363 0.166,-0.389 -0.157,-1.256 -0.322,-0.868 -0.683,-1.435 -0.362,-0.566 -0.263,-0.493 0.099,0.074 -1.074,-1.642 -1.173,-1.715 -2.313,-3.257 -1.139,-1.543 -2.639,-3.522 -1.501,-1.979 -2.467,-3.129 -0.966,-1.15 -1.356,-1.531 -0.389,-0.382 -1.809,-1.96 -1.421,-1.577 -1.991,-2.26 -0.569,-0.683 -1.066,-1.278 -0.497,-0.594 -0.699,-0.882 -0.201,-0.287 -0.675,-0.924 -0.475,-0.636 -2.205,-2.459 -1.731,-1.824 -3.014,-3.269 -1.283,-1.444 -1.994,-2.357 -0.711,-0.913 -1.366,-1.772 -0.656,-0.86 -1.105,-1.533 -0.45,-0.674 -3.752,-3.787 -3.302,-3.114 -6.201,-6.463 -2.899,-3.349 -4.419,-5.312 -1.52,-1.963 -4.451,-5.556 -2.932,-3.592 -5.468,-5.862 -2.537,-2.27 -3.882,-3.253 -1.346,-0.983 -1.819,-1.489 -0.473,-0.507 -0.99,-1.068 -0.517,-0.562 -1.061,-1.138 -0.544,-0.576 -2.999,-3.087 -2.455,-2.511 -4.71,-5.129 -2.254,-2.618 -3.601,-4.247 -1.346,-1.629 -2.595,-3.331 -1.249,-1.702 -1.682,-2.086 -0.432,-0.383 -0.903,-0.895 -0.472,-0.511 -1.73,-1.739 -1.258,-1.229 -1.63,-1.56 -0.373,-0.33 -3.617,-3.966 -3.244,-3.636 -5.696,-6.392 -2.452,-2.757 -3.956,-5.331 -1.505,-2.575 -5.193,-6.43 -3.688,-3.856 -6.072,-5.649 -2.384,-1.793 -3.967,-3.282 -1.582,-1.49 -2.16,-2.333 -0.578,-0.844 -0.744,-1.216 -0.167,-0.372 -0.197,-0.436 -0.031,-0.064 -0.099,-0.228 -0.068,-0.164 -0.022,-0.034 0.046,0.131 -0.232,-0.716 -0.279,-0.847 -0.274,-0.884 0.005,-0.038 -0.091,-0.563 -0.096,-0.525 -0.095,-0.546 0,-0.021 -0.056,-0.56 -0.057,-0.539 -0.022,-0.404 0.034,0.135 -0.334,-0.502 -0.368,-0.637 0.912,-7.572 0.332,-0.674 1.868,0.125 1.537,0.799 2.12,1.604 0.584,0.804 1.031,1.623 0.447,0.818 0.698,1.277 0.252,0.46 0.398,0.732 0.146,0.273 0.432,0.726 0.287,0.454 0.999,1.758 0.712,1.304 2.468,4.611 1.757,3.308 2.696,4.625 0.94,1.316 2.105,3.121 1.166,1.805 2.057,2.968 0.892,1.164 1.387,1.73 0.495,0.566 0.722,0.849 0.227,0.283 0.548,0.684 0.321,0.4 0.887,1.097 0.566,0.697 0.52,0.718 -0.045,0.021 0.845,0.77 -0.124,-1.384 -0.285,-1.289 -0.789,-0.941 -3.769,-6.455 -2.98,-5.515 -5.985,-10.375 -3.006,-4.859 -4.787,-6.885 -1.781,-2.026 -3.881,-8.665 0.95,0.433 0.821,0.512 0.528,0.393 1.564,2.073 1.037,1.68 1.776,2.761 0.739,1.081 1.948,3.008 1.208,1.926 2.82,6.132 1.612,4.205 3.91,8.405 2.298,4.199 5.429,8.001 3.131,3.802 4.902,6.084 1.771,2.283 3.31,3.739 1.54,1.456 3.218,3.011 1.678,1.555 2.331,2.39 0.652,0.836 2.098,2.558 1.446,1.722 2.6,2.833 1.154,1.112 1.908,1.746 0.753,0.634 1.237,0.965 0.483,0.331 2.006,1.49 1.524,1.158 2.637,1.983 1.113,0.825 1.569,1.156 0.457,0.332 0.965,0.609 0.509,0.277 2.189,1.4 1.68,1.123 2.987,2.043 1.307,0.921 1.978,1.297 0.671,0.376 0.91,0.541 0.238,0.165 1.016,0.714 0.778,0.549 1.279,0.881 0.502,0.332 0.985,0.758 0.484,0.426 0.699,0.595 0.216,0.17 0.212,0.175 -0.003,0.006 0.319,0.395 0.323,0.39 0.489,0.617 0.166,0.226 0.138,0.19 -0.028,-0.036 -0.081,-0.126 -0.054,-0.091 0.297,0.49 0.351,0.581 1.51,2.089 1.159,1.507 2.832,3.799 1.674,2.291 2.336,3.717 0.663,1.426 2.629,4.625 1.965,3.199 2.367,4.013 0.402,0.814 2.441,3.489 2.038,2.676 6.32,8.097 4.282,5.421 6.564,8.599 2.282,3.178 3.335,5.043 1.054,1.866 3.699,5.281 2.645,3.415 5.606,6.669 2.961,3.254 13.084,11.435 0.053,-0.683 -10.541,-11.294 -10.593,-10.611 -16.483,-15.91 -5.891,-5.299 -12.391,-13.216 -6.501,-7.917 -10.446,-12.371 -3.944,-4.455 -6.433,-7.232 -2.488,-2.776 -4.909,-6.414 -2.422,-3.638 -5.524,-7.164 -3.102,-3.525 -8.12,-7.816 -5.019,-4.29 -11.685,-10.294 -6.666,-6.004 -10.357,-9.094 -3.691,-3.091 -7.21,-7.822 -3.519,-4.73 -6.024,-10.638 -2.504,-5.908 -2.979,-6.601"
+           id="STROKE_70bdbe67-0b58-4ded-a619-4c5818faeae3"
+           style="opacity:1;fill:none;stroke:#9f5800;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+      <g
+         id="New_Layer_7"
+         style="display:inline;opacity:1"
+         transform="rotate(90,516.7657,276.638)">
+        <path
+           d="m 314.052,508.227 q 0.206,0.129 0.307,0.167 0.531,0.031 0.572,0.016 0.029,0.012 2.113,-1.04 2.084,-1.052 3.013,-1.661 0.929,-0.608 1.349,-0.932 0.42,-0.324 1.059,-1.027 0.639,-0.703 1.06,-1.296 0.421,-0.593 0.474,-0.683 0.053,-0.089 0.609,-0.921 0.556,-0.832 4.555,-3.829 3.999,-2.996 6.23,-4.649 2.231,-1.652 3.193,-2.468 0.962,-0.815 2.133,-1.634 1.172,-0.819 2.955,-1.804 1.783,-0.985 3.111,-1.955 1.328,-0.97 2.459,-2.502"
+           id="STROKE_8bb3aaf1-6a8d-446d-96cf-1f11bcb53ef9"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 332.13,494.32 q -0.008,-0.014 0.131,0.448 -0.302,0.176 -0.537,0.237 -0.236,0.061 -0.599,0.104 -0.363,0.043 -0.997,0.077 -0.635,0.034 -2.093,0.274 -1.459,0.24 -2.395,0.345 -0.937,0.105 -1.579,0 -0.642,-0.106 -1.092,-0.393 -0.45,-0.287 -0.801,-0.626 -0.351,-0.338 -0.51,-0.592 -0.159,-0.254 -0.183,-0.682 -0.024,-0.428 0.05,-0.778 0.073,-0.35 0.109,-0.617 0.036,-0.267 0.055,-0.601 0.02,-0.334 0.166,-0.865 0.146,-0.531 0.598,-1.485 0.451,-0.954 1.22,-1.729 0.769,-0.775 1.992,-1.671 1.223,-0.896 2.795,-1.59 1.571,-0.693 5.731,-1.994 4.159,-1.302 9.5,-2.413 0.07,-0.249 -0.089,-0.49"
+           id="STROKE_5faf631f-53d1-4e1a-a7b5-bc08c5fca660"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 323.181,483.585 q 0.35,-0.066 0.377,-0.085 l 0.265,-0.085 q 0.107,-0.027 1.556,-0.945 0.193,-0.093 -1.723,0.194 -1.916,0.288 -3.172,0.453 -1.256,0.165 -2.194,0.382 -0.938,0.216 -1.622,0.254 -0.684,0.037 -1.258,-0.081 -0.574,-0.119 -0.595,-0.137 -0.021,-0.018 -0.411,-0.131 -0.39,-0.112 -0.638,-0.17 -0.249,-0.059 -0.409,-0.119 -0.16,-0.059 -0.22,-0.095 -0.059,-0.036 -0.165,-0.186 -0.105,-0.149 -0.131,-0.253 -0.026,-0.105 -0.009,-0.315 0.016,-0.211 0.077,-0.284 0.06,-0.073 0.14,-0.158 0.081,-0.085 0.328,-0.255 0.248,-0.169 0.552,-0.324 0.305,-0.154 0.392,-0.209 0.087,-0.054 2.193,-0.924 2.105,-0.87 5.723,-1.424 3.617,-0.553 6.072,-0.778 2.455,-0.226 4.111,-0.826 1.656,-0.601 1.414,-0.992 -0.242,-0.391 -0.443,-0.591"
+           id="STROKE_e6c99219-92ce-41ac-94c2-1dc34a3688a4"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 311.32,482.927 q -0.043,-0.016 -0.318,0.061 -0.274,0.077 -0.969,-0.373 -0.694,-0.45 -1.008,-0.952 -0.314,-0.503 -0.453,-1.402 -0.138,-0.899 -0.024,-1.594 0.115,-0.696 0.346,-1.308 0.231,-0.612 0.388,-0.92 0.156,-0.309 0.415,-0.59 0.259,-0.281 0.647,-0.656 0.388,-0.374 0.741,-0.704 0.352,-0.329 1.015,-0.719 0.663,-0.391 2.076,-1.503 1.413,-1.112 2.684,-2.048 1.27,-0.937 2.195,-1.426 0.924,-0.49 2.072,-1.075 1.147,-0.585 2.575,-0.829 1.427,-0.245 3.534,0.032 2.108,0.276 4.4,0.337 2.292,0.06 4.049,-0.091 -0.016,-0.039 -0.168,-0.172"
+           id="STROKE_b925dca4-6d5e-4395-a730-b6c37ef729eb"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+        <path
+           d="m 310.01,474.24 q 0.064,-0.082 3.13,-1.187 3.066,-1.104 4.837,-1.706 1.77,-0.603 3.906,-1.033 2.136,-0.429 11.827,0.14 l 0.157,0.11"
+           id="STROKE_d8c2ef38-0089-4ce5-af92-0466ad9056b8"
+           style="opacity:1;fill:none;stroke:#010003;stroke-width:6.80000019;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/static/js/github-buttons.js b/static/js/github-buttons.js
new file mode 100644 (file)
index 0000000..7b87efa
--- /dev/null
@@ -0,0 +1,6 @@
+/*!
+ * github-buttons v2.7.0
+ * (c) 2020 ăȘă€ă
+ * @license BSD-2-Clause
+ */
+!function(){"use strict";var e=window.document,t=e.location,o=window.Math,r=window.HTMLElement,n=window.XMLHttpRequest,a="https://buttons.github.io/buttons.html",i=n&&n.prototype&&"withCredentials"in n.prototype,l=i&&r&&r.prototype.attachShadow&&!r.prototype.attachShadow.prototype,c=function(e,t,o,r){null==t&&(t="&"),null==o&&(o="="),null==r&&(r=window.decodeURIComponent);for(var n={},a=e.split(t),i=0,l=a.length;i<l;++i){var c=a[i];if(""!==c){var d=c.split(o);n[r(d[0])]=null!=d[1]?r(d.slice(1).join(o)):void 0}}return n},d=function(e,t,o){e.addEventListener?e.addEventListener(t,o,!1):e.attachEvent("on"+t,o)},s=function(e,t,o){e.removeEventListener?e.removeEventListener(t,o,!1):e.detachEvent("on"+t,o)},f=function(e,t,o){var r=function(n){return s(e,t,r),o(n)};d(e,t,r)},h=function(e,t,o){var r=function(n){if(t.test(e.readyState))return s(e,"readystatechange",r),o(n)};d(e,"readystatechange",r)},u=function(e){return function(t,o,r){var n=e.createElement(t);if(o)for(var a in o){var i=o[a];null!=i&&(null!=n[a]?n[a]=i:n.setAttribute(a,i))}if(r)for(var l=0,c=r.length;l<c;l++){var d=r[l];n.appendChild("string"==typeof d?e.createTextNode(d):d)}return n}},g=u(e),p=function(e){var t;return function(){t||(t=1,e.apply(this,arguments))}},b=function(e,t){return{}.hasOwnProperty.call(e,t)},v={light:".btn{color:#24292e;background-color:#eff3f6;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23fafbfc'/%3e%3cstop offset='90%25' stop-color='%23eff3f6'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #fafbfc, #eff3f6 90%);background-image:linear-gradient(180deg, #fafbfc, #eff3f6 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFFAFBFC', endColorstr='#FFEEF2F5');border-color:#cdcfd1;border-color:rgba(27,31,35,.2)}:root .btn{filter:none}.btn:focus,.btn:hover{background-color:#e6ebf1;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f0f3f6'/%3e%3cstop offset='90%25' stop-color='%23e6ebf1'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #f0f3f6, #e6ebf1 90%);background-image:linear-gradient(180deg, #f0f3f6, #e6ebf1 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF0F3F6', endColorstr='#FFE5EAF0');background-position:-0.5em;border-color:#acaeb0;border-color:rgba(27,31,35,.35)}:root .btn:focus,:root .btn:hover{filter:none}.btn:active{background-color:#e9ecef;background-image:none;border-color:#acaeb0;border-color:rgba(27,31,35,.35);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15);filter:none}.social-count{color:#24292e;background-color:#fff;border-color:#d1d2d3;border-color:rgba(27,31,35,.2)}.social-count:focus,.social-count:hover{color:#0366d6}.octicon-heart{color:#ea4aaa}",dark:".btn{color:#fafbfc;background-color:#202428;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%232f363d'/%3e%3cstop offset='90%25' stop-color='%23202428'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #2f363d, #202428 90%);background-image:linear-gradient(180deg, #2f363d, #202428 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF2F363D', endColorstr='#FF1E2226');border-color:#2b3138;border-color:rgba(27,31,35,.2)}:root .btn{filter:none}.btn:focus,.btn:hover{background-color:#1b1f23;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%232b3137'/%3e%3cstop offset='90%25' stop-color='%231b1f23'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\");background-image:-moz-linear-gradient(top, #2b3137, #1b1f23 90%);background-image:linear-gradient(180deg, #2b3137, #1b1f23 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF2B3137', endColorstr='#FF191D21');background-position:-0.5em;border-color:#252b30;border-color:rgba(27,31,35,.5)}:root .btn:focus,:root .btn:hover{filter:none}.btn:active{background-color:#181b1f;background-image:none;border-color:#252b30;border-color:rgba(27,31,35,.5);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15);filter:none}.social-count{color:#fafbfc;background-color:#1b1f23;border-color:#1b1f23;border-color:rgba(27,31,35,.2)}.social-count:focus,.social-count:hover{color:#2188ff}.octicon-heart{color:#ec6cb9}"},m=function(e,t){return"@media(prefers-color-scheme:"+e+"){"+v[b(v,t)?t:e]+"}"},w={"mark-github":{width:16,height:16,path:'<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/>'},heart:{width:12,height:16,path:'<path fill-rule="evenodd" d="M8.727 3C7.091 3 6.001 4.65 6.001 4.65S4.909 3 3.273 3C1.636 3 0 4.1 0 6.3 0 9.6 6 14 6 14s6-4.4 6-7.7C12 4.1 10.364 3 8.727 3z"/>'},eye:{width:16,height:16,path:'<path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/>'},star:{width:14,height:16,path:'<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"/>'},"repo-forked":{width:10,height:16,path:'<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 00-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V6.5l3 3v1.78A1.993 1.993 0 005 15a1.993 1.993 0 001-3.72V9.5l3-3V4.72A1.993 1.993 0 008 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/>'},"repo-template":{width:14,height:16,path:'<path fill-rule="evenodd" d="M12 8V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v12c0 .55.45 1 1 1h2v2l1.5-1.5L6 16v-4H3v1H1v-2h7v-1H2V1h9v7h1zM4 2H3v1h1V2zM3 4h1v1H3V4zm1 2H3v1h1V6zm0 3H3V8h1v1zm6 3H8v2h2v2h2v-2h2v-2h-2v-2h-2v2z"/>'},"issue-opened":{width:14,height:16,path:'<path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/>'},"cloud-download":{width:16,height:16,path:'<path fill-rule="evenodd" d="M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z"/>'}},x={},y=function(e,t){var o=x[e]||(x[e]=[]);if(!(o.push(t)>1)){var r=p((function(){for(delete x[e];t=o.shift();)t.apply(null,arguments)}));if(i){var a=new n;d(a,"abort",r),d(a,"error",r),d(a,"load",(function(){var e;try{e=JSON.parse(a.responseText)}catch(e){return void r(e)}r(200!==a.status,e)})),a.open("GET",e),a.send()}else{var l=this||window;l._=function(e){l._=null,r(200!==e.meta.status,e.data)};var c=u(l.document)("script",{async:!0,src:e+(/\?/.test(e)?"&":"?")+"callback=_"}),s=function(){l._&&l._({meta:{}})};d(c,"load",s),d(c,"error",s),c.readyState&&h(c,/de|m/,s),l.document.getElementsByTagName("head")[0].appendChild(c)}}},k=function(e,t,o){var r=u(e.ownerDocument),n=e.appendChild(r("style",{type:"text/css"})),a="body{margin:0}a{text-decoration:none;outline:0}.widget{display:inline-block;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;font-size:0;white-space:nowrap}.btn,.social-count{position:relative;display:inline-block;height:14px;padding:2px 5px;font-size:11px;font-weight:600;line-height:14px;vertical-align:bottom;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-repeat:repeat-x;background-position:-1px -1px;background-size:110% 110%;border:1px solid}.btn{border-radius:.25em}.btn:not(:last-child){border-radius:.25em 0 0 .25em}.social-count{border-left:0;border-radius:0 .25em .25em 0}.widget-lg .btn,.widget-lg .social-count{height:20px;padding:3px 10px;font-size:12px;line-height:20px}.octicon{display:inline-block;vertical-align:text-top;fill:currentColor}"+function(e){if(null==e)return v.light;var t=c(e,";",":",(function(e){return e.replace(/^[ \t\n\f\r]+|[ \t\n\f\r]+$/g,"")}));return v[b(v,t["no-preference"])?t["no-preference"]:"light"]+m("light",t.light)+m("dark",t.dark)}(t["data-color-scheme"]);n.styleSheet?n.styleSheet.cssText=a:n.appendChild(e.ownerDocument.createTextNode(a));var i,l,d=r("a",{className:"btn",href:t.href,target:"_blank",rel:"noopener",innerHTML:(i=t["data-icon"],l=/^large$/i.test(t["data-size"])?16:14,i=(""+i).toLowerCase().replace(/^octicon-/,""),b(w,i)||(i="mark-github"),'<svg viewBox="0 0 '+w[i].width+" "+w[i].height+'" class="octicon octicon-'+i+'" style="width: '+l*w[i].width/w[i].height+"px; height: "+l+'px;" aria-hidden="true">'+w[i].path+"</svg>"),"aria-label":t["aria-label"]||void 0},[" ",r("span",{},[t["data-text"]||""])]),s=e.appendChild(r("div",{className:"widget"+(/^large$/i.test(t["data-size"])?" widget-lg":"")},[d])),f=d.hostname.split(".").reverse();if(""===f[0]&&f.shift(),"com"!==f[0]||"github"!==f[1])return d.href="#",d.target="_self",void o(s);var h=f.length,g=(" /"+d.pathname).split(/\/+/);if(((2===h||3===h&&"gist"===f[2])&&"archive"===g[3]||2===h&&"releases"===g[3]&&"download"===g[4]||3===h&&"codeload"===f[2])&&(d.target="_top"),/^true$/i.test(t["data-show-count"])&&2===h){var p,x;if(!g[2]&&g[1])p=x="followers";else if(!g[3]&&g[2])x="stargazers_count",p="stargazers";else if(g[4]||"subscription"!==g[3])if(g[4]||"fork"!==g[3]){if("issues"!==g[3])return void o(s);x="open_issues_count",p="issues"}else x="forks_count",p="network/members";else x="subscribers_count",p="watchers";var k=g[2]?"/repos/"+g[1]+"/"+g[2]:"/users/"+g[1];y.call(this,"https://api.github.com"+k,(function(e,t){if(!e){var n=t[x];s.appendChild(r("a",{className:"social-count",href:t.html_url+"/"+p,target:"_blank",rel:"noopener","aria-label":n+" "+x.replace(/_count$/,"").replace("_"," ").slice(0,n<2?-1:void 0)+" on GitHub"},[(""+n).replace(/\B(?=(\d{3})+(?!\d))/g,",")]))}o(s)}))}else o(s)},C=window.devicePixelRatio||1,z=function(e){return(C>1?o.ceil(o.round(e*C)/C*2)/2:o.ceil(e))||0},F=function(e,t){e.style.width=t[0]+"px",e.style.height=t[1]+"px"},M=function(t,r){if(null!=t&&null!=r)if(t.getAttribute&&(t=function(e){for(var t={href:e.href,title:e.title,"aria-label":e.getAttribute("aria-label")},o=["icon","color-scheme","text","size","show-count"],r=0,n=o.length;r<n;r++){var a="data-"+o[r];t[a]=e.getAttribute(a)}return null==t["data-text"]&&(t["data-text"]=e.textContent||e.innerText),t}(t)),l){var n=g("span",{title:t.title||void 0});k(n.attachShadow({mode:"closed"}),t,(function(){r(n)}))}else{var i=g("iframe",{src:"javascript:0",title:t.title||void 0,allowtransparency:!0,scrolling:"no",frameBorder:0});F(i,[0,0]),i.style.border="none";var c=function(){var n,l=i.contentWindow;try{n=l.document.body}catch(t){return void e.body.appendChild(i.parentNode.removeChild(i))}s(i,"load",c),k.call(l,n,t,(function(e){var n=function(e){var t=e.offsetWidth,r=e.offsetHeight;if(e.getBoundingClientRect){var n=e.getBoundingClientRect();t=o.max(t,z(n.width)),r=o.max(r,z(n.height))}return[t,r]}(e);i.parentNode.removeChild(i),f(i,"load",(function(){F(i,n)})),i.src=a+"#"+(i.name=function(e,t,o,r){null==t&&(t="&"),null==o&&(o="="),null==r&&(r=window.encodeURIComponent);var n=[];for(var a in e){var i=e[a];null!=i&&n.push(r(a)+o+r(i))}return n.join(t)}(t)),r(i)}))};d(i,"load",c),e.body.appendChild(i)}};t.protocol+"//"+t.host+t.pathname===a?k(e.body,c(window.name||t.hash.replace(/^#/,"")),(function(){})):function(t){if(/m/.test(e.readyState)||!/g/.test(e.readyState)&&!e.documentElement.doScroll)setTimeout(t);else if(e.addEventListener){var o=p(t);f(e,"DOMContentLoaded",o),f(window,"load",o)}else h(e,/m/,t)}((function(){for(var t=e.querySelectorAll?e.querySelectorAll("a.github-button"):function(){for(var t=[],o=e.getElementsByTagName("a"),r=0,n=o.length;r<n;r++)~(" "+o[r].className+" ").replace(/[ \t\n\f\r]+/g," ").indexOf(" github-button ")&&t.push(o[r]);return t}(),o=0,r=t.length;o<r;o++)!function(e){M(e,(function(t){e.parentNode.replaceChild(t,e)}))}(t[o])}))}();
diff --git a/static/js/jsonview.js b/static/js/jsonview.js
new file mode 100644 (file)
index 0000000..a546dd5
--- /dev/null
@@ -0,0 +1,330 @@
+(function() {
+'use strict';
+/**
+ * Create html element
+ * @param {String} type html element 
+ * @param {Object} config
+ */
+function  createElement(type, config) {
+  const htmlElement = document.createElement(type);
+
+  if (config === undefined) {
+    return htmlElement;
+  }
+
+  if (config.className) {
+    htmlElement.className = config.className;
+  }
+
+  if (config.content) {
+    htmlElement.textContent = config.content;
+  }
+
+  if (config.children) {
+    config.children.forEach((el) => {
+      if (el !== null) {
+        htmlElement.appendChild(el);
+      }
+    });
+  }
+
+  return htmlElement; 
+}
+
+
+/**
+ * @param {Object} node
+ * @return {HTMLElement}
+ */
+function createExpandedElement(node) {
+  const iElem = createElement('i');
+
+  if (node.expanded) {
+    iElem.className = 'fas fa-caret-down';
+  } else {
+    iElem.className = 'fas fa-caret-right';
+  }
+
+  const caretElem = createElement('div', {
+    className: 'caret-icon',
+    children: [iElem],
+  });
+
+  const handleClick = node.toggle.bind(node);
+  caretElem.addEventListener('click', handleClick);
+
+  const indexElem = createElement('div', {
+    className: 'json-index',
+    content: node.key,
+  });
+
+  const typeElem = createElement('div', {
+    className: 'json-type',
+    content: node.type,
+  });
+
+  const keyElem = createElement('div', {
+    className: 'json-key',
+    content: node.key,
+  });
+
+  const sizeElem = createElement('div', {
+    className: 'json-size'
+  });
+
+  if (node.type === 'array') {
+    sizeElem.innerText = '[' + node.children.length + ']';
+  } else if (node.type === 'object') {
+    sizeElem.innerText = '{' + node.children.length + '}';
+  }
+
+  let lineChildren;
+  if (node.key === null) {
+    lineChildren = [caretElem, typeElem, sizeElem]
+  } else if (node.parent.type === 'array') {
+    lineChildren = [caretElem, indexElem, sizeElem]
+  } else {
+    lineChildren = [caretElem, keyElem, sizeElem]
+  }
+
+  const lineElem = createElement('div', {
+    className: 'line',
+    children: lineChildren
+  });
+
+  if (node.depth > 0) {
+    lineElem.style = 'margin-left: ' + node.depth * 24 + 'px;';
+  }
+
+  return lineElem;
+}
+
+
+/**
+ * @param {Object} node
+ * @return {HTMLElement}
+ */
+function createNotExpandedElement(node) {
+  const caretElem = createElement('div', {
+    className: 'empty-icon',
+  });
+
+  const keyElem = createElement('div', {
+    className: 'json-key',
+    content: node.key
+  });
+
+  const separatorElement = createElement('div', {
+    className: 'json-separator',
+    content: ':'
+  });
+
+  const valueType = ' json-' + typeof node.value;
+  const valueContent = String(node.value);
+  const valueElement = createElement('div', {
+    className: 'json-value' + valueType,
+    content: valueContent
+  });
+
+  const lineElem = createElement('div', {
+    className: 'line',
+    children: [caretElem, keyElem, separatorElement, valueElement]
+  });
+
+  if (node.depth > 0) {
+    lineElem.style = 'margin-left: ' + node.depth * 24 + 'px;';
+  }
+
+  return lineElem;
+}
+
+
+/**
+ * create tree node
+ * @return {Object}
+ */
+function createNode() {
+  return {
+    key: null,
+    parent: null,
+    value: null,
+    expanded: false,
+    type: null,
+    children: null,
+    elem: null,
+    depth: 0,
+
+    setCaretIconRight() {
+      const icon = this.elem.querySelector('.fas');
+      icon.classList.replace('fa-caret-down', 'fa-caret-right');
+    },
+
+    setCaretIconDown() {
+      const icon = this.elem.querySelector('.fas');
+      icon.classList.replace('fa-caret-right', 'fa-caret-down');
+    },
+
+    hideChildren() {
+      if (this.children !== null) {
+        this.children.forEach((item) => {
+          item.elem.classList.add('hide');
+          if (item.expanded) {
+            item.hideChildren();
+          }
+        });
+      }
+    },
+
+    showChildren() {
+      if (this.children !== null) {
+        this.children.forEach((item) => {
+          item.elem.classList.remove('hide');
+          if (item.expanded) {
+            item.showChildren();
+          }
+        });
+      }
+    },
+
+    toggle: function() {
+      if (this.expanded) {
+        this.expanded = false;
+        this.hideChildren();
+        this.setCaretIconRight();
+      } else {
+        this.expanded = true;
+        this.showChildren();
+        this.setCaretIconDown();
+      }
+    }
+  }
+}
+
+
+/**
+ * Return object length
+ * @param {Object} obj
+ * @return {number}
+ */
+function getLength(obj) {
+  let length = 0;
+  for (let key in obj) {
+    length += 1;
+  };
+  return length;
+}
+
+
+/**
+ * Return variable type
+ * @param {*} val
+ */
+function getType(val) {
+  let type = typeof val;
+  if (Array.isArray(val)) {
+    type = 'array';
+  } else if (val === null) {
+    type = 'null';
+  }
+  return type;
+}
+
+
+/**
+ * Recursively traverse json object
+ * @param {Object} obj parsed json object
+ * @param {Object} parent of object tree
+ */
+function traverseObject(obj, parent) {
+  for (let key in obj) {
+    const child = createNode();
+    child.parent = parent;
+    child.key = key;
+    child.type = getType(obj[key]);
+    child.depth = parent.depth + 1;
+    child.expanded = false;
+
+    if (typeof obj[key] === 'object') {
+      child.children = [];
+      parent.children.push(child);
+      traverseObject(obj[key], child);
+      child.elem = createExpandedElement(child);
+    } else {
+      child.value = obj[key];
+      child.elem = createNotExpandedElement(child);
+      parent.children.push(child);
+    }
+  }
+}
+
+
+/**
+ * Create root of a tree
+ * @param {Object} obj Json object
+ * @return {Object}
+ */
+function createTree(obj) {
+  const tree = createNode();
+  tree.type = getType(obj);
+  tree.children = [];
+  tree.expanded = true;
+
+  traverseObject(obj, tree);
+  tree.elem = createExpandedElement(tree);
+
+  return tree;
+}
+
+
+/**
+ * Recursively traverse Tree object
+ * @param {Object} node
+ * @param {Callback} callback
+ */
+function traverseTree(node, callback) {
+  callback(node);
+  if (node.children !== null) {
+    node.children.forEach((item) => {
+      traverseTree(item, callback);
+    });
+  }
+}
+
+
+/**
+ * Render Tree object
+ * @param {Object} tree
+ * @param {String} targetElem
+ */
+function render(tree, rootElem) {
+  /*if (targetElem) {
+    rootElem = document.querySelector(targetElem);
+  } else {
+    rootElem = document.body;
+  }*/
+
+  traverseTree(tree, (node) => {
+    if (!node.expanded) {
+      node.hideChildren();
+    }
+    rootElem.appendChild(node.elem);
+  });
+}
+
+
+/* Export jsonView object */
+window.jsonView = {
+  /**
+   * Render JSON into DOM container
+   * @param {String} jsonData
+   * @param {String} targetElem
+   */
+  format: function(jsonData, targetElem) {
+    let parsedData = jsonData;
+    if (typeof jsonData === 'string' || jsonData instanceof String) parsedData = JSON.parse(jsonData);
+    const tree = createTree(parsedData);
+    render(tree, targetElem);
+  }
+}
+
+})();
diff --git a/static/js/main.js b/static/js/main.js
new file mode 100644 (file)
index 0000000..f8c170f
--- /dev/null
@@ -0,0 +1,6 @@
+jQuery(document).ready(function() {
+    $('div.json[data-json]').each(function(index, element) {
+        var json = $(element).attr('data-json').replace(/[\u201C\u201D]/g, '"');
+        jsonView.format(json, element); 
+    });
+});
diff --git a/themes/learn b/themes/learn
new file mode 160000 (submodule)
index 0000000..d4abb3c
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit d4abb3c9a103bdd14e82184f76463a02755ee070