Tad Lispy website

This very website!

Devlog

Commits: 4

Present devlogs in reverse chronological order

So latest entries first. I think it makes more sense that way, so readers can easily see what happened recently. Otherwise they would have to scroll through a lot of historical entries.

index d80af22..f75a753 100644
--- a/templates/project.html
+++ b/templates/project.html
@@ -28,7 +28,7 @@
=    {# NOTE: If there is no devlog, then the heading will be hidden using CSS #}
=    <h2 id="devlog-heading">Devlog</h2>
=
-    {% for entry in devlog.pages %}
+    {% for entry in devlog.pages | sort(attribute="date") | reverse %}
=    {% if entry.extra.projects is containing(page.title) %}
=    <section class="devlog-entry">
=        <h3><time datetime="{{ entry.date }}">{{ entry.date | date(format="%A, %F")}}</time></h3>

Update Nix dependencies

index 03cb250..4cee253 100644
--- a/flake.lock
+++ b/flake.lock
@@ -20,11 +20,11 @@
=    },
=    "nixpkgs": {
=      "locked": {
-        "lastModified": 1775036866,
-        "narHash": "sha256-ZojAnPuCdy657PbTq5V0Y+AHKhZAIwSIT2cb8UgAz/U=",
+        "lastModified": 1776169885,
+        "narHash": "sha256-l/iNYDZ4bGOAFQY2q8y5OAfBBtrDAaPuRQqWaFHVRXM=",
=        "owner": "NixOS",
=        "repo": "nixpkgs",
-        "rev": "6201e203d09599479a3b3450ed24fa81537ebc4e",
+        "rev": "4bd9165a9165d7b5e33ae57f3eecbcb28fb231c9",
=        "type": "github"
=      },
=      "original": {

Introduce craft taxonomy for projects

I want to highlight the crafts (like programming languages, frameworks, methodologies, tools and techniques) applied to each project. In Zola this is best expressed using taxonomies.

Each craft is listed in the project card and dedicated page. There is also a crafts list page under /crafts/ and each craft has a page listing projects it's applied to.

index e276ece..56a70c8 100644
--- a/config.toml
+++ b/config.toml
@@ -14,6 +14,10 @@ build_search_index = true
=generate_feeds = true
=feed_filenames = ["atom.xml", "rss.xml"]
=
+taxonomies = [
+    { name = "craft", render = true }
+]
+
=[markdown]
=bottom_footnotes = false
=
index f55c819..fe4f05e 100644
--- a/content/works/tad-better-behavior/index.md
+++ b/content/works/tad-better-behavior/index.md
@@ -1,6 +1,12 @@
=---
=title: Tad Better Behavior
=weight: 0
+
+taxonomies:
+    craft: 
+    - Rust
+    - Behavior Driven Development
+    - Command Line Tools
=---
=
=# TBB: Tad Better Behavior
new file mode 100644
index 0000000..59464a7
--- /dev/null
+++ b/templates/craft/list.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+
+{% block variables %}
+{{ super() }}
+{% set page_class  = "taxonomy crafts" %}
+{% set title = "Tad Crafts" %}
+{% set description = "Technologies, methods, techniques and skills I cultivate in my work." %}
+{% endblock variables %}
+
+{% block content %}
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
+            <li><strong>Crafts</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+
+    <p>In my work I proudly cultivate the following crafts.</p>
+
+    {% for craft in terms %}
+    <article class="craft-card">
+        <p><a href="{{ craft.path }}">{{ craft.name }}</a></p>
+        <p>
+            Practiced in {{ craft.pages | length }} featured
+            {{ craft.pages | length | pluralize(singular="project", plural="project")}}:
+
+            {% for project in craft.pages %}
+            <a href="{{ project.path }}">{{ project.title }}</a>
+            {% endfor %}
+        </p>
+
+    </article>
+    {% endfor %}
+
+</main>
+
+{% include "includes/footer.html" %}
+{% endblock content %}
+
new file mode 100644
index 0000000..3977306
--- /dev/null
+++ b/templates/craft/single.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+
+{% block variables %}
+{{ super() }}
+{% set page_class  = "taxonomy crafts" %}
+{% set title = term.name %}
+{% set description = "It's a craft." %}
+{% endblock variables %}
+
+{% block content %}
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
+            <li><a href="{{ get_url(path='/craft/') }}">Crafts</a></li>
+            <li><strong>{{ term.name }}</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+
+    <p>
+        Practiced in {{ term.pages | length }} featured
+        {{ term.pages | length | pluralize(singular="project", plural="project")}}.
+    </p>
+    
+    {% for project in term.pages %}
+        <article>
+            <h2>{{ project.title }}</h2>
+            <p><a href="{{ project.path }}">Read more about {{ project.title }}</a> </p>
+        </article>
+    {% endfor %}
+
+</main>
+
+{% include "includes/footer.html" %}
+{% endblock content %}
+
index f75a753..eccccad 100644
--- a/templates/project.html
+++ b/templates/project.html
@@ -25,6 +25,13 @@
=
=    {{ page.content | safe }}
=
+    <ul class="craft-list">
+        {% for craft in page.taxonomies | get(key="craft", default=[]) %}
+
+        <li><a href="{{ get_taxonomy_url(kind="craft", name=craft) }}">{{ craft }}</a></li>
+        {% endfor %}
+    </ul>
+
=    {# NOTE: If there is no devlog, then the heading will be hidden using CSS #}
=    <h2 id="devlog-heading">Devlog</h2>
=
index ec1694f..49b18af 100644
--- a/templates/works.html
+++ b/templates/works.html
@@ -29,6 +29,12 @@
=        {% for project in section.pages %}
=        <article>
=            <h2>{{ project.title }}</h2>
+            <ul class="craft-list">
+                {% for craft in project.taxonomies | get(key="craft", default=[]) %}
+
+                <li><a href="{{ get_taxonomy_url(kind="craft", name=craft) }}">{{ craft }}</a></li>
+                {% endfor %}
+            </ul>
=            <p><a href="{{ project.path }}">Read more about {{ project.title }}</a> </p>
=        </article>
=        {% endfor %}

At this moment I mainly want to see how the new taxonomy will work with multiple projects. There are already some devlog entries for them, and they share some crafts, so these are good candidates to add. Later I'll list many more projects.

And of course as soon as I added them, I found a bug in pluralization :P

new file mode 100644
index 0000000..35bfae2
--- /dev/null
+++ b/content/works/better-tech-club-website/index.md
@@ -0,0 +1,15 @@
+---
+title: Better Tech Club website
+weight: 1
+taxonomies:
+    craft:
+    - Web Development
+    - No JS
+    - Modern CSS
+    - Handcrafted HTML
+    - Graphic Design
+---
+
+# Better Tech Club website
+
+<https://bettertechclub.eu>
new file mode 100644
index 0000000..fe5fdff
--- /dev/null
+++ b/content/works/devlog-excavator/index.md
@@ -0,0 +1,16 @@
+---
+title: Devlog Excavator
+weight: 1
+
+taxonomies:
+    craft: 
+    - Nushell
+    - Behavior Driven Development
+    - Command Line Tools
+    - Markdown processing
+---
+
+# Devlog Excavator
+
+I use it to excavate the content below, and in other projects listed on this site.
+
index fe4f05e..aa74ada 100644
--- a/content/works/tad-better-behavior/index.md
+++ b/content/works/tad-better-behavior/index.md
@@ -7,6 +7,7 @@ taxonomies:
=    - Rust
=    - Behavior Driven Development
=    - Command Line Tools
+    - Markdown processing
=---
=
=# TBB: Tad Better Behavior
index 59464a7..c506e7a 100644
--- a/templates/craft/list.html
+++ b/templates/craft/list.html
@@ -26,7 +26,7 @@
=        <p><a href="{{ craft.path }}">{{ craft.name }}</a></p>
=        <p>
=            Practiced in {{ craft.pages | length }} featured
-            {{ craft.pages | length | pluralize(singular="project", plural="project")}}:
+            {{ craft.pages | length | pluralize(singular="project", plural="projects")}}:
=
=            {% for project in craft.pages %}
=            <a href="{{ project.path }}">{{ project.title }}</a>
index 3977306..67ab0de 100644
--- a/templates/craft/single.html
+++ b/templates/craft/single.html
@@ -22,7 +22,7 @@
=
=    <p>
=        Practiced in {{ term.pages | length }} featured
-        {{ term.pages | length | pluralize(singular="project", plural="project")}}.
+        {{ term.pages | length | pluralize(singular="project", plural="projects")}}.
=    </p>
=    
=    {% for project in term.pages %}

Commits: 1

Turn TBB logo diff into an actual SVG

So instead of reading a diff with all additions, readers can see the graphic.

Maybe images and other multimedia should be excavated along the markdown entries? Modified images should be presented side by side.

index 9f5d3d5..12ee7eb 100644
--- a/content/devlog/2026-04-08-tad-better-behavior.md
+++ b/content/devlog/2026-04-08-tad-better-behavior.md
@@ -11,414 +11,48 @@ Commits: 1
=
=# Draw an icon
=
-
-
-``` diff
-new file mode 100644
-index 0000000..f4729d4
-Binary files /dev/null and b/logo.png differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..d54a374
---- /dev/null
-+++ b/logo.svg
-@@ -0,0 +1,279 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="32"
-+   height="32"
-+   viewBox="0 0 32 32"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   sodipodi:docname="logo.svg"
-+   inkscape:export-filename="logo.png"
-+   inkscape:export-xdpi="96"
-+   inkscape:export-ydpi="96"
-+   inkscape:export-batch-name="tbb"
-+   inkscape:export-batch-path="."
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/">
-+  <title
-+     id="title1">Tad Better Bahavior Logo</title>
-+  <defs
-+     id="defs2">
-+    <inkscape:path-effect
-+       effect="fillet_chamfer"
-+       id="path-effect17"
-+       is_visible="true"
-+       lpeversion="1"
-+       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
-+       radius="1"
-+       unit="px"
-+       method="auto"
-+       mode="F"
-+       chamfer_steps="1"
-+       flexible="false"
-+       use_knot_distance="true"
-+       apply_no_radius="true"
-+       apply_with_radius="true"
-+       only_selected="false"
-+       hide_knots="false" />
-+    <inkscape:path-effect
-+       effect="fillet_chamfer"
-+       id="path-effect15"
-+       is_visible="true"
-+       lpeversion="1"
-+       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
-+       radius="1"
-+       unit="px"
-+       method="auto"
-+       mode="F"
-+       chamfer_steps="1"
-+       flexible="false"
-+       use_knot_distance="true"
-+       apply_no_radius="true"
-+       apply_with_radius="true"
-+       only_selected="false"
-+       hide_knots="false" />
-+    <inkscape:path-effect
-+       effect="fillet_chamfer"
-+       id="path-effect14"
-+       is_visible="true"
-+       lpeversion="1"
-+       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
-+       radius="1"
-+       unit="px"
-+       method="auto"
-+       mode="F"
-+       chamfer_steps="1"
-+       flexible="false"
-+       use_knot_distance="true"
-+       apply_no_radius="true"
-+       apply_with_radius="true"
-+       only_selected="false"
-+       hide_knots="false" />
-+    <inkscape:path-effect
-+       effect="perspective-envelope"
-+       up_left_point="6,6"
-+       up_right_point="16,6"
-+       down_left_point="6,29"
-+       down_right_point="16,29"
-+       id="path-effect3"
-+       is_visible="true"
-+       lpeversion="1"
-+       deform_type="envelope_deformation"
-+       horizontal_mirror="false"
-+       vertical_mirror="false"
-+       overflow_perspective="false" />
-+    <inkscape:path-effect
-+       effect="perspective-envelope"
-+       up_left_point="6,3.7796721"
-+       up_right_point="16,7.00924"
-+       down_left_point="6,26.25"
-+       down_right_point="16,31.691307"
-+       id="path-effect1"
-+       is_visible="true"
-+       lpeversion="1"
-+       deform_type="envelope_deformation"
-+       horizontal_mirror="false"
-+       vertical_mirror="false"
-+       overflow_perspective="false" />
-+    <inkscape:path-effect
-+       effect="perspective-envelope"
-+       up_left_point="6,6"
-+       up_right_point="16,6"
-+       down_left_point="6,29"
-+       down_right_point="16,29"
-+       id="path-effect24"
-+       is_visible="true"
-+       lpeversion="1"
-+       deform_type="envelope_deformation"
-+       horizontal_mirror="false"
-+       vertical_mirror="false"
-+       overflow_perspective="false" />
-+    <inkscape:path-effect
-+       effect="perspective-envelope"
-+       up_left_point="6,6"
-+       up_right_point="16,6"
-+       down_left_point="6,29"
-+       down_right_point="16,29"
-+       id="path-effect8"
-+       is_visible="true"
-+       lpeversion="1"
-+       deform_type="envelope_deformation"
-+       horizontal_mirror="false"
-+       vertical_mirror="false"
-+       overflow_perspective="false" />
-+    <linearGradient
-+       id="swatch1"
-+       inkscape:swatch="solid">
-+      <stop
-+         style="stop-color:#333333;stop-opacity:1;"
-+         offset="0"
-+         id="stop1" />
-+    </linearGradient>
-+  </defs>
-+  <sodipodi:namedview
-+     id="base"
-+     pagecolor="#343434"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="16"
-+     inkscape:cx="24.53125"
-+     inkscape:cy="6.25"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="layer1"
-+     inkscape:document-rotation="0"
-+     showgrid="false"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     showguides="false">
-+    <inkscape:grid
-+       id="grid1"
-+       units="px"
-+       originx="16"
-+       originy="16"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="false" />
-+    <sodipodi:guide
-+       position="9.5,12"
-+       orientation="-1,0"
-+       id="guide20"
-+       inkscape:locked="false"
-+       inkscape:label=""
-+       inkscape:color="rgb(0,134,229)" />
-+    <sodipodi:guide
-+       position="12.78125,12.355469"
-+       orientation="1,0"
-+       id="guide21"
-+       inkscape:locked="false" />
-+    <sodipodi:guide
-+       position="16,25.418434"
-+       orientation="0,-1"
-+       id="guide7"
-+       inkscape:locked="false" />
-+  </sodipodi:namedview>
-+  <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>Tad Better Bahavior Logo</dc:title>
-+        <dc:date>2026-04-06</dc:date>
-+        <dc:creator>
-+          <cc:Agent>
-+            <dc:title>Tad Lispy</dc:title>
-+          </cc:Agent>
-+        </dc:creator>
-+        <dc:rights>
-+          <cc:Agent>
-+            <dc:title>All rights reserved</dc:title>
-+          </cc:Agent>
-+        </dc:rights>
-+      </cc:Work>
-+    </rdf:RDF>
-+  </metadata>
-+  <g
-+     inkscape:label="icon"
-+     inkscape:groupmode="layer"
-+     id="layer1">
-+    <circle
-+       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       id="path29"
-+       cx="16"
-+       cy="16"
-+       r="16"
-+       inkscape:label="background" />
-+    <path
-+       id="path28"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z"
-+       sodipodi:nodetypes="ccccc"
-+       inkscape:label="rubber-right-back" />
-+    <path
-+       id="rect26"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z"
-+       sodipodi:nodetypes="cccscc"
-+       inkscape:label="rubber-left" />
-+    <circle
-+       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       id="ellipse15"
-+       cx="23.912268"
-+       cy="22.700811"
-+       inkscape:label="projectile"
-+       r="3.5171616" />
-+    <path
-+       id="rect20"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z"
-+       sodipodi:nodetypes="ccccc"
-+       inkscape:label="rubber-top-left-back" />
-+    <path
-+       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
-+       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
-+       id="path11"
-+       inkscape:label="sling"
-+       sodipodi:nodetypes="cssscsscsssssssssscc" />
-+    <path
-+       id="path26"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z"
-+       sodipodi:nodetypes="ccccc"
-+       inkscape:label="rubber-top-right" />
-+    <path
-+       id="rect17"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z"
-+       sodipodi:nodetypes="csccscc"
-+       inkscape:label="rubber-right" />
-+    <path
-+       id="path27"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z"
-+       sodipodi:nodetypes="ccccc"
-+       inkscape:label="rubber-top-left-front" />
-+  </g>
-+</svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..f4729d4
-Binary files /dev/null and b/tbb_icon.png differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..bf38170
---- /dev/null
-+++ b/tbb_icon.svg
-@@ -0,0 +1,91 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="32"
-+   height="32"
-+   viewBox="0 0 32 32"
-+   version="1.1"
-+   id="svg8"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/">
-+  <title
-+     id="title1">Tad Better Bahavior Logo</title>
-+  <defs
-+     id="defs2">
-+    <linearGradient
-+       id="swatch1">
-+      <stop
-+         style="stop-color:#333333;stop-opacity:1;"
-+         offset="0"
-+         id="stop1" />
-+    </linearGradient>
-+  </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>Tad Better Bahavior Logo</dc:title>
-+        <dc:date>2026-04-06</dc:date>
-+        <dc:creator>
-+          <cc:Agent>
-+            <dc:title>Tad Lispy</dc:title>
-+          </cc:Agent>
-+        </dc:creator>
-+        <dc:rights>
-+          <cc:Agent>
-+            <dc:title>All rights reserved</dc:title>
-+          </cc:Agent>
-+        </dc:rights>
-+      </cc:Work>
-+    </rdf:RDF>
-+  </metadata>
-+  <g
-+     id="layer1">
-+    <circle
-+       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       id="path29"
-+       cx="16"
-+       cy="16"
-+       r="16" />
-+    <path
-+       id="path28"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z" />
-+    <path
-+       id="rect26"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z" />
-+    <circle
-+       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       id="ellipse15"
-+       cx="23.912268"
-+       cy="22.700811"
-+       r="3.5171616" />
-+    <path
-+       id="rect20"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z" />
-+    <path
-+       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
-+       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
-+       id="path11" />
-+    <path
-+       id="path26"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z" />
-+    <path
-+       id="rect17"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z" />
-+    <path
-+       id="path27"
-+       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
-+       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z" />
-+  </g>
-+</svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..22e799a
-Binary files /dev/null and b/tbb_icon_512.png differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..25b4c8f
-Binary files /dev/null and b/tbb_icon_64.png differ
-```
\ No newline at end of file
+<svg width="50%" viewBox="0 0 32 32" version="1.1" id="svg8" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+<title id="title1">Tad Better Bahavior Logo
+</title>
+<defs id="defs2">
+<linearGradient id="swatch1">
+<stop style="stop-color:#333333;stop-opacity:1;" offset="0" id="stop1" />
+</linearGradient>
+</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>Tad Better Bahavior Logo
+</dc:title>
+<dc:date>2026-04-06
+</dc:date>
+<dc:creator>
+<cc:Agent>
+<dc:title>Tad Lispy
+</dc:title>
+</cc:Agent>
+</dc:creator>
+<dc:rights>
+<cc:Agent>
+<dc:title>All rights reserved
+</dc:title>
+</cc:Agent>
+</dc:rights>
+</cc:Work>
+</rdf:RDF>
+</metadata>
+<g id="layer1">
+<circle style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" id="path29" cx="16" cy="16" r="16" />
+<path id="path28" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z" />
+<path id="rect26" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z" />
+<circle style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" id="ellipse15" cx="23.912268" cy="22.700811" r="3.5171616" />
+<path id="rect20" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z" />
+<path style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1" d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z" id="path11" />
+<path id="path26" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z" />
+<path id="rect17" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z" />
+<path id="path27" style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill" d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z" />
+</g>
+</svg>

Commits: 7

Keep the dates in output paths

By default Zola removes the date prefix from the path, so /content/blog/2025-03-16-tad-co-op-and-manifesto.md becomes

https://tad-lispy.com/blog/tad-co-op-and-manifesto/

I don't think it's good in general, but also it can't work with the upcoming devlog section. Files there don't have unique slugs except for dates, so the paths would collide and Zola complains about it.

So now the aformentioned page will be served at

https://tad-lispy.com/blog/2025-03-16-tad-co-op-and-manifesto/

That's better, but I don't want to break existing links (people might riot in the streets should that happen!), so I provided aliases for the old content.

index 1855ae9..e276ece 100644
--- a/config.toml
+++ b/config.toml
@@ -18,12 +18,15 @@ feed_filenames = ["atom.xml", "rss.xml"]
=bottom_footnotes = false
=
=[markdown.highlighting]
-light_theme = "solarized-light"                                                                                     
+light_theme = "solarized-light"
=dark_theme = "solarized-dark"
=
=[link_checker]
=# Seems like some services (e.g. stackoverflow) are blocking connections from CI servers
=external_level = "warn"
=
+[slugify]
+paths_keep_dates = true
+
=[extra]
=# Put all your custom variables here
index 2e7898c..53dc76b 100644
--- a/content/blog/2015-04-28-npm-install-coffee-from-git/index.md
+++ b/content/blog/2015-04-28-npm-install-coffee-from-git/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Install NPM Packages Written in CoffeeScript from a Git Repo
+aliases: [/blog/npm-install-coffee-from-git]
=---
=
=> 2024 Update: Some links to external content are unfortunately outdated. The content in this post doesn't seem relevant to me anymore, except for archival reasons, so I'm not going to update those broken links.
index 8ceabb9..35ab460 100644
--- a/content/blog/2015-07-12-an-idea-for-a-blog/index.md
+++ b/content/blog/2015-07-12-an-idea-for-a-blog/index.md
@@ -1,5 +1,6 @@
=---
=title: An idea for a blog
+aliases: [/blog/an-idea-for-a-blog]
=---
=
=Obviously I have this, or some other idea for a long while. Now it's time to pinpoint it.
index e7d1032..48679d6 100644
--- a/content/blog/2015-07-29-react-component-testing/index.md
+++ b/content/blog/2015-07-29-react-component-testing/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Test if a Given Value is a React.js Component 
+aliases: [/blog/react-component-testing]
=---
=
=> 2024 Update: Some links to external content are unfortunately outdated. The content in this post doesn't seem relevant to me anymore, except for archival reasons, so I'm not going to update those broken links.
index ef18572..5b016a3 100644
--- a/content/blog/2017-06-29-managing-access-to-npm-private-packages/index.md
+++ b/content/blog/2017-06-29-managing-access-to-npm-private-packages/index.md
@@ -1,5 +1,6 @@
=---
=title: Managing access to private NPM repositories
+aliases: [/blog/managing-access-to-npm-private-packages]
=---
=
=Make private package accessible to members of deployment team from command line:
index c5bed44..1817e7e 100644
--- a/content/blog/2017-07-20-how-to-setup-ssh-key-limited-to-creating-a-tunnel/index.md
+++ b/content/blog/2017-07-20-how-to-setup-ssh-key-limited-to-creating-a-tunnel/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Setup SSH Key limited to Creating a Tunnel
+aliases: [/blog/how-to-setup-ssh-key-limited-to-creating-a-tunnel]
=---
=
=For a given key I was intending to prevent **any** interaction **except** for starting an SSH tunnel to a particular local port. Turns out that for each key in `~/.ssh/authorized_keys` you can add so called *login options*, by preppending them to the key, like that:
index 84dc779..82a88df 100644
--- a/content/blog/2017-07-21-facebook-flow-in-an-alpine-node-docker-container/index.md
+++ b/content/blog/2017-07-21-facebook-flow-in-an-alpine-node-docker-container/index.md
@@ -1,5 +1,6 @@
=---
=title: Running Facebook's Flow in an Alpine Node Container
+aliases: [/blog/facebook-flow-in-an-alpine-node-docker-container]
=---
=
=Create a `Dockerfile` and an `npmrc` template
index 7272fc7..3b04099 100644
--- a/content/blog/2017-08-04-node-promise-race-timeout/index.md
+++ b/content/blog/2017-08-04-node-promise-race-timeout/index.md
@@ -1,5 +1,6 @@
=---
=title: Using `Promise.race` in Node.js to enforce a timeout 
+aliases: [/blog/node-promise-race-timeout]
=---
=
=It is a little bit more tricky than this:
index d51c438..8cbc5cd 100644
--- a/content/blog/2017-08-04-promise-then-undefined/index.md
+++ b/content/blog/2017-08-04-promise-then-undefined/index.md
@@ -1,5 +1,6 @@
=---
=title: Passing `undefined` to a JavaScript promise 
+aliases: [/blog/promise-then-undefined]
=---
=
=Consider this simple snippet:
index 6954bbd..e3a7608 100644
--- a/content/blog/2017-08-04-weird-aws-region-bug/index.md
+++ b/content/blog/2017-08-04-weird-aws-region-bug/index.md
@@ -1,5 +1,6 @@
=---
=title: Weird AWS region bug
+aliases: [/blog/weird-aws-region-bug]
=---
=
=I've been fighting a weird error coming from AWS SDK for Node.js:
index 383f82d..029a91c 100644
--- a/content/blog/2019-08-27-shape-up-by-ryan-singer/index.md
+++ b/content/blog/2019-08-27-shape-up-by-ryan-singer/index.md
@@ -1,5 +1,6 @@
=---
=title: Shape Up by Ryan Singer from Basecamp
+aliases: [/blog/shape-up-by-ryan-singer]
=---
=
=> 2024 Update: To large extent [Software Garden](https://software.garden/) was an attempt to implement the ideas from Singer's book, but adapted to working with clients.
index 45957f0..72aedd0 100644
--- a/content/blog/2020-01-16-why-is-this-so-terrible/index.md
+++ b/content/blog/2020-01-16-why-is-this-so-terrible/index.md
@@ -1,5 +1,6 @@
=---
=title: Why is `this` so terrible
+aliases: [/blog/why-is-this-so-terrible]
=---
=
=Recently at a meetup in Utrecht I gave a short presentation: *Elements of Functional Programming for React.js Developers*. See [the slides](https://tad-lispy.gitlab.io/why-is-this-so-terrible/).
index 9abf1ce..cce52ae 100644
--- a/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
+++ b/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
@@ -1,5 +1,6 @@
=---
=title: Tad Co-op
+aliases: [/blog/tad-co-op-and-manifesto]
=---
=
=I wrote the following manifesto as a guide to how and with whom I want to work. It's my personal statement, and I have no right to impose it on anyone else, but if you significantly disagree with any part of it, then we probably shouldn't work together. That is unless you can change my mind first.
index 940a5cc..042828f 100644
--- a/content/blog/2025-03-20-guiding-principles-for-a-co-op/index.md
+++ b/content/blog/2025-03-20-guiding-principles-for-a-co-op/index.md
@@ -1,5 +1,6 @@
=---
=title: Guiding principles for a co-op
+aliases: [/blog/guiding-principles-for-a-co-op]
=---
=
=So it really seems like [I am starting a business](/blog/the-plan-for-a-co-op/) with a bunch of beautiful strangers. What a fantastic feeling! The kind and sometimes weird interactions I had with you over the past two weeks inspired me to get to work early every morning. And now that we are going to work together, we need to figure out how to do it.
index 21dd128..ac7de8c 100644
--- a/content/blog/2025-03-21-the-plan-for-a-co-op/index.md
+++ b/content/blog/2025-03-21-the-plan-for-a-co-op/index.md
@@ -1,5 +1,6 @@
=---
=title: The plan for a co-op
+aliases: [/blog/the-plan-for-a-co-op]
=---
=
=A hopeful sci-fi story in which I invite you to join a network of smart and kind professionals, who support one another both in their work and personally 🧑‍🚀 We want to set up a co-operative sometime within the next 12 months and conquer the world with our kindness within 10 years. What brings us together and guides our efforts is our shared desire for fairness and freedom, and our concern about dependence on big tech oligopolies 👾 That's why we want to support businesses in a transition to free software and European digital services.
index 161aef4..25d0e65 100644
--- a/content/blog/_index.md
+++ b/content/blog/_index.md
@@ -1,5 +1,5 @@
=---
-title: "Tad Lispy Blog"
+title: "Tad Blog"
=sort_by: "date"
=template: "blog.html"
=page_template: "blog-post.html"
index cc271e4..be6be4e 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -17,7 +17,7 @@
=    <nav aria-label="breadcrumb">
=        <ul>
=            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
-            <li><strong>Blog</strong></li>
+            <li><strong>{{ section.title }}</strong></li>
=        </ul>
=    </nav>
=    {{ section.content | safe }}

Import some sample data for the devlog

These are logs excavated from some projects I've been working on over the last 3 weeks, using Devlog Excavator - itself one of the projects (how meta!).

More is to follow, but for now I want to focus on the Zola side of things. Once I have good templates and taxonomy handling, I'll bring more.

new file mode 100644
index 0000000..c2414f3
--- /dev/null
+++ b/content/devlog/2026-04-02-tad-better-behavior.md
@@ -0,0 +1,466 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 4
+
+
+# Fix a regression in display, update the spec
+
+
+
+``` diff
+index d579577..0a1cd93 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -72,7 +72,7 @@ We would also need a step like `Change working directory to ...` to execute befo
+=
+=## Showing a spec from a different directory
+=
+-Whe a directory is given as the last argument, load all documents inside (recursively).
++When a directory is given as the last argument, load all documents inside (recursively).
+=
+=
+=## Showing suites and scenarios from a single document
+@@ -110,7 +110,7 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=    ``` text
+=      * Text
+=        tagged: strings work-in-progress
+-        source: samples/basic.md:35-91
++        source: samples/basic.md:35-100
+=
+=        00. The word blocks has 6 characters
+=            arguments: ["blocks", "6"]
+@@ -121,18 +121,18 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=        02. There are 3 rs in the word strawberry
+=            arguments: ["3", "r", "strawberry"]
+=            source: samples/basic.md:58-58
+-        03. The following table maps words to their lengths
+-            code blocks: 1, tables: 1
+-            source: samples/basic.md:59-84
++        03. The following tables map words to their lengths
++            code blocks: 1, tables: 2
++            source: samples/basic.md:59-93
+=        04. The reverse of abc is cba
+=            arguments: ["abc", "cba"]
+-            source: samples/basic.md:85-85
++            source: samples/basic.md:94-94
+=        05. The reverse of CIA is KGB
+=            arguments: ["CIA", "KGB"]
+-            source: samples/basic.md:86-89
++            source: samples/basic.md:95-98
+=        06. There are 2 os in the word boost
+=            arguments: ["2", "o", "boost"]
+-            source: samples/basic.md:90-91
++            source: samples/basic.md:99-100
+=    ```
+=
+=  * The exit code should be `0`
+@@ -163,7 +163,7 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=        ⬑ all 3 steps successful.
+=    ```
+=
+-    Notice it's similar to the output of `tbb show`, but now contains unicode symbols to indicate the results of each step. Each completed scenario has a check mark `✓`.  The number of steps is indicated by the `⊞` sigils and a message on the following line. This is called "condensed output".
++    Notice it's similar to the output of `tbb show`, but now contains Unicode symbols to indicate the results of each step. Each completed scenario has a check mark `✓`. The number of steps is indicated by the `⊞` sigils and a message on the following line. This is called "condensed output".
+=
+=    TODO: Create a separate "condensed output" suite that focuses on this aspect.
+=
+@@ -172,53 +172,60 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=    ```text
+=      x Text
+=        tagged: strings work-in-progress
+-        source: samples/basic.md:35-91
++        source: samples/basic.md:35-100
++    ```
+=
++  * The output will contain `an expanded successful step` block
+=
++    ``` text
+=        ⊞ The word blocks has 6 characters
+=          arguments: ["blocks", "6"]
+=          source: samples/basic.md:45-45
+=
+-        ⊞ There are 3 properties in the following JSON
+-          arguments: ["3"], code blocks: 1
+-          source: samples/basic.md:46-57
+-
+-        ⊞ There are 3 rs in the word strawberry
+-          arguments: ["3", "r", "strawberry"]
+-          source: samples/basic.md:58-58
+-
+-        ⊞ The following table maps words to their lengths
+-          code blocks: 1, tables: 1
+-          source: samples/basic.md:59-84
++          > Is 'blocks' of length 6?
++    ```
+=
+-        ⊞ The reverse of abc is cba
+-          arguments: ["abc", "cba"]
+-          source: samples/basic.md:85-85
++    
++    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed.
++    
++    
++  * The output will contain `the failing step` block
+=
++    ``` text
+=        ⊠ The reverse of CIA is KGB
+=          arguments: ["CIA", "KGB"]
+-          source: samples/basic.md:86-89
++          source: samples/basic.md:95-98
++
++          > Is 'KGB' the reverse of 'CIA'? I think the reverse is 'AIC'.
++
+=
+=          'KGB' != 'AIC'
+=
+=          - KGB
+=          + AIC
++    ```
+=
++    The failing step is marked with a squared times symbol `⊠`. There is an observation (the block quote) and the error message from the interpreter.
++    
++  * The output will contain `the skipped step` block
++   
++    ``` text 
+=        □ There are 2 os in the word boost
+=          arguments: ["2", "o", "boost"]
+-          source: samples/basic.md:90-91
++          source: samples/basic.md:99-100
+=    ```
+-    
+-    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil . The failing step is markd with a squared times symbol `⊠`. Once a step fails, the subsequent steps in a scenario are not exercised. In the report they are marked with a white square symbol `□`.
+=
+-    To aid in debugging, each step is now expanded, showing it's source position and arguments.
++  
++    Once a step fails, the subsequent steps in a scenario are not exercised. In the report they are marked with a white square symbol `□`.
++
++    To aid in debugging, each step is now expanded, showing its source position and arguments.
+=  
+=  * The output will contain `geometry scenario` block
+=
+=    ```text
+=      ? Geometry
+=        tagged: math
+-        source: samples/basic.md:92-99
++        source: samples/basic.md:101-108
+=
+=        There are no steps to execute in this scenario.
+=    ```
+@@ -234,4 +241,4 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=
+=## Running without a subcommand
+=
+-Running `tbb` without a subcommand will print the help message (to stderr) and exit with code 2.
++Running `tbb` without a subcommand will print the help message (to `stderr`) and exit with code 2.
+```
+
+``` diff
+index 3ae8227..6acb94c 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -387,7 +387,7 @@ impl Display for EvaluationReport<'_> {
+=                if scenario.steps.is_empty() {
+=                    writeln!(
+=                        f,
+-                        "{}",
++                        "\n{}",
+=                        "There are no steps to execute in this scenario."
+=                            .indent(4)
+=                            .yellow()
+```
+
+# Implement the Link observation
+
+
+
+``` diff
+index 75f73ef..96dc34a 100644
+--- a/samples/basic.py
++++ b/samples/basic.py
+@@ -44,6 +44,9 @@ def step_implementation_04(a: float, b: float, expected: float, **kwargs):
+=@step("There are {0} {1}s in the word {2}")
+=def step_implementation_05(count: int, letter: str, word: str, **kwargs):
+=    actual_count = word.count(letter)
++
++    tbb.send_link(f"https://www.dictionary.com/browse/{word}", f"Check the spelling of `{word}`")
++
+=    tester.assertEqual(count, actual_count)
+=
+=@step("The reverse of {0} is {1}")
+```
+
+``` diff
+index 74e1b01..cf3096f 100644
+--- a/spec/tbb.py
++++ b/spec/tbb.py
+@@ -204,6 +204,15 @@ def send_snippet(language, content, meta = ""):
+=    })
+=    
+=
++def send_link(url, label=None):
++    """ Send a link with an optional label to be displayed in a TBB report
++    """
++    send({
++        "type": "Link",
++        "url": url,
++        "label": label
++    })
++
+=# TODO: Docstring and test cases for `get_at`. See `self-check` for example use.
+=def get_at(collection, path: [str]):
+=    value = collection
+```
+
+``` diff
+index 6acb94c..57da103 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -184,6 +184,9 @@ impl<'a> ScenarioReport<'a> {
+=                            content,
+=                        });
+=                    }
++                    InterpreterMessage::Link { url, label } => {
++                        observations.push(Observation::Link { url, label });
++                    }
+=                    InterpreterMessage::Success => {
+=                        log::debug!("Step executed successfully: {step:#?}");
+=                        *status = StepStatus::Ok;
+@@ -294,7 +297,10 @@ pub enum Observation {
+=    // Audio,
+=    // Video,
+=    // Attachment,
+-    // Link,
++    Link {
++        url: String,
++        label: Option<String>,
++    },
+=}
+=
+=impl Display for Observation {
+@@ -312,6 +318,13 @@ impl Display for Observation {
+=            Observation::Text { content } => {
+=                writeln!(f, "{}", content.prefix_with("> "))
+=            }
++            Observation::Link { url, label } => {
++                if let Some(label) = label {
++                    writeln!(f, "[{label}]({url})")
++                } else {
++                    writeln!(f, "<{url}>")
++                }
++            }
+=        }
+=    }
+=}
+@@ -496,6 +509,10 @@ pub enum InterpreterMessage {
+=        meta: String,
+=        content: String,
+=    },
++    Link {
++        url: String,
++        label: Option<String>,
++    },
+=    Success,
+=    Failure {
+=        reason: String,
+```
+
+# Update the roadmap
+
+
+
+``` diff
+index d4be474..185958d 100644
+--- a/roadmap.md
++++ b/roadmap.md
+@@ -14,10 +14,13 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=    - [ ] Gauge
+=    - [ ] Cucumber 
+=    - [ ] Playwright
++- [ ] An icon (slingshot?)
++- [ ] Release branch and tagging
++- [ ] HTML reports
+=- [ ] Demo
+-- [ ] Show and report output formats
+-  - [ ] JSON
+-  - [ ] Markdown
++- [x] Show and evaluate output formats
++  - [x] JSON
++  - [x] Markdown
+=- [x] Proof of concept
+=  - [x] Interpretter in a different language (Python)
+=  - [x] Report why steps fail
+@@ -52,7 +55,7 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=  - [x] Use colors
+=  - [ ] More instructive error messages
+=  - [x] Indent multiline error messages
+-  - [ ] Collapse ommited steps (`□□□□□□ following 6 steps skipped`)
++  - [x] Collapse ommited steps (`□□□□□□ following 6 steps skipped`)
+=  - [x] Collapse filtered out suites
+=  - [x] Collapse filtered out scenarios
+=  - [x] Mark scenarios without steps
+@@ -88,5 +91,4 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=- [ ] Better reporters
+=    - [ ] TUI
+=    - [ ] Web
+-- [ ] WASM target
+=
+```
+
+# Write assertions about snippet observations
+
+My Emacs doesn't handle nested code blocks well, so I implemented a
+little hack, where it's possible to escape a backtick with a
+backslash (thus making it meaningless to Markdown). The step
+implementation un-escapes them before comparison.
+
+``` diff
+index 0a1cd93..86d94af 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -175,7 +175,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=        source: samples/basic.md:35-100
+=    ```
+=
+-  * The output will contain `an expanded successful step` block
++  * The output will contain `an expanded successful step with a text observation` block
+=
+=    ``` text
+=        ⊞ The word blocks has 6 characters
+@@ -186,9 +186,110 @@ When a directory is given as the last argument, load all documents inside (recur
+=    ```
+=
+=    
+-    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed.
++    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed. Here is an example of a text observation, in a block quote.
+=    
+=    
++  * The output will contain `an expanded successful step with a link observation` block
++
++    ``` text
++        ⊞ There are 3 rs in the word strawberry
++          arguments: ["3", "r", "strawberry"]
++          source: samples/basic.md:58-58
++
++          [Check the spelling of `strawberry`](https://www.dictionary.com/browse/strawberry)
++    ```
++
++    This step also succeeded, producing a Link observation. These observations can be useful, because sometimes a root cause of a failure is in a proceeding steps, not the one that actually failed.
++
++  * The output will contain `an expanded successful step with a various observations` block
++  
++    ``` text
++        ⊞ The following tables map words to their lengths
++          code blocks: 1, tables: 2
++          source: samples/basic.md:59-93
++
++          > Received a table with 6 x 2 cells
++
++          \``` json
++          [
++            [
++              "word",
++              "length"
++            ],
++            [
++              "cat",
++              "3"
++            ],
++            [
++              "stork",
++              "5"
++            ],
++            [
++              "rabbit",
++              "6"
++            ],
++            [
++              "snake",
++              "5"
++            ],
++            [
++              "minx",
++              "4"
++            ]
++          ]
++          \```
++
++          > Is 'cat' 3 characters long? I think it's 3.
++
++
++          > Is 'stork' 5 characters long? I think it's 5.
++
++
++          > Is 'rabbit' 6 characters long? I think it's 6.
++
++
++          > Is 'snake' 5 characters long? I think it's 5.
++
++
++          > Is 'minx' 4 characters long? I think it's 4.
++
++
++          > Received a table with 4 x 2 cells
++
++
++          \``` json
++          [
++            [
++              "word",
++              "length"
++            ],
++            [
++              "rust",
++              "4"
++            ],
++            [
++              "clojure",
++              "7"
++            ],
++            [
++              "elm",
++              "3"
++            ]
++          ]
++          \```
++
++
++          > Is 'rust' 4 characters long? I think it's 4.
++
++
++          > Is 'clojure' 7 characters long? I think it's 7.
++
++
++          > Is 'elm' 3 characters long? I think it's 3.
++    ```
++    
++    This long block presents other observations, like snippets.
++    
+=  * The output will contain `the failing step` block
+=
+=    ``` text
+```
+
+``` diff
+index aebf88c..94e628f 100644
+--- a/spec/self-check.py
++++ b/spec/self-check.py
+@@ -88,9 +88,10 @@ def step_implementation_04(label: str, **kwargs):
+=    block = get_at(kwargs, ['code_blocks', 0, 'value'])
+=    output = completed.stdout.decode("utf-8")
+=
+-    # Trim all blank lines and trailing whitespece.
+-    # Without it the assertions are very brittle.
+-    needle = re.sub("\\s+\n", "\n", block)
++    # Trim all blank lines and trailing whitespece.  Without it the assertions
++    # are very brittle.  Also un-escape back-ticks in the block. This is useful
++    # for nested code-blocks in the spec documents.
++    needle = re.sub("\\s+\n", "\n", block).replace("\`", "`")
+=    haystack = re.sub("\\s+\n", "\n", output)
+=    # tester.assertIn gives unreadable output
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..a3ba4f7
--- /dev/null
+++ b/content/devlog/2026-04-07-better-tech-club-website.md
@@ -0,0 +1,1765 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 9
+
+
+# Add bettertechclub.eu domain
+
+
+
+``` diff
+index 98234b2..f3861cb 100644
+--- a/.domains
++++ b/.domains
+@@ -1 +1,2 @@
+=fossfor.eu
++bettertechclub.eu
+```
+
+# Change the home page title
+
+Mostly to test new Codeberg pages deployment method.
+
+``` diff
+index aa12a08..1ac19d1 100644
+--- a/index.html
++++ b/index.html
+@@ -3,14 +3,14 @@
+=    <head>
+=        <meta charset="utf-8">
+=        <meta http-equiv="x-ua-compatible" content="ie=edge">
+-        <title>FOSS for Normies</title>
++        <title>Better Tech Club</title>
+=        <meta name="description" content="A network of local groups for the promotion and mutual support of free and open source software use.">
+=        <meta name="viewport" content="width=device-width, initial-scale=1">
+=        <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
+=        <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
+=        <link rel="shortcut icon" href="/favicon.ico" />
+=        <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+-        <meta name="apple-mobile-web-app-title" content="fossfor.eu" />
++        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
+=         html, body {
+```
+
+# Make bettertechclub.eu the primary domain
+
+According to
+https://docs.codeberg.org/codeberg-pages/using-custom-domain/ requests
+targetting other domains (like fossfor.eu) will be redirected.
+
+``` diff
+index f3861cb..4ac3bce 100644
+--- a/.domains
++++ b/.domains
+@@ -1,2 +1,2 @@
+-fossfor.eu
+=bettertechclub.eu
++fossfor.eu
+```
+
+# Rebrand: icons, manifest, etc.
+
+
+
+``` diff
+index f13c531..b385d8b 100644
+Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ
+```
+
+``` diff
+index b6b0dde..002b2c3 100644
+Binary files a/favicon-96x96.png and b/favicon-96x96.png differ
+```
+
+``` diff
+index 3b5b429..6ab1831 100644
+Binary files a/favicon.ico and b/favicon.ico differ
+```
+
+``` diff
+index abfe745..8c15d72 100644
+--- a/favicon.svg
++++ b/favicon.svg
+@@ -1,3 +1 @@
+-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><svg width="32" height="32" viewBox="0 0 32 32" version="1.1" id="SvgjsSvg1013" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><defs id="SvgjsDefs1012"></defs><metadata id="SvgjsMetadata1011"><rdf:rdf><cc:work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type></cc:work></rdf:rdf></metadata><g id="SvgjsG1010" transform="translate(-692)"><g id="SvgjsG1009"><rect style="opacity:1;fill:#003399;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers" id="SvgjsRect1008" width="32" height="32" x="692" y="0"></rect><path id="SvgjsPath1007" style="opacity:1;fill:#fdcb0b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers" d="m 699,11 v 2 h -4 v 2 h 3 v 2 h -3 v 4 h 6 v -1 h -1 v -8 h 1 v -1 z m 7,0 v 1 h 1 v 8 h -1 v 1 h 3 v -1 h -1 v -2 h 2 v 1 h 3 v -2 h -4 v -1 h -1 v -4 h 1 v -1 z m 8,0 v 1 h 1 v 2 h -2 v -1 h -3 v 2 h 4 v 1 h 1 v 4 h -1 v 1 h 3 v -1 h -1 v -2 h 2 v 1 h 3 v -2 h -4 v -1 h -1 v -4 h 1 v -1 z m 8,0 v 1 h 1 v -1 z m -19,2 v 1 h -1 v 4 h 1 v 1 h 1 v -1 h 1 v -4 h -1 v -1 z m 15,0 v 2 h 4 v 1 h 1 v -2 h -2 v -1 z m 4,7 v 1 h 1 v -1 z"></path></g></g></svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
+-@media (prefers-color-scheme: dark) { :root { filter: none; } }
+-</style></svg>
+\ No newline at end of file
++<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" viewBox="0 0 32 32" id="svg8" xml:space="preserve" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><rdf:Description><dc:creator>RealFaviconGenerator</dc:creator><dc:source>https://realfavicongenerator.net</dc:source></rdf:Description></rdf:RDF></metadata><defs id="defs2"></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:type></cc:work></rdf:rdf></metadata><g id="layer1" transform="translate(-1010)"><g id="g6-8" transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path fill="#fac036" d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z" id="path1-0"></path><path fill="#e48c15" d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z" id="path2-8"></path></g></g></svg>
+\ No newline at end of file
+```
+
+``` diff
+similarity index 100%
+rename from icon.svg
+rename to foss-for-normies-icon.svg
+```
+
+``` diff
+index 1ac19d1..7f6aa29 100644
+--- a/index.html
++++ b/index.html
+@@ -18,8 +18,14 @@
+=             min-height: 100%;
+=             color: #fdcb0b;
+=             font-family: sans-serif;
++             margin: 0;
++             padding: 0;
++         }
++
++         body {
+=             display: flex;
+-             justify-content: center;
++             flex-direction: column;
++             align-items: center;
+=         }
+=
+=         #big-logo {
+@@ -48,6 +54,15 @@
+=
+=         }
+=
++         footer {
++             background: oklch(20% 0% 0deg);
++             color: oklch(80% 0% 0deg);
++             width: 100%;
++             padding: 2rem;
++             font-size: 0.8rem;
++             text-align: center;
++         }
++
+=         .local-group {
+=             background: hsl(0,0%,70%);
+=             color: hsl(0,0%,20%);
+@@ -151,5 +166,18 @@
+=
+=            <p>⏳ More details to come. Please be patient...</p>
+=        </main>
++
++        <footer>
++            <p>
++                <strong>Better Tech Club</strong>
++                formerly known as
++                <img
++                    src="foss-for-normies-icon.svg"
++                    alt="FOSS for Normies icon"
++                    style="vertical-align: -12px"
++                />
++                FOSS for Normies.
++            </p>
++        </footer>
+=    </body>
+=</html>
+```
+
+``` diff
+index 0d80090..dfe78a3 100644
+--- a/logo.svg
++++ b/logo.svg
+@@ -1,12 +1,11 @@
+=<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+=<svg
+-   width="640"
+-   height="640"
+-   viewBox="0 0 640 640"
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
+=   version="1.1"
+=   id="svg8"
+=   xml:space="preserve"
+-   xmlns:xlink="http://www.w3.org/1999/xlink"
+=   xmlns="http://www.w3.org/2000/svg"
+=   xmlns:svg="http://www.w3.org/2000/svg"
+=   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+@@ -16,76 +15,30 @@
+=     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" /></cc:Work></rdf:RDF></metadata><g
+-     id="layer1"
+-     transform="translate(-734)"><g
+-       id="g3"
+-       transform="translate(1383,-3)"
+-       style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><g
+-         id="g13"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="M 4,16 V 8 C 4,4 8,4 8,4 h 2"
+-           id="path2-4" /><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="M 2,10 H 7"
+-           id="path3" /></g><path
+-         style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-         d="m 13,8 c 0,0 4,0 4,4 0,0 0,4 -4,4 0,0 -4,0 -4,-4 0,0 0,-4 4,-4 z"
+-         id="path1" /><g
+-         id="g5"
+-         transform="translate(-4,4)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="m 24,4 v 8"
+-           id="path4" /><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="m 24,8 c 0,0 0,-4 4,-4"
+-           id="path5" /></g><path
+-         id="path21"
+-         style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
+-         d="M 31,16 V 9 C 31,8 31,8 30,8 m 7,8 v -5 c 0,-3.103007 -3,-3 -3,-3 0,0 -3,0 -3,3" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#path1"
+-         id="use12"
+-         transform="translate(31)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#g5"
+-         id="use13"
+-         transform="translate(31)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" /><path
+-         id="path10"
+-         style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
+-         d="M 59,10 C 59,8 59,8 58,8 M 62.999999,16 63,10.033814 c 0,0 0,-2.0338128 -2.000001,-2.0338119 0,0 -1.999998,-4e-7 -1.999999,1.9999974 L 58.999999,16 m 8,0 L 67,10.033814 c 0,0 0,-2.0338128 -2.000001,-2.0338119 0,0 -1.999999,-4e-7 -1.999999,1.9999974" /><g
+-         id="g21"><path
+-           id="path16"
+-           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
+-           d="m 70,10 h 2 v 4 c 0,1 1,2 2,2" /><path
+-           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;paint-order:stroke fill markers"
+-           id="path17"
+-           d="m 72.5,7 a 0.5,0.5 0 0 1 -0.499609,0.4999998 0.5,0.5 0 0 1 -0.50039,-0.4992173 0.5,0.5 0 0 1 0.498825,-0.5007811 0.5,0.5 0 0 1 0.501172,0.4984337 L 72,7 Z" /></g><path
+-         id="path19"
+-         style="opacity:1;vector-effect:none;fill:none;fill-rule:evenodd;paint-order:stroke fill markers"
+-         d="m 76,12 v 0 0 0 h 8 c 0,-2.209139 -1.790861,-4 -4,-4 -2.209139,0 -4,1.790861 -4,4 0,2.209139 1.790861,4 4,4 h 3" /><path
+-         id="path10-5"
+-         style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
+-         d="M 82,15.999994 88.96619,16 c 0,0 2.03384,-1.3e-5 2.03382,-2.000011 0,0 0,-1.999988 -2.00001,-2 m -0.0338,6e-6 c 0,0 -1.9662,3.1e-5 -1.9662,-1.999989 0,0 -2e-5,-2.000021 1.99999,-2.000014 H 90" /></g><g
+-       id="g2"
+-       style="color:#fdcb0b"><rect
+-         style="opacity:1;fill:#003399;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers"
+-         id="rect3"
+-         width="640"
+-         height="640"
+-         x="734"
+-         y="0" /><path
+-         id="rect3-0"
+-         style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke-width:0;stroke-dasharray:none;paint-order:stroke fill markers"
+-         d="m 832,224 0,32 a 4,4 135 0 1 -4,4 h -72 a 4,4 135 0 0 -4,4 l 0,32 a 4,4 45 0 0 4,4 h 52 a 4,4 45 0 1 4,4 l 0,32 a 4,4 135 0 1 -4,4 h -52 a 4,4 135 0 0 -4,4 v 72 a 4,4 45 0 0 4,4 h 112 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-152 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -32 a 4,4 135 0 0 -4,4 z m 140,0 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 l 0,152 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-32 a 4,4 135 0 1 4,-4 h 32 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -72 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -72 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 160,0 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 v 32 a 4,4 135 0 1 -4,4 h -32 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 v 32 a 4,4 45 0 0 4,4 h 72 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 l 0,72 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -32 a 4,4 135 0 1 4,-4 h 32 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -72 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-72 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 160,0 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 l 0,-12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z m -380,40 v 12 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 72 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -72 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z m 300,0 v 32 a 4,4 45 0 0 4,4 h 72 a 4,4 45 0 1 4,4 l 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -32 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 80,140 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 l 0,-12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z"
+-         transform="translate(42)" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#g3"
+-         id="use23"
+-         transform="matrix(4,0,0,4,-4750,436)" /></g></g></svg>
++     id="layer1"><g
++       id="text1"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
++       aria-label="Big&#10;Tech&#10;Club"><path
++         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
++         id="path7" /><path
++         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
++         id="path8" /><path
++         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
++         id="path9" /></g><path
++       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
++       id="text4"
++       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
++       transform="rotate(-15)"
++       aria-label="Better" /><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       transform="translate(362.34816,24.840675)" /></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g></svg>
+```
+
+``` diff
+index 3a81c0d..b876ba3 100644
+--- a/site.webmanifest
++++ b/site.webmanifest
+@@ -1,6 +1,6 @@
+={
+-  "name": "FOSS for Normies",
+-  "short_name": "fossfor.eu",
++  "name": "Better Tech Club",
++  "short_name": "Better Tech Club",
+=  "icons": [
+=    {
+=      "src": "/web-app-manifest-192x192.png",
+@@ -15,7 +15,7 @@
+=      "purpose": "maskable"
+=    }
+=  ],
+-  "theme_color": "#003399",
+-  "background_color": "#003399",
++  "theme_color": "#fac036",
++  "background_color": "#25476a",
+=  "display": "standalone"
+=}
+\ No newline at end of file
+```
+
+``` diff
+index eb84864..811f1c6 100644
+Binary files a/web-app-manifest-192x192.png and b/web-app-manifest-192x192.png differ
+```
+
+``` diff
+index 9e971f4..d09831b 100644
+Binary files a/web-app-manifest-512x512.png and b/web-app-manifest-512x512.png differ
+```
+
+# Update Nix dependencies
+
+
+
+``` diff
+index a92871e..9a8b7f9 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -19,11 +19,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760971495,
+-        "narHash": "sha256-IwnNtbNVrlZIHh7h4Wz6VP0Furxg9Hh0ycighvL5cZc=",
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
+=        "owner": "cachix",
+=        "repo": "cachix",
+-        "rev": "c5bfd933d1033672f51a863c47303fc0e093c2d2",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -33,24 +33,143 @@
+=        "type": "github"
+=      }
+=    },
+-    "devenv": {
++    "cachix_2": {
+=      "inputs": {
+-        "cachix": "cachix",
++        "devenv": [
++          "devenv",
++          "crate2nix"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix"
++        ],
++        "git-hooks": "git-hooks",
++        "nixpkgs": "nixpkgs"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_3": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "git-hooks": "git-hooks_2",
++        "nixpkgs": "nixpkgs_2"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "crate2nix": {
++      "inputs": {
++        "cachix": "cachix_2",
++        "crate2nix_stable": "crate2nix_stable",
++        "devshell": "devshell_2",
++        "flake-compat": "flake-compat_2",
++        "flake-parts": "flake-parts_2",
++        "nix-test-runner": "nix-test-runner_2",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "pre-commit-hooks": "pre-commit-hooks_2"
++      },
++      "locked": {
++        "lastModified": 1772186516,
++        "narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      }
++    },
++    "crate2nix_stable": {
++      "inputs": {
++        "cachix": "cachix_3",
++        "crate2nix_stable": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "devshell": "devshell",
+=        "flake-compat": "flake-compat",
+=        "flake-parts": "flake-parts",
+-        "git-hooks": "git-hooks",
++        "nix-test-runner": "nix-test-runner",
++        "nixpkgs": "nixpkgs_3",
++        "pre-commit-hooks": "pre-commit-hooks"
++      },
++      "locked": {
++        "lastModified": 1769627083,
++        "narHash": "sha256-SUuruvw1/moNzCZosHaa60QMTL+L9huWdsCBN6XZIic=",
++        "owner": "nix-community",
++        "repo": "crate2nix",
++        "rev": "7c33e664668faecf7655fa53861d7a80c9e464a2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "ref": "0.15.0",
++        "repo": "crate2nix",
++        "type": "github"
++      }
++    },
++    "devenv": {
++      "inputs": {
++        "cachix": "cachix",
++        "crate2nix": "crate2nix",
++        "flake-compat": "flake-compat_3",
++        "flake-parts": "flake-parts_3",
++        "git-hooks": "git-hooks_3",
+=        "nix": "nix",
+=        "nixd": "nixd",
+=        "nixpkgs": [
+=          "nixpkgs"
+-        ]
++        ],
++        "rust-overlay": "rust-overlay"
+=      },
+=      "locked": {
+-        "lastModified": 1770648178,
+-        "narHash": "sha256-vq9yrCTzM39gX4Ljmak2+OQFnF39C411JzT5hDNxVPA=",
++        "lastModified": 1775566203,
++        "narHash": "sha256-bBhX1xIB0rJ43xKZWzFaY1dQxOX6BcsdU4/+jpuaHcY=",
+=        "owner": "cachix",
+=        "repo": "devenv",
+-        "rev": "656d347597eaf914af4dbcb78248c1cc4db785f9",
++        "rev": "e82d5cbf38954a872c0547a0c141e8cc116d2b2a",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -59,14 +178,87 @@
+=        "type": "github"
+=      }
+=    },
++    "devshell": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "devshell_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
+=    "flake-compat": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_2": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_3": {
+=      "flake": false,
+=      "locked": {
+-        "lastModified": 1761588595,
+-        "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
++        "lastModified": 1767039857,
++        "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
+=        "owner": "edolstra",
+=        "repo": "flake-compat",
+-        "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
++        "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -79,15 +271,39 @@
+=      "inputs": {
+=        "nixpkgs-lib": [
+=          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_2": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
+=          "nixpkgs"
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760948891,
+-        "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
+=        "owner": "hercules-ci",
+=        "repo": "flake-parts",
+-        "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -96,18 +312,24 @@
+=        "type": "github"
+=      }
+=    },
+-    "flake-root": {
++    "flake-parts_3": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
+=      "locked": {
+-        "lastModified": 1723604017,
+-        "narHash": "sha256-rBtQ8gg+Dn4Sx/s+pvjdq3CB2wQNzx9XGFq/JVGCB6k=",
+-        "owner": "srid",
+-        "repo": "flake-root",
+-        "rev": "b759a56851e10cb13f6b8e5698af7b59c44be26e",
++        "lastModified": 1772408722,
++        "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3",
+=        "type": "github"
+=      },
+=      "original": {
+-        "owner": "srid",
+-        "repo": "flake-root",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
+=        "type": "github"
+=      }
+=    },
+@@ -115,20 +337,82 @@
+=      "inputs": {
+=        "flake-compat": [
+=          "devenv",
++          "crate2nix",
++          "cachix",
+=          "flake-compat"
+=        ],
+=        "gitignore": "gitignore",
+=        "nixpkgs": [
+=          "devenv",
++          "crate2nix",
++          "cachix",
+=          "nixpkgs"
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760663237,
+-        "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
+=        "owner": "cachix",
+=        "repo": "git-hooks.nix",
+-        "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_2",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_3": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_5",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772893680,
++        "narHash": "sha256-JDqZMgxUTCq85ObSaFw0HhE+lvdOre1lx9iI6vYyOEs=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "8baab586afc9c9b57645a734c820e4ac0a604af9",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -138,6 +422,102 @@
+=      }
+=    },
+=    "gitignore": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_3": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_4": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_5": {
+=      "inputs": {
+=        "nixpkgs": [
+=          "devenv",
+@@ -185,11 +565,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1770395975,
+-        "narHash": "sha256-zg0AEZn8d4rqIIsw5XrkVL5p1y6fBj2L57awfUg+gNA=",
++        "lastModified": 1774103430,
++        "narHash": "sha256-MRNVInSmvhKIg3y0UdogQJXe+omvKijGszFtYpd5r9k=",
+=        "owner": "cachix",
+=        "repo": "nix",
+-        "rev": "ccb6019ce2bd11f5de5fe4617c0079d8cb1ed057",
++        "rev": "e127c1c94cefe02d8ca4cca79ef66be4c527510e",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -199,13 +579,44 @@
+=        "type": "github"
+=      }
+=    },
++    "nix-test-runner": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nix-test-runner_2": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
+=    "nixd": {
+=      "inputs": {
+=        "flake-parts": [
+=          "devenv",
+=          "flake-parts"
+=        ],
+-        "flake-root": "flake-root",
+=        "nixpkgs": [
+=          "devenv",
+=          "nixpkgs"
+@@ -213,11 +624,11 @@
+=        "treefmt-nix": "treefmt-nix"
+=      },
+=      "locked": {
+-        "lastModified": 1763964548,
+-        "narHash": "sha256-JTRoaEWvPsVIMFJWeS4G2isPo15wqXY/otsiHPN0zww=",
++        "lastModified": 1773634079,
++        "narHash": "sha256-49qb4QNMv77VOeEux+sMd0uBhPvvHgVc0r938Bulvbo=",
+=        "owner": "nix-community",
+=        "repo": "nixd",
+-        "rev": "d4bf15e56540422e2acc7bc26b20b0a0934e3f5e",
++        "rev": "8ecf93d4d93745e05ea53534e8b94f5e9506e6bd",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -227,15 +638,80 @@
+=      }
+=    },
+=    "nixpkgs": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs-src": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1773840656,
++        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_2": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_3": {
++      "locked": {
++        "lastModified": 1769433173,
++        "narHash": "sha256-Gf1dFYgD344WZ3q0LPlRoWaNdNQq8kSBDLEWulRQSEs=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "13b0f9e6ac78abbbb736c635d87845c4f4bee51b",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_4": {
+=      "inputs": {
+=        "nixpkgs-src": "nixpkgs-src"
+=      },
+=      "locked": {
+-        "lastModified": 1770434727,
+-        "narHash": "sha256-YzOZRgiqIccnkkZvckQha7wvOfN2z50xEdPvfgu6sf8=",
++        "lastModified": 1774287239,
++        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
+=        "owner": "cachix",
+=        "repo": "devenv-nixpkgs",
+-        "rev": "8430f16a39c27bdeef236f1eeb56f0b51b33d348",
++        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -245,30 +721,92 @@
+=        "type": "github"
+=      }
+=    },
+-    "nixpkgs-src": {
+-      "flake": false,
++    "pre-commit-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_3",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
+=      "locked": {
+-        "lastModified": 1769922788,
+-        "narHash": "sha256-H3AfG4ObMDTkTJYkd8cz1/RbY9LatN5Mk4UF48VuSXc=",
+-        "owner": "NixOS",
+-        "repo": "nixpkgs",
+-        "rev": "207d15f1a6603226e1e223dc79ac29c7846da32e",
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
+=        "type": "github"
+=      },
+=      "original": {
+-        "owner": "NixOS",
+-        "ref": "nixpkgs-unstable",
+-        "repo": "nixpkgs",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_4",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
+=        "type": "github"
+=      }
+=    },
+=    "root": {
+=      "inputs": {
+=        "devenv": "devenv",
+-        "nixpkgs": "nixpkgs",
++        "nixpkgs": "nixpkgs_4",
+=        "systems": "systems"
+=      }
+=    },
++    "rust-overlay": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1773630837,
++        "narHash": "sha256-zJhgAGnbVKeBMJOb9ctZm4BGS/Rnrz+5lfSXTVah4HQ=",
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "rev": "f600ea449c7b5bb596fa1cf21c871cc5b9e31316",
++        "type": "github"
++      },
++      "original": {
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "type": "github"
++      }
++    },
+=    "systems": {
+=      "locked": {
+=        "lastModified": 1681028828,
+@@ -293,11 +831,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1734704479,
+-        "narHash": "sha256-MMi74+WckoyEWBRcg/oaGRvXC9BVVxDZNRMpL+72wBI=",
++        "lastModified": 1772660329,
++        "narHash": "sha256-IjU1FxYqm+VDe5qIOxoW+pISBlGvVApRjiw/Y/ttJzY=",
+=        "owner": "numtide",
+=        "repo": "treefmt-nix",
+-        "rev": "65712f5af67234dad91a5a4baee986a8b62dbf8f",
++        "rev": "3710e0e1218041bbad640352a0440114b1e10428",
+=        "type": "github"
+=      },
+=      "original": {
+```
+
+# Add tbb to the development shell
+
+
+
+``` diff
+index 9a8b7f9..f1c3398 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -91,6 +91,43 @@
+=        "type": "github"
+=      }
+=    },
++    "cachix_4": {
++      "inputs": {
++        "devenv": [
++          "tad-better-behavior",
++          "devenv"
++        ],
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "git-hooks": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760971495,
++        "narHash": "sha256-IwnNtbNVrlZIHh7h4Wz6VP0Furxg9Hh0ycighvL5cZc=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "c5bfd933d1033672f51a863c47303fc0e093c2d2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
+=    "crate2nix": {
+=      "inputs": {
+=        "cachix": "cachix_2",
+@@ -178,6 +215,32 @@
+=        "type": "github"
+=      }
+=    },
++    "devenv_2": {
++      "inputs": {
++        "cachix": "cachix_4",
++        "flake-compat": "flake-compat_4",
++        "flake-parts": "flake-parts_4",
++        "git-hooks": "git-hooks_4",
++        "nix": "nix_2",
++        "nixpkgs": [
++          "tad-better-behavior",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1762889687,
++        "narHash": "sha256-oKvHfeYDZ0LfuHSaFLA0w/dfZ9R6C5W8pCGUjUWawGI=",
++        "owner": "cachix",
++        "repo": "devenv",
++        "rev": "3b4fb549962342c928aae1bbea3a13f0eeed2703",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "devenv",
++        "type": "github"
++      }
++    },
+=    "devshell": {
+=      "inputs": {
+=        "nixpkgs": [
+@@ -267,6 +330,22 @@
+=        "type": "github"
+=      }
+=    },
++    "flake-compat_4": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1761588595,
++        "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
++        "type": "github"
++      },
++      "original": {
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "type": "github"
++      }
++    },
+=    "flake-parts": {
+=      "inputs": {
+=        "nixpkgs-lib": [
+@@ -333,6 +412,28 @@
+=        "type": "github"
+=      }
+=    },
++    "flake-parts_4": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760948891,
++        "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
+=    "git-hooks": {
+=      "inputs": {
+=        "flake-compat": [
+@@ -421,6 +522,34 @@
+=        "type": "github"
+=      }
+=    },
++    "git-hooks_4": {
++      "inputs": {
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_6",
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760663237,
++        "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
+=    "gitignore": {
+=      "inputs": {
+=        "nixpkgs": [
+@@ -539,6 +668,29 @@
+=        "type": "github"
+=      }
+=    },
++    "gitignore_6": {
++      "inputs": {
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
+=    "nix": {
+=      "inputs": {
+=        "flake-compat": [
+@@ -611,6 +763,52 @@
+=        "type": "github"
+=      }
+=    },
++    "nix_2": {
++      "inputs": {
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "flake-parts": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-parts"
++        ],
++        "git-hooks-nix": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ],
++        "nixpkgs-23-11": [
++          "tad-better-behavior",
++          "devenv"
++        ],
++        "nixpkgs-regression": [
++          "tad-better-behavior",
++          "devenv"
++        ]
++      },
++      "locked": {
++        "lastModified": 1761648602,
++        "narHash": "sha256-H97KSB/luq/aGobKRuHahOvT1r7C03BgB6D5HBZsbN8=",
++        "owner": "cachix",
++        "repo": "nix",
++        "rev": "3e5644da6830ef65f0a2f7ec22830c46285bfff6",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "devenv-2.30.6",
++        "repo": "nix",
++        "type": "github"
++      }
++    },
+=    "nixd": {
+=      "inputs": {
+=        "flake-parts": [
+@@ -783,7 +981,8 @@
+=      "inputs": {
+=        "devenv": "devenv",
+=        "nixpkgs": "nixpkgs_4",
+-        "systems": "systems"
++        "systems": "systems",
++        "tad-better-behavior": "tad-better-behavior"
+=      }
+=    },
+=    "rust-overlay": {
+@@ -822,6 +1021,43 @@
+=        "type": "github"
+=      }
+=    },
++    "systems_2": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "tad-better-behavior": {
++      "inputs": {
++        "devenv": "devenv_2",
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "systems": "systems_2"
++      },
++      "locked": {
++        "lastModified": 1775133254,
++        "narHash": "sha256-orxwlnOwsWqRtZaYvt6Tu6l0Pdp9okpVZBaW/+gND2g=",
++        "ref": "refs/heads/main",
++        "rev": "fbf91ce2b8ebab992a7cbac5bf8ca91115985aea",
++        "revCount": 161,
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      },
++      "original": {
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      }
++    },
+=    "treefmt-nix": {
+=      "inputs": {
+=        "nixpkgs": [
+```
+
+``` diff
+index 4eeb7cd..7410a54 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -4,6 +4,10 @@
+=    systems.url = "github:nix-systems/default";
+=    devenv.url = "github:cachix/devenv";
+=    devenv.inputs.nixpkgs.follows = "nixpkgs";
++    tad-better-behavior = {
++      url = "git+http://codeberg.org/tad-lispy/tad-better-behavior";
++      inputs.nixpkgs.follows = "nixpkgs";
++    };
+=  };
+=
+=  nixConfig = {
+@@ -11,7 +15,7 @@
+=    extra-substituters = "https://devenv.cachix.org";
+=  };
+=
+-  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++  outputs = { self, nixpkgs, devenv, systems, tad-better-behavior, ... } @ inputs:
+=    let
+=      forEachSystem = nixpkgs.lib.genAttrs (import systems);
+=    in
+@@ -20,6 +24,7 @@
+=        (system:
+=          let
+=            pkgs = nixpkgs.legacyPackages.${system};
++            tbb = tad-better-behavior.packages.${system};
+=          in
+=          {
+=            default = devenv.lib.mkShell {
+@@ -27,7 +32,10 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.miniserve ];
++                  packages = with pkgs; [
++                    miniserve
++                    tbb.default
++                  ];
+=                }
+=              ];
+=            };
+```
+
+# Write the first spec
+
+Daniel spotted that the page has a vertical scroll. It's an easy fix -
+the footer has a horizontal padding that pushes width of the document
+beyond 100%. But I want to start using TBB here.
+
+``` diff
+new file mode 100644
+index 0000000..2452b63
+--- /dev/null
++++ b/spec/layout.md
+@@ -0,0 +1,10 @@
++# Basic Layout of the Page
++
++## The Width of the Body Doesn't Exceed the Viewport
++
++This scenario asserts that page content fits inside the viewport, i.e. there is no need for horizontal scrolling
++
++  * Serve the website on the port `1234`
++  * Navigate to `http://localhost:1234/`
++  * The title should be `Better Tech Club`
++  * The content is not wider than the viewport
+```
+
+# Setup a Babashka TBB interpreter
+
+The tbb.clj and tbb_test.clj come from
+https://github.com/jewiet/form-to-mail/
+
+``` diff
+index f03ce8a..dbf1cc8 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -1,2 +1,4 @@
+=.devenv
+=.direnv
++.clj-kondo/
++.lsp/
+```
+
+``` diff
+index 7410a54..04e8d1d 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -35,6 +35,8 @@
+=                  packages = with pkgs; [
+=                    miniserve
+=                    tbb.default
++                    babashka
++                    clojure-lsp
+=                  ];
+=                }
+=              ];
+```
+
+``` diff
+new file mode 100644
+index 0000000..5837a2a
+--- /dev/null
++++ b/spec/interpreters/bb.edn
+@@ -0,0 +1 @@
++{:paths ["."]}
+```
+
+``` diff
+new file mode 100644
+index 0000000..b270417
+--- /dev/null
++++ b/spec/interpreters/tbb.clj
+@@ -0,0 +1,100 @@
++(ns tbb
++  (:require
++   [cheshire.core :as json]
++   [clojure.pprint :refer [pprint]]
++   [clojure.string :refer [blank?]]
++   [taoensso.timbre :as timbre]))
++
++(timbre/merge-config!
++ {:appenders
++  {:println (timbre/println-appender
++             {:stream *err*})}
++  :min-level (keyword (or
++                       (System/getenv "tbb_interpreter_log")
++                       "info"))})
++
++;; TODO: Make it work with Babashka (so no dependency on JDK)
++;; TODO: Distribute this with TBB so it can be used in other Clojure projects.
++
++(defonce ^:private steps-implementation (atom {}))
++
++(defn implement-step [variant f]
++  (swap! steps-implementation assoc variant f))
++
++;; See unit test for example uses
++(defmacro tis
++  "Similar to assert but the exception message will have arguments evaluated. See unit tests for more details"
++  [f & args]
++  `(when-not (~f ~@args)
++     (throw (AssertionError. (str "failed assertion: "
++                                  (cons '~f (list ~@args)))))))
++
++(defn ready []
++  (println (json/encode {:type "InterpreterState"
++                         :ready true}))
++
++  (doseq [line (line-seq (java.io.BufferedReader. *in*))]
++    (when-not (blank? line)
++      (let [message       (json/parse-string line true)
++            step          (:step message)
++            variant       (:variant step)
++            arguments     (:arguments step)
++            implmentation (get @steps-implementation variant)]
++        (timbre/debug "got a message from tbb" message)
++        (if (nil? implmentation)
++          (let [suggestion
++                `(tbb/implement-step
++                  ~variant
++                  (~'fn [~@(map-indexed
++                            (fn [indx _]
++                              (symbol (str "arg-" indx)))
++                            arguments)
++                         ~'data]
++                        (tis ~'= "cat" "dog")))]
++
++            (timbre/error "missing step implementation" variant)
++            (println (json/generate-string {:type   "Failure"
++                                            :reason "Not implemented"
++                                            :hint (str "To get started put this in your interpreter:\n\n"
++                                                       "``` clojure\n"
++                                                       (with-out-str (pprint suggestion))
++                                                       "```")})))
++          (try
++            (apply implmentation (conj arguments step))
++            (println (json/generate-string {:type "Success"}))
++            (catch Throwable e
++              (println (json/generate-string {:type   "Failure"
++                                              :reason (.getMessage e)}))))))))
++
++  (timbre/debug "Done reading from tbb."))
++
++(defn send-text [text]
++  (println (json/generate-string {:type   "Text"
++                                  :content (pr-str text)}))
++  text)
++
++(defn send-link
++  ([url]
++   (println (json/generate-string {:type "Link"
++                                   :url  (str url)}))
++   url)
++
++  ([url label]
++   (println (json/generate-string {:type  "Link"
++                                   :url   (str url)
++                                   :label label}))
++   url))
++
++(defn table->maps [table]
++  ;; Each column in a table becomes a map in an array. Keys are derived from the first row.
++  (let [[header & rows] table
++        keywords        (map keyword header)]
++    (map #(zipmap keywords %) rows)))
++
++(defn table->map
++  "Takes a sequence of maps with :name and :value pairings and returns a single map"
++  [maps key-kw value-kw]
++  (let [coll   (table->maps maps)
++        ks     (map #(keyword (key-kw %)) coll)
++        values (map value-kw coll)]
++    (zipmap ks values)))
+```
+
+``` diff
+new file mode 100644
+index 0000000..53753fb
+--- /dev/null
++++ b/spec/interpreters/tbb_test.clj
+@@ -0,0 +1,42 @@
++(ns tbb-test
++  (:require
++   [clojure.test :refer [deftest is testing]]
++   [tbb]
++   [clojure.string :as str]))
++
++(deftest tis-test
++  (testing "Simple expressions"
++    (is (nil?
++         (tbb/tis = 2 2))
++        "Returns nil if assertion is correct"))
++
++  (testing "Simple failing assertion"
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(= 1 0\)"
++                          (tbb/tis = 1 0))
++        "Throws an AssertionError with appropriate message"))
++
++  (testing "complex expression"
++    (is (nil?
++         (tbb/tis < 10 (* 3 (+ 2 2))))
++        "Still nil")
++
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(< 20 12\)"
++                          (tbb/tis < 20 (* 3 (+ 2 2))))
++        "In the exception message the arguments will be evaluated"))
++
++  (testing "inside a let expression"
++    (is (nil?
++         (let [heystack "Babashka"
++               needle "Baba"]
++           (tbb/tis str/starts-with? heystack needle)))
++        "Still works inside a let expression")
++
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(str/starts-with\? \"Babashka\" \"Ruska\"\)"
++                          (let [heystack "Babashka"
++                                needle "Ruska"]
++                            (tbb/tis str/starts-with? heystack needle)))
++        "Exception is thrown from the let expression too")))
++
++(let [{:keys [fail error]} (clojure.test/run-tests)]
++  (when (pos? (+ fail error))
++    (System/exit 1)))
+```
+
+``` diff
+new file mode 100644
+index 0000000..4dac78f
+--- /dev/null
++++ b/spec/interpreters/web_automation.clj
+@@ -0,0 +1,12 @@
++(ns web-automation
++  (:require [tbb]
++            [taoensso.timbre :as timbre]))
++
++(defn -main [& args]
++  (timbre/info "Interpreter start")
++  (tbb/ready)
++  (timbre/info "Interpreter done"))
++
++(when (= *file* (System/getProperty "babashka.file"))
++  (apply -main *command-line-args*))
++
+```
+
+``` diff
+index 2452b63..3487584 100644
+--- a/spec/layout.md
++++ b/spec/layout.md
+@@ -1,3 +1,7 @@
++---
++interpreter: bb spec/interpreters/web_automation.clj
++---
++
+=# Basic Layout of the Page
+=
+=## The Width of the Body Doesn't Exceed the Viewport
+```
+
+# Setup CLJ Style for code formatting
+
+
+
+``` diff
+index 04e8d1d..861094e 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -37,6 +37,7 @@
+=                    tbb.default
+=                    babashka
+=                    clojure-lsp
++                    cljstyle
+=                  ];
+=                }
+=              ];
+```
\ No newline at end of file
new file mode 100644
index 0000000..78af26e
--- /dev/null
+++ b/content/devlog/2026-04-08-better-tech-club-website.md
@@ -0,0 +1,420 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 8
+
+
+# Implement the first step of spec using miniserve
+
+Do not escape the observed text (by passing to `pr-str`). Instead
+implement a new function `tbb/prettify` to format Clojure objects.
+
+Also, implement `tbb/send-snippet` to for snippet type of observation.
+
+``` diff
+index b270417..1429264 100644
+--- a/spec/interpreters/tbb.clj
++++ b/spec/interpreters/tbb.clj
+@@ -70,9 +70,20 @@
+=
+=(defn send-text [text]
+=  (println (json/generate-string {:type   "Text"
+-                                  :content (pr-str text)}))
++                                  :content text}))
+=  text)
+=
++(defn send-snippet
++  ([language meta content]
++   (println (json/generate-string {:type     "Snippet"
++                                   :content  content
++                                   :language language
++                                   :meta     meta}))
++   content)
++
++  ([language content]
++   (send-snippet language "" content)))
++
+=(defn send-link
+=  ([url]
+=   (println (json/generate-string {:type "Link"
+@@ -85,6 +96,10 @@
+=                                   :label label}))
+=   url))
+=
++(defn prettify [value]
++  "Formats Clojure / EDN value and returns a string"
++  (with-out-str (pprint value)))
++
+=(defn table->maps [table]
+=  ;; Each column in a table becomes a map in an array. Keys are derived from the first row.
+=  (let [[header & rows] table
+```
+
+``` diff
+index 4dac78f..61f7fe2 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -1,10 +1,35 @@
+=(ns web-automation
+-  (:require [tbb]
+-            [taoensso.timbre :as timbre]))
++  (:require
++   [babashka.fs :as fs]
++   [babashka.process :refer [destroy-tree process]]
++   [taoensso.timbre :as timbre]
++   [tbb]))
++
++(def server-log-file (str (fs/create-temp-file {:prefix "btc-miniserve" :suffix ".log"})))
++(def miniserve-process (atom nil))
++
++(tbb/implement-step
++ "Serve the {0} directory on port {1}"
++ (fn [path port data]
++   (->> {:log-file server-log-file
++         :path     path
++         :port     port}
++        (tbb/prettify)
++        (tbb/send-snippet "edn"))
++   (reset! miniserve-process
++           (process {:err server-log-file
++                     :out server-log-file}
++                    "miniserve --index index.html --port" port path))
++   (Thread/sleep 250)
++   (-> server-log-file
++       (slurp)
++       (tbb/send-text))))
+=
+=(defn -main [& args]
+=  (timbre/info "Interpreter start")
+=  (tbb/ready)
++  (when @miniserve-process
++    (destroy-tree @miniserve-process))
+=  (timbre/info "Interpreter done"))
+=
+=(when (= *file* (System/getProperty "babashka.file"))
+```
+
+``` diff
+index 3487584..4ddf9fa 100644
+--- a/spec/layout.md
++++ b/spec/layout.md
+@@ -8,7 +8,7 @@ interpreter: bb spec/interpreters/web_automation.clj
+=
+=This scenario asserts that page content fits inside the viewport, i.e. there is no need for horizontal scrolling
+=
+-  * Serve the website on the port `1234`
++  * Serve the `.` directory on port `1234`
+=  * Navigate to `http://localhost:1234/`
+=  * The title should be `Better Tech Club`
+=  * The content is not wider than the viewport
+```
+
+# Implement the rest of the spec steps
+
+Using https://github.com/clj-commons/etaoin and Geckodriver. The spec
+evaluates with error, because the page content is wider than the window.
+So we are in a red state of TDD now.
+
+``` diff
+index 861094e..cfcb5fa 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -38,6 +38,7 @@
+=                    babashka
+=                    clojure-lsp
+=                    cljstyle
++                    geckodriver
+=                  ];
+=                }
+=              ];
+```
+
+``` diff
+index 5837a2a..5111e87 100644
+--- a/spec/interpreters/bb.edn
++++ b/spec/interpreters/bb.edn
+@@ -1 +1,2 @@
+-{:paths ["."]}
++{:paths ["."]
++ :deps {etaoin/etaoin {:mvn/version "1.1.43"}}}
+```
+
+``` diff
+index 61f7fe2..76c2804 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -3,10 +3,12 @@
+=   [babashka.fs :as fs]
+=   [babashka.process :refer [destroy-tree process]]
+=   [taoensso.timbre :as timbre]
++   [etaoin.api :as e]
+=   [tbb]))
+=
+=(def server-log-file (str (fs/create-temp-file {:prefix "btc-miniserve" :suffix ".log"})))
+=(def miniserve-process (atom nil))
++(def web-driver (atom nil))
+=
+=(tbb/implement-step
+= "Serve the {0} directory on port {1}"
+@@ -25,9 +27,32 @@
+=       (slurp)
+=       (tbb/send-text))))
+=
++(tbb/implement-step
++ "Navigate to {0}"
++ (fn [url data]
++   (e/go @web-driver url)))
++
++(tbb/implement-step
++ "The title should be {0}"
++ (fn [expected data]
++   (tbb/tis =
++            expected
++            (e/get-title @web-driver))))
++
++(tbb/implement-step
++ "The content is not wider than the viewport"
++ (fn [data]
++   (let [content-width (e/js-execute @web-driver "return document.querySelector(`html`).scrollWidth")
++         window-width (e/js-execute @web-driver "return window.innerWidth")]
++     (tbb/tis >=
++              window-width
++              content-width))))
++
+=(defn -main [& args]
+=  (timbre/info "Interpreter start")
++  (reset! web-driver (e/firefox))
+=  (tbb/ready)
++  (e/quit @web-driver)
+=  (when @miniserve-process
+=    (destroy-tree @miniserve-process))
+=  (timbre/info "Interpreter done"))
+```
+
+# Fix the horizontal scroll bug
+
+Spotted by Daniel and now evaluated with TBB spec, it's time to fix it!
+
+``` diff
+index 7f6aa29..21af2c3 100644
+--- a/index.html
++++ b/index.html
+@@ -58,7 +58,7 @@
+=             background: oklch(20% 0% 0deg);
+=             color: oklch(80% 0% 0deg);
+=             width: 100%;
+-             padding: 2rem;
++             padding: 2rem 0;
+=             font-size: 0.8rem;
+=             text-align: center;
+=         }
+```
+
+# Add more observations to the content width test
+
+
+
+``` diff
+index 76c2804..3d85e45 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -42,8 +42,14 @@
+=(tbb/implement-step
+= "The content is not wider than the viewport"
+= (fn [data]
+-   (let [content-width (e/js-execute @web-driver "return document.querySelector(`html`).scrollWidth")
+-         window-width (e/js-execute @web-driver "return window.innerWidth")]
++   (let [content-script "return document.querySelector(`html`).scrollWidth"
++         window-script "return window.innerWidth"
++         content-width (e/js-execute @web-driver content-script)
++         window-width (e/js-execute @web-driver window-script)]
++     (tbb/send-text (str "The content width is " content-width "px. It was measured with the following script:"))
++     (tbb/send-snippet "javascript" content-script)
++     (tbb/send-text (str "The window width is " window-width "px. It was measured with the following script:"))
++     (tbb/send-snippet "javascript" window-script)
+=     (tbb/tis >=
+=              window-width
+=              content-width))))
+```
+
+# Correct alt text and add title to the main heading
+
+
+
+``` diff
+index 21af2c3..6ce2063 100644
+--- a/index.html
++++ b/index.html
+@@ -94,7 +94,12 @@
+=
+=        <main>
+=            <h1>
+-                <img id="big-logo" src="logo.svg" alt="FOSS for Normies logo" />
++                <img
++                    id="big-logo"
++                    src="logo.svg"
++                    alt="Better Tech Club logo"
++                    title="Better Tech Club"
++                /> 
+=            </h1>
+=            <p>
+=                We are starting a network of <strong>local community
+```
+
+# Write bold reasons why our tech is better
+
+
+
+``` diff
+new file mode 100644
+index 0000000..5242ac0
+Binary files /dev/null and b/fonts/CooperHewitt-Heavy.woff differ
+```
+
+``` diff
+index 7a9a8d3..e0204fd 100644
+--- a/index.html
++++ b/index.html
+@@ -13,6 +13,12 @@
+=        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
++         @font-face {
++             font-family: "Cooper Hewitt";
++             src: url("fonts/CooperHewitt-Heavy.woff") format("woff2");
++             font-weight: 800;
++         }
++         
+=         html, body {
+=             background: #003399;
+=             min-height: 100%;
+@@ -33,6 +39,15 @@
+=             max-height: 60vh;
+=         }
+=
++         p {
++             text-align: justify;
++         }
++
++         h2 {
++             font-size: 1.2em;
++             align-self: start;
++         }
++         
+=         main {
+=             display: flex;
+=             flex-direction: column;
+@@ -81,6 +96,25 @@
+=                 float: left;
+=             }
+=         }
++         #reasons-why {
++             width: 100%;
++             padding: 0;
++             font-size: 4rem;
++             font-weight: 800;
++             font-family: "Cooper Hewitt";
++             text-align: left;
++             margin-top: 0;
++
++             -webkit-text-fill-color: oklch(80% 0% 0deg); 
++             -webkit-text-stroke-width: 2px;
++             -webkit-text-stroke-color: oklch(20% 0% 0deg);
++
++             strong {
++                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
++                 -webkit-text-stroke-width: 2px;
++                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
++                 text-decoration: none;
++             }
+=        </style>
+=    </head>
+=    <body>
+@@ -101,6 +135,22 @@
+=                    title="Better Tech Club"
+=                /> 
+=            </h1>
++
++            <h2>Why is our tech better?</h2>
++            <p id="reasons-why">
++                    Made with <strong>love</strong> and <strong>care</strong>,
++                    it gets better every day.
++                    Our tech <strong>respects</strong> you as a human being:
++                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
++                    your <strong>intelligence</strong>, your <strong>well-being.</strong>
++                    It's <strong>sustainable</strong> and <strong>fair</strong>.
++                    It belongs to you and me.
++                    It makes us a <strong>community.</strong>
++                    You are among friends. You are not the product.
++                    You deserve <strong>better</strong>.
++            </p>
++
++            <h2>What are we doing?</h2>
+=            <p>
+=                We are starting a network of <strong>local community
+=                groups</strong> to promote and support free and open source
+```
+
+# Make the reasons text size responsive
+
+
+
+``` diff
+index e0204fd..cd5cf63 100644
+--- a/index.html
++++ b/index.html
+@@ -99,19 +99,18 @@
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+-             font-size: 4rem;
++             font-size: min(4rem, 10vw);
+=             font-weight: 800;
+=             font-family: "Cooper Hewitt";
+=             text-align: left;
+=             margin-top: 0;
+=
+=             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 2px;
++             -webkit-text-stroke-width: 0.05em;
+=             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+=
+=             strong {
+=                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
+-                 -webkit-text-stroke-width: 2px;
+=                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+=                 text-decoration: none;
+=             }
+```
+
+# Lighter text stroke, fix curly braces
+
+
+
+``` diff
+index cd5cf63..9c59035 100644
+--- a/index.html
++++ b/index.html
+@@ -106,7 +106,7 @@
+=             margin-top: 0;
+=
+=             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 0.05em;
++             -webkit-text-stroke-width: 0.02em;
+=             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+=
+=             strong {
+@@ -114,6 +114,7 @@
+=                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+=                 text-decoration: none;
+=             }
++         }
+=        </style>
+=    </head>
+=    <body>
+```
\ No newline at end of file
new file mode 100644
index 0000000..9f5d3d5
--- /dev/null
+++ b/content/devlog/2026-04-08-tad-better-behavior.md
@@ -0,0 +1,424 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 1
+
+
+# Draw an icon
+
+
+
+``` diff
+new file mode 100644
+index 0000000..f4729d4
+Binary files /dev/null and b/logo.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..d54a374
+--- /dev/null
++++ b/logo.svg
+@@ -0,0 +1,279 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   sodipodi:docname="logo.svg"
++   inkscape:export-filename="logo.png"
++   inkscape:export-xdpi="96"
++   inkscape:export-ydpi="96"
++   inkscape:export-batch-name="tbb"
++   inkscape:export-batch-path="."
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/">
++  <title
++     id="title1">Tad Better Bahavior Logo</title>
++  <defs
++     id="defs2">
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect17"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect15"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect14"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect3"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,3.7796721"
++       up_right_point="16,7.00924"
++       down_left_point="6,26.25"
++       down_right_point="16,31.691307"
++       id="path-effect1"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect24"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect8"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <linearGradient
++       id="swatch1"
++       inkscape:swatch="solid">
++      <stop
++         style="stop-color:#333333;stop-opacity:1;"
++         offset="0"
++         id="stop1" />
++    </linearGradient>
++  </defs>
++  <sodipodi:namedview
++     id="base"
++     pagecolor="#343434"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="16"
++     inkscape:cx="24.53125"
++     inkscape:cy="6.25"
++     inkscape:document-units="px"
++     inkscape:current-layer="layer1"
++     inkscape:document-rotation="0"
++     showgrid="false"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     showguides="false">
++    <inkscape:grid
++       id="grid1"
++       units="px"
++       originx="16"
++       originy="16"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="false" />
++    <sodipodi:guide
++       position="9.5,12"
++       orientation="-1,0"
++       id="guide20"
++       inkscape:locked="false"
++       inkscape:label=""
++       inkscape:color="rgb(0,134,229)" />
++    <sodipodi:guide
++       position="12.78125,12.355469"
++       orientation="1,0"
++       id="guide21"
++       inkscape:locked="false" />
++    <sodipodi:guide
++       position="16,25.418434"
++       orientation="0,-1"
++       id="guide7"
++       inkscape:locked="false" />
++  </sodipodi:namedview>
++  <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>Tad Better Bahavior Logo</dc:title>
++        <dc:date>2026-04-06</dc:date>
++        <dc:creator>
++          <cc:Agent>
++            <dc:title>Tad Lispy</dc:title>
++          </cc:Agent>
++        </dc:creator>
++        <dc:rights>
++          <cc:Agent>
++            <dc:title>All rights reserved</dc:title>
++          </cc:Agent>
++        </dc:rights>
++      </cc:Work>
++    </rdf:RDF>
++  </metadata>
++  <g
++     inkscape:label="icon"
++     inkscape:groupmode="layer"
++     id="layer1">
++    <circle
++       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="path29"
++       cx="16"
++       cy="16"
++       r="16"
++       inkscape:label="background" />
++    <path
++       id="path28"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-right-back" />
++    <path
++       id="rect26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z"
++       sodipodi:nodetypes="cccscc"
++       inkscape:label="rubber-left" />
++    <circle
++       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="ellipse15"
++       cx="23.912268"
++       cy="22.700811"
++       inkscape:label="projectile"
++       r="3.5171616" />
++    <path
++       id="rect20"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-left-back" />
++    <path
++       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
++       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
++       id="path11"
++       inkscape:label="sling"
++       sodipodi:nodetypes="cssscsscsssssssssscc" />
++    <path
++       id="path26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-right" />
++    <path
++       id="rect17"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z"
++       sodipodi:nodetypes="csccscc"
++       inkscape:label="rubber-right" />
++    <path
++       id="path27"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-left-front" />
++  </g>
++</svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..f4729d4
+Binary files /dev/null and b/tbb_icon.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..bf38170
+--- /dev/null
++++ b/tbb_icon.svg
+@@ -0,0 +1,91 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/">
++  <title
++     id="title1">Tad Better Bahavior Logo</title>
++  <defs
++     id="defs2">
++    <linearGradient
++       id="swatch1">
++      <stop
++         style="stop-color:#333333;stop-opacity:1;"
++         offset="0"
++         id="stop1" />
++    </linearGradient>
++  </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>Tad Better Bahavior Logo</dc:title>
++        <dc:date>2026-04-06</dc:date>
++        <dc:creator>
++          <cc:Agent>
++            <dc:title>Tad Lispy</dc:title>
++          </cc:Agent>
++        </dc:creator>
++        <dc:rights>
++          <cc:Agent>
++            <dc:title>All rights reserved</dc:title>
++          </cc:Agent>
++        </dc:rights>
++      </cc:Work>
++    </rdf:RDF>
++  </metadata>
++  <g
++     id="layer1">
++    <circle
++       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="path29"
++       cx="16"
++       cy="16"
++       r="16" />
++    <path
++       id="path28"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z" />
++    <path
++       id="rect26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z" />
++    <circle
++       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="ellipse15"
++       cx="23.912268"
++       cy="22.700811"
++       r="3.5171616" />
++    <path
++       id="rect20"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z" />
++    <path
++       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
++       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
++       id="path11" />
++    <path
++       id="path26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z" />
++    <path
++       id="rect17"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z" />
++    <path
++       id="path27"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z" />
++  </g>
++</svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..22e799a
+Binary files /dev/null and b/tbb_icon_512.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..25b4c8f
+Binary files /dev/null and b/tbb_icon_64.png differ
+```
\ No newline at end of file
new file mode 100644
index 0000000..17c5bff
--- /dev/null
+++ b/content/devlog/2026-04-09-better-tech-club-website.md
@@ -0,0 +1,1356 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 15
+
+
+# Advice what to search for in Hilversum agenda
+
+Thanks to Geert for the suggestion.
+
+``` diff
+index 6ce2063..7a9a8d3 100644
+--- a/index.html
++++ b/index.html
+@@ -147,7 +147,10 @@
+=                <h3>Hilversum, NL</h3>
+=                <dl>
+=                    <dt title="time">🕑</dt>
+-                    <dd>See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a></dd>
++                    <dd>
++                        See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a><br />
++                        (search for <em>Techtuinieren</em> and <em>Duurzaam Digitaal Spreekuur</em>).
++                    </dd>
+=                </dl>
+=
+=                <dl>
+```
+
+# Re-align the text in the footer
+
+
+
+``` diff
+index 9c59035..190ac4d 100644
+--- a/index.html
++++ b/index.html
+@@ -75,7 +75,10 @@
+=             width: 100%;
+=             padding: 2rem 0;
+=             font-size: 0.8rem;
+-             text-align: center;
++
++             p {
++                 text-align: center;
++             }
+=         }
+=
+=         .local-group {
+```
+
+# Emphasize the words "love and care" together
+
+
+
+``` diff
+index 190ac4d..4bcf4cd 100644
+--- a/index.html
++++ b/index.html
+@@ -141,7 +141,7 @@
+=
+=            <h2>Why is our tech better?</h2>
+=            <p id="reasons-why">
+-                    Made with <strong>love</strong> and <strong>care</strong>,
++                    Made with <strong>love and care</strong>,
+=                    it gets better every day.
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+```
+
+# Import the branding source SVG with a tagline
+
+
+
+``` diff
+new file mode 100644
+index 0000000..7ff8966
+--- /dev/null
++++ b/better-tech-club.svg
+@@ -0,0 +1,184 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2"><inkscape:path-effect
++       effect="powerstroke"
++       message=""
++       id="path-effect5"
++       is_visible="true"
++       lpeversion="1.3"
++       scale_width="1"
++       interpolator_type="CentripetalCatmullRom"
++       interpolator_beta="0.75"
++       start_linecap_type="round"
++       end_linecap_type="round"
++       offset_points="2.3035803,8.7803873"
++       linejoin_type="spiro"
++       miter_limit="4"
++       not_jump="true"
++       sort_points="true" /><inkscape:path-effect
++       effect="simplify"
++       id="path-effect4"
++       is_visible="true"
++       lpeversion="1.3"
++       threshold="0.014201184"
++       steps="1"
++       smooth_angles="0"
++       helper_size="0"
++       simplify_individual_paths="false"
++       simplify_just_coalesce="false"
++       step="1" /></defs><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:page
++       x="0"
++       y="0"
++       width="1000"
++       height="1000"
++       id="page5"
++       margin="0"
++       bleed="0"
++       inkscape:label="logotype" /><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="0"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /><inkscape:page
++       x="1010"
++       y="0"
++       width="32"
++       height="32"
++       id="page9"
++       margin="0"
++       bleed="0"
++       inkscape:label="icon" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"><text
++       xml:space="preserve"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:#ffffff;paint-order:markers stroke fill;stroke-width:10;stroke-dasharray:none"
++       x="546.70502"
++       y="380"
++       id="text1"><tspan
++         sodipodi:role="line"
++         id="tspan1"
++         x="546.70502"
++         y="380">Big</tspan><tspan
++         sodipodi:role="line"
++         x="546.70502"
++         y="559.08374"
++         id="tspan2">Tech</tspan><tspan
++         sodipodi:role="line"
++         x="546.70502"
++         y="738.16748"
++         id="tspan3">Club</tspan></text><g
++       id="g6-8"
++       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
++         fill="#fac036"
++         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++         id="path1-0" /><path
++         fill="#e48c15"
++         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++         id="path2-8" /></g><text
++       xml:space="preserve"
++       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#fac036;fill-opacity:1;stroke-width:1.69307"
++       x="313.17581"
++       y="386.3519"
++       id="text4"
++       transform="rotate(-15)"><tspan
++         sodipodi:role="line"
++         id="tspan4"
++         x="313.17581"
++         y="386.3519"
++         style="stroke-width:1.69307">Better</tspan></text><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       sodipodi:nodetypes="cc"
++       transform="translate(362.34816,24.840675)"
++       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
++       inkscape:path-effect="#path-effect4;#path-effect5" /><text
++       xml:space="preserve"
++       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:143.267px;line-height:1.25;font-family:'Adwaita Mono';-inkscape-font-specification:'Adwaita Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
++       x="63.714287"
++       y="580"
++       id="text5"><tspan
++         sodipodi:role="line"
++         id="tspan5"
++         x="63.714287"
++         y="580" /></text></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g><text
++     xml:space="preserve"
++     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#fac036;fill-opacity:1;stroke-width:3.88772"
++     x="495.45914"
++     y="864.35309"
++     id="text6"><tspan
++       sodipodi:role="line"
++       id="tspan6"
++       x="211.18976"
++       y="864.35309"
++       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
++       sodipodi:role="line"
++       x="211.18976"
++       y="942.10736"
++       style="stroke-width:3.88772"
++       id="tspan7">for digital independence</tspan></text></svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..6fe07e0
+--- /dev/null
++++ b/better-tech-club_icon.svg
+@@ -0,0 +1,84 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2" /><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="-1010"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /><inkscape:page
++       x="0"
++       y="0"
++       width="32"
++       height="32"
++       id="page9"
++       margin="0"
++       bleed="0"
++       inkscape:label="icon" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"
++     transform="translate(-1010)"><g
++       id="g6-8"
++       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
++         fill="#fac036"
++         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++         id="path1-0" /><path
++         fill="#e48c15"
++         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++         id="path2-8" /></g></g></svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..470c6e3
+--- /dev/null
++++ b/better-tech-club_logotype.svg
+@@ -0,0 +1,137 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2"><inkscape:path-effect
++       effect="powerstroke"
++       message=""
++       id="path-effect5"
++       is_visible="true"
++       lpeversion="1.3"
++       scale_width="1"
++       interpolator_type="CentripetalCatmullRom"
++       interpolator_beta="0.75"
++       start_linecap_type="round"
++       end_linecap_type="round"
++       offset_points="2.3035803,8.7803873"
++       linejoin_type="spiro"
++       miter_limit="4"
++       not_jump="true"
++       sort_points="true" /><inkscape:path-effect
++       effect="simplify"
++       id="path-effect4"
++       is_visible="true"
++       lpeversion="1.3"
++       threshold="0.014201184"
++       steps="1"
++       smooth_angles="0"
++       helper_size="0"
++       simplify_individual_paths="false"
++       simplify_just_coalesce="false"
++       step="1" /></defs><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:page
++       x="0"
++       y="0"
++       width="1000"
++       height="1000"
++       id="page5"
++       margin="0"
++       bleed="0"
++       inkscape:label="logotype" /><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="0"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"><g
++       id="text1"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
++       aria-label="Big&#10;Tech&#10;Club"><path
++         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
++         id="path11" /><path
++         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
++         id="path12" /><path
++         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
++         id="path13" /></g><path
++       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
++       id="text4"
++       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
++       transform="rotate(-15)"
++       aria-label="Better" /><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       sodipodi:nodetypes="cc"
++       transform="translate(362.34816,24.840675)"
++       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
++       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g><g
++     id="text6"
++     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
++     aria-label="Neighborhood communities&#10;for digital independence"><path
++       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
++       id="path14" /><path
++       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
++       id="path15" /></g></svg>
+```
+
+``` diff
+index 4bcf4cd..c2242e1 100644
+--- a/index.html
++++ b/index.html
+@@ -133,7 +133,7 @@
+=            <h1>
+=                <img
+=                    id="big-logo"
+-                    src="logo.svg"
++                    src="better-tech-club_logotype.svg"
+=                    alt="Better Tech Club logo"
+=                    title="Better Tech Club"
+=                />
+```
+
+# Fix a typo in the tagline
+
+Also lowercase it for aesthetic value.
+
+``` diff
+index 7ff8966..bcd6677 100644
+--- a/better-tech-club.svg
++++ b/better-tech-club.svg
+@@ -174,11 +174,11 @@
+=     id="text6"><tspan
+=       sodipodi:role="line"
+=       id="tspan6"
+-       x="211.18976"
++       x="495.45914"
+=       y="864.35309"
+-       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
++       style="stroke-width:3.88772">neighbourhood communities</tspan><tspan
+=       sodipodi:role="line"
+-       x="211.18976"
++       x="495.45914"
+=       y="942.10736"
+=       style="stroke-width:3.88772"
+=       id="tspan7">for digital independence</tspan></text></svg>
+```
+
+``` diff
+index 6fe07e0..dcf30e6 100644
+--- a/better-tech-club_icon.svg
++++ b/better-tech-club_icon.svg
+@@ -31,7 +31,7 @@
+=     inkscape:cx="382.54477"
+=     inkscape:cy="569.92807"
+=     inkscape:document-units="px"
+-     inkscape:current-layer="svg8"
++     inkscape:current-layer="layer1"
+=     inkscape:document-rotation="0"
+=     showgrid="true"
+=     units="px"
+```
+
+``` diff
+index 470c6e3..344c3bc 100644
+--- a/better-tech-club_logotype.svg
++++ b/better-tech-club_logotype.svg
+@@ -57,7 +57,7 @@
+=     inkscape:cx="382.54477"
+=     inkscape:cy="569.92807"
+=     inkscape:document-units="px"
+-     inkscape:current-layer="svg8"
++     inkscape:current-layer="layer1"
+=     inkscape:document-rotation="0"
+=     showgrid="true"
+=     units="px"
+@@ -103,11 +103,11 @@
+=       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
+=       aria-label="Big&#10;Tech&#10;Club"><path
+=         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
+-         id="path11" /><path
++         id="path15" /><path
+=         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
+-         id="path12" /><path
++         id="path16" /><path
+=         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
+-         id="path13" /></g><path
++         id="path17" /></g><path
+=       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
+=       id="text4"
+=       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
+@@ -130,8 +130,8 @@
+=       id="path2" /></g><g
+=     id="text6"
+=     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
+-     aria-label="Neighborhood communities&#10;for digital independence"><path
+-       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
+-       id="path14" /><path
++     aria-label="neighbourhood communities&#10;for digital independence"><path
++       d="m 234.42265,862.86021 q -1.36847,-0.12441 -2.30153,-0.55983 -0.87084,-0.49763 -1.43067,-1.92831 -0.24882,-0.99525 -0.24882,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05745 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31101,-0.24881 -1.11966,0.0622 -1.30627,0.62204 -2.86135,1.67949 -1.49289,0.99526 -3.17238,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05271,2.42593 -0.62204,0.93305 -1.30628,0.93305 -0.49762,0.24881 -1.05745,-0.12441 -0.55983,-0.37322 -1.18187,-0.87084 -0.43542,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68423,-1.05746 0,-0.99525 0.1244,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24882,-0.49762 0.55983,-1.05746 0.24882,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.1244,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30628,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49762,-0.37322 0.49763,-0.37322 1.18187,-0.87085 0.68423,-0.55983 1.18186,-0.87085 0.31102,-0.31102 1.36848,-1.11966 1.05745,-0.87085 2.30152,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05745,-0.55983 1.30627,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24882,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.1244,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24882,0.87085 0.18661,0.43543 0.43542,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 19.22083,0.24881 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68423 0.49762,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99575,15.05322 q -1.49288,0 -2.61255,-1.55508 -1.05745,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.12441,-0.93305 0.24881,-1.9283 0.24882,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.6795,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24882,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68423,-0.37322 -0.43543,-0.0622 -1.11967,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31101,1.36847 -2.23932,2.17711 z m 7.52656,37.94408 q -0.68424,0.0622 -2.11492,-0.31102 -1.43067,-0.31102 -2.79915,-1.24407 -1.67949,-1.43068 -2.30152,-2.36373 -0.62204,-0.93305 -0.68424,-1.67949 0,-0.68424 0.0622,-1.24407 0.31102,-1.36847 1.30627,-1.30627 1.05746,0.0622 1.61729,0.55983 0.62203,0.49763 1.30627,1.18187 0.74644,0.74644 1.43068,1.30627 0.74644,0.55983 1.24407,0.49763 1.24407,-0.12441 2.05271,-1.05746 0.80864,-0.87085 1.61729,-2.79915 0.49763,-1.36848 0.74644,-2.36373 0.31102,-0.99526 0.62203,-2.17712 0.31102,-1.18187 0.74644,-3.17238 0.31102,-1.43067 0.43543,-1.9905 0.18661,-0.62204 0.18661,-0.74645 0,-0.18661 -0.0622,-0.18661 0,0 -0.43543,0.24882 -0.43542,0.24881 -1.24407,0.55983 -0.74644,0.31102 -1.67949,0.62203 -1.74169,0.55983 -3.48339,0.99526 -1.74169,0.37322 -2.67474,0.0622 -0.93306,-0.37322 -1.49289,-1.24407 -0.55983,-0.87085 -0.74644,-1.8661 -0.1244,-0.99525 -0.0622,-1.61729 0.12441,-0.49763 0.55983,-1.61729 0.43542,-1.11966 0.99525,-2.36373 0.55983,-1.24406 1.05746,-2.17711 0.49763,-0.93306 0.80865,-0.99526 0.24881,-0.12441 0.43542,-0.49763 0.24881,-0.43542 0.24881,-0.68423 0.0622,-0.24882 0.49763,-0.80865 0.49763,-0.55983 2.79915,-2.17712 2.30153,-2.17712 4.16763,-3.23457 1.8661,-1.11966 3.42119,-1.24407 0.43542,0.0622 0.80864,0.0622 0.43543,0 0.43543,0 0,0 0.68423,0.18661 0.68424,0.18661 1.36848,0.49763 0.80864,0.31102 1.74169,1.49288 0.93305,1.11966 1.61729,2.48814 0.68424,1.36847 0.74644,2.48813 -0.0622,1.36848 -0.62203,2.73695 -0.55983,1.36848 -1.05746,1.30627 -0.49763,-0.0622 -1.11966,0.37322 -0.55983,0.37322 -0.87085,1.49289 -0.18661,0.24881 -0.43542,0.80864 -0.24881,0.49763 -0.55983,0.99525 -0.0622,0.31102 -0.31102,1.55509 -0.24881,1.18186 -0.62203,2.67475 -0.31102,1.43067 -0.55983,2.67474 -0.24882,1.18187 -0.31102,1.55509 -0.0622,0.24881 -0.31102,1.18186 -0.24881,0.87085 -0.62203,1.99051 -0.31102,1.11966 -0.68424,2.05271 -0.24881,1.8039 -0.99525,3.11017 -0.74644,1.36848 -1.61729,2.42593 -1.43068,1.55509 -2.86136,2.17712 -1.36847,0.68424 -2.42593,0.80865 z m -1.18187,-21.77119 q 0.18662,0.49763 0.99526,0.37322 0.87085,-0.12441 2.36373,-0.55983 1.8039,-0.74644 2.67474,-1.18187 0.93306,-0.43542 1.43068,-1.11966 0.37322,-0.49763 0.68424,-0.99525 0.37322,-0.49763 0.68424,-0.87085 0.1244,-0.12441 0.37322,-0.43542 0.31101,-0.31102 0.49763,-0.55983 0.37322,-0.24882 0.62203,-0.43543 0.31102,-0.24881 0.55983,-0.43542 0.31102,-0.12441 0.55983,-0.55983 0.24881,-0.49763 0.12441,-0.99526 -0.0622,-0.43542 -0.55983,-1.18186 -0.49763,-0.80865 -1.36848,-1.24407 -0.80864,-0.49763 -1.9283,0.68424 -1.05746,1.18186 -3.42119,3.17237 -1.36848,1.49288 -2.42593,2.79915 -1.05746,1.24407 -1.55509,2.17712 -0.49763,0.87085 -0.31102,1.36848 z m 40.74325,9.2683 q -1.18186,0.31102 -2.48813,0.43543 -1.24407,0.18661 -2.17712,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49762,-0.99526 -0.68424,-0.1244 -2.17712,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.9283,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74644,0.74644 -1.11966,0 -2.05272,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68423,-1.43067 0,-0.24882 0.31101,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43543,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80865,-2.36373 1.43068,-4.16763 0.24882,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24407,-3.11017 0.62203,-1.55509 0.87084,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24881,0 0.55983,0 0.31101,-0.0622 0.31101,-0.0622 0,-0.12441 0.80865,0.24881 0.87085,0.37322 1.67949,0.93305 0.87085,0.49763 0.87085,0.87085 0.31101,0.80864 0.0622,2.11491 -0.24881,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24406,3.35899 -0.24882,0.43542 -0.74644,1.55508 -0.43543,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99526,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23458,-3.35898 1.55508,-1.49289 2.86135,-2.36373 1.36848,-0.93305 2.42594,-0.80865 0.55983,0.12441 1.43067,0.80865 0.93305,0.62203 1.7417,1.49288 0.87085,0.80864 1.11966,1.55508 0.24881,0.87085 0.31102,1.6795 0.1244,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49762,3.04796 -0.12441,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 14.43115,0.0622 q -1.24407,-0.12441 -1.99051,-0.62204 -0.68424,-0.55983 -1.05746,-1.36847 -0.49762,-0.55983 -0.62203,-0.87085 -0.0622,-0.31102 0,-0.55983 0.31102,0 0.55983,0 0.24881,-0.0622 0.31102,-0.24881 0,-0.18661 0.18661,-0.24882 0.24881,-0.0622 0.49763,0 1.18186,0.0622 2.86135,-0.80864 1.7417,-0.87085 3.79441,-2.42593 2.05271,-1.61729 4.10542,-3.48339 1.61729,-2.11492 2.23933,-3.11017 0.68423,-0.99526 0.68423,-1.49288 0.0622,-0.55984 -0.24881,-1.11967 -0.24881,-0.49762 -1.18186,-0.49762 -0.93306,0 -2.86136,1.24406 -2.67475,1.6795 -4.29204,3.11017 -1.61728,1.43068 -2.98576,3.23458 -0.49763,0.62204 -1.11966,1.36848 -0.55983,0.68423 -0.99525,1.18186 -0.37323,0.49763 -0.37323,0.49763 0,0.24881 -0.74644,0.62203 -0.68423,0.37322 -1.18186,0.37322 -0.24881,-0.1244 -0.68424,-0.43542 -0.37322,-0.37322 -0.49763,-0.93305 -0.55983,-0.43543 -0.93305,-0.74644 -0.37322,-0.37322 -0.37322,-1.18187 0,-0.49762 0.12441,-1.24407 0.18661,-0.74644 0.49763,-1.9283 0.37322,-1.61729 0.80864,-3.35898 0.43543,-1.8039 0.80865,-3.04797 0.43542,-1.30627 0.62203,-1.43068 0,0 0.24881,-0.55983 0.24882,-0.55983 0.24882,-1.30627 0.1244,-0.74644 0.37322,-1.30627 0.31101,-0.55983 0.31101,-0.80865 0.24882,-0.18661 0.74645,-1.49288 0.49762,-1.30627 1.24406,-3.42119 0,-0.18661 0.43543,-1.18186 0.43542,-1.05746 1.05745,-2.42593 0.62204,-1.43068 1.24407,-2.92356 0.68424,-1.55509 1.11966,-2.73695 0.74644,-1.05746 1.24407,-2.11492 0.55983,-1.11966 0.99526,-1.30627 0.31101,-0.0622 1.05745,0.24881 0.80865,0.31102 1.61729,0.80865 0.80865,0.49763 1.11966,0.99525 0.18661,0.31102 0.18661,0.62204 0.0622,0.31101 -0.24881,1.05745 -0.31102,0.68424 -1.05746,2.30153 -0.74644,1.55509 -2.11491,4.41644 -1.7417,3.73221 -2.73695,6.22034 -0.93305,2.48814 -1.55509,4.29204 -0.55983,1.8039 -1.18186,3.42118 l -0.31102,1.36848 1.61729,-1.8039 q 0.62203,-0.62203 1.30627,-1.18186 0.68424,-0.55984 1.49288,-1.11967 0.49763,-0.37322 1.30627,-0.74644 0.87085,-0.43542 1.6795,-0.74644 0.80864,-0.31101 1.18186,-0.37322 0.18661,-0.0622 1.24407,-0.24881 1.11966,-0.24882 2.17712,-0.24882 1.36847,0 2.36373,0.99526 1.05745,0.93305 1.8661,2.30152 0.68424,1.30628 0.49763,3.35899 -0.18661,1.99051 -1.05746,3.42119 -0.31102,0.24881 -0.62204,0.68423 -0.31101,0.37322 -0.31101,0.62204 -0.0622,0.43542 -1.11966,1.8039 -1.05746,1.30627 -2.11492,2.48813 -1.11966,1.18187 -2.73695,2.36373 -1.61729,1.11966 -3.23458,2.05271 -1.55508,0.87085 -2.67474,1.24407 -0.49763,0.0622 -1.43068,0.24881 -0.93305,0.12441 -1.43068,0.24882 z m 25.69001,0.93305 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49763,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 25.68998,8.70847 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74645,-2.55034 -0.1244,-0.49763 -0.1244,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87085,0.68424 -1.74169,1.11967 -2.05272,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24882,-2.98576 0.12441,-2.17712 0.62204,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49288,1.18186 0.37322,0.62204 0,2.36373 -0.37322,1.67949 -1.49288,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55983,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49289,5.22509 -1.18186,2.55034 -1.61728,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74644,1.49288 0.12441,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.8039,0.1244 -0.93305,-0.1244 -1.55508,-0.55983 z m 13.31157,-1.18186 q -0.18661,0.0622 -0.80864,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55984,-0.18661 -0.68424,-0.31102 -0.24882,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.8661 0.43543,-1.24407 0.87085,-2.61255 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.12441,-1.49288 -0.18661,-0.49763 -1.05745,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93305,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30628 0.62204,-0.49763 1.36848,-1.36848 0.80864,-0.93305 1.61729,-1.74169 0.99525,-0.68424 2.36373,-1.36848 1.36847,-0.74644 1.9905,-0.74644 0.68424,0 1.6795,0.68424 0.99525,0.62203 1.24406,1.11966 0.62204,1.05746 0.87085,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55984,0.37322 -0.49762,0.49762 -1.24406,1.24406 -0.68424,0.74645 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49763,1.36848 -1.05746,1.55509 z m 39.81022,0.87084 q -1.18186,0.31102 -2.48814,0.43543 -1.24406,0.18661 -2.17711,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49763,-0.99526 -0.68423,-0.1244 -2.17711,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.92831,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74645,0.74644 -1.11966,0 -2.05271,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68424,-1.43067 0,-0.24882 0.31102,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43542,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80864,-2.36373 1.43068,-4.16763 0.24881,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24406,-3.11017 0.62204,-1.55509 0.87085,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24882,0 0.55983,0 0.31102,-0.0622 0.31102,-0.0622 0,-0.12441 0.80864,0.24881 0.87085,0.37322 1.6795,0.93305 0.87084,0.49763 0.87084,0.87085 0.31102,0.80864 0.0622,2.11491 -0.24882,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24407,3.35899 -0.24881,0.43542 -0.74644,1.55508 -0.43542,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99525,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23457,-3.35898 1.55509,-1.49289 2.86136,-2.36373 1.36848,-0.93305 2.42593,-0.80865 0.55983,0.12441 1.43068,0.80865 0.93305,0.62203 1.7417,1.49288 0.87084,0.80864 1.11966,1.55508 0.24881,0.87085 0.31101,1.6795 0.12441,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49763,3.04796 -0.1244,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 12.31623,-0.0622 q -1.30628,0.24881 -1.99051,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55984,-0.18661 0.18661,0 0.93305,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18186,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.54559,1.24407 z m 0.18661,-5.22508 q 0.24881,0 0.87084,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43543,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68423,-0.31101 -0.62204,0 -0.87085,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99525,-1.24407 -1.05746,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99526,0.37322 z m 22.5176,6.28254 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 28.05371,10.01474 q -0.80864,0.18661 -1.61729,-0.43542 -0.74644,-0.55983 -1.05746,-1.24407 -0.37322,-0.99525 -0.49762,-1.8661 -0.0622,-0.93305 -0.12441,-2.11492 l -0.0622,-2.11491 -2.55034,2.30152 q -2.11492,1.99051 -3.98102,2.86136 -1.8039,0.80864 -3.29678,0.80864 -0.68424,-0.1244 -1.67949,-0.87084 -0.93305,-0.80865 -1.7417,-1.7417 -0.74644,-0.99525 -1.05745,-1.61729 -0.37323,-0.87084 -0.24882,-2.42593 0.18661,-1.55508 0.74644,-3.42119 0.62204,-1.8661 1.49288,-3.67 0.93306,-1.8039 2.11492,-3.11017 2.05271,-3.11017 5.10068,-3.85661 3.04797,-0.80864 5.41169,0.49763 1.11967,0.55983 1.61729,0.43542 0.49763,-0.1244 0.62204,-0.80864 0.24881,-0.99526 0.55983,-1.8661 0.31101,-0.87085 0.87084,-2.61255 1.55509,-4.72745 2.67475,-7.4022 1.18187,-2.67475 2.11492,-4.66526 0.68423,-1.43067 1.36847,-1.9905 0.68424,-0.55983 1.18187,-0.49763 0.68423,0 1.67949,0.49763 1.05746,0.49762 1.36847,1.36847 0.24882,0.55983 0.18661,1.18187 0,0.62203 -0.37322,1.30627 -0.80864,1.49288 -1.9283,3.98101 -1.05746,2.42594 -2.17712,5.3495 -1.05746,2.92356 -1.99051,5.78491 -0.93305,2.86136 -1.55509,5.03848 -0.37322,1.36847 -0.62203,3.48339 -0.18661,2.11491 -0.31102,4.35424 -0.0622,2.17712 0,3.91881 0.0622,1.67949 0.18661,2.17712 0.37322,1.24407 0,1.8661 -0.37322,0.62204 -1.05745,0.80865 -0.68424,0.24881 -1.36848,0.31101 z m -10.26356,-7.52661 q 0.87085,-0.31102 1.55508,-0.74644 0.68424,-0.43542 1.61729,-1.11966 1.86611,-1.43068 2.67475,-2.48814 0.87085,-1.05745 1.36847,-2.61254 0.31102,-0.93305 0,-1.61729 -0.24881,-0.68423 -0.93305,-1.30627 -0.68423,-0.55983 -1.74169,-0.43542 -1.05746,0.0622 -2.42593,1.30627 -1.49289,1.36847 -2.55034,3.17237 -1.05746,1.8039 -1.7417,5.16288 -0.12441,0.62204 0.43542,0.87085 0.55984,0.24882 1.7417,-0.18661 z m 38.75278,5.84712 q -1.36847,0 -2.05271,-0.12441 -0.62204,-0.1244 -0.93305,-0.37322 -0.31102,-0.24881 -0.80865,-0.68423 -0.24881,-0.49763 -0.87084,-1.24407 -0.62204,-0.80865 -0.87085,-1.05746 -0.24882,-0.93305 -0.18661,-2.55034 0.1244,-1.61729 0.55983,-3.48339 0.43542,-1.8661 1.05746,-3.35898 0.24881,-0.49763 0.43542,-0.99526 0.18661,-0.49762 0.18661,-0.49762 0,-0.31102 0.74644,-1.49289 0.80864,-1.18186 1.7417,-2.48813 0.99525,-1.30627 1.61728,-1.8661 0.43543,-0.49763 1.30628,-1.05746 0.93305,-0.55983 1.61728,-0.80865 0.68424,-0.24881 1.86611,-0.62203 1.18186,-0.43542 2.11491,-0.43542 0.87085,0 1.8661,0.37322 0.99526,0.37322 1.6795,1.30627 1.11966,1.11966 1.43067,2.67474 0.31102,1.55509 0.0622,2.67475 -0.31102,1.24407 -1.24407,2.05271 -0.93305,0.74644 -1.99051,0.80865 -1.05746,0 -1.8661,-0.87085 -0.24882,-0.49763 -0.24882,-0.80864 0,-0.37323 0.24882,-1.05746 0.24881,-0.87085 0.24881,-1.55509 0,-0.68423 -0.55983,-0.68423 -0.80864,0 -1.30627,0.49762 -0.49763,0.43543 -1.49288,1.49288 -0.43543,0.49763 -1.11966,1.43068 -0.68424,0.93305 -1.36848,2.05271 -0.62203,1.05746 -1.11966,2.17712 -0.68424,2.05272 -0.87085,2.67475 -0.1244,0.55983 -0.1244,0.55983 0,0.24881 -0.0622,0.49763 -0.0622,0.18661 -0.0622,0.43542 0,0.74644 0.87085,1.18187 0.68423,0.43542 1.11966,0.43542 0.49763,-0.0622 1.8661,-0.68424 0.99525,-0.49763 1.8661,-1.30627 0.93305,-0.80864 1.92831,-1.43068 0.68424,-0.43542 1.05746,-0.74644 0.43542,-0.31102 0.43542,-0.0622 0,0.24881 0.18661,0.24881 0.18661,0 0.43542,-0.24881 0.37322,-0.49763 0.93305,-0.37322 0.55984,0.0622 0.99526,0.31101 0.49763,0.24882 0.49763,0.43543 -0.12441,0.55983 0.24881,0.93305 0,0.24881 -0.18661,0.68424 -0.12441,0.37322 -0.37322,0.62203 -0.31102,0.43542 -0.93305,1.24407 -0.55983,0.80864 -1.05746,1.43068 -0.49763,0.62203 -0.49763,0.62203 -0.24881,-0.0622 -0.49762,0.12441 -0.18661,0.18661 -0.43543,0.43542 -0.49763,0.43543 -0.93305,0.68424 -0.43542,0.18661 -0.68424,0.18661 -0.43542,0.24881 -0.68423,0.31102 -0.18661,0.0622 -0.18661,0.31101 -0.62204,0.62204 -2.23933,0.87085 -1.61728,0.18661 -3.35898,0.18661 z m 21.14918,0.0622 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68423,-1.43067 -0.49762,-2.48813 0.18661,-0.49763 0.1244,-0.93305 0,-0.49763 0,-0.49763 -0.31101,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42594,0.99525 1.43067,0.62203 1.9905,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30628,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24406,-0.37322 2.98576,-2.05271 z m 15.17761,5.97153 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68423,-3.35898 0.43543,-1.86611 0.87085,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49762,-1.18187 0.31102,-0.31101 1.05746,-0.37322 0.74644,-0.0622 1.49288,0.18661 0.74644,0.18661 0.99526,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05745,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36372,3.04797 0.74645,2.17712 0.49763,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62204,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 v -3.8566 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68424,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18187,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43068,-0.0622 -1.36847,-0.43543 -1.74169,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49762,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80865,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43543,1.11966 -0.80865,1.43068 -0.37322,0.24881 -1.05745,-0.0622 z m 61.14594,0.55983 q -0.43542,-0.12441 -1.36847,-0.80865 -0.93305,-0.68423 -1.6795,-2.05271 -0.68423,-1.36847 -0.62203,-3.54559 0.0622,-1.86611 0.24881,-2.61255 0.24882,-0.80864 -0.18661,-0.87084 -0.31101,-0.0622 -1.24406,0.55983 -0.93306,0.62203 -2.42594,1.99051 -1.49288,1.36847 -3.60779,3.60779 -0.74644,0.62204 -1.6795,1.55509 -0.87084,0.87085 -1.80389,1.30627 -0.87085,0.43542 -1.55509,-0.18661 l -0.62203,-0.55983 q -0.43543,-0.37322 -0.74644,-0.99526 -0.31102,-0.62203 -0.18661,-1.05745 l 1.74169,-4.85187 q 0.74644,-1.61729 0.99526,-2.36373 0.31101,-0.74644 0.24881,-0.93305 0,-0.18661 -0.31102,-0.12441 -0.37322,0.0622 -1.05746,0.68424 -0.68423,0.55983 -0.93305,0.93305 -0.24881,0 -0.68423,0.49763 -0.37322,0.49763 -0.74645,0.87085 -0.37322,0.37322 -1.30627,1.43068 -0.93305,0.99525 -1.99051,2.11491 -0.80864,0.74644 -1.8661,1.99051 -1.05745,1.24407 -1.8661,2.23932 -0.80864,0.99526 -0.99525,0.99526 -1.11966,-0.0622 -2.05272,-0.74644 -0.87084,-0.68424 -1.18186,-1.6795 -0.37322,-0.68423 -0.0622,-2.48813 0.31101,-1.8661 1.18186,-5.90932 0.24881,-0.93306 0.43542,-1.61729 0.24882,-0.68424 0.49763,-1.36848 0.24882,-0.68424 0.55983,-1.55508 0.37322,-0.87085 0.93305,-2.11492 0.31102,-0.87085 0.24882,-1.61729 -0.0622,-0.80864 -0.12441,-1.30627 0,-0.93305 0.55983,-1.49288 0.62203,-0.55983 1.36848,-0.74644 0.74644,-0.24881 1.18186,-0.12441 1.7417,0.18661 2.36373,1.24407 0.62203,1.05746 0.68424,2.05271 0.0622,0.93305 -0.24882,1.67949 -0.31101,0.74645 -0.49762,1.24407 l -0.68424,1.67949 q -0.62204,1.43068 -0.93305,2.11492 -0.24882,0.62203 -0.31102,0.87085 0,0.18661 0,0.37322 0.0622,0.18661 0.55983,-0.18661 0.49763,-0.37322 1.18187,-0.99526 0.74644,-0.68423 1.36847,-1.18186 1.11966,-0.93305 2.36373,-1.8661 1.30627,-0.99526 2.55034,-1.7417 1.24407,-0.74644 2.05271,-0.99525 1.05746,0.18661 1.92831,1.05745 0.93305,0.87085 1.18186,1.49289 0.31102,0.93305 0.0622,1.67949 -0.18661,0.74644 -0.31101,1.36847 -0.0622,0.24882 -0.24882,0.93305 -0.18661,0.68424 -0.37322,1.30628 -0.18661,0.55983 -0.18661,0.55983 0,0 0.37322,-0.37322 0.37322,-0.37322 0.99526,-0.87085 0.62203,-0.55983 1.24407,-0.99526 3.11017,-2.36373 4.91406,-2.98576 1.86611,-0.68424 3.17238,1.05746 0.74644,0.68424 0.93305,1.8661 0.24881,1.18186 0.24881,3.17237 0.0622,0.80865 0.12441,1.8039 0.12441,0.99526 0.24881,1.7417 0.18661,0.74644 0.31102,0.93305 0.18661,0.24881 0.68424,0.49763 0.49762,0.18661 0.93305,0.31101 0.87085,0.43543 0.93305,1.61729 0.12441,1.11966 -0.87085,1.7417 -0.93305,0.55983 -1.99051,0.68423 -0.99525,0.12441 -2.05271,0.0622 z m 21.52241,1.8661 q -0.43542,0.24881 -1.18186,-0.18661 -0.68424,-0.43543 -1.36848,-1.30627 -0.43542,-0.74644 -0.68424,-1.49288 -0.18661,-0.80865 -0.18661,-2.36373 0.0622,-1.24407 0,-1.6795 0,-0.49762 -0.55983,-0.0622 -0.49762,0.37322 -2.05271,1.8661 -1.55508,1.55509 -2.98576,2.67475 -1.36848,1.05746 -2.23932,0.99525 -0.43543,0 -1.18187,-0.55983 -0.74644,-0.55983 -1.43068,-1.36847 -0.68423,-0.87085 -0.99525,-1.61729 -0.37322,-1.49288 -0.0622,-3.85661 0.37322,-2.36373 1.18186,-4.91407 0.80864,-2.61254 1.8039,-4.85186 1.05746,-2.30153 2.05271,-3.67001 1.05746,-1.43067 1.8039,-1.36847 1.05746,0.12441 1.8039,1.05746 0.80864,0.87085 1.24407,1.9283 0.24881,0.43543 0.18661,0.74644 0,0.31102 -0.49763,0.74644 -0.55983,0.74645 -1.36848,2.17712 -0.74644,1.36848 -1.55508,2.98577 -0.74644,1.61729 -1.36848,3.11017 -0.55983,1.43068 -0.80864,2.36373 -0.24881,0.93305 0,0.93305 0.87085,0 1.61729,-0.43543 0.74644,-0.49762 1.8661,-1.55508 1.30627,-1.30627 2.30153,-2.61254 0.99525,-1.36848 2.05271,-3.11017 0.80864,-1.24407 1.67949,-2.73695 0.93305,-1.49289 1.18186,-2.11492 0.87085,-1.61729 1.30628,-2.42593 0.43542,-0.80865 1.05745,-0.99526 0.31102,0 0.87085,0 0.55983,0 0.55983,0 0.37322,0.0622 0.87085,0.55983 0.49763,0.24882 0.99525,0.68424 0.55983,0.43543 0.55983,0.74644 -0.24881,0.62204 -0.80864,1.8661 -0.49763,1.18187 -0.74644,1.7417 -1.18186,2.67475 -2.30153,5.28729 -1.05745,2.55034 -1.55508,5.22508 -0.12441,0.87085 -0.0622,2.05272 0.1244,1.11966 0.37322,1.61728 0.18661,0.37322 0.43542,0.87085 0.31102,0.43543 0.68424,0.74644 0.55983,0.37322 -0.0622,0.93305 -0.55983,0.55983 -1.43067,0.99526 -0.80865,0.37322 -0.99526,0.37322 z m 27.74275,-0.62204 q -0.93305,0 -1.8039,-0.55983 -0.87085,-0.62203 -1.43068,-1.67949 -0.55983,-1.11966 -0.55983,-2.61254 0,-0.93305 0.31102,-2.61254 0.37322,-1.7417 1.05746,-4.35424 0.1244,-0.87085 0.18661,-1.11966 0.1244,-0.24882 0.1244,-0.49763 0,-0.12441 -0.0622,-0.18661 0,-0.12441 -0.12441,-0.12441 -0.49762,0 -1.36847,0.68424 -0.80865,0.62203 -1.8661,1.49288 -0.18661,0.12441 -0.43543,0.31102 -0.18661,0.18661 -0.43542,0.37322 -0.18661,0.18661 -0.43543,0.37322 -0.62203,0.37322 -1.9283,1.43068 -1.24407,1.05746 -2.61254,2.23932 -1.30627,1.18187 -2.30153,1.99051 -0.49763,0.37322 -0.87085,0.62203 -0.31101,0.24882 -0.43542,0.24882 -0.12441,0 -0.99525,-0.31102 -0.80865,-0.37322 -1.61729,-0.99525 -0.74644,-0.68424 -0.74644,-1.55509 0,-0.55983 0.43542,-2.23932 0.49763,-1.67949 1.36847,-3.98102 0.87085,-2.30152 1.99051,-4.66525 0.24882,-0.55983 0.37322,-1.49289 0.12441,-0.93305 0.24882,-1.80389 0.18661,-0.93306 0.62203,-1.36848 0.18661,-0.31102 0.43543,-0.43542 0.31101,-0.18661 0.62203,-0.18661 0.62203,0 1.18186,0.31101 0.55983,0.24882 1.05746,0.87085 0.93305,0.99526 0.99526,2.36373 0.1244,1.30627 -0.18661,2.55034 -0.31102,1.24407 -0.68424,2.05271 -0.37322,0.74644 -0.37322,0.62204 0.24881,-0.12441 0.68424,-0.62204 0.49762,-0.49762 1.67949,-1.18186 1.61729,-1.24407 2.48813,-1.7417 0.87085,-0.55983 1.30627,-0.80864 0.49763,-0.24882 0.87085,-0.55983 0.31102,-0.24882 0.43543,-0.31102 0.18661,-0.0622 0.18661,-0.0622 0,0 0,0 0,0 0,0 0.18661,0 0.62203,-0.24882 0.49763,-0.24881 0.93305,-0.24881 0.62204,0 1.30627,0.31102 0.68424,0.24881 1.18187,0.74644 0.49762,0.43542 0.49762,0.93305 0,0.18661 0.12441,0.31102 0.12441,0.1244 0.24881,0.31101 0.31102,0.37322 0.68424,1.05746 0.43543,0.62203 0.43543,2.05271 0,0.99526 -0.43543,2.92356 -0.43542,1.92831 -0.93305,3.79441 -0.49763,1.92831 -0.49763,3.11017 0.0622,1.11966 0.24882,1.7417 0.18661,0.55983 0.18661,0.93305 0,0.49762 -0.49763,1.18186 -0.49763,0.62203 -1.49288,0.62203 z m 10.63678,-1.80389 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37322,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62204,1.18186 0.62204,2.79915 0,0.43542 -0.62204,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.80389,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 7.58875,29.60882 q -3.04796,-0.0622 -3.91881,-1.74169 -0.80864,-1.61729 -0.43542,-4.10543 0.37322,-1.18186 0.43542,-2.11491 0.12441,-0.99526 0.55983,-1.24407 0,0 0.0622,-0.18661 0.12441,-0.18661 -0.0622,-0.37322 0,-0.80865 0.55983,-2.23932 0.12441,-0.37322 0.31102,-0.87085 0.24881,-0.55983 0.24881,-0.55983 -0.31101,-0.49763 0,-0.80865 0.31102,-0.31101 0.62204,-0.55983 0.37322,-0.31101 0.0622,-0.68423 -0.12441,-0.24882 0.31102,-1.11967 0.43542,-0.93305 0.99525,-1.9283 0.55983,-0.99526 0.74644,-1.55509 0,-0.1244 0.31102,-0.87084 0.31102,-0.74644 0.74644,-1.7417 0.43542,-0.99525 0.80864,-1.8039 0.43543,-0.80864 0.55983,-1.05745 0.62204,-0.31102 -0.49762,-0.43543 -1.11966,-0.12441 -2.36373,-0.0622 -1.92831,-0.0622 -3.11017,-0.18661 -1.11966,-0.12441 -1.8661,-0.55983 -0.74644,-0.87085 -0.18661,-2.05272 0.55983,-1.24406 1.80389,-1.30627 0.80865,-0.0622 1.24407,-0.0622 0.49763,0 1.24407,-0.0622 0.80864,-0.12441 2.48814,-0.31102 l 3.17237,-0.24881 0.18661,-1.05746 q 0.49763,-0.80865 0.68424,-1.05746 0.18661,-0.24881 0.24881,-0.49763 0.0622,-0.31101 0.18661,-1.05745 0,0 0.55983,-0.99526 0.55983,-1.05746 0.68424,-2.17712 0.74644,-1.24407 1.30627,-2.23932 0.55983,-1.05746 0.68424,-1.30627 1.05746,-1.55509 2.05271,-1.67949 1.05746,-0.12441 1.99051,0.49762 0.55983,0.31102 1.05746,0.80865 0.49762,0.43542 0.62203,1.18186 0.12441,0.68424 -0.55983,1.8039 -0.12441,0.24881 -0.37322,0.93305 -0.24881,0.62204 -0.37322,1.05746 -0.37322,0.43542 -0.93305,1.43068 -0.49763,0.93305 -0.68424,1.9283 -0.49763,1.05746 -0.62203,1.30627 -0.12441,0.24882 -0.37322,0.24882 0.1244,0.62203 0.74644,0.62203 0.62203,-0.0622 2.05271,-0.1244 1.18186,-0.12441 1.61729,-0.24882 0.49763,-0.18661 1.11966,0.12441 0.31102,0.43542 0.31102,1.30627 0.0622,0.80864 -0.18661,1.61729 -0.24882,0.74644 -0.68424,0.93305 -0.31102,0 -1.30627,0.37322 -0.93305,0.31102 -2.36373,0.37322 l -3.29678,0.31102 -1.05746,2.11491 q -0.43542,0.80865 -0.74644,1.49288 -0.31102,0.62204 -0.43542,0.74645 0,0.37322 -0.43543,1.11966 -0.37322,0.74644 -0.80864,1.61729 -0.37322,1.05745 -0.87085,1.9283 -0.43542,0.87085 -0.43542,0.87085 -0.24882,0 -0.24882,0.37322 0.31102,0.74644 -0.18661,1.11966 -0.31101,0.18661 -0.55983,0.55983 -0.18661,0.31102 -0.18661,0.31102 0.24882,0.24881 0.0622,0.62203 -0.1244,0.37322 -0.37322,0.80865 0,0.49762 -0.31101,1.43067 -0.24882,0.93305 -0.55983,1.7417 0.0622,1.11966 0.1244,1.43068 0.0622,0.31101 0.31102,0.24881 0.31102,0.0622 0.87085,0 0.55983,-0.0622 0.80864,-0.0622 0.93305,-0.43543 -0.87085,4.35424 -0.99525,1.55508 -1.9905,2.55033 -0.99526,1.05746 -1.30628,1.05746 z m 14.99096,-4.78966 q -0.49762,-0.49763 -0.74644,-1.49288 -0.18661,-0.99526 -0.1244,-1.92831 0.0622,-0.99525 0.31101,-1.49288 0,-0.49763 0.12441,-0.74644 0.18661,-0.31102 0.12441,-0.55983 -0.0622,-0.24881 0.1244,-0.87085 0.18661,-0.62203 0.37322,-1.18186 0.43543,-0.99526 0.99526,-2.55034 0.55983,-1.61729 1.11966,-3.23458 0.55983,-1.67949 0.93305,-2.86135 0.37322,-1.24407 0.43542,-1.49289 0,-0.74644 0.99526,-0.80864 0.74644,-0.24881 1.8039,0.62203 1.05745,0.87085 1.67949,1.86611 0.49763,0.49762 0.37322,1.30627 -0.12441,0.80864 -0.80865,2.30152 -0.24881,0.49763 -0.62203,1.6795 -0.31102,1.11966 -0.43542,1.8661 -0.24882,0.49762 -0.62204,1.43068 -0.31101,0.87084 -0.55983,1.67949 -0.1244,0.31101 -0.24881,1.18186 -0.12441,0.80865 -0.31102,1.67949 -0.18661,0.87085 -0.49763,1.36848 -0.55983,2.55034 -1.9905,2.98576 -1.36848,0.43543 -2.42594,-0.74644 z m 6.71797,-24.94356 q -0.68424,-0.49763 -1.05746,-1.18187 -0.31101,-0.74644 -0.37322,-1.30627 0,-0.55983 0.12441,-0.68424 0.62203,-0.68423 1.05746,-1.80389 0.49762,-1.11967 1.05745,-2.05272 0.12441,-0.18661 0.31102,-0.49762 0.24881,-0.37322 0.49763,-0.43543 0.74644,-0.49763 2.05271,0.0622 1.36848,0.55983 1.99051,1.55508 0.55983,1.18187 0.31102,2.42593 -0.18661,1.24407 -1.30628,2.61255 -0.93305,1.24406 -2.36372,1.61728 -1.43068,0.31102 -2.30153,-0.31101 z m 11.5698,27.12068 q -3.42119,0 -5.28729,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23932 0.80865,-4.91407 0.87084,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.67949,-1.9283 3.35898,-2.67474 0.62204,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61729,0.12441 0.93305,0.0622 1.7417,0.37322 1.43067,0.43542 2.48813,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.1244,1.36847 -0.12441,0.68424 -0.43543,1.36848 -0.80864,2.05271 -2.48813,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49763,0.24882 -0.99526,0.37323 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99525,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31101,0.62203 q -0.43543,1.18187 -0.62204,1.99051 -0.1244,0.80865 -0.1244,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43543,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11967,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55509,-1.05746 l 0.24881,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24881,-0.24882 0.55983,-0.24882 0.87084,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30628,1.61729 -0.74644,0.74644 -1.55508,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61728,0.93305 -1.36848,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99525,-0.18661 0.49763,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.92831,-2.73695 0.43542,-1.6795 -0.31102,-2.55034 -0.12441,-0.18661 -0.31102,-0.24882 -0.18661,-0.1244 -0.43542,-0.1244 -0.68424,0 -1.55509,0.43542 -0.80864,0.43542 -1.61728,1.24407 -0.80865,0.80864 -1.49289,1.9283 l -0.80864,1.30628 q 0.12441,-0.0622 0.18661,-0.0622 0.12441,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11967,0.37322 z m 14.5556,14.24458 q -2.11492,-0.87085 -3.11017,-1.8039 -0.93305,-0.99525 -0.74644,-1.7417 0.1244,-0.37322 0.43542,-0.68423 0.31102,-0.31102 1.36847,-0.24882 1.11967,0 3.42119,0.55983 0.68424,0 1.36848,-0.0622 0.68423,-0.0622 1.24406,-0.18661 0.62204,-0.12441 0.99526,-0.31102 0.31102,-0.1244 0.18661,-0.31101 -0.12441,-0.24882 -0.43543,-0.49763 -0.24881,-0.31102 -0.55983,-0.37322 -0.31101,-0.12441 -0.55983,-0.12441 -0.1244,-0.31101 -0.55983,-0.62203 -0.37322,-0.31102 -0.93305,-0.68424 -1.36847,-1.11966 -2.48813,-1.99051 -1.11967,-0.87085 -0.87085,-1.30627 0,-0.24881 0,-0.24881 0,-0.0622 0,-0.0622 -0.43543,0 -0.80865,-1.18186 -0.37322,-1.24407 -0.37322,-2.23932 0,-1.24407 0.49763,-2.48814 0.55983,-1.24407 1.36848,-2.36373 0.87084,-1.11966 1.74169,-1.99051 1.18187,-1.11966 2.48814,-2.17712 1.36847,-1.11966 2.92356,-1.9905 1.61728,-0.87085 3.54559,-1.36848 0.87085,-0.18661 1.99051,-0.18661 1.11966,0 1.61729,0.31102 0.49762,-0.31102 1.24407,0.18661 0.74644,0.43542 1.49288,1.24407 0.74644,0.80864 1.11966,1.61728 0,0.74644 -0.0622,1.86611 0,1.05745 -0.1244,1.8661 -0.12441,0.80864 -0.55983,0.80864 0,0 -0.18661,0.0622 -0.12441,0 -0.12441,0.31101 0,0.62204 -0.93305,1.43068 -1.18187,0.80864 -2.23932,1.30627 -1.05746,0.49763 -1.61729,0.0622 -0.37322,-0.24882 -0.68424,-0.49763 -0.31102,-0.24882 -0.55983,-0.62204 0,0 -0.18661,-0.24881 -0.12441,-0.31102 -0.12441,-0.55983 0,-0.24881 0.18661,-0.43542 0.18661,-0.24882 0.18661,-0.24882 0.87085,-0.80864 1.30628,-1.49288 0.49762,-0.68424 0.68423,-1.18186 0.18661,-0.55983 0.18661,-0.87085 0,-0.37322 -0.18661,-0.43542 -0.1244,-0.12441 -0.62203,-0.12441 -0.31102,0 -1.36848,0.49763 -0.99525,0.49762 -2.11491,1.24406 -1.11966,0.68424 -1.7417,1.24407 -0.24881,0.43543 -0.37322,0.55983 -0.0622,0.12441 -0.31101,0.12441 0,-0.24881 -0.31102,0.0622 -0.31102,0.31102 -0.74644,0.87085 -0.43543,0.55983 -0.87085,1.18186 -0.43542,0.62204 -0.68424,0.99526 -0.0622,0.55983 -0.31101,1.05746 -0.18661,0.43542 -0.12441,0.93305 0.0622,0.62203 0.62203,1.18186 0.55983,0.55983 1.61729,1.43068 2.17712,1.61729 3.23458,2.55034 1.11966,0.93305 1.55508,1.49288 0.43543,0.55983 0.55983,1.11966 1.05746,1.92831 0.24882,3.35899 -0.80865,1.36847 -2.48814,2.11491 -0.62203,0.31102 -2.17712,0.55983 -1.55508,0.31102 -3.29678,0.24882 -1.67949,0 -2.86135,-0.49763 z"
++       id="path18" /><path
+=       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
+-       id="path15" /></g></svg>
++       id="path19" /></g></svg>
+```
+
+# Move the logotype from main to header landmark
+
+It's more semantic and also adds some vertical space between the
+logotype and the main content.
+
+``` diff
+index c2242e1..7bec032 100644
+--- a/index.html
++++ b/index.html
+@@ -129,7 +129,7 @@
+=            </p>
+=        <![endif]-->
+=
+-        <main>
++        <header>
+=            <h1>
+=                <img
+=                    id="big-logo"
+@@ -138,6 +138,9 @@
+=                    title="Better Tech Club"
+=                /> 
+=            </h1>
++        </header>
++
++        <main>
+=
+=            <h2>Why is our tech better?</h2>
+=            <p id="reasons-why">
+```
+
+# Setup proper web-fonts: Caveat and Cooper Hewitt
+
+
+
+``` diff
+new file mode 100644
+index 0000000..dae61c1
+Binary files /dev/null and b/fonts/caveat/caveat-bold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..976da36
+Binary files /dev/null and b/fonts/caveat/caveat-medium.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0b78323
+Binary files /dev/null and b/fonts/caveat/caveat-semibold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..d511f3d
+--- /dev/null
++++ b/fonts/caveat/caveat.css
+@@ -0,0 +1,33 @@
++/* caveat-bold */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
++}
++/* caveat-medium */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
++}
++/* caveat */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
++}
++/* caveat-semibold */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
++}
++
+```
+
+``` diff
+new file mode 100644
+index 0000000..f80cf2c
+Binary files /dev/null and b/fonts/caveat/caveat.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..8227633
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..939ad21
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0949007
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0e0b918
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..8131611
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..2c425cd
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..7db7058
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..e6cafd9
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9c8fa26
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..76336be
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..b5b8f36
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..a32e7c2
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9c1cccf
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9eaf98b
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..54ff088
+--- /dev/null
++++ b/fonts/cooper-hewitt/cooper-hewitt.css
+@@ -0,0 +1,113 @@
++/* cooper-hewitt-bold */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
++}
++/* cooper-hewitt-bold-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-book */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
++}
++/* cooper-hewitt-book-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-heavy */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
++}
++/* cooper-hewitt-heavy-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-light */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 300;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
++}
++/* cooper-hewitt-light-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 300;
++	font-stretch: 100%;
++	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-medium */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
++}
++/* cooper-hewitt-medium-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-semibold */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
++}
++/* cooper-hewitt-semibold-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-thin */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 100;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
++}
++/* cooper-hewitt-thin-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 100;
++	font-stretch: 100%;
++	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
++}
++
+```
+
+``` diff
+index 7bec032..dffc4b1 100644
+--- a/index.html
++++ b/index.html
+@@ -13,17 +13,20 @@
+=        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
+-         @font-face {
+-             font-family: "Cooper Hewitt";
+-             src: url("fonts/CooperHewitt-Heavy.woff") format("woff2");
+-             font-weight: 800;
++
++         @import url("fonts/caveat/caveat.css");
++         @import url("fonts/cooper-hewitt/cooper-hewitt.css");
++
++         html {
++             font-family: "Cooper Hewitt", sans-serif;
++             font-weight: 500;
++
+=         }
+-         
++
+=         html, body {
+=             background: #003399;
+=             min-height: 100%;
+=             color: #fdcb0b;
+-             font-family: sans-serif;
+=             margin: 0;
+=             padding: 0;
+=         }
+@@ -44,8 +47,10 @@
+=         }
+=
+=         h2 {
+-             font-size: 1.2em;
++             font-size: 1.4rem;
+=             align-self: start;
++             font-family: "Caveat";
++             margin-bottom: 0;
+=         }
+=         
+=         main {
+@@ -55,17 +60,6 @@
+=             max-width: 80ch;
+=             padding: 12px;
+=
+-             > p:first-of-type {
+-                 font-size: 140%;
+-                 line-height: 150%;
+-                 hyphens: auto;
+-                 font-weight: 500;
+-             }
+-
+-             strong {
+-                 text-decoration: underline;
+-                 font-weight: initial;
+-             }
+=
+=         }
+=
+@@ -94,6 +88,11 @@
+=                 font-weight: bold;
+=                 text-decoration: none;
+=             }
++
++             h3 {
++                 font-size: 2rem;
++                 font-weight: 800;
++             }
+=             
+=             dt {
+=                 float: left;
+@@ -103,20 +102,9 @@
+=             width: 100%;
+=             padding: 0;
+=             font-size: min(4rem, 10vw);
+-             font-weight: 800;
+-             font-family: "Cooper Hewitt";
++             font-weight: 100;
+=             text-align: left;
+-             margin-top: 0;
+-
+-             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 0.02em;
+-             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+-
+-             strong {
+-                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
+-                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+-                 text-decoration: none;
+-             }
++             margin-top: 1rem;
+=         }
+=        </style>
+=    </head>
+```
+
+# Use CSS variables to control styling parameters
+
+
+
+``` diff
+index dffc4b1..81a59a4 100644
+--- a/index.html
++++ b/index.html
+@@ -18,15 +18,24 @@
+=         @import url("fonts/cooper-hewitt/cooper-hewitt.css");
+=
+=         html {
++             --content-width: 60rch;
++             --bg-color: oklch(35% 30% 260deg);
++             --fg-color: oklch(80% 0% 0deg); 
++             --accent-color: #fac036; /* This is the yellow color taken from the logo */
++             --contrast-bg-color: oklch(20% 0% 0deg);
++             --contrast-fg-color: oklch(80% 0% 0deg);
++             --popup-bg-color: oklch(from var(--fg-color) 75% c h);
++             --popup-fg-color: oklch(from var(--fg-color) 10% c h);;
++
+=             font-family: "Cooper Hewitt", sans-serif;
+=             font-weight: 500;
+=
+=         }
+=
+=         html, body {
+-             background: #003399;
++             background: var(--bg-color);
+=             min-height: 100%;
+-             color: #fdcb0b;
++             color: var(--fg-color);
+=             margin: 0;
+=             padding: 0;
+=         }
+@@ -49,6 +58,7 @@
+=         h2 {
+=             font-size: 1.4rem;
+=             align-self: start;
++             color: var(--accent-color);
+=             font-family: "Caveat";
+=             margin-bottom: 0;
+=         }
+@@ -57,15 +67,15 @@
+=             display: flex;
+=             flex-direction: column;
+=             align-items: center;
+-             max-width: 80ch;
++             max-width: var(--content-width);
+=             padding: 12px;
+=
+=
+=         }
+=
+=         footer {
+-             background: oklch(20% 0% 0deg);
+-             color: oklch(80% 0% 0deg);
++             background: var(--contrast-bg-color);
++             color: var(--contrast-fg-color);
+=             width: 100%;
+=             padding: 2rem 0;
+=             font-size: 0.8rem;
+@@ -76,9 +86,9 @@
+=         }
+=
+=         .local-group {
+-             background: hsl(0,0%,70%);
+-             color: hsl(0,0%,20%);
+=             padding: 2rem;
++             background: var(--popup-bg-color);
++             color: var(--popup-fg-color);
+=             margin: 1rem 0;
+=             width: 100%;
+=             border-radius: 0.4rem;
+```
+
+# Make the font and layout sizes respond to viewport
+
+
+
+``` diff
+index 81a59a4..f008635 100644
+--- a/index.html
++++ b/index.html
+@@ -30,6 +30,19 @@
+=             font-family: "Cooper Hewitt", sans-serif;
+=             font-weight: 500;
+=
++             font-size: 12px;  /* <-- 1rem */
++
++             @media(width > 480px) {
++                 font-size: 16px;  /* <-- 1rem */
++             }
++
++             @media(width > 560px) {
++                 font-size: 20px;  /* <-- 1rem */
++             }
++
++             @media(width > 780px) {
++                 font-size: 24px;  /* <-- 1rem */
++             } 
+=         }
+=
+=         html, body {
+@@ -111,7 +124,13 @@
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+-             font-size: min(4rem, 10vw);
++             font-size: max(
++                 1.4rem,     /* Never less than this */
++                 min(
++                     2.1rem,   /* Never more than this */
++                     5.5vw     /* Otherwise scale with the viewport width */
++                 )
++             );
+=             font-weight: 100;
+=             text-align: left;
+=             margin-top: 1rem;
+```
+
+# Hyphenate the paragraphs, tweak the line height
+
+
+
+``` diff
+index f008635..c9c26ab 100644
+--- a/index.html
++++ b/index.html
+@@ -66,6 +66,8 @@
+=
+=         p {
+=             text-align: justify;
++             line-height: 1.5;
++             hyphens: auto;
+=         }
+=
+=         h2 {
+```
+
+# Manually hyphenate some long dutch words
+
+
+
+``` diff
+index c9c26ab..112844c 100644
+--- a/index.html
++++ b/index.html
+@@ -201,7 +201,7 @@
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Bibliotheek Bussum</strong><br/>
+-                        Wilhelminaplantsoen 18<br/>
++                        Wil&shy;helm&shy;ina&shy;plant&shy;soen 18<br/>
+=                        1404 JB Bussum
+=                    </dd>
+=                </dl>
+@@ -231,8 +231,8 @@
+=                <dl>
+=                    <dt title="place">📍</dt>
+=                    <dd>
+-                        <strong>Duurzaamheidscentrum Hilversum,</strong><br/>
+-                        Bussumerstraat 69C<br/>
++                        <strong>Duur&shy;zaam&shy;heids&shy;cen&shy;trum Hilversum,</strong><br/>
++                        Bus&shy;sum&shy;er&shy;stra&shy;at 69C<br/>
+=                        1211 BJ Hilversum
+=                    </dd>
+=                </dl>
+```
+
+# Use a subtle background gradient
+
+
+
+``` diff
+index 112844c..38c443d 100644
+--- a/index.html
++++ b/index.html
+@@ -57,6 +57,10 @@
+=             display: flex;
+=             flex-direction: column;
+=             align-items: center;
++             background: linear-gradient(
++                 var(--bg-color),
++                 oklch(from var(--bg-color) 25% 35% h)
++             );
+=         }
+=
+=         #big-logo {
+@@ -84,8 +88,6 @@
+=             align-items: center;
+=             max-width: var(--content-width);
+=             padding: 12px;
+-
+-
+=         }
+=
+=         footer {
+```
+
+# Make the locations padding "stick out"
+
+The left side of all main text is now aligned, and the padding sticks
+out into the margin. When a viewport is too narrow, the padding
+shrinks to fit. Also, the borders are no longer round when they touch
+the edge of a viewport.
+
+``` diff
+index 38c443d..3d706b1 100644
+--- a/index.html
++++ b/index.html
+@@ -103,13 +103,30 @@
+=         }
+=
+=         .local-group {
+-             padding: 2rem;
++             /* Parameters to tweak */
++             --vertical-padding: 2rem;
++             --max-horizontal-padding: 2rem;
++
++             /* Intermediate calculations */
++             --margin-width: calc((100vw - 100%) / 2); /* The width between content and the edge of a viewport */
++             --horizontal-padding: min(
++                 var(--margin-width),          /* Take the whole margin... */
++                 var(--max-horizontal-padding) /* ...but no more than this */
++             );
++             
+=             background: var(--popup-bg-color);
+=             color: var(--popup-fg-color);
+=             margin: 1rem 0;
+=             width: 100%;
+-             border-radius: 0.4rem;
+-             box-sizing: border-box;
++             border-radius: min(
++                 0.4rem,
++                 var(--margin-width)
++             );
++
++             padding:
++                var(--vertical-padding)           
++                var(--horizontal-padding)
++             ;
+=
+=             strong {
+=                 font-weight: bold;
+```
+
+# Improve the semantics of locations data
+
+Fix the id of Hilversum location element.
+
+Make all the parameters of each location belong to a single definition
+list. This required a little tweaks to the CSS.
+
+``` diff
+index 3d706b1..a3fcf05 100644
+--- a/index.html
++++ b/index.html
+@@ -140,8 +140,14 @@
+=             
+=             dt {
+=                 float: left;
++                 clear: both;
++             }
++
++             dd:has(+ dt) {
++                 margin-bottom: 1rem;
+=             }
+=         }
++
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+@@ -214,19 +220,14 @@
+=                <dl>
+=                    <dt title="time">🕕</dt>
+=                    <dd>Every Tuesday, 18:00 - 20:00</dd>
+-                </dl>
+=
+-                <dl>
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Bibliotheek Bussum</strong><br/>
+=                        Wil&shy;helm&shy;ina&shy;plant&shy;soen 18<br/>
+=                        1404 JB Bussum
+=                    </dd>
+-                </dl>
+-
+-
+-                <dl>
++                    
+=                    <dt title="hosts">🫂</dt>
+=                    <dd><a href="https://tad-lispy.com/">Tad Lispy</a></dd>
+=                    <dd><a href="https://jewiet.com/">Fana Mehari</a></dd>
+@@ -237,7 +238,7 @@
+=                </dl>
+=            </section>
+=            
+-            <section class="local-group" id="foss-for-bussum">
++            <section class="local-group" id="duurzaamheidscentrum-hilversum">
+=                <h3>Hilversum, NL</h3>
+=                <dl>
+=                    <dt title="time">🕑</dt>
+@@ -245,19 +246,14 @@
+=                        See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a><br />
+=                        (search for <em>Techtuinieren</em> and <em>Duurzaam Digitaal Spreekuur</em>).
+=                    </dd>
+-                </dl>
+-
+-                <dl>
++                    
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Duur&shy;zaam&shy;heids&shy;cen&shy;trum Hilversum,</strong><br/>
+=                        Bus&shy;sum&shy;er&shy;stra&shy;at 69C<br/>
+=                        1211 BJ Hilversum
+=                    </dd>
+-                </dl>
+-
+-
+-                <dl>
++                    
+=                    <dt title="hosts">🫂</dt>
+=                    <dd>Hiske</dd>
+=                    <dd>Geert</dd>
+```
+
+# Do not emphasize the punctuation
+
+
+
+``` diff
+index a3fcf05..d725020 100644
+--- a/index.html
++++ b/index.html
+@@ -192,10 +192,10 @@
+=                    it gets better every day.
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+-                    your <strong>intelligence</strong>, your <strong>well-being.</strong>
++                    your <strong>intelligence</strong>, your <strong>well-being</strong>.
+=                    It's <strong>sustainable</strong> and <strong>fair</strong>.
+=                    It belongs to you and me.
+-                    It makes us a <strong>community.</strong>
++                    It makes us a <strong>community</strong>.
+=                    You are among friends. You are not the product.
+=                    You deserve <strong>better</strong>.
+=            </p>
+```
\ No newline at end of file
new file mode 100644
index 0000000..bb69070
--- /dev/null
+++ b/content/devlog/2026-04-10-better-tech-club-website.md
@@ -0,0 +1,88 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 3
+
+
+# Add a hidden text for h1 element where logotype is
+
+This satisfies Firefox accessibility check. Honestly I'm not sure it
+adds any practical value, but why not?
+
+``` diff
+index d725020..9a0cb9c 100644
+--- a/index.html
++++ b/index.html
+@@ -81,6 +81,16 @@
+=             font-family: "Caveat";
+=             margin-bottom: 0;
+=         }
++
++         header {
++             h1 {
++                 font-size: 4rem;
++                 &:has(#big-logo) > span {
++                     display: none;
++                 }
++             }
++
++         }
+=         
+=         main {
+=             display: flex;
+@@ -180,7 +190,8 @@
+=                    src="better-tech-club_logotype.svg"
+=                    alt="Better Tech Club logo"
+=                    title="Better Tech Club"
+-                /> 
++                />
++                <span>Better Tech Club</span>
+=            </h1>
+=        </header>
+=
+```
+
+# Improve contrast of links for accessibility
+
+The links in location are now the same color as the rest of the text,
+only underlined. It also looks better.
+
+``` diff
+index 9a0cb9c..6d25b8f 100644
+--- a/index.html
++++ b/index.html
+@@ -143,6 +143,10 @@
+=                 text-decoration: none;
+=             }
+=
++             a:link, a:visited {
++                 color: inherit;
++             }
++
+=             h3 {
+=                 font-size: 2rem;
+=                 font-weight: 800;
+```
+
+# Remove justification from paragraphs
+
+It impacts accessibility.
+
+``` diff
+index 6d25b8f..8bd077f 100644
+--- a/index.html
++++ b/index.html
+@@ -69,7 +69,6 @@
+=         }
+=
+=         p {
+-             text-align: justify;
+=             line-height: 1.5;
+=             hyphens: auto;
+=         }
+```
\ No newline at end of file
new file mode 100644
index 0000000..77eddcb
--- /dev/null
+++ b/content/devlog/2026-04-11-better-tech-club-website.md
@@ -0,0 +1,28 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 1
+
+
+# List Jorrit as a host in Bussum
+
+
+
+``` diff
+index 8bd077f..5170b7c 100644
+--- a/index.html
++++ b/index.html
+@@ -249,6 +249,7 @@
+=                    <dd>Daniel Agorander</dd>
+=                    <dd>Hans</dd>
+=                    <dd>Marianne</dd>
++                    <dd>Jorrit Linnert</dd>
+=                </dl>
+=            </section>
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..d8c4970
--- /dev/null
+++ b/content/devlog/2026-04-11-devlog-excavator.md
@@ -0,0 +1,1261 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 9
+
+
+# Setup a devenv flake
+
+
+
+``` diff
+new file mode 100644
+index 0000000..c5d670d
+--- /dev/null
++++ b/.envrc
+@@ -0,0 +1,13 @@
++#!/usr/bin/env bash
++
++if ! has nix_direnv_version || ! nix_direnv_version 3.1.0; then
++  source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.1.0/direnvrc" "sha256-yMJ2OVMzrFaDPn7q8nCBZFRYpL/f0RcHzhmw/i6btJM="
++fi
++
++export DEVENV_IN_DIRENV_SHELL=true
++
++watch_file flake.nix
++watch_file flake.lock
++if ! use flake . --no-pure-eval; then
++  echo "devenv could not be built. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2
++fi
+```
+
+``` diff
+new file mode 100644
+index 0000000..69d93e1
+--- /dev/null
++++ b/.gitignore
+@@ -0,0 +1,2 @@
++.direnv
++.devenv
+```
+
+``` diff
+new file mode 100644
+index 0000000..7d5ec13
+--- /dev/null
++++ b/flake.lock
+@@ -0,0 +1,850 @@
++{
++  "nodes": {
++    "cachix": {
++      "inputs": {
++        "devenv": [
++          "devenv"
++        ],
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "git-hooks": [
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_2": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix"
++        ],
++        "git-hooks": "git-hooks",
++        "nixpkgs": "nixpkgs"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_3": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "git-hooks": "git-hooks_2",
++        "nixpkgs": "nixpkgs_2"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "crate2nix": {
++      "inputs": {
++        "cachix": "cachix_2",
++        "crate2nix_stable": "crate2nix_stable",
++        "devshell": "devshell_2",
++        "flake-compat": "flake-compat_2",
++        "flake-parts": "flake-parts_2",
++        "nix-test-runner": "nix-test-runner_2",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "pre-commit-hooks": "pre-commit-hooks_2"
++      },
++      "locked": {
++        "lastModified": 1772186516,
++        "narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      }
++    },
++    "crate2nix_stable": {
++      "inputs": {
++        "cachix": "cachix_3",
++        "crate2nix_stable": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "devshell": "devshell",
++        "flake-compat": "flake-compat",
++        "flake-parts": "flake-parts",
++        "nix-test-runner": "nix-test-runner",
++        "nixpkgs": "nixpkgs_3",
++        "pre-commit-hooks": "pre-commit-hooks"
++      },
++      "locked": {
++        "lastModified": 1769627083,
++        "narHash": "sha256-SUuruvw1/moNzCZosHaa60QMTL+L9huWdsCBN6XZIic=",
++        "owner": "nix-community",
++        "repo": "crate2nix",
++        "rev": "7c33e664668faecf7655fa53861d7a80c9e464a2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "ref": "0.15.0",
++        "repo": "crate2nix",
++        "type": "github"
++      }
++    },
++    "devenv": {
++      "inputs": {
++        "cachix": "cachix",
++        "crate2nix": "crate2nix",
++        "flake-compat": "flake-compat_3",
++        "flake-parts": "flake-parts_3",
++        "git-hooks": "git-hooks_3",
++        "nix": "nix",
++        "nixd": "nixd",
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "rust-overlay": "rust-overlay"
++      },
++      "locked": {
++        "lastModified": 1775848233,
++        "narHash": "sha256-+V6K66AsFCxD0PmKOASSSFUdEjmAtIwX4XlQ+2JBrmk=",
++        "owner": "cachix",
++        "repo": "devenv",
++        "rev": "cf4f57c61f5dc9d58300bdf18102d9cf5b4f29ea",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "devenv",
++        "type": "github"
++      }
++    },
++    "devshell": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "devshell_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "flake-compat": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_2": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_3": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1767039857,
++        "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
++        "type": "github"
++      },
++      "original": {
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "type": "github"
++      }
++    },
++    "flake-parts": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_2": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_3": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772408722,
++        "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "git-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_2",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_3": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_5",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772893680,
++        "narHash": "sha256-JDqZMgxUTCq85ObSaFw0HhE+lvdOre1lx9iI6vYyOEs=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "8baab586afc9c9b57645a734c820e4ac0a604af9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "gitignore": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_3": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_4": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_5": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "nix": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "flake-parts": [
++          "devenv",
++          "flake-parts"
++        ],
++        "git-hooks-nix": [
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "nixpkgs-23-11": [
++          "devenv"
++        ],
++        "nixpkgs-regression": [
++          "devenv"
++        ]
++      },
++      "locked": {
++        "lastModified": 1775657489,
++        "narHash": "sha256-v1KwZrIMGpteHPwxXvbapc7o3iduhU61phPUfyrnjM8=",
++        "owner": "cachix",
++        "repo": "nix",
++        "rev": "5c0da4397902105a84611c6d49e9d39a618ca025",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "devenv-2.34",
++        "repo": "nix",
++        "type": "github"
++      }
++    },
++    "nix-test-runner": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nix-test-runner_2": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nixd": {
++      "inputs": {
++        "flake-parts": [
++          "devenv",
++          "flake-parts"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "treefmt-nix": "treefmt-nix"
++      },
++      "locked": {
++        "lastModified": 1773634079,
++        "narHash": "sha256-49qb4QNMv77VOeEux+sMd0uBhPvvHgVc0r938Bulvbo=",
++        "owner": "nix-community",
++        "repo": "nixd",
++        "rev": "8ecf93d4d93745e05ea53534e8b94f5e9506e6bd",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "repo": "nixd",
++        "type": "github"
++      }
++    },
++    "nixpkgs": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs-src": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1773840656,
++        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_2": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_3": {
++      "locked": {
++        "lastModified": 1769433173,
++        "narHash": "sha256-Gf1dFYgD344WZ3q0LPlRoWaNdNQq8kSBDLEWulRQSEs=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "13b0f9e6ac78abbbb736c635d87845c4f4bee51b",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_4": {
++      "inputs": {
++        "nixpkgs-src": "nixpkgs-src"
++      },
++      "locked": {
++        "lastModified": 1774287239,
++        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
++        "owner": "cachix",
++        "repo": "devenv-nixpkgs",
++        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "rolling",
++        "repo": "devenv-nixpkgs",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_3",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_4",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "root": {
++      "inputs": {
++        "devenv": "devenv",
++        "nixpkgs": "nixpkgs_4",
++        "systems": "systems"
++      }
++    },
++    "rust-overlay": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1773630837,
++        "narHash": "sha256-zJhgAGnbVKeBMJOb9ctZm4BGS/Rnrz+5lfSXTVah4HQ=",
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "rev": "f600ea449c7b5bb596fa1cf21c871cc5b9e31316",
++        "type": "github"
++      },
++      "original": {
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "type": "github"
++      }
++    },
++    "systems": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "treefmt-nix": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixd",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772660329,
++        "narHash": "sha256-IjU1FxYqm+VDe5qIOxoW+pISBlGvVApRjiw/Y/ttJzY=",
++        "owner": "numtide",
++        "repo": "treefmt-nix",
++        "rev": "3710e0e1218041bbad640352a0440114b1e10428",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "treefmt-nix",
++        "type": "github"
++      }
++    }
++  },
++  "root": "root",
++  "version": 7
++}
+```
+
+``` diff
+new file mode 100644
+index 0000000..f90aba3
+--- /dev/null
++++ b/flake.nix
+@@ -0,0 +1,42 @@
++{
++  inputs = {
++    nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
++    systems.url = "github:nix-systems/default";
++    devenv.url = "github:cachix/devenv";
++    devenv.inputs.nixpkgs.follows = "nixpkgs";
++  };
++
++  nixConfig = {
++    extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
++    extra-substituters = "https://devenv.cachix.org";
++  };
++
++  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++    let
++      forEachSystem = nixpkgs.lib.genAttrs (import systems);
++    in
++    {
++      devShells = forEachSystem
++        (system:
++          let
++            pkgs = nixpkgs.legacyPackages.${system};
++          in
++          {
++            default = devenv.lib.mkShell {
++              inherit inputs pkgs;
++              modules = [
++                {
++                  # https://devenv.sh/reference/options/
++                  packages = [ pkgs.hello ];
++
++                  enterShell = ''
++                    hello
++                  '';
++
++                  processes.hello.exec = "hello";
++                }
++              ];
++            };
++          });
++    };
++}
+```
+
+# Write some requirements and thoughts in a spec file
+
+
+
+``` diff
+new file mode 100644
+index 0000000..9a9a14c
+--- /dev/null
++++ b/spec/BASIC.md
+@@ -0,0 +1,37 @@
++# Basic
++
++This program generates a devlog for tad-lispy.com
++
++
++## Get all projects
++
++We need a mapping from `project-name` to `path`. This should sit in `projects.yaml`
++
++The listing of all paths with names guessed from path can be obtained like this:
++
++``` nushell
++glob ~/Projects/**/.git 
++| path dirname 
++| each { |p| { name: ($p | path basename), path: $p } } 
++| transpose --as-record -r 
++| save --force all-projects.yaml
++```
++
++
++## Get days
++
++I want a list with `start` and `end` timestamps. It should support `--since` and `--until`. Until should by default be 4 A.M. today.  Since will be supplied based on the last entry in the devlog (details tbd). First day should be from `since`, i.e. it probably won't be a full day, but a fraction.
++
++An arbitrary date with a given time can be obtained with the following:
++
++``` nu
++("04:00" | date from-human) - 1day
++```
++
++So maybe I can just loop until I reach the time before `since`, emit the last fraction and break?
++
++## Generate the drafts
++
++For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
++
++  - What about new projects that are not listed yet?
+```
+
+# Implement a days command to get a list of records
+
+Given a date since and an optional day start, it produces a list of
+records with `start` and `end` of each day.
+
+``` diff
+new file mode 100755
+index 0000000..2710393
+--- /dev/null
++++ b/devlog.nu
+@@ -0,0 +1,17 @@
++def days [
++    since: datetime,
++    --day-start: string = "04:00"
++] {
++    let until = $day_start | date from-human
++    # TODO: Allow setting --until: datetime and be smart about day-start - the last day might be a fraction!
++    
++    0..
++    | each { |n| $n * 1day }
++    | each { |duration| $until - $duration }
++    | each { |start| {
++        start: ([$start $since] | math max),
++        end: ($start + 1day)
++    } }
++    | take while { |day| $day.start < $day.end }
++}
++
+```
+
+``` diff
+index f90aba3..b6bf848 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -27,13 +27,7 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.hello ];
+-
+-                  enterShell = ''
+-                    hello
+-                  '';
+-
+-                  processes.hello.exec = "hello";
++                  packages = [ pkgs.nushell ];
+=                }
+=              ];
+=            };
+```
+
+# Make the script runnable with main function
+
+So it can be executed without sourcing it first, like this
+
+    nu devlog.nu 2026-03-21
+
+``` diff
+index 2710393..ba04ac8 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -15,3 +15,6 @@ def days [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
++def main [since: datetime] {
++  days $since
++}
+```
+
+# Expose the days subcommand, add a shebang
+
+Now the script can be run as
+
+    ./devlog days 2026-03-20
+
+``` diff
+index ba04ac8..2dd0fd5 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -1,4 +1,6 @@
+-def days [
++#!/usr/bin/env nu
++
++def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+=] {
+@@ -15,6 +17,7 @@ def days [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
+-def main [since: datetime] {
+-  days $since
++def main [] {
++    print "Not implemented yet"
++    exit 1
+=}
+```
+
+# Write a spec about unlisted projects
+
+
+
+``` diff
+index 9a9a14c..34979e9 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -34,4 +34,11 @@ So maybe I can just loop until I reach the time before `since`, emit the last fr
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
+=
+-  - What about new projects that are not listed yet?
++
++## Unlisted projects
++
++What about new projects that are not listed yet?
++
++If some work was done on such a project, there should be a warning about it.
++
++If a project is then added to the list, running the command again should not override existing drafts, but create new files for the newly listed projects.
+```
+
+# Write a command to list all projects
+
+It produces a large name -> path record.
+
+``` diff
+index 2dd0fd5..1f501f1 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -17,6 +17,17 @@ def "main days" [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
++def "main projects" [
++    path: path
++] {
++    $path
++    | path join "**/.git"
++    | glob $in
++    | path dirname
++    | each { |p| { name: ($p | path basename), path: $p } }
++    | transpose --as-record -r
++}
++
+=def main [] {
+=    print "Not implemented yet"
+=    exit 1
+```
+
+# Implement the project log sub-command
+
+It parses the output from `git log`, including a unified diff and
+extracts a Nushell table with `subject`, `body` and `diff` columns. The
+`diff` is split by file.
+
+``` diff
+index 1f501f1..632e9d5 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -28,7 +28,26 @@ def "main projects" [
+=    | transpose --as-record -r
+=}
+=
+-def main [] {
++def "main project log" [
++    path: path,
++    since: datetime,
++    until: datetime,
++] {
++    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++    cd $path
++    git log --since $since --until $until --unified --format=$"($log_format)"
++    | split row  "<--- commit --->"
++    | skip 1 # First is empty
++    | split column "<--- part --->"
++    | rename "subject" "body" "diff" 
++    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
++}
++
++def main [
++    since: datetime,
++    --path: path = "~/Projects",
++    --day-start: string = "04:00"
++] {
+=    print "Not implemented yet"
+=    exit 1
+=}
+```
+
+# WIP: Implement formatting project log as Markdown
+
+There is some issue with diffs containing binary data. I will need to
+investigate when I have fresh mind.
+
+``` diff
+index 632e9d5..a87f7bf 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -35,7 +35,14 @@ def "main project log" [
+=] {
+=    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
+=    cd $path
+-    git log --since $since --until $until --unified --format=$"($log_format)"
++
++    # Debugging:
++    # print $env.PWD
++    # let git_command = $'git log --since ($since | format date %+) --until ($until | format date %+) --unified --format="($log_format)"'
++    # print $git_command
++
++    # TODO: Handle binary stream somehow coming from Erna's log
++    git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+=    | split row  "<--- commit --->"
+=    | skip 1 # First is empty
+=    | split column "<--- part --->"
+@@ -43,11 +50,38 @@ def "main project log" [
+=    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
+=}
+=
++def "format commit" [] {
++    [
++        $"## ($in.subject | str trim)"
++        ""
++        ($in.body | str trim)
++        ""
++        ($in.diff | each { |diff| format diff } | str join "\n\n" )
++    ] | str join "\n"
++}
++
++def "format diff" [] {
++    $"``` diff\n($in | str trim)\n```"
++}
++
++def "format log" [
++    title: string
++] {
++    [
++        $"# ($title)"
++        $""
++        $"Commits: ($in | length)"
++        $""
++        ($in | each { | commit | format commit } | str join "\n\n")
++    ] | str join "\n"
++}
++
+=def main [
+=    since: datetime,
+=    --path: path = "~/Projects",
+=    --day-start: string = "04:00"
+=] {
+-    print "Not implemented yet"
+-    exit 1
++    # TODO: Handle multiple projects and write the markdown file
++    main project log $path $since (date now)
++    | format log "Test"
+=}
+```
\ No newline at end of file
new file mode 100644
index 0000000..c2bd98a
--- /dev/null
+++ b/content/devlog/2026-04-13-devlog-excavator.md
@@ -0,0 +1,354 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 7
+
+
+# Write about binary data in diffs
+
+
+
+``` diff
+index 34979e9..2768f3f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -42,3 +42,16 @@ What about new projects that are not listed yet?
+=If some work was done on such a project, there should be a warning about it.
+=
+=If a project is then added to the list, running the command again should not override existing drafts, but create new files for the newly listed projects.
++
++## Binary files issue
++
++A non-unicode fragment in the diff breaks my script. For example in a repo with some PDFs checked in I'm getting this:
++
++``` nushell-session
++❯ git log --since 2026-04-01T00:00:00+00:00 --until 2026-04-12T00:00:00+00:00 --unified --format="<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"     | split row  "<--- commit --->"
++Error: nu::shell::only_supports_this_input_type
++```
++
++The PDF files are mixed - they are mostly text, but can contain embedded binary blobs (like fonts or bitmap images).
++
++The solutions is the `.gitattributes` in a project repo to filter our any file that might contain binary fragments.
+```
+
+# Write about an idea to produce sample data
+
+
+
+``` diff
+index 2768f3f..415f213 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -2,6 +2,9 @@
+=
+=This program generates a devlog for tad-lispy.com
+=
++## Sample data
++
++IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+=## Get all projects
+=
+```
+
+# Work around `skip` swallowing errors
+
+I elaborate on in in the spec.
+
+``` diff
+index a87f7bf..a74113b 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -42,8 +42,11 @@ def "main project log" [
+=    # print $git_command
+=
+=    # TODO: Handle binary stream somehow coming from Erna's log
+-    git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
++    # This is a workaround for `skip` swallowing errors
++    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+=    | split row  "<--- commit --->"
++
++    $chunks
+=    | skip 1 # First is empty
+=    | split column "<--- part --->"
+=    | rename "subject" "body" "diff"
+```
+
+``` diff
+index 415f213..42c8077 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -58,3 +58,18 @@ Error: nu::shell::only_supports_this_input_type
+=The PDF files are mixed - they are mostly text, but can contain embedded binary blobs (like fonts or bitmap images).
+=
+=The solutions is the `.gitattributes` in a project repo to filter our any file that might contain binary fragments.
++
++A secondary problem is that Nushell's `skip` command seems to be swallowing the errors in a pipeline. If the preceding command fails (like above), it just produces empty list. Consider this, same as above but with an extra step:
++
++``` nushell-session
++❯ git log --since 2026-04-01T00:00:00+00:00 --until 2026-04-12T00:00:00+00:00 --unified --format="<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++| split row  "<--- commit --->" 
++| skip 1
++╭────────────╮
++│ empty list │
++╰────────────╯
++```
++
++This seems to be specific to `skip`. Other commands fail as expected.
++
++> TODO: Open an issue in Nushell. There is a similar one about `transpose`: <https://github.com/nushell/nushell/issues/14027>.
+```
+
+# Make the git log markers stricter
+
+The `<--- commit --->` and `<--- part --->` markers are now immediately
+preceded and followed by newline characters, to avoid confusion when
+those strings are used in code or docs - for example in this project.
+
+``` diff
+index a74113b..b87590b 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -33,7 +33,7 @@ def "main project log" [
+=    since: datetime,
+=    until: datetime,
+=] {
+-    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++    let log_format = "<--- commit --->%n%s%n<--- part --->%n%b%n<--- part --->%n"
+=    cd $path
+=
+=    # Debugging:
+@@ -44,13 +44,13 @@ def "main project log" [
+=    # TODO: Handle binary stream somehow coming from Erna's log
+=    # This is a workaround for `skip` swallowing errors
+=    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+-    | split row  "<--- commit --->"
++    | split row "\n<--- commit --->\n"
+=
+=    $chunks
+=    | skip 1 # First is empty
+-    | split column "<--- part --->"
++    | split column "\n<--- part --->\n"
+=    | rename "subject" "body" "diff" 
+-    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
++    | update "diff" { | row | $row.diff | split row --regex "\ndiff --git .+" | skip 1 }
+=}
+=
+=def "format commit" [] {
+```
+
+# Make it iterate over days and write the documents
+
+So basically put it all together. The main command now  scans all git
+repositories under the `--project-dir` (defaults to `~/Projects`) and
+writes markdown documents to files named like `2026-04-13-my-project.md`
+to `--out-dir` (defaults to `./drafts/`). So there is one output file
+for each day and each project. Days without commits are skipped.
+
+When errors occur, extra diagnostic information is printed. It's a bit
+ugly. Debugging Nushell scripts seems tricky. Maybe I don't know how to
+do it properly.
+
+``` diff
+index b87590b..5bad215 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -81,10 +81,37 @@ def "format log" [
+=
+=def main [
+=    since: datetime,
+-    --path: path = "~/Projects",
++    --projects-dir: path = "~/Projects",
+=    --day-start: string = "04:00"
++    --out-dir: path = "drafts"
+=] {
+-    # TODO: Handle multiple projects and write the markdown file
+-    main project log $path $since (date now)
+-    | format log "Test"
++    mkdir $out_dir
++
++    for project in (main projects $projects_dir | transpose name path) {
++        let project_slug = $project.name | str kebab-case
++
++        # TODO: Iterate over days and write to a file
++        for day in (main days $since) {
++            let date = $day.start | format date %Y-%m-%d
++            let out_path = ($out_dir | path join $"($date)-($project_slug).md")
++
++            try {
++                # TODO: Catch and print errors
++                let log = main project log $project.path $day.start $day.end
++                if ($log | is-empty) {
++                    "No commits on that day"
++                    continue
++                }
++                $log
++                | format log $project.name
++                | save --force $out_path
++            } catch { |error|
++                print --stderr $"Project path: ($project.path)"
++                print --stderr $"Date: ($date)"
++                print --stderr $"Output path: ($out_path)"
++                print --stderr $error.rendered
++            }
++        }
++        
++    }
+=}
+```
+
+# Make the order of commits chronological
+
+The commits done earlier in the day should be listed first, unlike in
+git log, where they are listed in reverse chronological order.
+
+``` diff
+index 5bad215..cd1aa1a 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -97,7 +97,7 @@ def main [
+=
+=            try {
+=                # TODO: Catch and print errors
+-                let log = main project log $project.path $day.start $day.end
++                let log = main project log $project.path $day.start $day.end | reverse
+=                if ($log | is-empty) {
+=                    "No commits on that day"
+=                    continue
+```
+
+# Write a spec and partially implement configuration
+
+The name and ignore part are working, but there is no warning about
+recent activity. The difficulty is, that with current architecture it's
+difficult to print the warning only once. A refactoring is needed before
+this can be implemented.
+
+A sample configuration file is provided.
+
+``` diff
+index 69d93e1..74bb444 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -1,2 +1,4 @@
++/drafts/
++/devlog.toml
+=.direnv
+=.devenv
+```
+
+``` diff
+new file mode 100644
+index 0000000..698c93f
+--- /dev/null
++++ b/devlog-sample.toml
+@@ -0,0 +1,11 @@
++[[projects]]
++name = "Tad Better Behavior"
++path = "~/Projects/tad-better-behavior"
++    
++[[projects]]
++name = "Better Tech Club website"
++path = "~/Projects/better-tech-club/bettertech.eu"
++
++[[projects]]
++name = "DevLog"
++path = "."
+```
+
+``` diff
+index cd1aa1a..7622b93 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -19,13 +19,11 @@ def "main days" [
+=
+=def "main projects" [
+=    path: path
+-] {
++]: nothing -> list<path> {
+=    $path
+=    | path join "**/.git"
+=    | glob $in
+=    | path dirname
+-    | each { |p| { name: ($p | path basename), path: $p } }
+-    | transpose --as-record -r
+=}
+=
+=def "main project log" [
+@@ -84,12 +82,29 @@ def main [
+=    --projects-dir: path = "~/Projects",
+=    --day-start: string = "04:00"
+=    --out-dir: path = "drafts"
++    --config-file: path = "devlog.toml"
+=] {
++    let config = open $config_file
++    | update projects { update path { path expand } } # Resolve all project paths
++
++    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+=
+-    for project in (main projects $projects_dir | transpose name path) {
++    for project_path in (main projects $projects_dir) {
++        let project = $config.projects
++        | where path == $project_path
++        | first
++
++        if ($project | is-empty) {
++            continue
++        }
++
+=        let project_slug = $project.name | str kebab-case
+=
++        if ($project | get --optional ignore | default false ) {
++            continue
++        }
++
+=        # TODO: Iterate over days and write to a file
+=        for day in (main days $since) {
+=            let date = $day.start | format date %Y-%m-%d
+@@ -97,16 +112,18 @@ def main [
+=
+=            try {
+=                # TODO: Catch and print errors
+-                let log = main project log $project.path $day.start $day.end | reverse
++                let log = main project log $project_path $day.start $day.end | reverse
++
+=                if ($log | is-empty) {
+=                    "No commits on that day"
+=                    continue
+=                }
++
+=                $log
+=                | format log $project.name
+=                | save --force $out_path
+=            } catch { |error|
+-                print --stderr $"Project path: ($project.path)"
++                print --stderr $"Project path: ($project_path)"
+=                print --stderr $"Date: ($date)"
+=                print --stderr $"Output path: ($out_path)"
+=                print --stderr $error.rendered
+```
+
+``` diff
+index 42c8077..531b178 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -73,3 +73,12 @@ A secondary problem is that Nushell's `skip` command seems to be swallowing the
+=This seems to be specific to `skip`. Other commands fail as expected.
+=
+=> TODO: Open an issue in Nushell. There is a similar one about `transpose`: <https://github.com/nushell/nushell/issues/14027>.
++
++
++## Configuration file
++
++By default `./devlog.toml` shall be used, but it can be changed with `--config-file` flag. The file must list all the projects for which devlog is to be generated. The name of the project comes from there. See the devlog-sample.toml file.
++
++A project can be flagged to be ignored with the `ignore` key.
++
++Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
+```
\ No newline at end of file
new file mode 100644
index 0000000..b50488b
--- /dev/null
+++ b/content/devlog/2026-04-14-better-tech-club-website.md
@@ -0,0 +1,29 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 1
+
+
+# Emphasize "sustainable and fair" together
+
+To resonate with "love and care".
+
+``` diff
+index 5170b7c..d7d9ab5 100644
+--- a/index.html
++++ b/index.html
+@@ -207,7 +207,7 @@
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+=                    your <strong>intelligence</strong>, your <strong>well-being</strong>.
+-                    It's <strong>sustainable</strong> and <strong>fair</strong>.
++                    It's <strong>sustainable and fair</strong>.
+=                    It belongs to you and me.
+=                    It makes us a <strong>community</strong>.
+=                    You are among friends. You are not the product.
+```
\ No newline at end of file
new file mode 100644
index 0000000..15947e4
--- /dev/null
+++ b/content/devlog/2026-04-14-devlog-excavator.md
@@ -0,0 +1,622 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 7
+
+
+# WIP: Setup TBB to evaluate the spec
+
+Yesterday I've made an attempt to implement a Nushell interpreter for
+Tad Better Behavior. I got stuck on handling I/O. An interpreter needs
+to first write a line to indicate that it's ready to handle input, and
+then handle it line by line. After each line received on `stdin` it
+needs to respond with one or more lines on `stdout` and wait for more
+input. Once the input stream is closed, an interpreter should terminate.
+
+I tried two approaches:
+
+1. Using `input` in a loop
+
+This works very well, except the interpreter won't terminate when the
+input is closed, leaving zombie processes after each evaluation.
+
+2. Using `lines` without any explicit input
+
+This is what I'm committing here. I've found this technique at
+https://github.com/nushell/nushell/issues/14901. It doesn't wait for
+input and terminates immediately, unless I remove (comment out) any
+output (to `stdout` and `stderr`) before calling the `lines` command.
+It seems like a bug in Nushell, so I've wrote an issue about it:
+https://github.com/nushell/nushell/issues/18033
+
+``` diff
+index 7d5ec13..671416e 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -165,11 +165,11 @@
+=        "rust-overlay": "rust-overlay"
+=      },
+=      "locked": {
+-        "lastModified": 1775848233,
+-        "narHash": "sha256-+V6K66AsFCxD0PmKOASSSFUdEjmAtIwX4XlQ+2JBrmk=",
++        "lastModified": 1776080969,
++        "narHash": "sha256-2uZxF6q0KOIH8tq3r65ZCz7dM+XYP3avtRP8IBq5zYY=",
+=        "owner": "cachix",
+=        "repo": "devenv",
+-        "rev": "cf4f57c61f5dc9d58300bdf18102d9cf5b4f29ea",
++        "rev": "8d558a84fa38242a7f13781670fee1a6a8902b48",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -565,11 +565,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1775657489,
+-        "narHash": "sha256-v1KwZrIMGpteHPwxXvbapc7o3iduhU61phPUfyrnjM8=",
++        "lastModified": 1775984952,
++        "narHash": "sha256-FciKF0weMXVirN+ZBSniR4wpKx168cBa9IXhuaLOkkU=",
+=        "owner": "cachix",
+=        "repo": "nix",
+-        "rev": "5c0da4397902105a84611c6d49e9d39a618ca025",
++        "rev": "e671135fc5b783798c444e4ece101f6b15ff0c46",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -656,11 +656,11 @@
+=    "nixpkgs-src": {
+=      "flake": false,
+=      "locked": {
+-        "lastModified": 1773840656,
+-        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "lastModified": 1775888245,
++        "narHash": "sha256-nwASzrRDD1JBEu/o8ekKYEXm/oJW6EMCzCRdrwcLe90=",
+=        "owner": "NixOS",
+=        "repo": "nixpkgs",
+-        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "rev": "13043924aaa7375ce482ebe2494338e058282925",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -707,11 +707,11 @@
+=        "nixpkgs-src": "nixpkgs-src"
+=      },
+=      "locked": {
+-        "lastModified": 1774287239,
+-        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
++        "lastModified": 1776097194,
++        "narHash": "sha256-XD4DsgNcfXC5nlCxlAcCP5hSjTYlgLXEIoTj7fKkQg4=",
+=        "owner": "cachix",
+=        "repo": "devenv-nixpkgs",
+-        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
++        "rev": "6e8a07b02f6f8557ffab71274feac9827bcc2532",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -783,7 +783,8 @@
+=      "inputs": {
+=        "devenv": "devenv",
+=        "nixpkgs": "nixpkgs_4",
+-        "systems": "systems"
++        "systems": "systems",
++        "tad-better-behavior": "tad-better-behavior"
+=      }
+=    },
+=    "rust-overlay": {
+@@ -822,6 +823,45 @@
+=        "type": "github"
+=      }
+=    },
++    "systems_2": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "tad-better-behavior": {
++      "inputs": {
++        "devenv": [
++          "devenv"
++        ],
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "systems": "systems_2"
++      },
++      "locked": {
++        "lastModified": 1775638737,
++        "narHash": "sha256-h2QcCWhV7hA+v8Tmyh5zmiZmeDLj23Rh5ciJwWiuhJI=",
++        "ref": "refs/heads/main",
++        "rev": "ed447ca6ee1a377bf4afcde6a785fdc0870e4f13",
++        "revCount": 162,
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      },
++      "original": {
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      }
++    },
+=    "treefmt-nix": {
+=      "inputs": {
+=        "nixpkgs": [
+```
+
+``` diff
+index b6bf848..5b67689 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -4,6 +4,11 @@
+=    systems.url = "github:nix-systems/default";
+=    devenv.url = "github:cachix/devenv";
+=    devenv.inputs.nixpkgs.follows = "nixpkgs";
++    tad-better-behavior = {
++      url = "git+http://codeberg.org/tad-lispy/tad-better-behavior";
++      inputs.nixpkgs.follows = "nixpkgs";
++      inputs.devenv.follows = "devenv";
++    };
+=  };
+=
+=  nixConfig = {
+@@ -11,7 +16,7 @@
+=    extra-substituters = "https://devenv.cachix.org";
+=  };
+=
+-  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++  outputs = { self, nixpkgs, devenv, systems, tad-better-behavior, ... } @ inputs:
+=    let
+=      forEachSystem = nixpkgs.lib.genAttrs (import systems);
+=    in
+@@ -20,6 +25,7 @@
+=        (system:
+=          let
+=            pkgs = nixpkgs.legacyPackages.${system};
++            tbb = tad-better-behavior.packages.${system};
+=          in
+=          {
+=            default = devenv.lib.mkShell {
+@@ -27,7 +33,10 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.nushell ];
++                  packages = [
++                    pkgs.nushell
++                    tbb.default
++                  ];
+=                }
+=              ];
+=            };
+```
+
+``` diff
+index 531b178..94eeb4c 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -1,3 +1,7 @@
++---
++interpreter: nu --stdin spec/interpreters/tbb.nu
++---
++
+=# Basic
+=
+=This program generates a devlog for tad-lispy.com
+```
+
+``` diff
+new file mode 100644
+index 0000000..2bc42df
+--- /dev/null
++++ b/spec/interpreters/tbb.nu
+@@ -0,0 +1,19 @@
++def main [] {
++    print --stderr "Interpreter listening..."
++
++    { type: InterpreterState, ready: true }
++    | to json --raw
++    | print
++
++    # FIXME: It doesn't wait for input if anything is printed
++    # See https://github.com/nushell/nushell/issues/18033
++    lines | each { str reverse | print --stderr }
++
++    # Alternative aproach to I/O. Also doesnt work:
++    # loop {
++    #     input | str reverse | print --stderr
++    # }
++
++    print --stderr "Interpreter done."
++}
++
+```
+
+# Elaborate on projects list in a front matter
+
+
+
+``` diff
+index 94eeb4c..9e97e08 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -39,7 +39,11 @@ So maybe I can just loop until I reach the time before `since`, emit the last fr
+=
+=## Generate the drafts
+=
+-For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
++For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
++
++The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to projects pages. It's plural, and should be an array, because sometimes work in one repository is related to multiple projects - for example integrating TBB can be linked to the integration, but also TBB.
++
++Each commit should start with an `h2` followed by the message body and a complete diff.
+=
+=
+=## Unlisted projects
+```
+
+# Let it write project name in front matter
+
+It writes it in two places:
+
+  - title
+  - extra.projects (configurable, a singleton list)
+
+The idea is, that title might be changed for editorial purposes (for example to
+reflect particular developments of the day) while projects list is more
+of a metadata (it can be used to link pages together). Also, projects
+are sometimes renamed. In that case, it's ok to change the metadata, but
+titles are often used to generate URLs, so it's better to keep them
+stable and not break any links.
+
+I demonstrate how to change the cell path of projects in
+`devlog-sample.toml`. Nushell is really nice to work with data formats
+and structures.
+
+``` diff
+index 698c93f..9a8d531 100644
+--- a/devlog-sample.toml
++++ b/devlog-sample.toml
+@@ -1,3 +1,10 @@
++[frontmatter]
++
++# By default projects are listed under extra.projects.  This example shows how
++# to use custom cell path to list them under taxonomies, for example to use with
++# Zola (https://www.getzola.org/documentation/content/taxonomies/).
++projects_cell_path = [ "taxonomies", "projects" ]
++
+=[[projects]]
+=name = "Tad Better Behavior"
+=path = "~/Projects/tad-better-behavior"
+@@ -7,5 +14,5 @@ name = "Better Tech Club website"
+=path = "~/Projects/better-tech-club/bettertech.eu"
+=
+=[[projects]]
+-name = "DevLog"
++name = "DevLog Extracavator"
+=path = "."
+```
+
+``` diff
+index 7622b93..d27f57c 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -67,8 +67,16 @@ def "format diff" [] {
+=
+=def "format log" [
+=    title: string
++    config: record
+=] {
++    let frontmatter = { title: $title }
++    | insert $config.frontmatter.projects_cell_path [ $title ]
++
+=    [
++        $"---"
++        ($frontmatter | to yaml)
++        $"---"
++        $""
+=        $"# ($title)"
+=        $""
+=        $"Commits: ($in | length)"
+@@ -84,8 +92,10 @@ def main [
+=    --out-dir: path = "drafts"
+=    --config-file: path = "devlog.toml"
+=] {
++    # Read the config file, process and set some defaults
+=    let config = open $config_file
+=    | update projects { update path { path expand } } # Resolve all project paths
++    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path } 
+=
+=    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+@@ -120,7 +130,7 @@ def main [
+=                }
+=
+=                $log
+-                | format log $project.name
++                | format log $project.name $config
+=                | save --force $out_path
+=            } catch { |error|
+=                print --stderr $"Project path: ($project_path)"
+```
+
+# Fix the Nushell TBB interpreter I/O problem
+
+Thanks to Juhan280 at GitHub:
+
+https://github.com/nushell/nushell/issues/18033#issuecomment-4241910862
+
+Apparently the first command takes over the input stream. It's still a
+bit fuzzy to me, but the solution with `tee` works, so I can continue
+from here. It's still a WIP, but at least the I/O seems to be working
+correctly.
+
+``` diff
+index 2bc42df..5a8bfa2 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,18 +1,12 @@
+=def main [] {
+-    print --stderr "Interpreter listening..."
+-
+-    { type: InterpreterState, ready: true }
+-    | to json --raw
+-    | print
+-
+-    # FIXME: It doesn't wait for input if anything is printed
+-    # See https://github.com/nushell/nushell/issues/18033
+-    lines | each { str reverse | print --stderr }
+-
+-    # Alternative aproach to I/O. Also doesnt work:
+-    # loop {
+-    #     input | str reverse | print --stderr
+-    # }
++    tee { # This preserves the input stream for the lines command
++        print --stderr "Interpreter listening..."
++        { type: InterpreterState, ready: true }
++        | to json --raw
++        | print
++    }
++    | lines
++    | each { str reverse | print --stderr }
+=
+=    print --stderr "Interpreter done."
+=}
+```
+
+# Setup the incoming handler in the TBB interpreter
+
+I have to focus on something else now, but I want to set the stage for
+next steps.
+
+``` diff
+index 5a8bfa2..4fefadb 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -6,8 +6,14 @@ def main [] {
+=        | print
+=    }
+=    | lines
+-    | each { str reverse | print --stderr }
++    | each { handle incoming }
+=
+=    print --stderr "Interpreter done."
+=}
+=
++def "handle incoming" [] {
++    $in
++    | from json
++    # TODO: Actually process TBB incoming messages and send responses
++    | print --stderr 
++}
+```
+
+# Implement POC TBB interpreter in Nushell
+
+All the basics are covered:
+
+ - Step implementation (by variant)
+ - Execution
+ - Arguments passing (no type casting (yet?))
+ - Extra data passing (code_blocks, tables, etc.)
+ - Success reporting
+ - Error reporting (including nice "did you mean?" on typos)
+
+No observations yet. Also the interpreter and internals are all mixed
+together.
+
+There is also some nonsense spec scenario to test it all. When evaluated
+it fails on purpose.
+
+``` diff
+index 9e97e08..d20b3a7 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -90,3 +90,15 @@ By default `./devlog.toml` shall be used, but it can be changed with `--config-f
+=A project can be flagged to be ignored with the `ignore` key.
+=
+=Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
++
++## Interpreter test
++
++This is not real spec, just a quick test of the WIP interpreter.
++
++  * Do something `nice` and then `sleep` for `2` hours
++  
++    ``` text
++    Zzzzz.....
++    ```
++
++  * Do the twist `7` times
+```
+
+``` diff
+index 4fefadb..69652ea 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,3 +1,19 @@
++let steps = {
++    "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
++        print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++        $data.code_blocks | first | get value | print --stderr 
++    },
++    "Do the twist {0} times": { |how_many, data|
++        $how_many | into int | let how_many
++        if $how_many > 5 {
++           error make "That's too many!"
++        }
++        for n in 1..$how_many {
++            $"Doing the twist ($n)" | print --stderr 
++        }
++    }
++}
++
+=def main [] {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+@@ -12,8 +28,27 @@ def main [] {
+=}
+=
+=def "handle incoming" [] {
+-    $in
+-    | from json
+-    # TODO: Actually process TBB incoming messages and send responses
+-    | print --stderr 
++    let incoming = $in | from json
++
++    print --stderr --raw  $incoming
++    match $incoming.type {
++        Execute => {
++            try {
++                let step = $incoming.step
++                print --stderr $"Executing step ($step.description)"
++                let closure = $steps | get $step.variant
++                do $closure ...$step.arguments $step
++                { type: Success } | to json --raw | print
++            } catch { |err|
++                {
++                    type: Failure,
++                    reason: $err.msg
++                    hint: $err.rendered
++                } | to json --raw | print
++            }
++        },
++        _ => {
++            error make "Unsupported message type: ($incoming.type)" 
++        }
++    }
+=}
+```
+
+# Separate plumbing from the TBB interpreter
+
+The "plumbing" involes setting up I/O, which IMO is a bit convoluted.
+Developers who implement interpreters shouldn't be bothered with it.
+They should just write steps' implementations and everything should
+work.
+
+Now the is a `tbb` module holds the reusable parts and plumbing, while a
+new `basic.nu` interpreter defines the steps and calls `tbb run`,
+passing the steps. The `tbb run` (previously `main`) does all the I/O
+setup.
+
+The only caveat is that `tbb run` must be the very first command in the
+interpreter. Otherwise the I/O is broken. See the (ongoing) discussion
+here:
+
+https://github.com/nushell/nushell/issues/18033#issuecomment-4241910862
+
+``` diff
+index d20b3a7..15b6d3f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -1,5 +1,5 @@
+=---
+-interpreter: nu --stdin spec/interpreters/tbb.nu
++interpreter: nu --stdin spec/interpreters/basic.nu
+=---
+=
+=# Basic
+```
+
+``` diff
+new file mode 100644
+index 0000000..77cd3e2
+--- /dev/null
++++ b/spec/interpreters/basic.nu
+@@ -0,0 +1,19 @@
++use tbb.nu
++
++def main [] {
++    tbb run {
++        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
++            print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++            $data.code_blocks | first | get value | print --stderr 
++        },
++        "Do the twist {0} times": { |how_many, data|
++            $how_many | into int | let how_many
++            if $how_many > 5 {
++            error make "That's too many!"
++            }
++            for n in 1..$how_many {
++                $"Doing the twist ($n)" | print --stderr 
++            }
++        }
++    }
++}
+```
+
+``` diff
+index 69652ea..afb7882 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,20 +1,4 @@
+-let steps = {
+-    "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-        print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-        $data.code_blocks | first | get value | print --stderr 
+-    },
+-    "Do the twist {0} times": { |how_many, data|
+-        $how_many | into int | let how_many
+-        if $how_many > 5 {
+-           error make "That's too many!"
+-        }
+-        for n in 1..$how_many {
+-            $"Doing the twist ($n)" | print --stderr 
+-        }
+-    }
+-}
+-
+-def main [] {
++export def run [steps: record]: string -> nothing {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+=        { type: InterpreterState, ready: true }
+@@ -22,12 +6,12 @@ def main [] {
+=        | print
+=    }
+=    | lines
+-    | each { handle incoming }
++    | each { handle incoming $steps }
+=
+=    print --stderr "Interpreter done."
+=}
+=
+-def "handle incoming" [] {
++def "handle incoming" [steps: record] {
+=    let incoming = $in | from json
+=
+=    print --stderr --raw  $incoming
+```
\ No newline at end of file
new file mode 100644
index 0000000..9360a72
--- /dev/null
+++ b/content/devlog/2026-04-15-devlog-excavator.md
@@ -0,0 +1,430 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 3
+
+
+# Implement state management for TBB interpreter
+
+It's implemented the functional / immutable way. Essentially each step
+is an iterator in a fold operation. If the step returns a record, it's
+going to be merged with current state and passed to the next steps as
+`data.state`.
+
+Currently there is a lot of noise on `stderr`. I decided not to clean it
+up, so later I can transform it to TBB observations.
+
+``` diff
+index 15b6d3f..d426ca8 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -95,10 +95,12 @@ Any project that is not listed, but had activity within the period for which a d
+=
+=This is not real spec, just a quick test of the WIP interpreter.
+=
++  * Do the twist `2` times
++
+=  * Do something `nice` and then `sleep` for `2` hours
+=  
+=    ``` text
+=    Zzzzz.....
+=    ```
+=
+-  * Do the twist `7` times
++  * Do the twist `4` times
+```
+
+``` diff
+index 77cd3e2..3b4cbac 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -7,13 +7,28 @@ def main [] {
+=            $data.code_blocks | first | get value | print --stderr 
+=        },
+=        "Do the twist {0} times": { |how_many, data|
++            # All arguments (except data) are passed as strings
++            # TODO: Can we cast them based on closure parameter types?
+=            $how_many | into int | let how_many
+-            if $how_many > 5 {
+-            error make "That's too many!"
+-            }
++
++            # This step demonstrates use of state. We count the total number of twists.
++            $data.state
++            | get --optional "twists"   # On first run it won't be there
++            | default 0                 # ...so we need an initial value
++            | let twists_so_far
++            
+=            for n in 1..$how_many {
+-                $"Doing the twist ($n)" | print --stderr 
++                let done_twists = $n + $twists_so_far
++
++                $"Doing the twist ($done_twists) 🕺" | print --stderr 
++
++                if $done_twists > 5 {
++                    error make "That's too many! My head is spinning 🤣"
++                }
+=            }
++
++            # Update the state for other steps. This will be merged.
++            { twists: ($twists_so_far + $how_many) }
+=        }
+=    }
+=}
+```
+
+``` diff
+index afb7882..e8512cd 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -6,23 +6,44 @@ export def run [steps: record]: string -> nothing {
+=        | print
+=    }
+=    | lines
+-    | each { handle incoming $steps }
++    | reduce --fold {} { |line, state|
++        print --stderr  "State before the step"
++        $state | print --stderr 
++        
++        $line
++        | handle incoming $state $steps
++        | let state_update
++
++        print --stderr "Record update"
++        $state_update | describe --detailed | print --stderr 
++
++        if ($state_update | describe | str starts-with "record") {
++            $state | merge $state_update
++        } else {
++            print --stderr $"Not a record: ($state_update)"
++            $state
++        }
++    }
+=
+=    print --stderr "Interpreter done."
+=}
+=
+-def "handle incoming" [steps: record] {
++def "handle incoming" [
++    state: record,
++    steps: record,
++] {
+=    let incoming = $in | from json
+=
+=    print --stderr --raw  $incoming
+=    match $incoming.type {
+=        Execute => {
+=            try {
+-                let step = $incoming.step
++                let step = $incoming.step | insert state $state
+=                print --stderr $"Executing step ($step.description)"
+=                let closure = $steps | get $step.variant
+-                do $closure ...$step.arguments $step
++                let state_update = do $closure ...$step.arguments $step
+=                { type: Success } | to json --raw | print
++                $state_update
+=            } catch { |err|
+=                {
+=                    type: Failure,
+```
+
+# Convert the stderr logging to TBB observations
+
+Recently I've started working on observations API for TBB. It allows to
+collect additional information during steps execution. Currently only
+two types of observation are implemented:
+
+  - text (just a string)
+  - snippet, rendered as a code block with:
+    - language (like json or rust)
+    - content (the code)
+    - optional metadata
+    - optional caption
+
+Accordingly TBB exports two commands:
+
+  - `observe text`
+  - `observe snippet`
+
+Both take content as input, allow a custom transformation before
+sending the observation (as demonstrated in basic.nu interpreter) and
+output the original value. This is important, as it allows to make
+observations from the middle of a pipeline.
+
+The `observe snippet` by default sends a formatted Nushell table, with
+language set to "table". To send code, one can use `--raw <language>`
+flag. If the language is anything else than Nuon (Nushell Object
+Notation), then the code should be a string (use transform if the input
+is not a string already). As a special (but likely common) case,
+structure data can be piped with `--raw nuon` and will be handled
+correctly (although not formatter, i.e. the code will be all on a single
+line). This is thanks to the fact that Nushell will serialize any
+data structure to a Nuon string.
+
+Finally the `--caption` flag is useful to explain what the snippet
+represents. The text command doesn't have such a flag, as a text
+observaion should be self-explanatory.
+
+The `tbb` module itself is making a lot of observations. I'm still
+trying to find out what is the best practice here, but I think it's good
+to make generous observations, as they will all be hidden in a
+successful scenario report. Should the scenario fail, the observations
+can aid debugging.
+
+In general, after the initial trouble with I/O, I think Nushell might be
+a great platform for TBB interpreters.
+
+``` diff
+index 671416e..745410f 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -849,11 +849,11 @@
+=        "systems": "systems_2"
+=      },
+=      "locked": {
+-        "lastModified": 1775638737,
+-        "narHash": "sha256-h2QcCWhV7hA+v8Tmyh5zmiZmeDLj23Rh5ciJwWiuhJI=",
++        "lastModified": 1776280929,
++        "narHash": "sha256-Z6wXuMFjoRzeCgMSEhb1H93w5SoqtfC539ZRdemaDEU=",
+=        "ref": "refs/heads/main",
+-        "rev": "ed447ca6ee1a377bf4afcde6a785fdc0870e4f13",
+-        "revCount": 162,
++        "rev": "b70531b7ce4b77625cd8824842d5b0cdb62a2b88",
++        "revCount": 163,
+=        "type": "git",
+=        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
+=      },
+```
+
+``` diff
+index 3b4cbac..801b3f1 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -3,8 +3,12 @@ use tbb.nu
+=def main [] {
+=    tbb run {
+=        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-            print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-            $data.code_blocks | first | get value | print --stderr 
++            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++            | tbb observe text --transform { str upcase }
++            $data.code_blocks
++            | first
++            | tbb observe snippet --caption "Received code block"
++            | ignore # Do not send any state update.
+=        },
+=        "Do the twist {0} times": { |how_many, data|
+=            # All arguments (except data) are passed as strings
+@@ -20,14 +24,15 @@ def main [] {
+=            for n in 1..$how_many {
+=                let done_twists = $n + $twists_so_far
+=
+-                $"Doing the twist ($done_twists) 🕺" | print --stderr 
++                $"Doing the twist ($done_twists) 🕺"
++                | tbb observe text 
+=
+=                if $done_twists > 5 {
+=                    error make "That's too many! My head is spinning 🤣"
+=                }
+=            }
+=
+-            # Update the state for other steps. This will be merged.
++            # Update the state for other steps. This record will be merged into the previous state.
+=            { twists: ($twists_so_far + $how_many) }
+=        }
+=    }
+```
+
+``` diff
+index e8512cd..45dc7f5 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -7,20 +7,20 @@ export def run [steps: record]: string -> nothing {
+=    }
+=    | lines
+=    | reduce --fold {} { |line, state|
+-        print --stderr  "State before the step"
+-        $state | print --stderr 
++        $state
++        | observe snippet --caption "State before the step" 
+=        
+=        $line
+=        | handle incoming $state $steps
+=        | let state_update
+=
+-        print --stderr "Record update"
+-        $state_update | describe --detailed | print --stderr 
+-
+-        if ($state_update | describe | str starts-with "record") {
++        if ($state_update | describe --detailed | $in.type == "record") {
++            $state_update
++            | observe snippet --caption "State update to be merged"
+=            $state | merge $state_update
+=        } else {
+-            print --stderr $"Not a record: ($state_update)"
++            $state_update
++            | observe snippet --caption "The value returned by the step is not a record; Not updating"
+=            $state
+=        }
+=    }
+@@ -32,14 +32,19 @@ def "handle incoming" [
+=    state: record,
+=    steps: record,
+=] {
+-    let incoming = $in | from json
++    $in
++    | observe snippet --raw "json" --caption  "Received input"
++    | from json
++    | observe snippet --caption  "Decoded control message"
++    | let incoming
+=
+-    print --stderr --raw  $incoming
+=    match $incoming.type {
+=        Execute => {
+=            try {
+-                let step = $incoming.step | insert state $state
+-                print --stderr $"Executing step ($step.description)"
++                $incoming.step
++                | insert state $state
++                | let step
++
+=                let closure = $steps | get $step.variant
+=                let state_update = do $closure ...$step.arguments $step
+=                { type: Success } | to json --raw | print
+@@ -57,3 +62,56 @@ def "handle incoming" [
+=        }
+=    }
+=}
++
++export def "observe snippet" [
++    --raw: string,
++    --caption: string,
++    --meta: string = "",
++    --transform: closure
++]: any -> any {
++    # By default transform is identity
++    $transform
++    | default { {||} }
++    | let transform
++
++    $in
++    | do $transform
++    | let transformed
++    | if ($raw | is-empty) { table --expand } else { $in }
++    | let formatted
++
++    {
++        type: Snippet
++        caption: $caption,
++        language: ($raw | default "table"),
++        meta: $meta,
++        content: ($formatted | default "nothing")
++    }
++    | to json --raw
++    | print
++
++    $in # Pass the value on
++}
++
++export def "observe text" [
++    --transform: closure
++] {
++    # By default transform is identity
++    $transform
++    | default { {||} }
++    | let transform
++
++    $in
++    | do $transform
++    | let formatted
++
++
++    {
++        type: Text
++        content: $formatted
++    }
++    | to json --raw
++    | print 
++
++    $in # Pass the value on
++}
+```
+
+# Allow setting initial state of a TBB interpreter
+
+Now with the `--initial-state` flag to `tbb run` command, an interpreter
+can set an initial state. This simplifies steps implementation, as they
+don't have to worry about expected state missing - as evidenced by the
+"Do the twist" step.
+
+The only remaining plumbing in the steps is type conversion from string.
+It would be very nice to have it done implicitly and in a generic
+fashion (i.e. in the `tbb` module).
+
+``` diff
+index 801b3f1..517943f 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -1,7 +1,7 @@
+=use tbb.nu
+=
+=def main [] {
+-    tbb run {
++    tbb run --initial-state { twists: 0 } {
+=        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+=            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+=            | tbb observe text --transform { str upcase }
+@@ -16,13 +16,8 @@ def main [] {
+=            $how_many | into int | let how_many
+=
+=            # This step demonstrates use of state. We count the total number of twists.
+-            $data.state
+-            | get --optional "twists"   # On first run it won't be there
+-            | default 0                 # ...so we need an initial value
+-            | let twists_so_far
+-            
+=            for n in 1..$how_many {
+-                let done_twists = $n + $twists_so_far
++                let done_twists = $n + $data.state.twists
+=
+=                $"Doing the twist ($done_twists) 🕺"
+=                | tbb observe text 
+@@ -33,7 +28,7 @@ def main [] {
+=            }
+=
+=            # Update the state for other steps. This record will be merged into the previous state.
+-            { twists: ($twists_so_far + $how_many) }
++            { twists: ($data.state.twists + $how_many) }
+=        }
+=    }
+=}
+```
+
+``` diff
+index 45dc7f5..b2d1284 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,4 +1,7 @@
+-export def run [steps: record]: string -> nothing {
++export def run [
++    steps: record
++    --initial-state: record = {}
++]: string -> nothing {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+=        { type: InterpreterState, ready: true }
+@@ -6,7 +9,7 @@ export def run [steps: record]: string -> nothing {
+=        | print
+=    }
+=    | lines
+-    | reduce --fold {} { |line, state|
++    | reduce --fold $initial_state { |line, state|
+=        $state
+=        | observe snippet --caption "State before the step" 
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..928595e
--- /dev/null
+++ b/content/devlog/2026-04-15-tad-better-behavior.md
@@ -0,0 +1,136 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 1
+
+
+# Allow an optional caption for snippet observations
+
+It's often useful to explain what the snippet is about. A dedicated
+caption should be better than sending a text observation right before
+the snippet. In HTML or other rich export formats it can be rendered
+in a pretty and semantically correct way, i.e. with structural
+connection to the snippet.
+
+``` diff
+index 96dc34a..eee3d46 100644
+--- a/samples/basic.py
++++ b/samples/basic.py
+@@ -58,8 +58,11 @@ def step_implementation_06(word: str, reverse: str, **kwargs):
+=@step("The following tables map words to their lengths")
+=def step_implementation_07(**kwargs):
+=    for table in kwargs["tables"]:
+-        send_text(f"Received a table with {len(table)} x {len(table[0])} cells")
+-        send_snippet("json", json.dumps(table, indent=2))
++        send_snippet(
++            "json",
++            json.dumps(table, indent=2),
++            caption = f"A {len(table)} x {len(table[0])} table"
++        )
+=        
+=        # Skip the first row - it's a heading
+=        for [word, length] in table[1:]:
+```
+
+``` diff
+index 86d94af..4787ef4 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -208,7 +208,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=          code blocks: 1, tables: 2
+=          source: samples/basic.md:59-93
+=
+-          > Received a table with 6 x 2 cells
++          A 6 x 2 table:
+=
+=          \``` json
+=          [
+@@ -254,8 +254,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=          > Is 'minx' 4 characters long? I think it's 4.
+=
+=
+-          > Received a table with 4 x 2 cells
+-
++          A 4 x 2 table:
+=
+=          \``` json
+=          [
+```
+
+``` diff
+index cf3096f..8e8f0db 100644
+--- a/spec/tbb.py
++++ b/spec/tbb.py
+@@ -193,14 +193,15 @@ def send_text(content):
+=        "content": content,
+=    })
+=
+-def send_snippet(language, content, meta = ""):
++def send_snippet(language, content, meta = "", caption = None):
+=    """ Send a snippet of code to be displayed in a TBB report
+=    """
+=    send({
+=        "type": "Snippet",
+=        "language": language,
+=        "content": content,
+-        "meta": meta
++        "meta": meta,
++        "caption": caption,
+=    })
+=    
+=
+```
+
+``` diff
+index 57da103..6bc03b3 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -177,11 +177,13 @@ impl<'a> ScenarioReport<'a> {
+=                        language,
+=                        meta,
+=                        content,
++                        caption,
+=                    } => {
+=                        observations.push(Observation::Snippet {
+=                            language,
+=                            meta,
+=                            content,
++                            caption,
+=                        });
+=                    }
+=                    InterpreterMessage::Link { url, label } => {
+@@ -292,6 +294,7 @@ pub enum Observation {
+=        language: String,
+=        meta: String,
+=        content: String,
++        caption: Option<String>,
+=    },
+=    // Image,
+=    // Audio,
+@@ -310,7 +313,12 @@ impl Display for Observation {
+=                language,
+=                meta,
+=                content,
++                caption,
+=            } => {
++                if let Some(caption) = caption {
++                    writeln!(f, "{caption}:")?;
++                    writeln!(f, "")?;
++                }
+=                writeln!(f, "``` {language} {meta}")?;
+=                writeln!(f, "{content}")?;
+=                writeln!(f, "```")
+@@ -508,6 +516,7 @@ pub enum InterpreterMessage {
+=        language: String,
+=        meta: String,
+=        content: String,
++        caption: Option<String>,
+=    },
+=    Link {
+=        url: String,
+```
\ No newline at end of file
new file mode 100644
index 0000000..68868da
--- /dev/null
+++ b/content/devlog/2026-04-16-devlog-excavator.md
@@ -0,0 +1,453 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 3
+
+
+# Write a spec for a list subcommand
+
+The spec describes misadventures of Alice and Bob, working on a
+high-tech Project Alpha.
+
+The subcommand is not implemented yet, and the interpreter is not ready
+to evaluate it, but that's how we roll in the BDD club.
+
+``` diff
+index d426ca8..3303b7f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -2,42 +2,149 @@
+=interpreter: nu --stdin spec/interpreters/basic.nu
+=---
+=
+-# Basic
++# The Dev Log Excavator
+=
+-This program generates a devlog for tad-lispy.com
++This program excavates a devlog (i.e. a bunch of .md files) from commit messages in multiple repositories.
+=
+-## Sample data
++
++## The `list` Subcommand
+=
+=IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+-## Get all projects
++  * Write `weblog.toml`
++    
++    ``` toml
++    [[projects]]
++    name = "Project Alpha"
++    path = "./project-alpha"
++    ```
++  
++  * Initialize a git repository `project-alpha`
+=
+-We need a mapping from `project-name` to `path`. This should sit in `projects.yaml`
++  * Write `README.md`
++  
++    ``` markdown
++    # This is Project Alpha
++    
++    The best project ever. Like seriosuly.
++    ```
++    
++  * On `2026-03-27 13:22` commit as `Alice <alice@example.com>`
++  
++    ``` text
++    Write a readme
++    
++    It's very exciting to start a new project.
++    ```
++    
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println ("Hello, World!")
++    }
++    ```
+=
+-The listing of all paths with names guessed from path can be obtained like this:
++  * On `2026-03-27 14:06` commit as `Bob <bob@example.com>`
++  
++    ``` text
++    Implement an MVP
++    
++    I need to keep my phone charged. Investors are going to call any minute now.
++    ```
++  
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println!("Hello, World!")
++    }
++    ```
+=
+-``` nushell
+-glob ~/Projects/**/.git 
+-| path dirname 
+-| each { |p| { name: ($p | path basename), path: $p } } 
+-| transpose --as-record -r 
+-| save --force all-projects.yaml
+-```
++  * Write `CHANGELOG.md`
++     
++    ``` markdown
++    # v1.0.0
++    
++    * Now it's working
++   ```
+=
++  * On `2026-03-28 03:06` commit as `Alice <alice@example.com>`
++  
++      Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
++      
++    ``` text
++    Make Project Alpha work
++    
++    Coding hard. I should have used Tad Better Behavior to test my stuff.
++    ```
+=
+-## Get days
++  * Write `LICENSE`
++  
++  ``` text
++  All rights reserved! You monkeys better not even look at my pro codes.
++  ```
++  
++  
++  * On `2026-04-01 09:03` commit as `Bob <bob@example.com>`
++  
++    Two days later
++      
++    ``` text
++    I've lawyered up
++    
++    With a perl like this project, I have to protect my IP.
++    ```
++    
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println ("Eat 💩, Bob!")
++    }
++    ```
+=
+-I want a list with `start` and `end` timestamps. It should support `--since` and `--until`. Until should by default be 4 A.M. today.  Since will be supplied based on the last entry in the devlog (details tbd). First day should be from `since`, i.e. it probably won't be a full day, but a fraction.
++  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
++  
+=
+-An arbitrary date with a given time can be obtained with the following:
++      
++    ``` text
++    I quit
++    
++    Bob is an asshole.
++    ```
+=
+-``` nu
+-("04:00" | date from-human) - 1day
+-```
++  * Run the `devlog list --projects-path .` command
++  
++  * Expect the output to contain `the heading row`
+=
+-So maybe I can just loop until I reach the time before `since`, emit the last fraction and break?
++    It contains column names, as produced by Nushell. The output format should be configurable.
++    
++    ``` regexp
++    
++    | day +\| time +\| sha +\| author +\| email +\| title +\| project +\| path +\|
++    ```
++  * Expect the output to contain `the first commit from Alice`
++  
++    ``` regex
++    | 2026-04-26 | 2026-04-27 13:22:00 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Make Project Alpha work +\| Project Alpha +| .+/project-alpha/ +|
++    ```
++
++  * Expect the output to contain `the late night commit from Alice`
++  
++    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
++    
++    ``` regex
++    | 2026-03-27 | 2026-03-28 03:06 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Write a readme +\| Project Alpha +| .+/project-alpha/ +|
++    ```
++
++  * Expect the output to contain `the silly commit from Bob`
++  
++    ``` regex
++    | 2026-04-01 | 2026-04-01 09:03 +\| [0-9a-f]+ +\| Bob +\| bob@example.com +\| I've lawyered up +\| Project Alpha +| .+/project-alpha/ +|
++    ```
+=
+-## Generate the drafts
++## The `excavate` Subcommand
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
+=
+```
+
+# Correct `devlog list` scenario
+
+The nushell tables are delimited not with pipe characters `|`, but with
+a special unicode symbol `│`. The good thing about it is that, unlike
+pipe characters, they don't need to be escaped.
+
+For now the command has `.nu` extension, so that how it needs to be
+called. I'm thinking about a way to change it. Maybe just rename the
+file?
+
+I've also removed the test scenario. It's going to be copied to the
+TBB project itself, together with `tbb.nu`.
+
+``` diff
+index 3303b7f..9a1451b 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -9,6 +9,10 @@ This program excavates a devlog (i.e. a bunch of .md files) from commit messages
+=
+=## The `list` Subcommand
+=
++``` yaml tbb
++tags: [ focus ]
++```
++
+=IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+=  * Write `weblog.toml`
+@@ -19,7 +23,7 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    path = "./project-alpha"
+=    ```
+=  
+-  * Initialize a git repository `project-alpha`
++  * Initialize a git repository at `project-alpha`
+=
+=  * Write `README.md`
+=  
+@@ -114,20 +118,25 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Bob is an asshole.
+=    ```
+=
+-  * Run the `devlog list --projects-path .` command
++  * Change directory to `..`
++  
++    Leave the repository and go back to where the config file is.
++
++  * Run the `devlog.nu list --projects-dir .` command
++  
++    TODO: Make it `devlog list`, without the extension,
+=  
+=  * Expect the output to contain `the heading row`
+=
+=    It contains column names, as produced by Nushell. The output format should be configurable.
+=    
+=    ``` regexp
+-    
+-    | day +\| time +\| sha +\| author +\| email +\| title +\| project +\| path +\|
++    │ day +│ time +│ sha +│ author +│ email +│ title +│ project +│ path +│
+=    ```
+=  * Expect the output to contain `the first commit from Alice`
+=  
+=    ``` regex
+-    | 2026-04-26 | 2026-04-27 13:22:00 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Make Project Alpha work +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-04-26 +│ 2026-04-27 13:22:00 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Make Project Alpha work +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=  * Expect the output to contain `the late night commit from Alice`
+@@ -135,13 +144,13 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    | 2026-03-27 | 2026-03-28 03:06 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Write a readme +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-03-27 │ 2026-03-28 03:06 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Write a readme +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+=  
+=    ``` regex
+-    | 2026-04-01 | 2026-04-01 09:03 +\| [0-9a-f]+ +\| Bob +\| bob@example.com +\| I've lawyered up +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-04-01 │ 2026-04-01 09:03 +│ [0-9a-f]+ +│ Bob +│ bob@example.com +│ I've lawyered up +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=## The `excavate` Subcommand
+@@ -198,16 +207,3 @@ A project can be flagged to be ignored with the `ignore` key.
+=
+=Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
+=
+-## Interpreter test
+-
+-This is not real spec, just a quick test of the WIP interpreter.
+-
+-  * Do the twist `2` times
+-
+-  * Do something `nice` and then `sleep` for `2` hours
+-  
+-    ``` text
+-    Zzzzz.....
+-    ```
+-
+-  * Do the twist `4` times
+```
+
+# Write the real interpreter for the basic TBB suite
+
+The spec is not satisfied yet, so the evaluation fails, but I believe
+the interpreter is correct. Now finally off to work to implement the
+`devlog list` command 😅
+
+``` diff
+index 517943f..69c1644 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -1,34 +1,82 @@
+=use tbb.nu
+=
+=def main [] {
+-    tbb run --initial-state { twists: 0 } {
+-        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-            | tbb observe text --transform { str upcase }
++    tbb run --initial-state { pwd: (mktemp --directory ) } {
++        "Write {0}": { |filename, data|
++            $data.state.pwd
++            | path join $filename
++            | tbb observe text --transform { $"Writing content to ($in)" }
++            | let path
++            | path dirname
++            | tbb observe text --transform  { $"Parent directory ($in)" }
++            | mkdir $in
++            
++            
+=            $data.code_blocks
+=            | first
+-            | tbb observe snippet --caption "Received code block"
+-            | ignore # Do not send any state update.
++            | get value
++            | save --force $path
+=        },
+-        "Do the twist {0} times": { |how_many, data|
+-            # All arguments (except data) are passed as strings
+-            # TODO: Can we cast them based on closure parameter types?
+-            $how_many | into int | let how_many
+=
+-            # This step demonstrates use of state. We count the total number of twists.
+-            for n in 1..$how_many {
+-                let done_twists = $n + $data.state.twists
++        "Initialize a git repository at {0}": {|dirname, data|
++            cd $data.state.pwd
++            mkdir $dirname
++            cd $dirname
++            
++            git init
++            | complete
++            | tbb observe snippet --caption "Output from git init"
+=
+-                $"Doing the twist ($done_twists) 🕺"
+-                | tbb observe text 
+=
+-                if $done_twists > 5 {
+-                    error make "That's too many! My head is spinning 🤣"
+-                }
+-            }
++            { pwd: (pwd) }
++        },
++
++        "On {0} commit as {1}": { |time, author, data|
++            cd $data.state.pwd
+=
+-            # Update the state for other steps. This record will be merged into the previous state.
+-            { twists: ($data.state.twists + $how_many) }
++            git add .
++            
++            $data.code_blocks
++            | first
++            | get value
++            | git commit --date $time --author $author --message $in
++            | tbb observe text
++            | ignore
++        },
++        "Change directory to {0}": { |destination, data|
++            $data.state.pwd
++            | path join $destination
++            | { pwd: $in }
++        }
++        
++        "Run the {0} command": { |command, data|
++            pwd
++            # | path join "bin/"
++            | tbb observe text --transform  { $"Adding Devlog Excavator directory ($in) to PATH" }
++            | let devlog_path
++
++            $env.PATH = $env.PATH
++            | append $devlog_path
++            | tbb observe snippet --caption "Path environment variable"
++
++            cd $data.state.pwd
++
++            $command
++            | tbb shell $in
++            | { output: $in }
++        },
++        "Expect the output to contain {0}": { |label, data|
++            $data.code_blocks
++            | first
++            | get value
++            | let pattern
++            | tbb observe snippet --caption "The needle"
++            
++            $data.state.output
++            | ansi strip
++            | tbb observe snippet --caption "The haystack"
++            | tbb assert match  $pattern
+=        }
+=    }
+=}
++
+```
+
+``` diff
+index b2d1284..0bf7a1d 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,3 +1,5 @@
++use std/assert
++
+=export def run [
+=    steps: record
+=    --initial-state: record = {}
+@@ -118,3 +120,27 @@ export def "observe text" [
+=
+=    $in # Pass the value on
+=}
++
++export def "shell" [command: string]: string -> record {
++    $in
++    | sh -c $command
++    | complete
++    | observe snippet --caption $"Results of running `($command)`"
++    | if $in.exit_code != 0 {
++        error make {
++            msg: $"Command exited with code ($in.exit_code)",
++            labels: [{ text: $"Command:\n($command)", span: (metadata $command).span }]
++        }
++    } else {
++        $in.stdout
++    }
++}
++
++export def "assert match" [
++    pattern: string
++]: string -> string {
++    assert ($in | find --regex $pattern | is-not-empty) --error-label {
++        text: "Pattern not found in the input",
++        span: (metadata $pattern).span
++    }
++}
+```
\ No newline at end of file
new file mode 100644
index 0000000..2db1eb6
--- /dev/null
+++ b/content/devlog/2026-04-17-devlog-excavator.md
@@ -0,0 +1,474 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 4
+
+
+# Fix indentation in the spec
+
+Looks like TBB is really tripped off by misaligned backticks. It doesn't
+produce a readable error, sometimes fails to recognize steps beyond the
+borked region. This is really bad, because it may lead to positive
+evaluation result, while in reality some steps (or even whole scenarios)
+are not evaluated.
+
+``` diff
+index 9a1451b..e61e1af 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -71,11 +71,11 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    # v1.0.0
+=    
+=    * Now it's working
+-   ```
++    ```
+=
+=  * On `2026-03-28 03:06` commit as `Alice <alice@example.com>`
+=  
+-      Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
++    Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
+=      
+=    ``` text
+=    Make Project Alpha work
+@@ -85,9 +85,9 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=
+=  * Write `LICENSE`
+=  
+-  ``` text
+-  All rights reserved! You monkeys better not even look at my pro codes.
+-  ```
++    ``` text
++    All rights reserved! You monkeys better not even look at my pro codes.
++    ```
+=  
+=  
+=  * On `2026-04-01 09:03` commit as `Bob <bob@example.com>`
+```
+
+# Implement the listing spec
+
+Also modify it in some respects. I decided not to have a sub-command for
+listing, but instead use the main command with `--dry-run` flag for the
+purpose of listing.
+
+Some parts of devlog code are dead now and will most likely be removed.
+The logic around getting the log is completely overhauled.
+
+``` diff
+index d27f57c..6677495 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -1,5 +1,100 @@
+=#!/usr/bin/env nu
+=
++use std/log
++
++def main [
++    --since: datetime = 1970-01-01          # How far back should we look?
++    --until: datetime                       # When did you last committed anything good?
++    --projects-dir: path = "~/Projects",    # Where do you keep your projects?
++    --day-start: string = "04:00"           # Until how late can you code?
++    --out-dir: path = "drafts"              # Where to write excavated posts
++    --config-file: path = "devlog.toml"     # The configuration file
++    --dry-run                               # Just list the commits to excavate
++] {
++    # Read the config file, process and set some defaults
++    # TODO: DRY with `main list`
++    open $config_file
++    | update projects { update path { path expand } } # Resolve all project paths
++    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path }
++    | let config
++
++    $until | default (date now) | let until
++    
++    $projects_dir
++    | projects
++    | each { project log $since $until }
++    | flatten
++    | update time { |commit| $commit.time | into datetime }
++    | insert day { 
++        get time
++        | if ($in | format date %T) < $day_start {
++           $in - 1day
++        } else {
++          $in
++        }
++        | format date %F
++    }
++    | insert project { |commit|
++        $config.projects
++        | where path == $commit.path
++        | first
++        | get name
++    }
++    | move day project author email subject time sha path --first
++    | let commits
++
++    if $dry_run {
++        $commits
++        | update time { format date }
++        | print 
++        exit 0
++    }
++    
++    # TODO: Allow setting in a config file
++    mkdir $out_dir
++
++    # for project_path in ($projects_dir | projects) {
++    #     let project = 
++    #     if ($project | is-empty) {
++    #         continue
++    #     }
++
++    #     let project_slug = $project.name | str kebab-case
++
++    #     if ($project | get --optional ignore | default false ) {
++    #         continue
++    #     }
++
++    #     # TODO: Iterate over days and write to a file
++    #     for day in (main days $since) {
++    #         let date = $day.start | format date %Y-%m-%d
++    #         let out_path = ($out_dir | path join $"($date)-($project_slug).md")
++
++    #         try {
++    #             # TODO: Catch and print errors
++    #             $project_path
++    #             | project log $day.start $day.end
++    #             | reverse
++    #             | let log
++
++    #             if ($log | is-empty) {
++    #                 "No commits on that day"
++    #                 continue
++    #             }
++
++    #             $log
++    #             | format log $project.name $config
++    #             | save --force $out_path
++    #         } catch { |error|
++    #             print --stderr $"Project path: ($project_path)"
++    #             print --stderr $"Date: ($date)"
++    #             print --stderr $"Output path: ($out_path)"
++    #             print --stderr $error.rendered
++    #         }
++    #     }
++        
++    # }
++}
+=def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+@@ -17,38 +112,54 @@ def "main days" [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
+-def "main projects" [
+-    path: path
+-]: nothing -> list<path> {
+-    $path
++def "projects" []: path -> list<path> {
++    $in
+=    | path join "**/.git"
+=    | glob $in
+=    | path dirname
+=}
+=
+-def "main project log" [
+-    path: path,
++def "project log" [
+=    since: datetime,
+=    until: datetime,
+-] {
+-    let log_format = "<--- commit --->%n%s%n<--- part --->%n%b%n<--- part --->%n"
+-    cd $path
+-
+-    # Debugging:
+-    # print $env.PWD
+-    # let git_command = $'git log --since ($since | format date %+) --until ($until | format date %+) --unified --format="($log_format)"'
+-    # print $git_command
+-
+-    # TODO: Handle binary stream somehow coming from Erna's log
+-    # This is a workaround for `skip` swallowing errors
+-    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+-    | split row "\n<--- commit --->\n"
+-
+-    $chunks
+-    | skip 1 # First is empty
+-    | split column "\n<--- part --->\n"
+-    | rename "subject" "body" "diff" 
+-    | update "diff" { | row | $row.diff | split row --regex "\ndiff --git .+" | skip 1 }
++]: path -> list {
++    let project_path = $in
++
++    cd $project_path
++
++    let format = {
++      "%s": "subject",
++      "%ad": "time",
++      "%an": "author",
++      "%ae": "email",
++      "%H": "sha",
++    }
++
++    $format
++    | columns
++    | each { $"⸨($in)⸩" } # Wrap in a double quote
++    | str join " "
++    | let log_format
++
++    
++    $format
++    | values
++    | each { $"⸨{($in)}⸩" } # Wrap in a double quote and a curly brace
++    | str join " "
++    | let parse_format
++
++    log debug $"Log format ($log_format)"
++    log debug $"Parse format ($parse_format)"
++
++    $log_format
++    | $"git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)"
++    | log info $in
++
++    $log_format
++    | git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)
++    | parse $parse_format
++    | reverse
++    | insert path $project_path
+=}
+=
+=def "format commit" [] {
+@@ -84,61 +195,3 @@ def "format log" [
+=        ($in | each { | commit | format commit } | str join "\n\n")
+=    ] | str join "\n"
+=}
+-
+-def main [
+-    since: datetime,
+-    --projects-dir: path = "~/Projects",
+-    --day-start: string = "04:00"
+-    --out-dir: path = "drafts"
+-    --config-file: path = "devlog.toml"
+-] {
+-    # Read the config file, process and set some defaults
+-    let config = open $config_file
+-    | update projects { update path { path expand } } # Resolve all project paths
+-    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path } 
+-
+-    # TODO: Allow setting in a config file
+-    mkdir $out_dir
+-
+-    for project_path in (main projects $projects_dir) {
+-        let project = $config.projects
+-        | where path == $project_path
+-        | first
+-
+-        if ($project | is-empty) {
+-            continue
+-        }
+-
+-        let project_slug = $project.name | str kebab-case
+-
+-        if ($project | get --optional ignore | default false ) {
+-            continue
+-        }
+-
+-        # TODO: Iterate over days and write to a file
+-        for day in (main days $since) {
+-            let date = $day.start | format date %Y-%m-%d
+-            let out_path = ($out_dir | path join $"($date)-($project_slug).md")
+-
+-            try {
+-                # TODO: Catch and print errors
+-                let log = main project log $project_path $day.start $day.end | reverse
+-
+-                if ($log | is-empty) {
+-                    "No commits on that day"
+-                    continue
+-                }
+-
+-                $log
+-                | format log $project.name $config
+-                | save --force $out_path
+-            } catch { |error|
+-                print --stderr $"Project path: ($project_path)"
+-                print --stderr $"Date: ($date)"
+-                print --stderr $"Output path: ($out_path)"
+-                print --stderr $error.rendered
+-            }
+-        }
+-        
+-    }
+-}
+```
+
+``` diff
+index e61e1af..cd8528d 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -7,15 +7,15 @@ interpreter: nu --stdin spec/interpreters/basic.nu
+=This program excavates a devlog (i.e. a bunch of .md files) from commit messages in multiple repositories.
+=
+=
+-## The `list` Subcommand
++## Listing Commits to Excavate
+=
+=``` yaml tbb
+=tags: [ focus ]
+=```
+=
+-IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
++Before you excavate, it might be smart to list the commits. You can use `--dry-run` flag for that. Consider the following scenario.
+=
+-  * Write `weblog.toml`
++  * Write `devlog.toml`
+=    
+=    ``` toml
+=    [[projects]]
+@@ -80,7 +80,7 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    ``` text
+=    Make Project Alpha work
+=    
+-    Coding hard. I should have used Tad Better Behavior to test my stuff.
++    Coding is hard for Bob. He should have used Tad Better Behavior to test his stuff before pushing it to prod!
+=    ```
+=
+=  * Write `LICENSE`
+@@ -109,8 +109,6 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    ```
+=
+=  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
+-  
+-
+=      
+=    ``` text
+=    I quit
+@@ -118,39 +116,44 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Bob is an asshole.
+=    ```
+=
++TODO: Setup a second project.
++
+=  * Change directory to `..`
+=  
+=    Leave the repository and go back to where the config file is.
+=
+-  * Run the `devlog.nu list --projects-dir .` command
++  * Run the `devlog.nu --projects-dir . --dry-run` command
+=  
+=    TODO: Make it `devlog list`, without the extension,
+=  
+-  * Expect the output to contain `the heading row`
++  * Expect the output to contain `the header row`
+=
+=    It contains column names, as produced by Nushell. The output format should be configurable.
+=    
+=    ``` regexp
+-    │ day +│ time +│ sha +│ author +│ email +│ title +│ project +│ path +│
++    │ +# +│ ++day +│ +project +│ +author +│ +email +│ +subject +│ +time +│ +sha +│ +path +│
+=    ```
++
+=  * Expect the output to contain `the first commit from Alice`
+-  
++
+=    ``` regex
+-    │ 2026-04-26 +│ 2026-04-27 13:22:00 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Make Project Alpha work +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
++      > NOTE: To make the spec portable, the timezone, sha and part of the path has to be expressed as wildcard.
++
+=  * Expect the output to contain `the late night commit from Alice`
+=  
+-    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
++    Notice that the logical day (in the second column) is one before the actual day (in the seventh column). That's because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    │ 2026-03-27 │ 2026-03-28 03:06 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Write a readme +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+=  
+=    ``` regex
+-    │ 2026-04-01 │ 2026-04-01 09:03 +│ [0-9a-f]+ +│ Bob +│ bob@example.com +│ I've lawyered up +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +3 +│ +2026-04-01 +│ +Project Alpha +│ +Bob +│ +bob@example.com +│ +I've lawyered up +│ +Wed, 1 Apr 2026 09:03:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=## The `excavate` Subcommand
+```
+
+# Write some thoughts about limiting time span and grouping
+
+
+
+``` diff
+index cd8528d..c0ffaca 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -156,6 +156,16 @@ TODO: Setup a second project.
+=    │ +3 +│ +2026-04-01 +│ +Project Alpha +│ +Bob +│ +bob@example.com +│ +I've lawyered up +│ +Wed, 1 Apr 2026 09:03:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
++## Grouped view
++
++When using `--dry-run` it might be useful to see the commits grouped by project and day. Maybe there should be another flag? Or value?
++
++
++## Limiting the time span
++
++With `--since` and `--until` flags you can select a span of time from which commits are excavated.
++
++
+=## The `excavate` Subcommand
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
+```
+
+# Export the main function, let it return data
+
+Now it's possible to do something like:
+
+❯ use devlog.nu
+❯ devlog --projects-dir . --dry-run | group-by project day --to-table
+
+Helpful in development, but also can be useful in advanced use cases.
+
+``` diff
+index 6677495..f276b89 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -2,7 +2,7 @@
+=
+=use std/log
+=
+-def main [
++export def main [
+=    --since: datetime = 1970-01-01          # How far back should we look?
+=    --until: datetime                       # When did you last committed anything good?
+=    --projects-dir: path = "~/Projects",    # Where do you keep your projects?
+@@ -46,8 +46,7 @@ def main [
+=    if $dry_run {
+=        $commits
+=        | update time { format date }
+-        | print 
+-        exit 0
++        | return $in
+=    }
+=    
+=    # TODO: Allow setting in a config file
+@@ -95,6 +94,7 @@ def main [
+=        
+=    # }
+=}
++
+=def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+```
\ No newline at end of file
new file mode 100644
index 0000000..41e3abd
--- /dev/null
+++ b/content/devlog/2026-04-18-devlog-excavator.md
@@ -0,0 +1,457 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 6
+
+
+# Fix some regular expressions in the spec
+
+Regular expressions are hard to debug, and this one was tricky, because
+it made the spec evaluation flaky - once in a while it would randomly
+fail. The problem was that only one space was allowed int the time
+column, after the value. Somehow, sometimes there would be more than
+one, which is fine, but would result in no matches to the pattern.
+
+Fortunately Nushell comes with a brilliant built-in `explore regex`
+command, that is a lifesaver in such circumstances.
+
+``` diff
+index c0ffaca..a7a3728 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -137,7 +137,7 @@ TODO: Setup a second project.
+=  * Expect the output to contain `the first commit from Alice`
+=
+=    ``` regex
+-    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
++    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=      > NOTE: To make the spec portable, the timezone, sha and part of the path has to be expressed as wildcard.
+@@ -147,7 +147,7 @@ TODO: Setup a second project.
+=    Notice that the logical day (in the second column) is one before the actual day (in the seventh column). That's because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
++    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+```
+
+# Correct the story timeline in the basic spec
+
+The final commit from Alice was dated out of order.
+
+``` diff
+index a7a3728..209b098 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -108,7 +108,7 @@ Before you excavate, it might be smart to list the commits. You can use `--dry-r
+=    }
+=    ```
+=
+-  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
++  * On `2026-04-04 14:18` commit as `Alice <alice@example.com>`
+=      
+=    ``` text
+=    I quit
+```
+
+# Fix crashing when excavating unlisted projects
+
+By unlisted projects I mean ones that are not in the configuration file.
+The intention is to warn about any activity in such projects, because
+maybe I want to include them in my devlog.
+
+In such case the project lookup returned an empty list, and this was
+breaking the `first | get name` part of the pipeline.
+
+I'm still learning good techniques to debug complex Nushell code.
+Sometimes the errors are not clear, esp. in long pipelines. So I had to
+stuff some debug logging calls. And because this makes closures complex,
+I decided to name them and move the definitions out of the pipeline. I
+think it aids readability of my code.
+
+It's a pity that built-in log functions don't pass on piped values. It
+would be nice to write code like this:
+
+``` nushell
+{ a: 1, b: coocoo }
+| log info $"Got ($in)"
+| get b
+```
+
+Alas it won't work, because `log info` outputs nothing. The workaround
+is to explicitly return `$in`, like this:
+
+``` nushell
+{ a: 1, b: coocoo }
+| (log info $"Got ($in)"; $in)
+| get b
+```
+
+But that's brittle - it's very easy to accidentally not return it, and
+write a bug while debugging. Maybe I'll write a wrapper for this, a
+`spy` command that emmits logs, but also passes the value. I already
+have a similar mechanism in `tbb observe` family of commands.
+
+``` diff
+index f276b89..09691d2 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -19,14 +19,10 @@ export def main [
+=    | let config
+=
+=    $until | default (date now) | let until
+-    
+-    $projects_dir
+-    | projects
+-    | each { project log $since $until }
+-    | flatten
+-    | update time { |commit| $commit.time | into datetime }
+-    | insert day { 
+-        get time
++
++    let commit_day = { |commit|
++        $commit
++        | get time
+=        | if ($in | format date %T) < $day_start {
+=           $in - 1day
+=        } else {
+@@ -34,18 +30,35 @@ export def main [
+=        }
+=        | format date %F
+=    }
+-    | insert project { |commit|
++    let commit_project = { |commit|
+=        $config.projects
+=        | where path == $commit.path
+=        | first
+-        | get name
++        | if ($in | is-not-empty) { get name } # Kind of like Maybe.andThen ...
++    }
++    let extract_log = { |project_path|
++        $project_path
++        | project log $since $until
++        | do { 
++          $"Extracted ($in | length) commits from ($project_path)"
++          | log info $in
++          $in
++        }
+=    }
++
++    $projects_dir
++    | projects
++    | each $extract_log
++    | flatten
++    | update time { |commit| $commit.time | into datetime }
++    | insert day $commit_day
++    | insert project $commit_project
+=    | move day project author email subject time sha path --first
+=    | let commits
+=
+=    if $dry_run {
+=        $commits
+-        | update time { format date }
++        | update time { format date } # For the output, format date
+=        | return $in
+=    }
+=    
+@@ -148,15 +161,18 @@ def "project log" [
+=    | str join " "
+=    | let parse_format
+=
+-    log debug $"Log format ($log_format)"
+-    log debug $"Parse format ($parse_format)"
+-
+-    $log_format
+-    | $"git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)"
+-    | log info $in
+-
+=    $log_format
+=    | git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)
++    | complete
++    | if ($in.exit_code != 0) {
++      log error $"Failed to run `git log` in ($project_path)."
++      log error $in.stderr
++      $in.stdout
++    } else {
++      log debug $"Done with `git log` in ($project_path)."
++      $in.stdout
++    }
++    | lines
+=    | parse $parse_format
+=    | reverse
+=    | insert path $project_path
+```
+
+# Re-implement writing to markdown files
+
+It's kind of a refactor, because it was possible to write a few days
+ago, but the code was a mess and it was hard to implement new needed
+features, like --until (already implemented) and unlisted projects
+warning (coming soon).
+
+``` diff
+index 09691d2..a262ed2 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -41,13 +41,13 @@ export def main [
+=        | project log $since $until
+=        | do { 
+=          $"Extracted ($in | length) commits from ($project_path)"
+-          | log info $in
++          | log debug $in
+=          $in
+=        }
+=    }
+=
+=    $projects_dir
+-    | projects
++    | project list
+=    | each $extract_log
+=    | flatten
+=    | update time { |commit| $commit.time | into datetime }
+@@ -55,6 +55,17 @@ export def main [
+=    | insert project $commit_project
+=    | move day project author email subject time sha path --first
+=    | let commits
++    | group-by --to-table day project
++    | sort-by day
++    | let entries
++
++    let stats = {
++        commits: ($commits | length),
++        projects: ($entries | get project | uniq | length),
++        days: ($entries | get day | uniq | length)
++    }
++
++    log info $"Excavated ($stats.commits) commits from ($stats.projects) projects across ($stats.days) days"
+=
+=    if $dry_run {
+=        $commits
+@@ -65,67 +76,24 @@ export def main [
+=    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+=
+-    # for project_path in ($projects_dir | projects) {
+-    #     let project = 
+-    #     if ($project | is-empty) {
+-    #         continue
+-    #     }
+-
+-    #     let project_slug = $project.name | str kebab-case
+-
+-    #     if ($project | get --optional ignore | default false ) {
+-    #         continue
+-    #     }
+-
+-    #     # TODO: Iterate over days and write to a file
+-    #     for day in (main days $since) {
+-    #         let date = $day.start | format date %Y-%m-%d
+-    #         let out_path = ($out_dir | path join $"($date)-($project_slug).md")
+-
+-    #         try {
+-    #             # TODO: Catch and print errors
+-    #             $project_path
+-    #             | project log $day.start $day.end
+-    #             | reverse
+-    #             | let log
+-
+-    #             if ($log | is-empty) {
+-    #                 "No commits on that day"
+-    #                 continue
+-    #             }
+-
+-    #             $log
+-    #             | format log $project.name $config
+-    #             | save --force $out_path
+-    #         } catch { |error|
+-    #             print --stderr $"Project path: ($project_path)"
+-    #             print --stderr $"Date: ($date)"
+-    #             print --stderr $"Output path: ($out_path)"
+-    #             print --stderr $error.rendered
+-    #         }
+-    #     }
+-        
+-    # }
+-}
+=
+-def "main days" [
+-    since: datetime,
+-    --day-start: string = "04:00"
+-] {
+-    let until = $day_start | date from-human
+-    # TODO: Allow setting --until: datetime and be smart about day-start - the last day might be a fraction!
+-    
+-    0..
+-    | each { |n| $n * 1day }
+-    | each { |duration| $until - $duration }
+-    | each { |start| {
+-        start: ([$start $since] | math max),
+-        end: ($start + 1day)
+-    } }
+-    | take while { |day| $day.start < $day.end }
++    for entry in $entries {
++        $entry
++        | get day project
++        | str join "-"
++        | str kebab-case
++        | { parent: $out_dir, stem: $in, extension: "md" }
++        | path join
++        | let out_path
++        
++        log info $"Writing to ($out_path)..."
++        $entry
++        | format entry $in.project $config
++        | save --force $out_path
++    }
+=}
+=
+-def "projects" []: path -> list<path> {
++def "project list" []: path -> list<path> {
+=    $in
+=    | path join "**/.git"
+=    | glob $in
+@@ -178,21 +146,8 @@ def "project log" [
+=    | insert path $project_path
+=}
+=
+-def "format commit" [] {
+-    [
+-        $"## ($in.subject | str trim)"
+-        ""
+-        ($in.body | str trim)
+-        ""
+-        ($in.diff | each { |diff| format diff } | str join "\n\n" )
+-    ] | str join "\n"
+-}
+-
+-def "format diff" [] {
+-    $"``` diff\n($in | str trim)\n```"
+-}
+=
+-def "format log" [
++def "format entry" [
+=    title: string
+=    config: record
+=] {
+@@ -206,8 +161,34 @@ def "format log" [
+=        $""
+=        $"# ($title)"
+=        $""
+-        $"Commits: ($in | length)"
++        $"Commits: ($in.items | length)"
+=        $""
+-        ($in | each { | commit | format commit } | str join "\n\n")
++        ($in.items | each { | commit | $commit | format commit } | str join "\n\n")
++    ] | str join "\n"
++}
++
++def "format commit" [] {
++    $in | do {
++        cd $in.path
++        git show --no-patch --format="%b" $in.sha
++    }
++    | let body
++
++    $in | do {
++        cd $in.path
++        git show --format="" $in.sha
++    }
++    | let patch
++    
++    [
++        $"## ($in.subject | str trim)"
++        ""
++        ($body | str trim)
++        ""
++        ($patch | each { |diff| format diff } | str join "\n\n" )
+=    ] | str join "\n"
+=}
++
++def "format diff" [] {
++    $"``` diff\n($in | str trim)\n```"
++}
+```
+
+# Split patches by file, use `=` as context indicator
+
+I often have markdown code blocks nested in my diffs (coming from
+documentation or specs in markdown files). When those end up in devlog
+entries, then nested triple backticks (```) are tripping up many
+markdown tools (like syntax highlighters). Seems like tools "think" that
+those backtics demarkate the end of the diff block. In principle it
+should be unambiguous, because they are indented with at least one extra
+space compared to actual code block boundaries, but it is what it is.
+
+So to prevent this now we ask git to use equal sign `=` in front of any
+context line. This seems to do the trick.
+
+``` diff
+index a262ed2..f082bba 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -176,7 +176,8 @@ def "format commit" [] {
+=
+=    $in | do {
+=        cd $in.path
+-        git show --format="" $in.sha
++        git show --format="" --output-indicator-context='=' $in.sha
++        | split row --regex "(?m)^diff --git .+" | skip 1
+=    }
+=    | let patch
+=    
+@@ -185,7 +186,7 @@ def "format commit" [] {
+=        ""
+=        ($body | str trim)
+=        ""
+-        ($patch | each { |diff| format diff } | str join "\n\n" )
++        ($patch | each { format diff } | str join "\n\n" )
+=    ] | str join "\n"
+=}
+=
+```
+
+# Do not emit the title h1
+
+Instead make each commit subject an h1 and let the rendering
+system (like Zola) decide how to present. For example, I can use a
+template to to demote heading from the markdown document and insert a
+context dependent h1. If a devlog entry is presented as it's own page,
+it should include the date and project name. If it's rendered as a
+timeline under a project page, it should contain just the date.
+
+``` diff
+index f082bba..0b8fa4c 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -159,10 +159,10 @@ def "format entry" [
+=        ($frontmatter | to yaml)
+=        $"---"
+=        $""
+-        $"# ($title)"
+-        $""
++        # TODO: Write this in front-matter (extra.stats.commits or something)
+=        $"Commits: ($in.items | length)"
+=        $""
++        $""
+=        ($in.items | each { | commit | $commit | format commit } | str join "\n\n")
+=    ] | str join "\n"
+=}
+@@ -182,7 +182,7 @@ def "format commit" [] {
+=    | let patch
+=    
+=    [
+-        $"## ($in.subject | str trim)"
++        $"# ($in.subject | str trim)"
+=        ""
+=        ($body | str trim)
+=        ""
+```
\ No newline at end of file
new file mode 100644
index 0000000..bc3ac1b
--- /dev/null
+++ b/content/devlog/_index.md
@@ -0,0 +1,7 @@
+---
+title: Tad Devlog
+template: blog.html
+---
+
+I write as I work as I write.
+

I want to add fancy icons, technologies, techniques, disciplines and devlogs. So I need a place to put metadata, like the fornt-matter of a markdown document.

index 3201b16..2efbc94 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -1,6 +1,6 @@
=---
=title: "Tad Works"
-sort_by: "date"
+sort_by: "weight"
=template: "works.html"
=description: "Featured works of Tad Lispy"
=---
@@ -46,84 +46,6 @@ Here is what some of my clients have to say about me:
=> <cite>Neyts Zupan, Open Source geek & founder, Niteo</cite>
={% end %}
=
-Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
-
-# Lead Studio
-
-  - data engineering
-  - business process automation
-  - web extensions
-  - user experience
-  - internal tooling
-  - LinkedIn Sales Navigator
-  - Google Cloud
-  - Elm programming
-  - JavaScript programming
-
-In 2021, we promised our client, Saleslift Studio, to deliver a working software solution to improve prospecting performance within a fixed time and at a fixed price. In just 6 weeks (a single development cycle), we provided them with a useful solution - Lead Studio. Further incremental development enabled them to improve a number of key performance indicators. Thanks to their partnership with Software Garden, prospecting specialists at Saleslift Studio are now able to enrich leads 20⨉ faster than before.
-
-[Read our case study](https://software.garden/lead-studio.html)
-
-
-# Agile Plan Exporter
-
-  - agile software development
-  - Rust programming
-  - collaboration
-  - free / open source software
-  - markdown processing
-  - iCalendar 
-
-At Software Garden we attempted to create a work environment where we can be efficient and happy at the same time. Part of it was agile planning - a simple and collaborative process where everyone had a chance to catch up with all the latest developments and choose the priorities they will work on. To facilitate it, we created several tools, including this one. It exports our schedule from a Markdown document,  to iCalendar format. Markdown is a flexible and lightweight plain text format, ideal for taking notes while planning, while iCalendar is the industry standard for calendaring data. This enabled  every team member to synchronize their personal calendars with our shared plan! 
-
-The tool might still be useful for you. [Learn how you can use it too](https://gitlab.com/software-garden/markdown-to-icalendar-export).
-
-
-# Elm Springs
-
-  - Elm programming
-  - physics simulation
-  - animations
-  - free / open source software
-
-An Elm package implementing a rough model of a physical mass attached to a spring, as described in physics by Hooke's law. Good for making smooth and organic looking animations or modeling oscillating values (for example emotions). High physical accuracy is not a priority - performance and API simplicity is more important.
-
-[See the package](https://package.elm-lang.org/packages/tad-lispy/springs/latest/).
+# Featured Projects
=
-
-# Ethical Software Garden
-
-  - collaboration
-  - digital ethics
-  - CMS
-  - GitLab API
-  - free / open source software
-  - GraphQL
-  
-
-After taking part in the Offsite Sustainability meetup hosted by [Railslove](https://railslove.com/) we realized that resources about digital ethics are very scattered. This website uses our GitLab GraphQL API and Elm Pages static site generator to produce a catalogue of articles, videos, websites etc. about digital ethics. The idea is to use GitLab issues, comments, reactions (up and down votes) and moderation to generate web content. The webpage is re-generated daily in a CI/CD pipeline for fast loading, but the content is also loaded live.
-
-[See the catalogue](https://ethical.software.garden/)
-
-
-# Elm Tree Workshop
-
-  - teaching
-  - Elm programming
-  - web development
-
-A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
-
-[Visit the website](https://elm-tree.software.garden/)
-
-
-# Word Snake
-
-  - game development
-  - web development
-  - education technology
-  - Elm programming
-
-Think fast - guess a password, collect letters and save the snake from a fire trap! In this simple word puzzle game you control a snake while guessing a password. Challenges are designed to let players learn various facts about the world or improve their arithmetic and logical thinking while playing. It's extra fun to play in a group on a phone or a tablet - one player controls the snake while others help to guess the password. It can be a nice family exercise that brings people together.
-
-[Play the game](https://word-snake.software.garden/ "Play Word Snake in your browser")
+Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
new file mode 100644
index 0000000..cb5136c
--- /dev/null
+++ b/content/works/agile-planner/index.md
@@ -0,0 +1,18 @@
+---
+title: Agile Planner
+weight: 3
+---
+
+
+# Agile Plan Exporter
+
+  - agile software development
+  - Rust programming
+  - collaboration
+  - free / open source software
+  - markdown processing
+  - iCalendar 
+
+At Software Garden we attempted to create a work environment where we can be efficient and happy at the same time. Part of it was agile planning - a simple and collaborative process where everyone had a chance to catch up with all the latest developments and choose the priorities they will work on. To facilitate it, we created several tools, including this one. It exports our schedule from a Markdown document,  to iCalendar format. Markdown is a flexible and lightweight plain text format, ideal for taking notes while planning, while iCalendar is the industry standard for calendaring data. This enabled  every team member to synchronize their personal calendars with our shared plan! 
+
+The tool might still be useful for you. [Learn how you can use it too](https://gitlab.com/software-garden/markdown-to-icalendar-export).
new file mode 100644
index 0000000..154cb72
--- /dev/null
+++ b/content/works/ehtical-software-garden/elm-tree-worksho/index.html
@@ -0,0 +1,14 @@
+---
+title: Elm Tree Workshop
+weight: 2
+---
+
+# Elm Tree Workshop
+
+  - teaching
+  - Elm programming
+  - web development
+
+A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
+
+[Visit the website](https://elm-tree.software.garden/)
new file mode 100644
index 0000000..8812b5b
--- /dev/null
+++ b/content/works/ehtical-software-garden/index.md
@@ -0,0 +1,18 @@
+---
+title: Ethical Software Garden
+weight: 3
+---
+
+# Ethical Software Garden
+
+  - collaboration
+  - digital ethics
+  - CMS
+  - GitLab API
+  - free / open source software
+  - GraphQL
+  
+
+After taking part in the Offsite Sustainability meetup hosted by [Railslove](https://railslove.com/) we realized that resources about digital ethics are very scattered. This website uses our GitLab GraphQL API and Elm Pages static site generator to produce a catalogue of articles, videos, websites etc. about digital ethics. The idea is to use GitLab issues, comments, reactions (up and down votes) and moderation to generate web content. The webpage is re-generated daily in a CI/CD pipeline for fast loading, but the content is also loaded live.
+
+[See the catalogue](https://ethical.software.garden/)
new file mode 100644
index 0000000..bc59274
--- /dev/null
+++ b/content/works/elm-springs/index.md
@@ -0,0 +1,16 @@
+---
+title: Elm Springs
+weight: 2
+---
+
+# Elm Springs
+
+  - Elm programming
+  - physics simulation
+  - animations
+  - free / open source software
+
+An Elm package implementing a rough model of a physical mass attached to a spring, as described in physics by Hooke's law. Good for making smooth and organic looking animations or modeling oscillating values (for example emotions). High physical accuracy is not a priority - performance and API simplicity is more important.
+
+[See the package](https://package.elm-lang.org/packages/tad-lispy/springs/latest/).
+
new file mode 100644
index 0000000..154cb72
--- /dev/null
+++ b/content/works/elm-tree-worksho/index.md
@@ -0,0 +1,14 @@
+---
+title: Elm Tree Workshop
+weight: 2
+---
+
+# Elm Tree Workshop
+
+  - teaching
+  - Elm programming
+  - web development
+
+A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
+
+[Visit the website](https://elm-tree.software.garden/)
new file mode 100644
index 0000000..b7a52b8
--- /dev/null
+++ b/content/works/lead-studio/index.md
@@ -0,0 +1,23 @@
+---
+title: Lead Studio
+weight: 1
+---
+
+# Lead Studio
+
+  - data engineering
+  - business process automation
+  - web extensions
+  - user experience
+  - internal tooling
+  - LinkedIn Sales Navigator
+  - Google Cloud
+  - Elm programming
+  - JavaScript programming
+
+In 2021, we promised our client, Saleslift Studio, to deliver a working software solution to improve prospecting performance within a fixed time and at a fixed price. In just 6 weeks (a single development cycle), we provided them with a useful solution - Lead Studio. Further incremental development enabled them to improve a number of key performance indicators. Thanks to their partnership with Software Garden, prospecting specialists at Saleslift Studio are now able to enrich leads 20⨉ faster than before.
+
+[Read our case study](https://software.garden/lead-studio.html)
+
+
+
new file mode 100644
index 0000000..f55c819
--- /dev/null
+++ b/content/works/tad-better-behavior/index.md
@@ -0,0 +1,9 @@
+---
+title: Tad Better Behavior
+weight: 0
+---
+
+# TBB: Tad Better Behavior
+
+A <abbrev title="Behhavior Driven Development">BDD</abbrev> tool that works well on Unix.
+
new file mode 100644
index 0000000..431d6d1
--- /dev/null
+++ b/content/works/word-snake/index.md
@@ -0,0 +1,15 @@
+---
+title: Word Snake
+weight: 2
+---
+
+# Word Snake
+
+  - game development
+  - web development
+  - education technology
+  - Elm programming
+
+Think fast - guess a password, collect letters and save the snake from a fire trap! In this simple word puzzle game you control a snake while guessing a password. Challenges are designed to let players learn various facts about the world or improve their arithmetic and logical thinking while playing. It's extra fun to play in a group on a phone or a tablet - one player controls the snake while others help to guess the password. It can be a nice family exercise that brings people together.
+
+[Play the game](https://word-snake.software.garden/ "Play Word Snake in your browser")
index 335ae7d..d5d8c82 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -42,9 +42,13 @@ html.home {
=            }
=        }
=    }
+}
=
-
-
+html.works-index {
+    h1 {
+        font-size: 1rem;
+        border-bottom: solid 2px currentColor;
+    }
=}
=
=nav.main-nav {
index dcead87..ec1694f 100644
--- a/templates/works.html
+++ b/templates/works.html
@@ -24,6 +24,15 @@
=
=<main>
=    {{ section.content | safe }}
+
+    <section id="featured-projects">
+        {% for project in section.pages %}
+        <article>
+            <h2>{{ project.title }}</h2>
+            <p><a href="{{ project.path }}">Read more about {{ project.title }}</a> </p>
+        </article>
+        {% endfor %}
+    </section>
=</main>
=
={% include "includes/footer.html" %}

Port an improved rendering context inspector from escco.eu

Key features:

index cbbde5c..4e92e3d 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -37,16 +37,6 @@
=        {% block content %}
=        {% endblock content %}
=
-        {# Fix the closing comment bracket on this line to dump available data # }
-        {%- if config.mode == "serve" %}
-        <article>
-            <header>Template context</header>
-            <pre><code>
-                {{- __tera_context -}}
-            </code></pre>
-        </article>
-        {% endif -%}
-        {# #}
-
+        {% include "shortcodes/debug.html" %}
=    </body>
=</html>
new file mode 100644
index 0000000..4414dbd
--- /dev/null
+++ b/templates/shortcodes/debug.html
@@ -0,0 +1,35 @@
+{%- if config.mode == "serve" %}
+<dialog id="rendering-context-dialog" modal>
+    <article style="padding-bottom: 0">
+        <header style="margin-bottom: 1rem">
+            <button
+                aria-label="Close"
+                class="close outline"
+                command="close"
+                commandfor="rendering-context-dialog"
+            ></button>
+            Rendering context
+        </header>
+        <pre style="max-height: 60vh; overflow: scroll">{{ __tera_context | escape | safe }}</pre>
+    </article>
+</dialog>
+
+<button
+    command="show-modal"
+    commandfor="rendering-context-dialog"
+    accesskey="i"
+    title="Open rendering context dialog"
+    class="outline"
+    style="
+        position: fixed;
+        bottom: 2rem;
+        left: 2rem;
+        width: 2rem;
+        height: 2rem;
+        padding: 0;
+        margin: 0;
+        border-radius: 50%;
+        font-weight: 900;
+    "
+>{}</button>
+{% endif -%}

I've accidentally used a link to my profile that only works for me when I'm logged in 🤦

index 2efbc94..e3a354d 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -48,4 +48,4 @@ Here is what some of my clients have to say about me:
=
=# Featured Projects
=
-Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
+Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/tad-lispy "Tad Lispy on GitLab") or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.

Edit a devlog entry

Mostly I want to see what's the experience of editing the entry emitted by Devlog Excavator. It's fine, but I see some operations that could have been already performed by Excavator:

  1. If the file is new (and not binary), then emit the file contents, not the diff.

  2. Group all the new binary files and emit a list of them.

  3. Modified binary files should also form a list.

  4. Modified files don't need the index <hex>..<hex> line at the beginning. It's not useful and can be distracting.

  5. All operations should be explained, like:

    Modified index.html:

    Deleted dont-touch-this.exe.

    New file at fonts/caveat/caveat.css:

    Renamed big.txt to tad.txt: (colon only if contents modified - then also diff).

    Modified binary files: (take singular and plural into account)

    Deleted binary files:

    New binary files:

  6. The order of operations should be as illustrated above.

So basically Excavator needs to be much smarter about processing patch.

index 17c5bff..1d68057 100644
--- a/content/devlog/2026-04-09-better-tech-club-website.md
+++ b/content/devlog/2026-04-09-better-tech-club-website.md
@@ -74,436 +74,144 @@ index 190ac4d..4bcf4cd 100644
=
=# Import the branding source SVG with a tagline
=
-
-
-``` diff
-new file mode 100644
-index 0000000..7ff8966
---- /dev/null
-+++ b/better-tech-club.svg
-@@ -0,0 +1,184 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="1000"
-+   height="1000"
-+   viewBox="0 0 1000 1000"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2"><inkscape:path-effect
-+       effect="powerstroke"
-+       message=""
-+       id="path-effect5"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       scale_width="1"
-+       interpolator_type="CentripetalCatmullRom"
-+       interpolator_beta="0.75"
-+       start_linecap_type="round"
-+       end_linecap_type="round"
-+       offset_points="2.3035803,8.7803873"
-+       linejoin_type="spiro"
-+       miter_limit="4"
-+       not_jump="true"
-+       sort_points="true" /><inkscape:path-effect
-+       effect="simplify"
-+       id="path-effect4"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       threshold="0.014201184"
-+       steps="1"
-+       smooth_angles="0"
-+       helper_size="0"
-+       simplify_individual_paths="false"
-+       simplify_just_coalesce="false"
-+       step="1" /></defs><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:page
-+       x="0"
-+       y="0"
-+       width="1000"
-+       height="1000"
-+       id="page5"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="logotype" /><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="0"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /><inkscape:page
-+       x="1010"
-+       y="0"
-+       width="32"
-+       height="32"
-+       id="page9"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="icon" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"><text
-+       xml:space="preserve"
-+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:#ffffff;paint-order:markers stroke fill;stroke-width:10;stroke-dasharray:none"
-+       x="546.70502"
-+       y="380"
-+       id="text1"><tspan
-+         sodipodi:role="line"
-+         id="tspan1"
-+         x="546.70502"
-+         y="380">Big</tspan><tspan
-+         sodipodi:role="line"
-+         x="546.70502"
-+         y="559.08374"
-+         id="tspan2">Tech</tspan><tspan
-+         sodipodi:role="line"
-+         x="546.70502"
-+         y="738.16748"
-+         id="tspan3">Club</tspan></text><g
-+       id="g6-8"
-+       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
-+         fill="#fac036"
-+         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+         id="path1-0" /><path
-+         fill="#e48c15"
-+         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+         id="path2-8" /></g><text
-+       xml:space="preserve"
-+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#fac036;fill-opacity:1;stroke-width:1.69307"
-+       x="313.17581"
-+       y="386.3519"
-+       id="text4"
-+       transform="rotate(-15)"><tspan
-+         sodipodi:role="line"
-+         id="tspan4"
-+         x="313.17581"
-+         y="386.3519"
-+         style="stroke-width:1.69307">Better</tspan></text><path
-+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
-+       id="path-1"
-+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
-+       sodipodi:nodetypes="cc"
-+       transform="translate(362.34816,24.840675)"
-+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
-+       inkscape:path-effect="#path-effect4;#path-effect5" /><text
-+       xml:space="preserve"
-+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:143.267px;line-height:1.25;font-family:'Adwaita Mono';-inkscape-font-specification:'Adwaita Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
-+       x="63.714287"
-+       y="580"
-+       id="text5"><tspan
-+         sodipodi:role="line"
-+         id="tspan5"
-+         x="63.714287"
-+         y="580" /></text></g><g
-+     id="g6"
-+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
-+       fill="#fac036"
-+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+       id="path1" /><path
-+       fill="#e48c15"
-+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+       id="path2" /></g><text
-+     xml:space="preserve"
-+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#fac036;fill-opacity:1;stroke-width:3.88772"
-+     x="495.45914"
-+     y="864.35309"
-+     id="text6"><tspan
-+       sodipodi:role="line"
-+       id="tspan6"
-+       x="211.18976"
-+       y="864.35309"
-+       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
-+       sodipodi:role="line"
-+       x="211.18976"
-+       y="942.10736"
-+       style="stroke-width:3.88772"
-+       id="tspan7">for digital independence</tspan></text></svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..6fe07e0
---- /dev/null
-+++ b/better-tech-club_icon.svg
-@@ -0,0 +1,84 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="32"
-+   height="32"
-+   viewBox="0 0 32 32"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2" /><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="-1010"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /><inkscape:page
-+       x="0"
-+       y="0"
-+       width="32"
-+       height="32"
-+       id="page9"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="icon" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"
-+     transform="translate(-1010)"><g
-+       id="g6-8"
-+       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
-+         fill="#fac036"
-+         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+         id="path1-0" /><path
-+         fill="#e48c15"
-+         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+         id="path2-8" /></g></g></svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..470c6e3
---- /dev/null
-+++ b/better-tech-club_logotype.svg
-@@ -0,0 +1,137 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="1000"
-+   height="1000"
-+   viewBox="0 0 1000 1000"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2"><inkscape:path-effect
-+       effect="powerstroke"
-+       message=""
-+       id="path-effect5"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       scale_width="1"
-+       interpolator_type="CentripetalCatmullRom"
-+       interpolator_beta="0.75"
-+       start_linecap_type="round"
-+       end_linecap_type="round"
-+       offset_points="2.3035803,8.7803873"
-+       linejoin_type="spiro"
-+       miter_limit="4"
-+       not_jump="true"
-+       sort_points="true" /><inkscape:path-effect
-+       effect="simplify"
-+       id="path-effect4"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       threshold="0.014201184"
-+       steps="1"
-+       smooth_angles="0"
-+       helper_size="0"
-+       simplify_individual_paths="false"
-+       simplify_just_coalesce="false"
-+       step="1" /></defs><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:page
-+       x="0"
-+       y="0"
-+       width="1000"
-+       height="1000"
-+       id="page5"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="logotype" /><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="0"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"><g
-+       id="text1"
-+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
-+       aria-label="Big&#10;Tech&#10;Club"><path
-+         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
-+         id="path11" /><path
-+         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
-+         id="path12" /><path
-+         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
-+         id="path13" /></g><path
-+       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
-+       id="text4"
-+       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
-+       transform="rotate(-15)"
-+       aria-label="Better" /><path
-+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
-+       id="path-1"
-+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
-+       sodipodi:nodetypes="cc"
-+       transform="translate(362.34816,24.840675)"
-+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
-+       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
-+     id="g6"
-+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
-+       fill="#fac036"
-+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+       id="path1" /><path
-+       fill="#e48c15"
-+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+       id="path2" /></g><g
-+     id="text6"
-+     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
-+     aria-label="Neighborhood communities&#10;for digital independence"><path
-+       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
-+       id="path14" /><path
-+       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
-+       id="path15" /></g></svg>
-```
+It's exported using Inkscape from our branding repository.
+
+<svg
+   width="1000"
+   height="1000"
+   viewBox="0 0 1000 1000"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
+   xml:space="preserve"
+   sodipodi:docname="better-tech-club.svg"
+   inkscape:export-filename="export/better-tech-club.png"
+   inkscape:export-xdpi="12.288"
+   inkscape:export-ydpi="12.288"
+   inkscape:export-batch-name="better-tech-club"
+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+     id="defs2"><inkscape:path-effect
+       effect="powerstroke"
+       message=""
+       id="path-effect5"
+       is_visible="true"
+       lpeversion="1.3"
+       scale_width="1"
+       interpolator_type="CentripetalCatmullRom"
+       interpolator_beta="0.75"
+       start_linecap_type="round"
+       end_linecap_type="round"
+       offset_points="2.3035803,8.7803873"
+       linejoin_type="spiro"
+       miter_limit="4"
+       not_jump="true"
+       sort_points="true" /><inkscape:path-effect
+       effect="simplify"
+       id="path-effect4"
+       is_visible="true"
+       lpeversion="1.3"
+       threshold="0.014201184"
+       steps="1"
+       smooth_angles="0"
+       helper_size="0"
+       simplify_individual_paths="false"
+       simplify_just_coalesce="false"
+       step="1" /></defs><sodipodi:namedview
+     id="base"
+     pagecolor="#3d3d3d"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="382.54477"
+     inkscape:cy="569.92807"
+     inkscape:document-units="px"
+     inkscape:current-layer="svg8"
+     inkscape:document-rotation="0"
+     showgrid="true"
+     units="px"
+     scale-x="1"
+     inkscape:showpageshadow="0"
+     inkscape:pagecheckerboard="1"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:window-width="1920"
+     inkscape:window-height="1011"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:export-bgcolor="#2c2c2c00"
+     showguides="false"><inkscape:page
+       x="0"
+       y="0"
+       width="1000"
+       height="1000"
+       id="page5"
+       margin="0"
+       bleed="0"
+       inkscape:label="logotype" /><inkscape:grid
+       id="grid6"
+       units="px"
+       originx="0"
+       originy="0"
+       spacingx="1"
+       spacingy="1"
+       empcolor="#0099e5"
+       empopacity="0.30196078"
+       color="#0099e5"
+       opacity="0.14901961"
+       empspacing="5"
+       enabled="true"
+       visible="true" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"><g
+       id="text1"
+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
+       aria-label="Big&#10;Tech&#10;Club"><path
+         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
+         id="path11" /><path
+         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
+         id="path12" /><path
+         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
+         id="path13" /></g><path
+       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
+       id="text4"
+       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
+       transform="rotate(-15)"
+       aria-label="Better" /><path
+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
+       id="path-1"
+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
+       sodipodi:nodetypes="cc"
+       transform="translate(362.34816,24.840675)"
+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
+       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
+     id="g6"
+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
+       fill="#fac036"
+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
+       id="path1" /><path
+       fill="#e48c15"
+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
+       id="path2" /></g><g
+     id="text6"
+     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
+     aria-label="Neighborhood communities&#10;for digital independence"><path
+       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
+       id="path14" /><path
+       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
+       id="path15" /></g></svg>
=
=``` diff
=index 4bcf4cd..c2242e1 100644
@@ -560,48 +268,6 @@ index 6fe07e0..dcf30e6 100644
==     units="px"
=```
=
-``` diff
-index 470c6e3..344c3bc 100644
---- a/better-tech-club_logotype.svg
-+++ b/better-tech-club_logotype.svg
-@@ -57,7 +57,7 @@
-=     inkscape:cx="382.54477"
-=     inkscape:cy="569.92807"
-=     inkscape:document-units="px"
--     inkscape:current-layer="svg8"
-+     inkscape:current-layer="layer1"
-=     inkscape:document-rotation="0"
-=     showgrid="true"
-=     units="px"
-@@ -103,11 +103,11 @@
-=       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
-=       aria-label="Big&#10;Tech&#10;Club"><path
-=         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
--         id="path11" /><path
-+         id="path15" /><path
-=         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
--         id="path12" /><path
-+         id="path16" /><path
-=         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
--         id="path13" /></g><path
-+         id="path17" /></g><path
-=       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
-=       id="text4"
-=       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
-@@ -130,8 +130,8 @@
-=       id="path2" /></g><g
-=     id="text6"
-=     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
--     aria-label="Neighborhood communities&#10;for digital independence"><path
--       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
--       id="path14" /><path
-+     aria-label="neighbourhood communities&#10;for digital independence"><path
-+       d="m 234.42265,862.86021 q -1.36847,-0.12441 -2.30153,-0.55983 -0.87084,-0.49763 -1.43067,-1.92831 -0.24882,-0.99525 -0.24882,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05745 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31101,-0.24881 -1.11966,0.0622 -1.30627,0.62204 -2.86135,1.67949 -1.49289,0.99526 -3.17238,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05271,2.42593 -0.62204,0.93305 -1.30628,0.93305 -0.49762,0.24881 -1.05745,-0.12441 -0.55983,-0.37322 -1.18187,-0.87084 -0.43542,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68423,-1.05746 0,-0.99525 0.1244,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24882,-0.49762 0.55983,-1.05746 0.24882,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.1244,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30628,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49762,-0.37322 0.49763,-0.37322 1.18187,-0.87085 0.68423,-0.55983 1.18186,-0.87085 0.31102,-0.31102 1.36848,-1.11966 1.05745,-0.87085 2.30152,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05745,-0.55983 1.30627,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24882,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.1244,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24882,0.87085 0.18661,0.43543 0.43542,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 19.22083,0.24881 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68423 0.49762,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99575,15.05322 q -1.49288,0 -2.61255,-1.55508 -1.05745,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.12441,-0.93305 0.24881,-1.9283 0.24882,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.6795,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24882,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68423,-0.37322 -0.43543,-0.0622 -1.11967,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31101,1.36847 -2.23932,2.17711 z m 7.52656,37.94408 q -0.68424,0.0622 -2.11492,-0.31102 -1.43067,-0.31102 -2.79915,-1.24407 -1.67949,-1.43068 -2.30152,-2.36373 -0.62204,-0.93305 -0.68424,-1.67949 0,-0.68424 0.0622,-1.24407 0.31102,-1.36847 1.30627,-1.30627 1.05746,0.0622 1.61729,0.55983 0.62203,0.49763 1.30627,1.18187 0.74644,0.74644 1.43068,1.30627 0.74644,0.55983 1.24407,0.49763 1.24407,-0.12441 2.05271,-1.05746 0.80864,-0.87085 1.61729,-2.79915 0.49763,-1.36848 0.74644,-2.36373 0.31102,-0.99526 0.62203,-2.17712 0.31102,-1.18187 0.74644,-3.17238 0.31102,-1.43067 0.43543,-1.9905 0.18661,-0.62204 0.18661,-0.74645 0,-0.18661 -0.0622,-0.18661 0,0 -0.43543,0.24882 -0.43542,0.24881 -1.24407,0.55983 -0.74644,0.31102 -1.67949,0.62203 -1.74169,0.55983 -3.48339,0.99526 -1.74169,0.37322 -2.67474,0.0622 -0.93306,-0.37322 -1.49289,-1.24407 -0.55983,-0.87085 -0.74644,-1.8661 -0.1244,-0.99525 -0.0622,-1.61729 0.12441,-0.49763 0.55983,-1.61729 0.43542,-1.11966 0.99525,-2.36373 0.55983,-1.24406 1.05746,-2.17711 0.49763,-0.93306 0.80865,-0.99526 0.24881,-0.12441 0.43542,-0.49763 0.24881,-0.43542 0.24881,-0.68423 0.0622,-0.24882 0.49763,-0.80865 0.49763,-0.55983 2.79915,-2.17712 2.30153,-2.17712 4.16763,-3.23457 1.8661,-1.11966 3.42119,-1.24407 0.43542,0.0622 0.80864,0.0622 0.43543,0 0.43543,0 0,0 0.68423,0.18661 0.68424,0.18661 1.36848,0.49763 0.80864,0.31102 1.74169,1.49288 0.93305,1.11966 1.61729,2.48814 0.68424,1.36847 0.74644,2.48813 -0.0622,1.36848 -0.62203,2.73695 -0.55983,1.36848 -1.05746,1.30627 -0.49763,-0.0622 -1.11966,0.37322 -0.55983,0.37322 -0.87085,1.49289 -0.18661,0.24881 -0.43542,0.80864 -0.24881,0.49763 -0.55983,0.99525 -0.0622,0.31102 -0.31102,1.55509 -0.24881,1.18186 -0.62203,2.67475 -0.31102,1.43067 -0.55983,2.67474 -0.24882,1.18187 -0.31102,1.55509 -0.0622,0.24881 -0.31102,1.18186 -0.24881,0.87085 -0.62203,1.99051 -0.31102,1.11966 -0.68424,2.05271 -0.24881,1.8039 -0.99525,3.11017 -0.74644,1.36848 -1.61729,2.42593 -1.43068,1.55509 -2.86136,2.17712 -1.36847,0.68424 -2.42593,0.80865 z m -1.18187,-21.77119 q 0.18662,0.49763 0.99526,0.37322 0.87085,-0.12441 2.36373,-0.55983 1.8039,-0.74644 2.67474,-1.18187 0.93306,-0.43542 1.43068,-1.11966 0.37322,-0.49763 0.68424,-0.99525 0.37322,-0.49763 0.68424,-0.87085 0.1244,-0.12441 0.37322,-0.43542 0.31101,-0.31102 0.49763,-0.55983 0.37322,-0.24882 0.62203,-0.43543 0.31102,-0.24881 0.55983,-0.43542 0.31102,-0.12441 0.55983,-0.55983 0.24881,-0.49763 0.12441,-0.99526 -0.0622,-0.43542 -0.55983,-1.18186 -0.49763,-0.80865 -1.36848,-1.24407 -0.80864,-0.49763 -1.9283,0.68424 -1.05746,1.18186 -3.42119,3.17237 -1.36848,1.49288 -2.42593,2.79915 -1.05746,1.24407 -1.55509,2.17712 -0.49763,0.87085 -0.31102,1.36848 z m 40.74325,9.2683 q -1.18186,0.31102 -2.48813,0.43543 -1.24407,0.18661 -2.17712,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49762,-0.99526 -0.68424,-0.1244 -2.17712,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.9283,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74644,0.74644 -1.11966,0 -2.05272,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68423,-1.43067 0,-0.24882 0.31101,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43543,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80865,-2.36373 1.43068,-4.16763 0.24882,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24407,-3.11017 0.62203,-1.55509 0.87084,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24881,0 0.55983,0 0.31101,-0.0622 0.31101,-0.0622 0,-0.12441 0.80865,0.24881 0.87085,0.37322 1.67949,0.93305 0.87085,0.49763 0.87085,0.87085 0.31101,0.80864 0.0622,2.11491 -0.24881,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24406,3.35899 -0.24882,0.43542 -0.74644,1.55508 -0.43543,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99526,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23458,-3.35898 1.55508,-1.49289 2.86135,-2.36373 1.36848,-0.93305 2.42594,-0.80865 0.55983,0.12441 1.43067,0.80865 0.93305,0.62203 1.7417,1.49288 0.87085,0.80864 1.11966,1.55508 0.24881,0.87085 0.31102,1.6795 0.1244,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49762,3.04796 -0.12441,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 14.43115,0.0622 q -1.24407,-0.12441 -1.99051,-0.62204 -0.68424,-0.55983 -1.05746,-1.36847 -0.49762,-0.55983 -0.62203,-0.87085 -0.0622,-0.31102 0,-0.55983 0.31102,0 0.55983,0 0.24881,-0.0622 0.31102,-0.24881 0,-0.18661 0.18661,-0.24882 0.24881,-0.0622 0.49763,0 1.18186,0.0622 2.86135,-0.80864 1.7417,-0.87085 3.79441,-2.42593 2.05271,-1.61729 4.10542,-3.48339 1.61729,-2.11492 2.23933,-3.11017 0.68423,-0.99526 0.68423,-1.49288 0.0622,-0.55984 -0.24881,-1.11967 -0.24881,-0.49762 -1.18186,-0.49762 -0.93306,0 -2.86136,1.24406 -2.67475,1.6795 -4.29204,3.11017 -1.61728,1.43068 -2.98576,3.23458 -0.49763,0.62204 -1.11966,1.36848 -0.55983,0.68423 -0.99525,1.18186 -0.37323,0.49763 -0.37323,0.49763 0,0.24881 -0.74644,0.62203 -0.68423,0.37322 -1.18186,0.37322 -0.24881,-0.1244 -0.68424,-0.43542 -0.37322,-0.37322 -0.49763,-0.93305 -0.55983,-0.43543 -0.93305,-0.74644 -0.37322,-0.37322 -0.37322,-1.18187 0,-0.49762 0.12441,-1.24407 0.18661,-0.74644 0.49763,-1.9283 0.37322,-1.61729 0.80864,-3.35898 0.43543,-1.8039 0.80865,-3.04797 0.43542,-1.30627 0.62203,-1.43068 0,0 0.24881,-0.55983 0.24882,-0.55983 0.24882,-1.30627 0.1244,-0.74644 0.37322,-1.30627 0.31101,-0.55983 0.31101,-0.80865 0.24882,-0.18661 0.74645,-1.49288 0.49762,-1.30627 1.24406,-3.42119 0,-0.18661 0.43543,-1.18186 0.43542,-1.05746 1.05745,-2.42593 0.62204,-1.43068 1.24407,-2.92356 0.68424,-1.55509 1.11966,-2.73695 0.74644,-1.05746 1.24407,-2.11492 0.55983,-1.11966 0.99526,-1.30627 0.31101,-0.0622 1.05745,0.24881 0.80865,0.31102 1.61729,0.80865 0.80865,0.49763 1.11966,0.99525 0.18661,0.31102 0.18661,0.62204 0.0622,0.31101 -0.24881,1.05745 -0.31102,0.68424 -1.05746,2.30153 -0.74644,1.55509 -2.11491,4.41644 -1.7417,3.73221 -2.73695,6.22034 -0.93305,2.48814 -1.55509,4.29204 -0.55983,1.8039 -1.18186,3.42118 l -0.31102,1.36848 1.61729,-1.8039 q 0.62203,-0.62203 1.30627,-1.18186 0.68424,-0.55984 1.49288,-1.11967 0.49763,-0.37322 1.30627,-0.74644 0.87085,-0.43542 1.6795,-0.74644 0.80864,-0.31101 1.18186,-0.37322 0.18661,-0.0622 1.24407,-0.24881 1.11966,-0.24882 2.17712,-0.24882 1.36847,0 2.36373,0.99526 1.05745,0.93305 1.8661,2.30152 0.68424,1.30628 0.49763,3.35899 -0.18661,1.99051 -1.05746,3.42119 -0.31102,0.24881 -0.62204,0.68423 -0.31101,0.37322 -0.31101,0.62204 -0.0622,0.43542 -1.11966,1.8039 -1.05746,1.30627 -2.11492,2.48813 -1.11966,1.18187 -2.73695,2.36373 -1.61729,1.11966 -3.23458,2.05271 -1.55508,0.87085 -2.67474,1.24407 -0.49763,0.0622 -1.43068,0.24881 -0.93305,0.12441 -1.43068,0.24882 z m 25.69001,0.93305 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49763,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 25.68998,8.70847 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74645,-2.55034 -0.1244,-0.49763 -0.1244,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87085,0.68424 -1.74169,1.11967 -2.05272,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24882,-2.98576 0.12441,-2.17712 0.62204,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49288,1.18186 0.37322,0.62204 0,2.36373 -0.37322,1.67949 -1.49288,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55983,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49289,5.22509 -1.18186,2.55034 -1.61728,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74644,1.49288 0.12441,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.8039,0.1244 -0.93305,-0.1244 -1.55508,-0.55983 z m 13.31157,-1.18186 q -0.18661,0.0622 -0.80864,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55984,-0.18661 -0.68424,-0.31102 -0.24882,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.8661 0.43543,-1.24407 0.87085,-2.61255 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.12441,-1.49288 -0.18661,-0.49763 -1.05745,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93305,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30628 0.62204,-0.49763 1.36848,-1.36848 0.80864,-0.93305 1.61729,-1.74169 0.99525,-0.68424 2.36373,-1.36848 1.36847,-0.74644 1.9905,-0.74644 0.68424,0 1.6795,0.68424 0.99525,0.62203 1.24406,1.11966 0.62204,1.05746 0.87085,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55984,0.37322 -0.49762,0.49762 -1.24406,1.24406 -0.68424,0.74645 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49763,1.36848 -1.05746,1.55509 z m 39.81022,0.87084 q -1.18186,0.31102 -2.48814,0.43543 -1.24406,0.18661 -2.17711,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49763,-0.99526 -0.68423,-0.1244 -2.17711,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.92831,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74645,0.74644 -1.11966,0 -2.05271,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68424,-1.43067 0,-0.24882 0.31102,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43542,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80864,-2.36373 1.43068,-4.16763 0.24881,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24406,-3.11017 0.62204,-1.55509 0.87085,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24882,0 0.55983,0 0.31102,-0.0622 0.31102,-0.0622 0,-0.12441 0.80864,0.24881 0.87085,0.37322 1.6795,0.93305 0.87084,0.49763 0.87084,0.87085 0.31102,0.80864 0.0622,2.11491 -0.24882,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24407,3.35899 -0.24881,0.43542 -0.74644,1.55508 -0.43542,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99525,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23457,-3.35898 1.55509,-1.49289 2.86136,-2.36373 1.36848,-0.93305 2.42593,-0.80865 0.55983,0.12441 1.43068,0.80865 0.93305,0.62203 1.7417,1.49288 0.87084,0.80864 1.11966,1.55508 0.24881,0.87085 0.31101,1.6795 0.12441,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49763,3.04796 -0.1244,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 12.31623,-0.0622 q -1.30628,0.24881 -1.99051,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55984,-0.18661 0.18661,0 0.93305,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18186,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.54559,1.24407 z m 0.18661,-5.22508 q 0.24881,0 0.87084,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43543,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68423,-0.31101 -0.62204,0 -0.87085,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99525,-1.24407 -1.05746,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99526,0.37322 z m 22.5176,6.28254 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 28.05371,10.01474 q -0.80864,0.18661 -1.61729,-0.43542 -0.74644,-0.55983 -1.05746,-1.24407 -0.37322,-0.99525 -0.49762,-1.8661 -0.0622,-0.93305 -0.12441,-2.11492 l -0.0622,-2.11491 -2.55034,2.30152 q -2.11492,1.99051 -3.98102,2.86136 -1.8039,0.80864 -3.29678,0.80864 -0.68424,-0.1244 -1.67949,-0.87084 -0.93305,-0.80865 -1.7417,-1.7417 -0.74644,-0.99525 -1.05745,-1.61729 -0.37323,-0.87084 -0.24882,-2.42593 0.18661,-1.55508 0.74644,-3.42119 0.62204,-1.8661 1.49288,-3.67 0.93306,-1.8039 2.11492,-3.11017 2.05271,-3.11017 5.10068,-3.85661 3.04797,-0.80864 5.41169,0.49763 1.11967,0.55983 1.61729,0.43542 0.49763,-0.1244 0.62204,-0.80864 0.24881,-0.99526 0.55983,-1.8661 0.31101,-0.87085 0.87084,-2.61255 1.55509,-4.72745 2.67475,-7.4022 1.18187,-2.67475 2.11492,-4.66526 0.68423,-1.43067 1.36847,-1.9905 0.68424,-0.55983 1.18187,-0.49763 0.68423,0 1.67949,0.49763 1.05746,0.49762 1.36847,1.36847 0.24882,0.55983 0.18661,1.18187 0,0.62203 -0.37322,1.30627 -0.80864,1.49288 -1.9283,3.98101 -1.05746,2.42594 -2.17712,5.3495 -1.05746,2.92356 -1.99051,5.78491 -0.93305,2.86136 -1.55509,5.03848 -0.37322,1.36847 -0.62203,3.48339 -0.18661,2.11491 -0.31102,4.35424 -0.0622,2.17712 0,3.91881 0.0622,1.67949 0.18661,2.17712 0.37322,1.24407 0,1.8661 -0.37322,0.62204 -1.05745,0.80865 -0.68424,0.24881 -1.36848,0.31101 z m -10.26356,-7.52661 q 0.87085,-0.31102 1.55508,-0.74644 0.68424,-0.43542 1.61729,-1.11966 1.86611,-1.43068 2.67475,-2.48814 0.87085,-1.05745 1.36847,-2.61254 0.31102,-0.93305 0,-1.61729 -0.24881,-0.68423 -0.93305,-1.30627 -0.68423,-0.55983 -1.74169,-0.43542 -1.05746,0.0622 -2.42593,1.30627 -1.49289,1.36847 -2.55034,3.17237 -1.05746,1.8039 -1.7417,5.16288 -0.12441,0.62204 0.43542,0.87085 0.55984,0.24882 1.7417,-0.18661 z m 38.75278,5.84712 q -1.36847,0 -2.05271,-0.12441 -0.62204,-0.1244 -0.93305,-0.37322 -0.31102,-0.24881 -0.80865,-0.68423 -0.24881,-0.49763 -0.87084,-1.24407 -0.62204,-0.80865 -0.87085,-1.05746 -0.24882,-0.93305 -0.18661,-2.55034 0.1244,-1.61729 0.55983,-3.48339 0.43542,-1.8661 1.05746,-3.35898 0.24881,-0.49763 0.43542,-0.99526 0.18661,-0.49762 0.18661,-0.49762 0,-0.31102 0.74644,-1.49289 0.80864,-1.18186 1.7417,-2.48813 0.99525,-1.30627 1.61728,-1.8661 0.43543,-0.49763 1.30628,-1.05746 0.93305,-0.55983 1.61728,-0.80865 0.68424,-0.24881 1.86611,-0.62203 1.18186,-0.43542 2.11491,-0.43542 0.87085,0 1.8661,0.37322 0.99526,0.37322 1.6795,1.30627 1.11966,1.11966 1.43067,2.67474 0.31102,1.55509 0.0622,2.67475 -0.31102,1.24407 -1.24407,2.05271 -0.93305,0.74644 -1.99051,0.80865 -1.05746,0 -1.8661,-0.87085 -0.24882,-0.49763 -0.24882,-0.80864 0,-0.37323 0.24882,-1.05746 0.24881,-0.87085 0.24881,-1.55509 0,-0.68423 -0.55983,-0.68423 -0.80864,0 -1.30627,0.49762 -0.49763,0.43543 -1.49288,1.49288 -0.43543,0.49763 -1.11966,1.43068 -0.68424,0.93305 -1.36848,2.05271 -0.62203,1.05746 -1.11966,2.17712 -0.68424,2.05272 -0.87085,2.67475 -0.1244,0.55983 -0.1244,0.55983 0,0.24881 -0.0622,0.49763 -0.0622,0.18661 -0.0622,0.43542 0,0.74644 0.87085,1.18187 0.68423,0.43542 1.11966,0.43542 0.49763,-0.0622 1.8661,-0.68424 0.99525,-0.49763 1.8661,-1.30627 0.93305,-0.80864 1.92831,-1.43068 0.68424,-0.43542 1.05746,-0.74644 0.43542,-0.31102 0.43542,-0.0622 0,0.24881 0.18661,0.24881 0.18661,0 0.43542,-0.24881 0.37322,-0.49763 0.93305,-0.37322 0.55984,0.0622 0.99526,0.31101 0.49763,0.24882 0.49763,0.43543 -0.12441,0.55983 0.24881,0.93305 0,0.24881 -0.18661,0.68424 -0.12441,0.37322 -0.37322,0.62203 -0.31102,0.43542 -0.93305,1.24407 -0.55983,0.80864 -1.05746,1.43068 -0.49763,0.62203 -0.49763,0.62203 -0.24881,-0.0622 -0.49762,0.12441 -0.18661,0.18661 -0.43543,0.43542 -0.49763,0.43543 -0.93305,0.68424 -0.43542,0.18661 -0.68424,0.18661 -0.43542,0.24881 -0.68423,0.31102 -0.18661,0.0622 -0.18661,0.31101 -0.62204,0.62204 -2.23933,0.87085 -1.61728,0.18661 -3.35898,0.18661 z m 21.14918,0.0622 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68423,-1.43067 -0.49762,-2.48813 0.18661,-0.49763 0.1244,-0.93305 0,-0.49763 0,-0.49763 -0.31101,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42594,0.99525 1.43067,0.62203 1.9905,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30628,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24406,-0.37322 2.98576,-2.05271 z m 15.17761,5.97153 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68423,-3.35898 0.43543,-1.86611 0.87085,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49762,-1.18187 0.31102,-0.31101 1.05746,-0.37322 0.74644,-0.0622 1.49288,0.18661 0.74644,0.18661 0.99526,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05745,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36372,3.04797 0.74645,2.17712 0.49763,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62204,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 v -3.8566 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68424,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18187,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43068,-0.0622 -1.36847,-0.43543 -1.74169,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49762,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80865,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43543,1.11966 -0.80865,1.43068 -0.37322,0.24881 -1.05745,-0.0622 z m 61.14594,0.55983 q -0.43542,-0.12441 -1.36847,-0.80865 -0.93305,-0.68423 -1.6795,-2.05271 -0.68423,-1.36847 -0.62203,-3.54559 0.0622,-1.86611 0.24881,-2.61255 0.24882,-0.80864 -0.18661,-0.87084 -0.31101,-0.0622 -1.24406,0.55983 -0.93306,0.62203 -2.42594,1.99051 -1.49288,1.36847 -3.60779,3.60779 -0.74644,0.62204 -1.6795,1.55509 -0.87084,0.87085 -1.80389,1.30627 -0.87085,0.43542 -1.55509,-0.18661 l -0.62203,-0.55983 q -0.43543,-0.37322 -0.74644,-0.99526 -0.31102,-0.62203 -0.18661,-1.05745 l 1.74169,-4.85187 q 0.74644,-1.61729 0.99526,-2.36373 0.31101,-0.74644 0.24881,-0.93305 0,-0.18661 -0.31102,-0.12441 -0.37322,0.0622 -1.05746,0.68424 -0.68423,0.55983 -0.93305,0.93305 -0.24881,0 -0.68423,0.49763 -0.37322,0.49763 -0.74645,0.87085 -0.37322,0.37322 -1.30627,1.43068 -0.93305,0.99525 -1.99051,2.11491 -0.80864,0.74644 -1.8661,1.99051 -1.05745,1.24407 -1.8661,2.23932 -0.80864,0.99526 -0.99525,0.99526 -1.11966,-0.0622 -2.05272,-0.74644 -0.87084,-0.68424 -1.18186,-1.6795 -0.37322,-0.68423 -0.0622,-2.48813 0.31101,-1.8661 1.18186,-5.90932 0.24881,-0.93306 0.43542,-1.61729 0.24882,-0.68424 0.49763,-1.36848 0.24882,-0.68424 0.55983,-1.55508 0.37322,-0.87085 0.93305,-2.11492 0.31102,-0.87085 0.24882,-1.61729 -0.0622,-0.80864 -0.12441,-1.30627 0,-0.93305 0.55983,-1.49288 0.62203,-0.55983 1.36848,-0.74644 0.74644,-0.24881 1.18186,-0.12441 1.7417,0.18661 2.36373,1.24407 0.62203,1.05746 0.68424,2.05271 0.0622,0.93305 -0.24882,1.67949 -0.31101,0.74645 -0.49762,1.24407 l -0.68424,1.67949 q -0.62204,1.43068 -0.93305,2.11492 -0.24882,0.62203 -0.31102,0.87085 0,0.18661 0,0.37322 0.0622,0.18661 0.55983,-0.18661 0.49763,-0.37322 1.18187,-0.99526 0.74644,-0.68423 1.36847,-1.18186 1.11966,-0.93305 2.36373,-1.8661 1.30627,-0.99526 2.55034,-1.7417 1.24407,-0.74644 2.05271,-0.99525 1.05746,0.18661 1.92831,1.05745 0.93305,0.87085 1.18186,1.49289 0.31102,0.93305 0.0622,1.67949 -0.18661,0.74644 -0.31101,1.36847 -0.0622,0.24882 -0.24882,0.93305 -0.18661,0.68424 -0.37322,1.30628 -0.18661,0.55983 -0.18661,0.55983 0,0 0.37322,-0.37322 0.37322,-0.37322 0.99526,-0.87085 0.62203,-0.55983 1.24407,-0.99526 3.11017,-2.36373 4.91406,-2.98576 1.86611,-0.68424 3.17238,1.05746 0.74644,0.68424 0.93305,1.8661 0.24881,1.18186 0.24881,3.17237 0.0622,0.80865 0.12441,1.8039 0.12441,0.99526 0.24881,1.7417 0.18661,0.74644 0.31102,0.93305 0.18661,0.24881 0.68424,0.49763 0.49762,0.18661 0.93305,0.31101 0.87085,0.43543 0.93305,1.61729 0.12441,1.11966 -0.87085,1.7417 -0.93305,0.55983 -1.99051,0.68423 -0.99525,0.12441 -2.05271,0.0622 z m 21.52241,1.8661 q -0.43542,0.24881 -1.18186,-0.18661 -0.68424,-0.43543 -1.36848,-1.30627 -0.43542,-0.74644 -0.68424,-1.49288 -0.18661,-0.80865 -0.18661,-2.36373 0.0622,-1.24407 0,-1.6795 0,-0.49762 -0.55983,-0.0622 -0.49762,0.37322 -2.05271,1.8661 -1.55508,1.55509 -2.98576,2.67475 -1.36848,1.05746 -2.23932,0.99525 -0.43543,0 -1.18187,-0.55983 -0.74644,-0.55983 -1.43068,-1.36847 -0.68423,-0.87085 -0.99525,-1.61729 -0.37322,-1.49288 -0.0622,-3.85661 0.37322,-2.36373 1.18186,-4.91407 0.80864,-2.61254 1.8039,-4.85186 1.05746,-2.30153 2.05271,-3.67001 1.05746,-1.43067 1.8039,-1.36847 1.05746,0.12441 1.8039,1.05746 0.80864,0.87085 1.24407,1.9283 0.24881,0.43543 0.18661,0.74644 0,0.31102 -0.49763,0.74644 -0.55983,0.74645 -1.36848,2.17712 -0.74644,1.36848 -1.55508,2.98577 -0.74644,1.61729 -1.36848,3.11017 -0.55983,1.43068 -0.80864,2.36373 -0.24881,0.93305 0,0.93305 0.87085,0 1.61729,-0.43543 0.74644,-0.49762 1.8661,-1.55508 1.30627,-1.30627 2.30153,-2.61254 0.99525,-1.36848 2.05271,-3.11017 0.80864,-1.24407 1.67949,-2.73695 0.93305,-1.49289 1.18186,-2.11492 0.87085,-1.61729 1.30628,-2.42593 0.43542,-0.80865 1.05745,-0.99526 0.31102,0 0.87085,0 0.55983,0 0.55983,0 0.37322,0.0622 0.87085,0.55983 0.49763,0.24882 0.99525,0.68424 0.55983,0.43543 0.55983,0.74644 -0.24881,0.62204 -0.80864,1.8661 -0.49763,1.18187 -0.74644,1.7417 -1.18186,2.67475 -2.30153,5.28729 -1.05745,2.55034 -1.55508,5.22508 -0.12441,0.87085 -0.0622,2.05272 0.1244,1.11966 0.37322,1.61728 0.18661,0.37322 0.43542,0.87085 0.31102,0.43543 0.68424,0.74644 0.55983,0.37322 -0.0622,0.93305 -0.55983,0.55983 -1.43067,0.99526 -0.80865,0.37322 -0.99526,0.37322 z m 27.74275,-0.62204 q -0.93305,0 -1.8039,-0.55983 -0.87085,-0.62203 -1.43068,-1.67949 -0.55983,-1.11966 -0.55983,-2.61254 0,-0.93305 0.31102,-2.61254 0.37322,-1.7417 1.05746,-4.35424 0.1244,-0.87085 0.18661,-1.11966 0.1244,-0.24882 0.1244,-0.49763 0,-0.12441 -0.0622,-0.18661 0,-0.12441 -0.12441,-0.12441 -0.49762,0 -1.36847,0.68424 -0.80865,0.62203 -1.8661,1.49288 -0.18661,0.12441 -0.43543,0.31102 -0.18661,0.18661 -0.43542,0.37322 -0.18661,0.18661 -0.43543,0.37322 -0.62203,0.37322 -1.9283,1.43068 -1.24407,1.05746 -2.61254,2.23932 -1.30627,1.18187 -2.30153,1.99051 -0.49763,0.37322 -0.87085,0.62203 -0.31101,0.24882 -0.43542,0.24882 -0.12441,0 -0.99525,-0.31102 -0.80865,-0.37322 -1.61729,-0.99525 -0.74644,-0.68424 -0.74644,-1.55509 0,-0.55983 0.43542,-2.23932 0.49763,-1.67949 1.36847,-3.98102 0.87085,-2.30152 1.99051,-4.66525 0.24882,-0.55983 0.37322,-1.49289 0.12441,-0.93305 0.24882,-1.80389 0.18661,-0.93306 0.62203,-1.36848 0.18661,-0.31102 0.43543,-0.43542 0.31101,-0.18661 0.62203,-0.18661 0.62203,0 1.18186,0.31101 0.55983,0.24882 1.05746,0.87085 0.93305,0.99526 0.99526,2.36373 0.1244,1.30627 -0.18661,2.55034 -0.31102,1.24407 -0.68424,2.05271 -0.37322,0.74644 -0.37322,0.62204 0.24881,-0.12441 0.68424,-0.62204 0.49762,-0.49762 1.67949,-1.18186 1.61729,-1.24407 2.48813,-1.7417 0.87085,-0.55983 1.30627,-0.80864 0.49763,-0.24882 0.87085,-0.55983 0.31102,-0.24882 0.43543,-0.31102 0.18661,-0.0622 0.18661,-0.0622 0,0 0,0 0,0 0,0 0.18661,0 0.62203,-0.24882 0.49763,-0.24881 0.93305,-0.24881 0.62204,0 1.30627,0.31102 0.68424,0.24881 1.18187,0.74644 0.49762,0.43542 0.49762,0.93305 0,0.18661 0.12441,0.31102 0.12441,0.1244 0.24881,0.31101 0.31102,0.37322 0.68424,1.05746 0.43543,0.62203 0.43543,2.05271 0,0.99526 -0.43543,2.92356 -0.43542,1.92831 -0.93305,3.79441 -0.49763,1.92831 -0.49763,3.11017 0.0622,1.11966 0.24882,1.7417 0.18661,0.55983 0.18661,0.93305 0,0.49762 -0.49763,1.18186 -0.49763,0.62203 -1.49288,0.62203 z m 10.63678,-1.80389 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37322,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62204,1.18186 0.62204,2.79915 0,0.43542 -0.62204,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.80389,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 7.58875,29.60882 q -3.04796,-0.0622 -3.91881,-1.74169 -0.80864,-1.61729 -0.43542,-4.10543 0.37322,-1.18186 0.43542,-2.11491 0.12441,-0.99526 0.55983,-1.24407 0,0 0.0622,-0.18661 0.12441,-0.18661 -0.0622,-0.37322 0,-0.80865 0.55983,-2.23932 0.12441,-0.37322 0.31102,-0.87085 0.24881,-0.55983 0.24881,-0.55983 -0.31101,-0.49763 0,-0.80865 0.31102,-0.31101 0.62204,-0.55983 0.37322,-0.31101 0.0622,-0.68423 -0.12441,-0.24882 0.31102,-1.11967 0.43542,-0.93305 0.99525,-1.9283 0.55983,-0.99526 0.74644,-1.55509 0,-0.1244 0.31102,-0.87084 0.31102,-0.74644 0.74644,-1.7417 0.43542,-0.99525 0.80864,-1.8039 0.43543,-0.80864 0.55983,-1.05745 0.62204,-0.31102 -0.49762,-0.43543 -1.11966,-0.12441 -2.36373,-0.0622 -1.92831,-0.0622 -3.11017,-0.18661 -1.11966,-0.12441 -1.8661,-0.55983 -0.74644,-0.87085 -0.18661,-2.05272 0.55983,-1.24406 1.80389,-1.30627 0.80865,-0.0622 1.24407,-0.0622 0.49763,0 1.24407,-0.0622 0.80864,-0.12441 2.48814,-0.31102 l 3.17237,-0.24881 0.18661,-1.05746 q 0.49763,-0.80865 0.68424,-1.05746 0.18661,-0.24881 0.24881,-0.49763 0.0622,-0.31101 0.18661,-1.05745 0,0 0.55983,-0.99526 0.55983,-1.05746 0.68424,-2.17712 0.74644,-1.24407 1.30627,-2.23932 0.55983,-1.05746 0.68424,-1.30627 1.05746,-1.55509 2.05271,-1.67949 1.05746,-0.12441 1.99051,0.49762 0.55983,0.31102 1.05746,0.80865 0.49762,0.43542 0.62203,1.18186 0.12441,0.68424 -0.55983,1.8039 -0.12441,0.24881 -0.37322,0.93305 -0.24881,0.62204 -0.37322,1.05746 -0.37322,0.43542 -0.93305,1.43068 -0.49763,0.93305 -0.68424,1.9283 -0.49763,1.05746 -0.62203,1.30627 -0.12441,0.24882 -0.37322,0.24882 0.1244,0.62203 0.74644,0.62203 0.62203,-0.0622 2.05271,-0.1244 1.18186,-0.12441 1.61729,-0.24882 0.49763,-0.18661 1.11966,0.12441 0.31102,0.43542 0.31102,1.30627 0.0622,0.80864 -0.18661,1.61729 -0.24882,0.74644 -0.68424,0.93305 -0.31102,0 -1.30627,0.37322 -0.93305,0.31102 -2.36373,0.37322 l -3.29678,0.31102 -1.05746,2.11491 q -0.43542,0.80865 -0.74644,1.49288 -0.31102,0.62204 -0.43542,0.74645 0,0.37322 -0.43543,1.11966 -0.37322,0.74644 -0.80864,1.61729 -0.37322,1.05745 -0.87085,1.9283 -0.43542,0.87085 -0.43542,0.87085 -0.24882,0 -0.24882,0.37322 0.31102,0.74644 -0.18661,1.11966 -0.31101,0.18661 -0.55983,0.55983 -0.18661,0.31102 -0.18661,0.31102 0.24882,0.24881 0.0622,0.62203 -0.1244,0.37322 -0.37322,0.80865 0,0.49762 -0.31101,1.43067 -0.24882,0.93305 -0.55983,1.7417 0.0622,1.11966 0.1244,1.43068 0.0622,0.31101 0.31102,0.24881 0.31102,0.0622 0.87085,0 0.55983,-0.0622 0.80864,-0.0622 0.93305,-0.43543 -0.87085,4.35424 -0.99525,1.55508 -1.9905,2.55033 -0.99526,1.05746 -1.30628,1.05746 z m 14.99096,-4.78966 q -0.49762,-0.49763 -0.74644,-1.49288 -0.18661,-0.99526 -0.1244,-1.92831 0.0622,-0.99525 0.31101,-1.49288 0,-0.49763 0.12441,-0.74644 0.18661,-0.31102 0.12441,-0.55983 -0.0622,-0.24881 0.1244,-0.87085 0.18661,-0.62203 0.37322,-1.18186 0.43543,-0.99526 0.99526,-2.55034 0.55983,-1.61729 1.11966,-3.23458 0.55983,-1.67949 0.93305,-2.86135 0.37322,-1.24407 0.43542,-1.49289 0,-0.74644 0.99526,-0.80864 0.74644,-0.24881 1.8039,0.62203 1.05745,0.87085 1.67949,1.86611 0.49763,0.49762 0.37322,1.30627 -0.12441,0.80864 -0.80865,2.30152 -0.24881,0.49763 -0.62203,1.6795 -0.31102,1.11966 -0.43542,1.8661 -0.24882,0.49762 -0.62204,1.43068 -0.31101,0.87084 -0.55983,1.67949 -0.1244,0.31101 -0.24881,1.18186 -0.12441,0.80865 -0.31102,1.67949 -0.18661,0.87085 -0.49763,1.36848 -0.55983,2.55034 -1.9905,2.98576 -1.36848,0.43543 -2.42594,-0.74644 z m 6.71797,-24.94356 q -0.68424,-0.49763 -1.05746,-1.18187 -0.31101,-0.74644 -0.37322,-1.30627 0,-0.55983 0.12441,-0.68424 0.62203,-0.68423 1.05746,-1.80389 0.49762,-1.11967 1.05745,-2.05272 0.12441,-0.18661 0.31102,-0.49762 0.24881,-0.37322 0.49763,-0.43543 0.74644,-0.49763 2.05271,0.0622 1.36848,0.55983 1.99051,1.55508 0.55983,1.18187 0.31102,2.42593 -0.18661,1.24407 -1.30628,2.61255 -0.93305,1.24406 -2.36372,1.61728 -1.43068,0.31102 -2.30153,-0.31101 z m 11.5698,27.12068 q -3.42119,0 -5.28729,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23932 0.80865,-4.91407 0.87084,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.67949,-1.9283 3.35898,-2.67474 0.62204,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61729,0.12441 0.93305,0.0622 1.7417,0.37322 1.43067,0.43542 2.48813,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.1244,1.36847 -0.12441,0.68424 -0.43543,1.36848 -0.80864,2.05271 -2.48813,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49763,0.24882 -0.99526,0.37323 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99525,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31101,0.62203 q -0.43543,1.18187 -0.62204,1.99051 -0.1244,0.80865 -0.1244,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43543,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11967,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55509,-1.05746 l 0.24881,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24881,-0.24882 0.55983,-0.24882 0.87084,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30628,1.61729 -0.74644,0.74644 -1.55508,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61728,0.93305 -1.36848,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99525,-0.18661 0.49763,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.92831,-2.73695 0.43542,-1.6795 -0.31102,-2.55034 -0.12441,-0.18661 -0.31102,-0.24882 -0.18661,-0.1244 -0.43542,-0.1244 -0.68424,0 -1.55509,0.43542 -0.80864,0.43542 -1.61728,1.24407 -0.80865,0.80864 -1.49289,1.9283 l -0.80864,1.30628 q 0.12441,-0.0622 0.18661,-0.0622 0.12441,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11967,0.37322 z m 14.5556,14.24458 q -2.11492,-0.87085 -3.11017,-1.8039 -0.93305,-0.99525 -0.74644,-1.7417 0.1244,-0.37322 0.43542,-0.68423 0.31102,-0.31102 1.36847,-0.24882 1.11967,0 3.42119,0.55983 0.68424,0 1.36848,-0.0622 0.68423,-0.0622 1.24406,-0.18661 0.62204,-0.12441 0.99526,-0.31102 0.31102,-0.1244 0.18661,-0.31101 -0.12441,-0.24882 -0.43543,-0.49763 -0.24881,-0.31102 -0.55983,-0.37322 -0.31101,-0.12441 -0.55983,-0.12441 -0.1244,-0.31101 -0.55983,-0.62203 -0.37322,-0.31102 -0.93305,-0.68424 -1.36847,-1.11966 -2.48813,-1.99051 -1.11967,-0.87085 -0.87085,-1.30627 0,-0.24881 0,-0.24881 0,-0.0622 0,-0.0622 -0.43543,0 -0.80865,-1.18186 -0.37322,-1.24407 -0.37322,-2.23932 0,-1.24407 0.49763,-2.48814 0.55983,-1.24407 1.36848,-2.36373 0.87084,-1.11966 1.74169,-1.99051 1.18187,-1.11966 2.48814,-2.17712 1.36847,-1.11966 2.92356,-1.9905 1.61728,-0.87085 3.54559,-1.36848 0.87085,-0.18661 1.99051,-0.18661 1.11966,0 1.61729,0.31102 0.49762,-0.31102 1.24407,0.18661 0.74644,0.43542 1.49288,1.24407 0.74644,0.80864 1.11966,1.61728 0,0.74644 -0.0622,1.86611 0,1.05745 -0.1244,1.8661 -0.12441,0.80864 -0.55983,0.80864 0,0 -0.18661,0.0622 -0.12441,0 -0.12441,0.31101 0,0.62204 -0.93305,1.43068 -1.18187,0.80864 -2.23932,1.30627 -1.05746,0.49763 -1.61729,0.0622 -0.37322,-0.24882 -0.68424,-0.49763 -0.31102,-0.24882 -0.55983,-0.62204 0,0 -0.18661,-0.24881 -0.12441,-0.31102 -0.12441,-0.55983 0,-0.24881 0.18661,-0.43542 0.18661,-0.24882 0.18661,-0.24882 0.87085,-0.80864 1.30628,-1.49288 0.49762,-0.68424 0.68423,-1.18186 0.18661,-0.55983 0.18661,-0.87085 0,-0.37322 -0.18661,-0.43542 -0.1244,-0.12441 -0.62203,-0.12441 -0.31102,0 -1.36848,0.49763 -0.99525,0.49762 -2.11491,1.24406 -1.11966,0.68424 -1.7417,1.24407 -0.24881,0.43543 -0.37322,0.55983 -0.0622,0.12441 -0.31101,0.12441 0,-0.24881 -0.31102,0.0622 -0.31102,0.31102 -0.74644,0.87085 -0.43543,0.55983 -0.87085,1.18186 -0.43542,0.62204 -0.68424,0.99526 -0.0622,0.55983 -0.31101,1.05746 -0.18661,0.43542 -0.12441,0.93305 0.0622,0.62203 0.62203,1.18186 0.55983,0.55983 1.61729,1.43068 2.17712,1.61729 3.23458,2.55034 1.11966,0.93305 1.55508,1.49288 0.43543,0.55983 0.55983,1.11966 1.05746,1.92831 0.24882,3.35899 -0.80865,1.36847 -2.48814,2.11491 -0.62203,0.31102 -2.17712,0.55983 -1.55508,0.31102 -3.29678,0.24882 -1.67949,0 -2.86135,-0.49763 z"
-+       id="path18" /><path
-=       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
--       id="path15" /></g></svg>
-+       id="path19" /></g></svg>
-```
=
=# Move the logotype from main to header landmark
=
@@ -633,279 +299,10 @@ index c2242e1..7bec032 100644
==            <p id="reasons-why">
=```
=
-# Setup proper web-fonts: Caveat and Cooper Hewitt
-
-
-
-``` diff
-new file mode 100644
-index 0000000..dae61c1
-Binary files /dev/null and b/fonts/caveat/caveat-bold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..976da36
-Binary files /dev/null and b/fonts/caveat/caveat-medium.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0b78323
-Binary files /dev/null and b/fonts/caveat/caveat-semibold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..d511f3d
---- /dev/null
-+++ b/fonts/caveat/caveat.css
-@@ -0,0 +1,33 @@
-+/* caveat-bold */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
-+}
-+/* caveat-medium */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
-+}
-+/* caveat */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
-+}
-+/* caveat-semibold */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
-+}
-+
-```
-
-``` diff
-new file mode 100644
-index 0000000..f80cf2c
-Binary files /dev/null and b/fonts/caveat/caveat.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..8227633
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..939ad21
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0949007
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0e0b918
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..8131611
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..2c425cd
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..7db7058
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..e6cafd9
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..9c8fa26
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..76336be
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..b5b8f36
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..a32e7c2
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold.woff2 differ
-```
=
-``` diff
-new file mode 100644
-index 0000000..9c1cccf
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin-italic.woff2 differ
-```
+# Setup proper web-fonts: Caveat and Cooper Hewitt
=
-``` diff
-new file mode 100644
-index 0000000..9eaf98b
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..54ff088
---- /dev/null
-+++ b/fonts/cooper-hewitt/cooper-hewitt.css
-@@ -0,0 +1,113 @@
-+/* cooper-hewitt-bold */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
-+}
-+/* cooper-hewitt-bold-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-book */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
-+}
-+/* cooper-hewitt-book-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-heavy */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
-+}
-+/* cooper-hewitt-heavy-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-light */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 300;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
-+}
-+/* cooper-hewitt-light-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 300;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-medium */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
-+}
-+/* cooper-hewitt-medium-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-semibold */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
-+}
-+/* cooper-hewitt-semibold-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-thin */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 100;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
-+}
-+/* cooper-hewitt-thin-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 100;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
-+}
-+
-```
+Modified `index.html`:
=
=``` diff
=index 7bec032..dffc4b1 100644
@@ -1005,6 +402,182 @@ index 7bec032..dffc4b1 100644
==    </head>
=```
=
+New file at `/fonts/caveat/caveat.css`:
+
+``` css
+/* caveat-bold */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
+}
+/* caveat-medium */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
+}
+/* caveat */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
+}
+/* caveat-semibold */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
+}
+```
+
+
+New file at `/fonts/cooper-hewitt/cooper-hewitt.css`:
+
+``` css
+/* cooper-hewitt-bold */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
+}
+/* cooper-hewitt-bold-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-book */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
+}
+/* cooper-hewitt-book-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-heavy */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
+}
+/* cooper-hewitt-heavy-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-light */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 300;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
+}
+/* cooper-hewitt-light-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 300;
+	font-stretch: 100%;
+	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-medium */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
+}
+/* cooper-hewitt-medium-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-semibold */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
+}
+/* cooper-hewitt-semibold-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-thin */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 100;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
+}
+/* cooper-hewitt-thin-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 100;
+	font-stretch: 100%;
+	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
+}
+```
+
+New binary assets:
+
+- caveat-bold.woff2 
+- caveat-medium.woff2 
+- caveat-semibold.woff2 
+- caveat.woff2 
+- cooper-hewitt-bold-italic.woff2 
+- cooper-hewitt-bold.woff2 
+- cooper-hewitt-book-italic.woff2 
+- cooper-hewitt-book.woff2 
+- cooper-hewitt-heavy-italic.woff2 
+- cooper-hewitt-heavy.woff2 
+- cooper-hewitt-light-italic.woff2 
+- cooper-hewitt-light.woff2 
+- cooper-hewitt-medium-italic.woff2 
+- cooper-hewitt-medium.woff2 
+- cooper-hewitt-semibold-italic.woff2 
+- cooper-hewitt-semibold.woff2 
+- cooper-hewitt-thin-italic.woff2 
+- cooper-hewitt-thin.woff2 
+
=# Use CSS variables to control styling parameters
=
=
@@ -1353,4 +926,4 @@ index a3fcf05..d725020 100644
==                    You are among friends. You are not the product.
==                    You deserve <strong>better</strong>.
==            </p>
-```
\ No newline at end of file
+```

Display devlog under a project description

I introduced the project.html template, used by all pages in the works section. The template queries pages in the devlog section, (i.e. devlog entries). Only the entries that include the given project name in extra.projects are rendered.

Many project don't have a devlog yet. Others are confidential client projects and will never have a public devlog. In those cases the "Devlog" section heading is hidden. It's not easy with Zola, but quite simple using modern CSS with :not and :has pseudo-classes.

Because entries are sometimes long, I decided to make the date heading of each entry a sticky element.

Speaking of headings, devlog entry documents contain heading hierarchy starting at h1. When embeded in a project page, the heading have to be de-moted by 3 levels, so that each commit subject is in an h4 element (following project name (h1), Devlog section heading (h2) and the date heading (h3)). For this I brought the demote-headings macro, that I've developed last year for similar purpose in the Escco website.

index e3a354d..1cb38af 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -2,6 +2,7 @@
=title: "Tad Works"
=sort_by: "weight"
=template: "works.html"
+page_template: "project.html"
=description: "Featured works of Tad Lispy"
=---
=
index d5d8c82..e5f6040 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -51,6 +51,26 @@ html.works-index {
=    }
=}
=
+html.project {
+    #devlog-heading {
+        color: var(--muted-color);
+    }
+
+    #devlog-heading:not(:has(+ .devlog-entry)) {
+        display: none;
+    }
+
+    .devlog-entry {
+        h3 {
+            font-size: 1rem;
+            border-bottom: solid 2px currentColor;
+            position: sticky;
+            top: 0;
+            background: var(--background-color);
+        }
+    }
+}
+
=nav.main-nav {
=    justify-content: start;
=
new file mode 100644
index 0000000..8184f40
--- /dev/null
+++ b/templates/components.html
@@ -0,0 +1,16 @@
+{% macro demote_headings (content, levels=1) %}
+  {% set_global demoted = content %}
+  {% for i in range(start=1, end=6) %}
+  {% set n = 6 - i %}
+  {% set m = n + levels %}
+  {% set from_opening = "<h" ~ n %}
+  {% set into_opening = "<h" ~ m %}
+  {% set from_closing = "</h" ~ n %}
+  {% set into_closing = "</h" ~ m %}
+  {% set_global demoted = demoted
+     | replace (from=from_opening, to=into_opening)
+     | replace (from=from_closing, to=into_closing)
+  %}
+  {% endfor %}
+  {{ demoted | safe }}
+{% endmacro table_of_contents %}
new file mode 100644
index 0000000..d80af22
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,45 @@
+{% extends "base.html" %}
+
+{% import "components.html" as components %}
+
+{% block variables %}
+{{ super() }}
+{% set page_class  = "page project" %}
+{% set title = page.title | markdown(inline=true) | striptags %}
+{% set description = page.summary | default(value="A project by Tad Lispy.") | striptags %}
+{% set devlog = get_section(path="devlog/_index.md") %}
+{% endblock variables %}
+
+{% block content %}
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
+            <li><a href="{{ get_url(path='@/works/_index.md') }}">Works</a></li>
+            <li><strong>{{ page.title | markdown(inline=true) | safe }}</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+
+    {{ page.content | safe }}
+
+    {# NOTE: If there is no devlog, then the heading will be hidden using CSS #}
+    <h2 id="devlog-heading">Devlog</h2>
+
+    {% for entry in devlog.pages %}
+    {% if entry.extra.projects is containing(page.title) %}
+    <section class="devlog-entry">
+        <h3><time datetime="{{ entry.date }}">{{ entry.date | date(format="%A, %F")}}</time></h3>
+
+        {{- components::demote_headings (content=entry.content, levels=3)
+        | safe
+        -}}
+    </section>
+    {% endif %}
+    {% endfor %}
+</main>
+
+{% include "includes/footer.html" %}
+{% endblock content %}

Commits: 3

index a251b55..e9dfd58 100644
--- a/content/market-research/_index.md
+++ b/content/market-research/_index.md
@@ -46,7 +46,7 @@ Privacy Policy for Tad Market Research
=     * Correct any inaccurate information.
=     * Withdraw the data processing consent at any time.
=
-   To exercise these rights, email us at <data@tad-lispy.com>
+   To exercise these rights, email us at <legal@tad-lispy.com>
=
=6. Data Security
=

Shift the clients tiles initial position a bit

for more natural look

index 9066fdc..dd76de7 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -272,6 +272,7 @@ ul.client-logos {
=            rem(var(--step-count), 1.0)
=            * var(--step-length)
=            * -1
+            - 5rem
=        ));
=        order: rem(
=            calc(var(--tile-index) - var(--step-count) - var(--tiles-count)),

Animate client quotes

index 485a34b..3201b16 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -24,6 +24,7 @@ I have over 15 years of experience in software development and training. Over th
=
=Here is what some of my clients have to say about me:
=
+{% wrap_with(class="client-quotes") %}
=> I've been working with Tad on a range of software development and security trainings. The labs were creative and fun. I can definitely recommend him and I'll be happy to work with him again.
=>
=> <cite>Maaike van Putten, (Virtual) Trainer and developer</cite>
@@ -43,6 +44,7 @@ Here is what some of my clients have to say about me:
=> Tad understands technology well, listens carefully and communicates very clearly. Many times he helped us find pragmatic, simple and elegant solutions. We are glad to have him as a consultant.
=>
=> <cite>Neyts Zupan, Open Source geek & founder, Niteo</cite>
+{% end %}
=
=Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
=
index dd76de7..335ae7d 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -294,3 +294,76 @@ ul.client-logos {
=    }
=
=}
+
+
+.client-quotes {
+    --quotes-count: 5;
+    --pace: 10s;
+
+	margin: 1rem auto;
+	font-size: .9rem;
+	display: flex;
+	overflow: hidden visible;
+	position: relative;
+    align-items: center;
+
+    @keyframes count-steps {
+        from {
+            --step-count: 0;
+        }
+        to {
+            --step-count: 5; // TODO: This must match --quotes-count, but using a variable here doesn't work. Why?
+        }
+    }
+
+    animation-name: count-steps;
+    animation-duration: calc(var(--pace) * var(--quotes-count));
+    animation-iteration-count: infinite;
+    animation-timing-function: steps(var(--quotes-count));
+
+    &> * {
+        // opacity: 0;
+
+        transform: translate(calc(
+            -100% * var(--step-count)
+        ));
+
+        @keyframes pulse {
+            0% {
+                opacity: 0%;
+            }
+            20% {
+                opacity: 100%;
+            }
+            80% {
+                opacity: 100%;
+            }
+            100% {
+                opacity: 0%;
+            }
+        }
+
+        animation-name: pulse;
+        animation-duration: var(--pace);
+        animation-iteration-count: infinite;
+        animation-timing-function: linear;
+
+        flex-shrink: 0;
+        width: 100%;
+        text-decoration: none;
+        transition: opacity 1s, margin-left 0s 1s;
+        display: block;
+
+        p {
+            font-size: 1.2rem;
+            font-style: italic;
+            line-height: 2;
+        }
+
+        cite {
+            font-style: initial;
+            font-weight: bold;
+        }
+    }
+}
+

Commits: 3

Spark up the works section

With logos of my clients, testimonials, and example projects.

index b6518bf..1606057 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -6,18 +6,20 @@ description: "Featured works of Tad Lispy"
=---
=
=
-I have over 15 years of experience in software development and training. Over those years I worked for many organizations, including
-
-  - KPN
-  - Citi Group
-  - Liberty Mutual
-  - IT Fundamentals
-  - Bright Boost
-  - Saleslift
-  - Elanza
-  - Niteo
-  - Base builder
-  - District Court of Warsaw
+I have over 15 years of experience in software development and training. Over those years I worked for many organizations, large and small.
+
+{% wrap_with(class="client-logos") %}
+- ![KPN](kpn.svg "KPN")
+- ![Citi Group](citi-group.svg "Citi Group")
+- ![Liberty Mutual](liberty-mutual.svg "Liberty Mutual")
+- ![IT Fundamentals](it-fundamentals.svg "IT Fundamentals")
+- ![Bright Boost](brightboost.svg "Bright Boost")
+- ![Saleslift](saleslift-studio.svg "Saleslift Studio")
+- ![Elanza](elanza.svg "Elanza")
+- ![Niteo](niteo.svg "Niteo")
+- ![Basebuilder](basebuilder.svg "Basebuilder")
+- ![District Court of Warsaw](district-court-of-warsaw.svg "District Court of Warsaw")
+{% end %}
=
=Here is what some of my clients have to say about me:
=
new file mode 100644
index 0000000..57683cb
--- /dev/null
+++ b/content/works/basebuilder.svg
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata><g
+   id="g3"
+   transform="matrix(5.0075069,0,0,5.0075069,100.0015,496.3435)"><path
+     class="a"
+     d="m 6.9,10.3 3.8,5.2 h 11.1 a 4.27,4.27 0 0 1 4.3,4.3 v 10.6 a 4.27,4.27 0 0 1 -4.3,4.3 H 11.2 A 4.27,4.27 0 0 1 6.9,30.4 Z m 5.8,10.8 v 6 a 1.69,1.69 0 0 0 1.7,1.7 h 4.2 a 1.69,1.69 0 0 0 1.7,-1.7 V 22.9 A 1.69,1.69 0 0 0 18.6,21.2 H 12.7 Z M 0,0 6.7,8.4 H 25.6 A 7.38,7.38 0 0 1 33,15.8 V 34 a 7.38,7.38 0 0 1 -7.4,7.4 H 7.4 A 7.32,7.32 0 0 1 0,34 Z"
+     id="path1"
+     style="fill:#ff6903;fill-opacity:1" /><path
+     class="b"
+     d="m 191.5,35.1 h 2.8 V 29 a 8.42,8.42 0 0 1 0.4,-2.7 c 0.7,-2.2 2.3,-3.5 4.2,-3.5 a 2.77,2.77 0 0 1 0.8,0.1 V 20.1 A 3.78,3.78 0 0 0 198.9,20 c -2.3,0 -4,1.7 -4.7,3.9 h -0.1 a 4.54,4.54 0 0 0 0.1,-1 V 22 c 0,-1.2 -0.6,-1.7 -1.9,-1.7 h -2.7 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 V 35.1 Z M 177,26 a 4.24,4.24 0 0 1 4.4,-3.8 c 1.8,0 3.4,1.3 3.5,3.8 z m -3.1,1.7 a 7.59,7.59 0 0 0 7.9,7.8 8.61,8.61 0 0 0 5.7,-2.2 l -1.2,-2 A 6.88,6.88 0 0 1 182,33 5,5 0 0 1 176.9,28.1 h 10.8 c 0,0 0.1,-0.8 0.1,-1.2 0,-3.8 -2.2,-6.9 -6.4,-6.9 -4.2,0 -7.5,3 -7.5,7.7 z M 163.3,33 c -2.5,0 -4.2,-2.1 -4.2,-5.3 0,-3.4 1.9,-5.3 4.2,-5.3 2.8,0 4.2,2.6 4.2,5.3 0.1,3.8 -2,5.3 -4.2,5.3 z m -7,-5.3 c 0,4.6 2.5,7.8 6.5,7.8 a 5.39,5.39 0 0 0 4.9,-2.7 h 0.1 v 0.8 c 0,1 0.5,1.6 1.8,1.6 h 2.7 V 32.8 H 171 a 0.53,0.53 0 0 1 -0.6,-0.6 V 16.4 a 1.65,1.65 0 0 0 -1.9,-1.9 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 v 3.7 a 4.54,4.54 0 0 0 0.1,1 h -0.1 c 0,0 -1.1,-2.3 -4.6,-2.3 -3.9,0.1 -6.6,3.1 -6.6,7.8 z m -6.5,5.6 a 1.65,1.65 0 0 0 1.9,1.9 h 2.8 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 V 16.4 a 1.65,1.65 0 0 0 -1.9,-1.9 H 148 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z m -7.9,0 a 1.65,1.65 0 0 0 1.9,1.9 h 2.8 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 v -9.9 a 1.65,1.65 0 0 0 -1.9,-1.9 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z M 142,17.4 h 2.5 v -3 H 142 Z m -18.5,12.4 c 0,3.9 1.7,5.7 5,5.7 a 5.83,5.83 0 0 0 5.4,-3.4 h 0.1 v 1.4 c 0,1.1 0.6,1.6 1.9,1.6 h 2.7 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 V 20.3 H 134 v 6.9 c 0,2.9 -1.8,5.6 -4.8,5.6 -2.3,0 -2.8,-1.6 -2.8,-3.7 v -7 c 0,-1.3 -0.6,-1.8 -1.9,-1.8 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z m -14.8,-2 c 0,-3.8 2,-5.3 4.2,-5.3 2.5,0 4.2,2.1 4.2,5.3 0,3.4 -1.9,5.3 -4.3,5.3 -2.7,0 -4.1,-2.7 -4.1,-5.3 z m -2.8,7.3 h 2.7 v -1 A 6.27,6.27 0 0 0 108.5,33 h 0.1 a 5.28,5.28 0 0 0 4.7,2.5 c 3.9,0 6.7,-3 6.7,-7.8 0,-4.6 -2.5,-7.8 -6.5,-7.8 a 5.38,5.38 0 0 0 -4.8,2.4 h -0.1 a 6.76,6.76 0 0 0 0.1,-1.2 v -4.8 a 1.65,1.65 0 0 0 -1.9,-1.9 H 104 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 v 17.7 z"
+     id="path2"
+     style="fill:#ff6903;fill-opacity:1" /><path
+     class="a"
+     d="m 64.2,32.6 c -1.5,0 -2.3,-0.9 -2.3,-1.9 0,-2.1 3.1,-2.3 5,-2.3 h 0.6 v 0.4 c 0.1,1.7 -1.4,3.8 -3.3,3.8 m -6,-1.8 c 0,3 2.4,4.7 5.1,4.7 a 4.79,4.79 0 0 0 4.5,-2.6 h 0.1 v 0.6 c 0,0.9 0.5,1.6 1.9,1.6 H 73 V 32 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 v -5.6 c 0,-3.3 -1.5,-5.9 -6.4,-5.9 -1.5,0 -5.5,0.3 -5.5,3.1 v 1.6 h 3.5 v -0.8 c 0,-0.8 1.3,-1 2,-1 1.9,0 2.8,0.8 2.8,2.9 v 0.1 H 67 c -2.4,0 -8.8,0.4 -8.8,5 z m 40.4,-5 h -6.5 a 3.58,3.58 0 0 1 3.7,-3 c 1.5,-0.1 2.7,1.2 2.8,3 z m -10.4,1.9 a 7.67,7.67 0 0 0 8,7.8 9,9 0 0 0 6,-2.3 l -1.6,-2.6 a 6.79,6.79 0 0 1 -4.2,1.7 4.3,4.3 0 0 1 -4.5,-4 h 10.3 c 0,0 0.1,-0.9 0.1,-1.4 0,-3.9 -2.3,-7.1 -6.6,-7.1 -4.3,0 -7.5,3.3 -7.5,7.9 z m -13.9,5.1 a 8.12,8.12 0 0 0 6.2,2.7 c 3.2,0 5.7,-1.8 5.7,-4.6 0,-5 -7.9,-4.5 -7.9,-6.8 0,-0.9 0.9,-1.3 2.2,-1.3 0.8,0 1.9,0.4 1.9,1.1 v 0.7 h 3.3 V 23 c 0,-2.4 -3.2,-3.1 -5.2,-3.1 -3.1,0 -5.8,1.4 -5.8,4.4 0,4.8 7.9,4.8 7.9,6.9 0,1 -0.9,1.5 -2,1.5 a 6.64,6.64 0 0 1 -4.4,-2.2 z m -25.5,2.3 c 3.9,0 7.2,-1.9 7.2,-6 a 5,5 0 0 0 -3.3,-4.9 v -0.1 a 4.65,4.65 0 0 0 2.5,-4.4 c 0,-3.4 -2.7,-5.4 -6.4,-5.4 h -9 v 3.2 h 8.9 a 2.41,2.41 0 0 1 2.6,2.6 2.47,2.47 0 0 1 -2.5,2.7 h -2.4 v 3 h 2.8 a 2.81,2.81 0 0 1 2.9,3 2.76,2.76 0 0 1 -2.9,3 h -3 A 0.53,0.53 0 0 1 45.6,31.2 V 18.5 h -3.8 v 14.7 c 0,1.4 0.6,2 2,2 h 5 z"
+     id="path3"
+     style="fill:#ff6903;fill-opacity:1" /></g>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..f684b5d
--- /dev/null
+++ b/content/works/brightboost.svg
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style><linearGradient
+     id="linearGradient6"><stop
+       style="stop-color:#fb38c2;stop-opacity:1;"
+       offset="0"
+       id="stop6" /><stop
+       style="stop-color:#9255fd;stop-opacity:0.98823529;"
+       offset="1"
+       id="stop7" /></linearGradient><linearGradient
+     xlink:href="#linearGradient6"
+     id="linearGradient7"
+     x1="68.409904"
+     y1="332.95786"
+     x2="542.59009"
+     y2="332.95786"
+     gradientUnits="userSpaceOnUse"
+     gradientTransform="matrix(2.3529412,0,0,2.3529412,-118.8235,-183.43019)" /></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+<path
+   style="fill:url(#linearGradient7);fill-opacity:1;stroke-width:2.35294"
+   d="m 400.7735,667.25742 c -13.1363,-5.71423 -16.065,-16.7865 -6.8717,-25.97977 4.7692,-4.76925 5.1418,-6.10189 2.3529,-8.41646 -4.3624,-3.62052 -4.2084,-11.6138 0.3492,-18.1208 l 3.663,-5.22943 -3.663,-5.22943 c -8.3218,-11.88118 -1.7142,-32.04954 12.2383,-37.35423 3.3593,-1.27724 16.3134,-1.55711 30.2792,-0.65418 l 24.4081,1.57799 v 5.53582 c 0,4.74209 -1.1633,5.53579 -8.113,5.53579 h -8.1128 l 2.5475,7.30792 c 5.6827,16.30157 -10.6234,31.59772 -31.8964,29.92084 -7.6462,-0.6027 -9.7844,0.0847 -10.4283,3.35264 -1.1411,5.79034 8.362,8.83037 27.6035,8.83037 12.624,0 17.3082,1.02899 22.1997,4.87666 11.7616,9.25164 6.4334,24.97895 -11.1709,32.97334 -11.5757,5.25674 -34.5203,5.79915 -45.3853,1.07293 z m 39.2057,-11.36966 c 3.2238,-1.63106 6.2126,-4.78885 6.6417,-7.01726 1.0658,-5.53424 -8.3505,-8.77131 -25.5149,-8.77131 -11.8613,0 -14.2817,0.74753 -16.6306,5.13647 -2.3405,4.3732 -1.9644,5.77174 2.5309,9.41177 6.232,5.04641 24.1202,5.7193 32.9729,1.24033 z m -8.988,-54.97677 c 8.428,-7.62719 2.7772,-24.34121 -8.2294,-24.34121 -6.9638,0 -13.3501,6.84756 -13.3501,14.31427 0,12.35237 12.5608,18.18877 21.5795,10.02694 z M 75.2942,659.6064 c -10.0453,-3.69358 -11.7648,-7.93132 -11.7648,-28.99552 0,-22.32871 -0.9446,-24.20657 -13.5294,-26.89753 -10.3699,-2.2173 -10.5112,-9.5119 -0.2243,-11.56932 12.5824,-2.51645 13.7537,-4.83824 13.7537,-27.26238 0,-25.36335 2.6047,-28.69567 23.6176,-30.2156 l 14.0295,-1.01479 v 4.98868 c 0,3.99811 -1.4323,4.98868 -7.2135,4.98868 -14.519,0 -16.3159,2.73005 -16.3159,24.78864 0,16.77998 -0.7413,20.65847 -4.7059,24.62311 l -4.7059,4.70588 4.7059,4.70588 c 3.9646,3.96464 4.7059,7.84314 4.7059,24.62311 0,22.05862 1.7969,24.78866 16.3159,24.78866 5.6449,0 7.2135,1.02331 7.2135,4.70589 0,4.07148 -1.5067,4.68083 -11.1765,4.52012 -6.1471,-0.1022 -12.7647,-0.76976 -14.7058,-1.48351 z m 1023.5293,-2.75382 c 0,-3.99811 1.4323,-4.98868 7.2135,-4.98868 14.519,0 16.3159,-2.73004 16.3159,-24.78866 0,-16.77997 0.7413,-20.65847 4.7059,-24.62311 l 4.7059,-4.70588 -4.7059,-4.70588 c -3.9646,-3.96464 -4.7059,-7.84313 -4.7059,-24.62311 0,-22.05859 -1.7969,-24.78864 -16.3159,-24.78864 -5.7812,0 -7.2135,-0.99057 -7.2135,-4.98868 v -4.98868 l 14.0295,1.01479 c 21.0129,1.51993 23.6175,4.85225 23.6175,30.2156 0,22.42414 1.1714,24.74593 13.7538,27.26238 10.2869,2.05742 10.1456,9.35202 -0.2243,11.56932 -12.5848,2.69096 -13.5294,4.56882 -13.5294,26.89753 0,25.36333 -2.6047,28.69565 -23.6176,30.21559 l -14.0295,1.0148 z M 128.6274,638.53056 c -0.8627,-0.86273 -1.5686,-24.68626 -1.5686,-52.94117 v -51.37254 h 8.2353 8.2353 v 18.82353 c 0,10.35293 0.7941,18.78599 1.7647,18.74014 0.9706,-0.0458 4.4118,-1.59656 7.6471,-3.44602 20.6969,-11.83144 42.3529,5.01214 42.3529,32.94117 0,29.09769 -22.674,46.68722 -45.1802,35.04886 l -7.2994,-3.7747 -2.1124,3.7747 c -2.1332,3.81188 -9.1811,5.09953 -12.0747,2.20603 z m 42.4112,-17.84313 c 6.1686,-6.80346 8.1778,-17.79144 5.2153,-28.52102 -3.7365,-13.53235 -15.315,-17.18468 -26.5248,-8.36703 -5.5385,4.3566 -6.1997,6.47525 -6.1997,19.8666 0,12.82283 0.756,15.51945 5.2295,18.65276 7.4379,5.20977 16.6913,4.53224 22.2797,-1.63131 z m 51.818,17.95467 c -0.9241,-0.9241 -1.6802,-17.38603 -1.6802,-36.58212 v -34.90197 h 8.2353 8.2353 v 7.49906 7.49903 l 6.4706,-6.03506 c 9.2639,-8.64033 15.4534,-11.31597 26.1771,-11.31597 10.7329,0 13.1441,2.41198 10.9903,10.9935 -1.3166,5.24585 -2.4231,5.83771 -8.6031,4.60171 -8.4979,-1.69958 -20.1083,2.81806 -27.2882,10.61786 -4.4131,4.79408 -5.2981,8.82223 -5.8824,26.77383 l -0.6877,21.13077 -7.1434,0.69973 c -3.9289,0.38487 -7.8995,-0.0564 -8.8236,-0.98037 z m 112.9412,0 c -0.9241,-0.9241 -1.6802,-14.15904 -1.6802,-29.41102 V 581.5002 l -14.7058,-0.70048 -14.7059,-0.70051 -0.7446,-6.47059 -0.7444,-6.47061 h 24.9233 24.9235 l -0.6494,35.88237 -0.6496,35.88236 -7.1434,0.69973 c -3.9289,0.38487 -7.8994,-0.0564 -8.8235,-0.98037 z M 480,587.15803 v -52.94118 h 8.2353 8.2353 v 19.99999 c 0,11.00001 0.7108,20 1.5795,20 0.8686,0 3.4727,-1.71346 5.7868,-3.80766 5.3824,-4.87108 23.3774,-6.94573 29.9119,-3.44857 9.9142,5.30595 12.3347,14.54273 11.6198,44.34217 l -0.6627,27.61996 -7.4413,0.72196 -7.4413,0.72196 -0.794,-27.38678 c -0.6916,-23.8551 -1.383,-27.81688 -5.3613,-30.72195 -6.1472,-4.48876 -10.4702,-4.19136 -19.5504,1.34489 l -7.647,4.66249 v 25.91694 25.91694 H 488.2353 480 Z m 112.3901,46.07823 -7.6843,-6.86294 -0.8109,-22.42008 -0.811,-22.42007 -8.6007,-0.71698 c -7.421,-0.61863 -8.703,-1.60464 -9.3454,-7.18757 l -0.7445,-6.47061 h 9.3163 c 10.315,0 12.1728,-2.36351 12.1728,-15.48656 v -8.04283 h 6.9299 6.9299 l 0.7171,11.17647 0.7171,11.17646 15.8824,0.69575 15.8823,0.69574 v 6.95132 6.95131 H 616.4706 600 l 0.034,15.88236 c 0.019,8.7353 1.3782,18.5294 3.0203,21.7647 2.6578,5.23634 4.5274,5.90757 17.0241,6.11198 l 14.0386,0.22965 0.7148,5.9334 c 0.8462,7.02412 -3.699,8.8204 -22.4424,8.86932 -10.3064,0.0268 -13.5696,-1.08765 -20,-6.83082 z m 64.0805,-46.07823 v -52.94118 h 8.2353 8.2353 v 18.82353 c 0,10.35293 0.3667,18.82352 0.8149,18.82352 0.4483,0 4.2518,-1.71453 8.4525,-3.81009 18.1648,-9.0618 38.2197,2.31009 41.3931,23.47158 2.613,17.42505 -0.7042,29.75937 -10.6889,39.74399 -7.5258,7.52578 -10.357,8.82981 -19.1713,8.82981 -5.7934,0 -12.7741,-1.70385 -15.8727,-3.87417 l -5.5311,-3.8742 -2.1681,3.8742 c -1.1925,2.13078 -4.7626,3.87417 -7.9335,3.87417 h -5.7655 z m 44.5351,32.62385 c 6.7585,-8.59211 6.8572,-29.46686 0.1709,-36.15328 -5.6319,-5.63184 -11.9232,-5.96158 -21.2933,-1.11604 l -6.9421,3.58983 v 17.2271 17.22706 l 5.2942,2.55326 c 9.38,4.52384 17.5312,3.33251 22.7704,-3.32793 z m 56.6175,15.0232 c -12.7071,-8.64835 -17.0703,-16.35172 -17.2749,-30.49906 -0.3172,-21.94982 12.5052,-37.01671 33.0058,-38.78331 22.6493,-1.95178 38.4176,13.11322 38.4017,36.68915 -0.01,15.48538 -5.484,26.15541 -17.0284,33.19416 -10.646,6.49094 -27.0751,6.22488 -37.1042,-0.60094 z m 30.4808,-13.39816 c 10.6365,-10.63655 7.5161,-36.65807 -4.9204,-41.03179 -13.6947,-4.81613 -25.5365,5.42145 -25.5365,22.077 0,8.19053 5.4104,20.12792 9.9505,21.95462 6.6998,2.69568 16.2008,1.3058 20.5064,-2.99983 z m 56.6007,13.39816 c -15.3279,-10.46261 -20.9466,-32.79509 -12.6499,-50.27897 12.342,-26.00896 51.7725,-25.83845 64.4156,0.27854 6.1293,12.6615 5.952,23.63234 -0.5881,36.38658 -9.4181,18.36702 -34.4565,25.02752 -51.1776,13.61385 z m 32.7716,-15.0232 c 7.244,-9.20933 6.7779,-27.40712 -0.8988,-35.08374 -7.3606,-7.36067 -16.3827,-7.36067 -23.7432,0 -7.9124,7.9123 -8.277,27.72912 -0.6594,35.83765 7.2323,7.69854 18.9267,7.35009 25.3014,-0.75391 z m 55.4648,17.43497 c -3.8823,-1.38096 -8.8786,-3.7562 -11.1027,-5.2783 -3.5672,-2.44117 -3.6483,-3.33239 -0.6872,-7.55985 l 3.3567,-4.79241 13.6284,4.62371 c 16.4672,5.58679 29.653,3.71893 30.8069,-4.36398 0.7796,-5.46058 -2.7344,-7.32573 -25.8923,-13.74289 -18.537,-5.13666 -25.3763,-16.39533 -18.1557,-29.88722 5.34,-9.97794 27.8432,-14.37705 44.7536,-8.74884 11.8125,3.93147 14.3083,6.9614 10.2469,12.43958 -2.8557,3.85185 -4.2303,4.11048 -9.3787,1.76472 -9.6053,-4.37648 -28.5246,-3.56291 -30.3933,1.30694 -2.0696,5.39317 3.4467,9.1763 17.9,12.27597 16.3686,3.51045 24.6443,8.36389 27.1964,15.9499 5.6377,16.75796 -7.5342,29.01108 -30.8622,28.70926 -7.8969,-0.1022 -17.5344,-1.31564 -21.4168,-2.69659 z m 101.8458,-1.70859 c -7.8629,-6.19586 -11.2272,-17.62778 -11.2443,-38.2082 l -0.014,-15.74032 -8.8235,-0.73025 c -7.6071,-0.62961 -8.9243,-1.60277 -9.5543,-7.05862 l -0.7309,-6.32833 10.1426,-0.73049 10.1436,-0.7305 1.1764,-10.58822 1.1765,-10.58825 7.6471,-0.73732 7.647,-0.73732 v 11.91379 11.91378 h 16.6269 16.6269 l -0.7446,6.47061 -0.7445,6.47059 -15.8824,0.69574 -15.8823,0.69574 v 18.54795 c 0,23.17606 2.5539,26.5309 19.5115,25.63087 10.5122,-0.55795 12.0252,-0.0234 13.843,4.8903 1.1224,3.0342 1.4173,6.14015 0.6554,6.90211 -0.7621,0.76193 -8.9906,1.76691 -18.2859,2.2333 -14.4859,0.72677 -17.8134,0.12873 -23.2901,-4.18696 z M 333.1093,549.3429 c -2.0337,-2.0336 -3.6975,-5.21008 -3.6975,-7.05882 0,-4.42372 8.4592,-12.77311 12.9412,-12.77311 4.4818,0 12.9411,8.34939 12.9411,12.77311 0,5.1435 -6.7529,10.7563 -12.9411,10.7563 -3.0505,0 -7.2101,-1.66386 -9.2437,-3.69748 z"
+   id="path5" />
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..6d2d349
--- /dev/null
+++ b/content/works/citi-group.svg
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    <g
+   transform="matrix(8.7252754,0,0,8.7252754,211.6378,151.3825)"
+   id="g3-9">
+        <path
+   d="m 16.549,50.274 c 0,-5.774 4.728,-10.269 10.889,-10.269 3.566,0 6.821,1.588 8.681,3.991 l -2.674,2.674 c -0.709,-0.908 -1.614,-1.644 -2.647,-2.154 -1.033,-0.51 -2.169,-0.78 -3.321,-0.791 -3.681,0 -6.627,2.752 -6.627,6.549 0,3.837 2.946,6.589 6.627,6.589 1.194,-0.002 2.371,-0.279 3.44,-0.81 1.068,-0.531 2,-1.302 2.722,-2.252 l 2.635,2.597 c -1.782,2.519 -5.193,4.185 -8.836,4.185 -6.161,0 -10.889,-4.495 -10.889,-10.309 z"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="path1-4" />
+        <rect
+   x="39.762001"
+   y="40.702"
+   width="4.224"
+   height="19.183001"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="rect1-7" />
+        <path
+   d="M 51.854,54.731 V 44.268 h -4.612 v -3.566 h 4.805 V 36.594 L 56,34.656 v 6.046 h 6.279 v 3.566 H 56 v 9.766 c 0,1.937 1.086,2.79 3.14,2.79 1.068,0.005 2.126,-0.219 3.1,-0.659 v 3.643 c -1.221,0.536 -2.543,0.8 -3.876,0.775 -3.759,0 -6.51,-2.054 -6.51,-5.852 z"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="path2-8" />
+        <rect
+   x="65.612"
+   y="40.702"
+   width="4.224"
+   height="19.183001"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="rect2" />
+        <path
+   d="m 54.76,28.494 c 3.47,-0.008 6.89,0.819 9.972,2.411 3.083,1.592 5.737,3.902 7.739,6.736 h -4.922 c -1.613,-1.794 -3.585,-3.227 -5.788,-4.209 -2.204,-0.981 -4.589,-1.489 -7.001,-1.489 -2.412,0 -4.797,0.508 -7,1.489 -2.203,0.982 -4.175,2.415 -5.789,4.209 H 37.05 c 2.001,-2.834 4.656,-5.144 7.738,-6.736 3.083,-1.592 6.503,-2.419 9.972,-2.411 z"
+   style="fill:#ff3c28;fill-rule:nonzero"
+   id="path3-4" />
+    </g>
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..36c9595
--- /dev/null
+++ b/content/works/district-court-of-warsaw.svg
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata><path
+   style="fill:#ffffff;fill-opacity:1;stroke-width:1.10001"
+   d="m 456.2907,900.32189 c -1.105,-0.024 -3.5276,-1.23804 -5.3835,-2.69845 -1.856,-1.4604 -5.9818,-4.96963 -9.1683,-7.79816 -3.1866,-2.82863 -6.4382,-6.69874 -7.2259,-8.60026 -0.7877,-1.90169 -1.2399,-4.44463 -1.0049,-5.65112 l 0.4272,-2.19369 2.6371,5.5981 2.637,5.59826 6.7871,5.5286 6.7871,5.52868 2.3552,-0.74752 c 1.2954,-0.41115 4.7133,-1.79059 7.5954,-3.06547 2.8822,-1.27492 5.5091,-2.7531 5.8377,-3.28472 0.3286,-0.53166 -1.5379,-3.80874 -4.148,-7.28225 l -4.7455,-6.31552 v -4.60614 -4.60614 l -1.2748,-0.78785 -1.2749,-0.78794 -2.2122,2.00189 c -1.2167,1.10113 -3.3844,4.72705 -4.8172,8.05759 l -2.605,6.05551 -1.2253,-1.22521 -1.2251,-1.22514 0.7889,-3.41673 c 0.4337,-1.87917 2.2423,-5.37578 4.019,-7.77035 1.7767,-2.3945 4.8083,-6.34614 6.7369,-8.78166 l 3.5065,-4.42801 0.5399,-6.50972 c 0.2968,-3.58051 0.9465,-6.50983 1.4438,-6.50983 0.4972,0 1.5554,0.78509 2.3518,1.74464 0.7964,0.95957 3.8308,3.14116 6.7433,4.84791 2.9122,1.7068 5.2951,3.82445 5.2951,4.70611 v 1.60302 l -3.6386,1.50705 c -2.0013,0.82896 -4.6997,2.8562 -5.9967,4.50492 l -2.358,2.99773 v 5.14324 5.14329 l 2.9741,3.53441 c 1.6358,1.94387 4.6231,4.21746 6.6386,5.05229 l 3.6647,1.51801 4.932,-2.22389 4.9316,-2.22407 2.2174,-3.63584 2.2173,-3.6359 -6e-4,-4.19771 -6e-4,-4.19763 -3.2931,-4.96296 c -1.8112,-2.72955 -8.6017,-9.71657 -15.0902,-15.52662 l -11.7975,-10.56395 -1.7883,-4.46942 c -0.9836,-2.45824 -2.5417,-4.75857 -3.4623,-5.11191 l -1.6741,-0.64235 -1.1411,2.03898 c -0.6276,1.1215 -1.3834,1.77371 -1.6795,1.44939 -0.2961,-0.3243 -0.7991,-7.20101 -1.1177,-15.2815 l -0.5793,-14.69177 h 1.0277 1.0278 v 5.32622 5.32621 l 1.2748,0.78785 1.2751,0.78796 2.3228,-2.10231 2.3232,-2.10242 -0.039,-4.3116 -0.039,-4.31158 -3.3243,-4.79732 -3.3243,-4.79731 h -2.8899 -2.8899 l -1.5239,-2.99833 c -0.8381,-1.64907 -1.5319,-3.72344 -1.5415,-4.60974 -0.015,-0.88631 1.0616,-1.89375 2.3809,-2.23868 l 2.3987,-0.62734 0.1492,-2.55855 c 0.083,-1.40728 0.3106,-7.31027 0.5068,-13.11779 l 0.3569,-10.55914 1.439,-1.73397 c 0.7916,-0.95372 1.8255,-1.734 2.298,-1.734 0.4721,0 0.8843,3.91281 0.9153,8.69514 0.032,4.78232 0.1462,10.85393 0.2572,13.49244 l 0.2005,4.79734 4.2399,8.69885 4.2401,8.69884 2.9576,0.74228 c 1.6267,0.40824 4.9212,0.42372 7.3211,0.0348 l 4.3635,-0.70809 1.166,-2.0836 1.166,-2.08348 0.9175,2.34542 c 0.5045,1.29 0.9553,4.35597 1.0017,6.81327 l 0.084,4.46788 -3.0764,-1.16973 c -1.692,-0.64331 -5.0653,-1.16131 -7.4959,-1.15122 -2.4307,0.0121 -5.0187,0.41484 -5.7512,0.89949 -0.7325,0.48465 -2.2166,2.6083 -3.2982,4.71937 -1.0814,2.11106 -1.9663,4.65567 -1.9663,5.65458 0,0.99905 0.9446,2.29517 2.0988,2.8803 l 2.0989,1.06394 8.1388,-0.56453 8.139,-0.56451 1.7876,-3.75535 c 0.9833,-2.06549 2.5749,-5.10458 3.5369,-6.75368 l 1.7493,-2.99832 0.089,-6.5963 c 0.048,-3.62797 0.5978,-9.2948 1.2195,-12.59296 0.6217,-3.29816 1.6242,-11.93334 2.2279,-19.18929 0.6036,-7.25592 1.3955,-18.42228 1.7597,-24.81399 l 0.662,-11.62126 -5.1709,-5.32036 c -2.8438,-2.92623 -7.0551,-8.76037 -9.3584,-12.96498 l -4.1876,-7.64451 -2.5802,-0.38092 -2.58,-0.38091 -3.0163,3.25449 -3.0161,3.25452 v 4.701 c 0,2.58563 0.5748,5.7749 1.2771,7.08733 0.7023,1.31256 1.0665,3.01811 0.809,3.79036 l -0.4679,1.40392 -3.162,-5.39541 c -1.7391,-2.96762 -3.7659,-8.21133 -4.5039,-11.65293 l -1.342,-6.25736 3.7239,-11.98671 3.7241,-11.9867 -1.1844,-6.91461 c -0.6514,-3.80308 -1.4936,-8.80356 -1.8715,-11.11228 l -0.6873,-4.19766 1.1217,-1.67389 1.1217,-1.6739 1.9496,0.74801 1.9495,0.74815 -0.7002,2.78976 -0.7001,2.78976 2.5583,6.83774 2.5584,6.83774 3.9224,2.99183 c 2.1572,1.64548 4.9508,3.00002 6.2078,3.01009 1.257,0.0121 3.082,0.52207 4.0557,1.13779 l 1.7702,1.11945 -2.8357,3.83548 c -1.5596,2.10949 -3.2436,5.64403 -3.7422,7.85453 l -0.9064,4.01905 1.0931,4.86509 1.093,4.86495 5.6763,7.68136 c 3.1218,4.22463 6.3506,7.70341 7.1752,7.73051 l 1.4992,0.0491 v -2.83339 -2.83343 l -3.6,-4.52998 c -1.98,-2.4916 -4.2087,-6.56141 -4.9526,-9.04426 l -1.3524,-4.51414 0.8453,-4.50542 0.8452,-4.50552 6.2537,-6.10434 c 3.4396,-3.35741 9.6552,-7.99329 13.8125,-10.302 4.1572,-2.30872 9.3978,-5.14632 11.6457,-6.30596 l 4.0872,-2.10819 v -1.71886 c 0,-0.94532 -0.6001,-2.08961 -1.3335,-2.54283 l -1.3335,-0.82418 0.766,-5.7732 c 0.4211,-3.17524 1.5845,-7.7328 2.5853,-10.12775 1.0005,-2.39493 2.3046,-6.60902 2.8978,-9.36448 0.593,-2.75559 2.2211,-8.19058 3.6178,-12.07797 1.3966,-3.88726 5.4991,-11.51573 9.1165,-16.95217 3.6175,-5.43631 8.4199,-11.97037 10.6717,-14.52004 l 4.0946,-4.63576 0.05,2.02279 0.05,2.02289 3.6327,0.37577 3.6326,0.37585 -2.7332,3.74696 c -1.5033,2.0607 -5.0268,6.76001 -7.8303,10.44292 -2.8034,3.68278 -5.097,7.15076 -5.097,7.70664 0,0.5559 0.5938,1.60447 1.3196,2.33031 l 1.3196,1.31974 18.7691,-9.63049 18.7691,-9.63051 0.3879,-1.64355 0.3877,-1.64369 h -3.0456 c -1.6751,0 -5.0877,0.85467 -7.5836,1.89927 -2.4961,1.0446 -7.102,3.20341 -10.2357,4.79732 -3.1336,1.5939 -5.9671,2.89806 -6.2964,2.89806 -0.3296,0 -0.5991,-0.69312 -0.5991,-1.54016 0,-0.84699 2.8334,-4.30118 6.2964,-7.67597 l 6.2966,-6.13576 6.2795,-3.12968 6.2794,-3.12952 14.1091,0.0121 c 7.76,0.0121 16.4579,-0.0528 19.3284,-0.13281 l 5.2193,-0.14502 2.5764,2.67943 2.5763,2.67929 -4.3803,-0.76841 -4.3802,-0.7684 -5.2144,1.17148 -5.2143,1.17152 -2.0989,2.59175 c -1.1542,1.42541 -2.0988,3.88115 -2.0988,5.45718 0,1.57605 -0.4737,2.86545 -1.0525,2.86545 -0.5788,0 -1.7243,-0.80956 -2.5456,-1.799 -0.8211,-0.98944 -2.3946,-1.79899 -3.4967,-1.79899 h -2.0037 l -1.1475,3.8032 -1.1476,3.80331 -11.9487,6.27669 -11.9487,6.27682 -6.3929,1.28388 -6.3927,1.28377 -8.3252,7.45369 c -4.5788,4.09957 -10.1344,10.1846 -12.346,13.52221 -2.2115,3.33773 -4.6108,7.17715 -5.3316,8.53192 l -1.3109,2.46329 0.9117,1.47517 0.9116,1.47517 1.9463,-0.74694 c 1.0706,-0.41077 3.6807,-3.53226 5.8006,-6.9368 2.1198,-3.40441 6.8507,-9.29312 10.5131,-13.08599 l 6.6591,-6.89616 h 2.0081 c 1.1043,0 2.298,0.7557 2.6525,1.67933 l 0.6443,1.67929 -2.9883,4.0175 -2.9884,4.01752 0.6694,3.4285 0.6693,3.42841 -3.0563,2.40406 -3.0562,2.40407 0.3618,1.84276 0.3615,1.84278 10.4011,-0.25139 10.4009,-0.25137 5.1902,2.63541 c 2.8547,1.44951 6.4775,3.64068 8.0507,4.86928 l 2.8603,2.23374 h 10.9965 10.9966 l 4.0799,-4.2094 4.0799,-4.2093 4.2509,-1.18096 c 2.3379,-0.64957 7.3189,-1.18399 11.0689,-1.18759 3.75,0 8.2349,0.53202 9.9666,1.19034 l 3.1485,1.19716 -0.7425,1.20149 -0.7426,1.20163 h -5.8694 -5.8695 l -3.7127,4.62004 -3.7128,4.62005 -23.6284,-0.12361 -23.6285,-0.12376 -8.3953,-4.00012 c -4.6174,-2.20005 -10.913,-4.40538 -13.9902,-4.90082 l -5.5952,-0.9007 -1.9007,1.06381 -1.9008,1.0637 v 3.51545 3.51562 l -3.2982,0.7227 c -1.8139,0.39746 -4.0106,0.94494 -4.8813,1.21672 l -1.5833,0.49424 0.3839,2.67007 0.384,2.67018 4.1975,1.23304 c 2.3087,0.67822 4.8723,1.6697 5.6969,2.20329 0.8246,0.53369 1.4992,1.74802 1.4992,2.69848 v 1.728 h -4.6992 c -2.5846,0 -5.553,0.32754 -6.5964,0.72798 l -1.897,0.72801 v 2.23603 2.23602 l 3.8977,1.03815 3.8978,1.03803 -9.5946,0.90584 -9.5946,0.90585 -6.2022,6.36281 c -3.4111,3.49952 -7.004,7.91329 -7.9838,9.80835 l -1.7817,3.44555 -0.8644,11.04809 -0.8642,11.04825 2.0165,0.7738 2.0166,0.77381 4.8964,-2.20796 c 2.6929,-1.21434 6.172,-3.21135 7.7311,-4.43779 l 2.8346,-2.22977 v -3.13241 c 0,-1.72284 -0.8778,-6.26135 -1.9508,-10.08576 l -1.9511,-6.95337 2.0275,-3.09425 2.0274,-3.09426 1.4205,0.47348 1.4203,0.47349 0.9207,6.49712 0.9206,6.49714 8.5354,17.19465 8.5358,17.19481 0.5902,5.23699 c 0.3247,2.88031 0.2196,6.20305 -0.2336,7.38367 l -0.8236,2.1468 -2.2793,-2.99054 c -1.2535,-1.64475 -2.6107,-4.46844 -3.016,-6.27487 -0.4054,-1.80642 -1.3044,-3.63506 -1.9977,-4.06358 l -1.2606,-0.77909 0.8374,16.65652 c 0.4607,9.16097 1.5824,25.40901 2.4929,36.10654 l 1.6554,19.45015 -1.1437,14.0313 -1.1436,14.0313 -2.8448,6.21362 -2.8447,6.21374 1.0643,1.90164 1.0642,1.90163 -0.9144,0.53276 c -0.5029,0.29299 -4.1525,1.45671 -8.1103,2.58611 -3.9578,1.12929 -8.1404,2.89822 -9.2948,3.9307 -1.1544,1.03259 -2.0989,2.56475 -2.0989,3.40488 0,0.84004 0.8174,2.34468 1.8164,3.3436 l 1.8162,1.81629 3.2809,-1.11984 c 1.8044,-0.61595 9.4874,-1.9352 17.0731,-2.93173 7.5858,-0.99639 22.8287,-2.45903 33.8732,-3.2501 l 20.0809,-1.43821 26.6929,1.4327 c 14.6813,0.78796 33.6623,2.26955 42.1803,3.29229 8.518,1.02268 16.2086,1.58266 17.0905,1.24421 0.8817,-0.33832 1.6011,-1.57656 1.5987,-2.75161 0,-1.17516 -1.074,-3.89052 -2.3811,-6.03433 l -2.3765,-3.89785 h -13.4548 c -7.4002,0 -19.4165,-0.58104 -26.7027,-1.29126 -7.2864,-0.71017 -16.2162,-1.74648 -19.8442,-2.30275 l -6.5963,-1.01165 23.3868,0.33715 c 12.8629,0.18533 24.555,0.73282 25.9828,1.21647 l 2.5958,0.87949 1.2868,-2.4043 1.2866,-2.40419 -1.8988,-5.20459 -1.8988,-5.20461 -1.562,-17.39029 -1.5621,-17.39028 1.616,-25.18592 c 0.8888,-13.85226 2.4032,-31.39244 3.3655,-38.9782 0.9622,-7.58577 2.0708,-18.92314 2.4635,-25.19409 0.3927,-6.27093 1.5459,-15.3911 2.5625,-20.26685 1.0167,-4.87587 2.3642,-9.82887 2.9946,-11.00685 l 1.1463,-2.14165 v -9.74431 -9.74419 l 1.0813,0.66826 c 0.5947,0.3676 1.4526,3.8676 1.9063,7.77779 l 0.8252,7.10949 1.9914,1.77945 c 1.0952,0.97866 2.8009,1.93619 3.7904,2.12785 0.9893,0.19165 3.8032,-0.0503 6.2528,-0.53753 l 4.4539,-0.8862 6.6815,1.94232 6.6814,1.94244 2.9598,3.19189 c 1.6278,1.75546 3.4544,4.81506 4.0589,6.79887 0.6046,1.98394 1.4375,6.30561 1.851,9.60376 0.4133,3.29815 1.8638,8.81733 3.2231,12.26471 l 2.4717,6.26817 5.4747,3.6263 c 3.0113,1.9946 6.1559,3.62642 6.988,3.62642 0.8321,0 3.3947,2.29621 5.6943,5.10265 2.2997,2.80643 4.5274,6.48202 4.9506,8.16803 l 0.7694,3.06548 -4.1611,7.98312 c -2.2887,4.39062 -5.0635,10.70017 -6.1665,14.02098 l -2.0055,6.03792 2.5933,4.1962 2.5934,4.1961 h 2.9006 2.9003 v -4.56813 -4.56802 l 1.8814,-2.32812 1.8811,-2.32802 -0.8554,7.19596 c -0.4707,3.95781 -0.8139,8.27538 -0.763,9.59466 0.051,1.31925 0.4714,6.31325 0.9347,11.09774 l 0.8422,8.6991 -2.069,5.41785 -2.0692,5.41786 1.3079,3.75209 c 0.7195,2.06369 1.308,5.71422 1.308,8.11226 0,2.39807 -1.0793,7.43118 -2.3987,11.18476 -1.3191,3.75352 -2.3985,7.83171 -2.3985,9.06267 v 2.2382 l 6.9712,-0.0948 6.9714,-0.0947 3.2982,2.16113 c 1.814,1.18865 4.924,4.69009 6.9112,7.78096 l 3.6129,5.61985 -0.7869,8.34267 c -0.4326,4.58835 -1.5065,9.71552 -2.3865,11.39362 -0.8797,1.67795 -3.3998,4.72606 -5.5998,6.77343 l -4,3.72249 -7.2748,1.97444 -7.2746,1.97433 h -10.1827 -10.1825 l -7.7286,-2.59349 c -4.2508,-1.4265 -9.8875,-3.91598 -12.5261,-5.53209 -2.6385,-1.61622 -7.4957,-5.55948 -10.7941,-8.76289 l -5.9965,-5.82442 -9.5946,-1.83664 -9.5946,-1.83657 -35.4983,-1.86261 -35.4984,-1.8627 -26.0102,1.82186 -26.0102,1.82196 -12.8498,2.48725 c -7.0675,1.36796 -18.5169,4.14431 -25.443,6.16961 -6.9261,2.02532 -14.901,4.70243 -17.7221,5.94929 -2.8211,1.24667 -5.6722,2.26683 -6.3358,2.26683 -0.6636,0 -6.0864,2.42864 -12.0509,5.39697 -5.9643,2.96833 -11.7483,5.37756 -12.8534,5.35378 z m 294.5166,-8.76739 7.4872,-0.29697 4.0898,-3.96391 c 2.2494,-2.18024 4.3454,-5.30071 4.6576,-6.93442 l 0.5679,-2.97036 -1.6475,-0.63227 -1.6476,-0.63219 -4.2426,3.72501 -4.2425,3.72507 h -6.6265 -6.6263 l -6.5133,-6.15994 -6.5132,-6.15987 -1.204,-4.33427 c -0.6621,-2.38382 -1.2069,-6.29053 -1.2105,-8.68175 0,-2.39109 0.3348,-6.05551 0.7524,-8.14306 l 0.759,-3.79554 5.063,-5.64918 c 2.7848,-3.10714 5.9512,-7.37637 7.0366,-9.48743 1.0855,-2.11105 1.9736,-4.69154 1.9736,-5.73447 0,-1.04293 -0.8017,-2.20376 -1.7814,-2.57975 l -1.7812,-0.68349 -3.5244,2.81998 c -1.9383,1.55096 -5.7207,4.40514 -8.4052,6.3424 -2.6848,1.9374 -6.3687,5.6696 -8.1871,8.29385 l -3.3058,4.77141 0.032,11.49508 0.032,11.49512 3.9455,6.88078 3.9455,6.88079 5.1123,4.18901 5.1121,4.18901 4.703,1.16408 c 2.5867,0.64024 8.0724,1.03049 12.1903,0.86716 z m 2.5727,-13.97664 h 3.2799 l 2.6249,-2.44542 2.6248,-2.44532 v -3.75669 -3.75663 l 1.9647,-2.17081 1.9643,-2.1708 -1.4996,-1.80701 c -0.8249,-0.99377 -3.3488,-2.94979 -5.6087,-4.34654 l -4.1091,-2.53941 -3.4655,1.43548 c -1.9062,0.78948 -3.7872,2.2737 -4.1805,3.29813 l -0.7147,1.86258 1.828,2.01992 c 1.0053,1.11081 1.8278,2.47447 1.8278,3.03021 0,0.55576 0.9048,2.01023 2.0106,3.23209 l 2.0104,2.22162 -1.3492,1.34922 -1.3493,1.34929 -3.0178,-1.97726 c -1.6598,-1.08752 -3.5762,-1.97732 -4.2591,-1.97732 -0.683,0 -1.2417,0.76162 -1.2417,1.69238 0,0.93081 1.6605,3.08958 3.69,4.79732 l 3.6901,3.10497 z m -253.0766,-1.19933 c 1.168,0 4.6151,-0.84892 7.6601,-1.88645 3.0451,-1.03752 6.1677,-2.647 6.9392,-3.57676 l 1.4028,-1.69032 -0.101,-7.19154 -0.101,-7.19166 -4.3909,-8.71923 -4.391,-8.71919 -8.5299,-8.82246 -8.5298,-8.8224 -8.995,0.79047 c -4.9472,0.43489 -10.2093,1.08972 -11.6934,1.45515 l -2.6986,0.66455 v 2.21253 2.21254 l 8.6951,7.39062 c 4.7825,4.06477 10.7429,9.28522 13.2454,11.60074 2.5026,2.31566 5.6944,6.43611 7.0925,9.15638 l 2.5424,4.94605 -0.1357,8.0955 -0.1357,8.09548 z m 23.9274,-22.78729 c 1.2311,0 3.0818,-0.94447 4.1128,-2.09882 1.031,-1.15431 3.0394,-5.95659 4.4632,-10.67174 l 2.5889,-8.57294 -0.3794,-4.61968 -0.3796,-4.61972 -2.6637,-0.37863 -2.6639,-0.37874 -4.3186,3.37707 c -2.3751,1.85728 -5.4077,5.4747 -6.7391,8.03862 l -2.4206,4.66168 2.0383,4.93297 c 1.1209,2.71312 2.5072,6.14726 3.0807,7.63141 l 1.0425,2.69852 z m 152.0256,-7.19593 h 2.7254 l 2.1858,-2.88022 c 1.2023,-1.58406 3.1789,-4.68063 4.3925,-6.88117 l 2.2064,-4.00084 1.3916,1.8315 1.3915,1.83137 7.1958,1.32192 c 3.9579,0.727 8.4061,1.71191 9.8849,2.18865 l 2.6889,0.86685 6.8132,-7.37237 6.8129,-7.37228 6.847,-4.15941 c 3.7659,-2.28759 8.289,-6.04977 10.0514,-8.36041 l 3.2044,-4.20111 1.3483,-6.42854 1.3486,-6.42864 -1.4699,-3.54821 -1.4697,-3.54823 -5.7449,-4.28904 -5.745,-4.28903 -2.0716,-4.36532 -2.0714,-4.3652 1.3866,-4.2015 c 0.7626,-2.31087 1.0667,-5.03538 0.6755,-6.05481 l -0.7113,-1.85321 -9.8923,0.37577 -9.8922,0.37586 -0.8087,-7.30249 c -0.4447,-4.01632 -1.3935,-9.47422 -2.1082,-12.12858 l -1.2995,-4.82609 -5.2897,-4.33449 c -2.9094,-2.38392 -5.6165,-4.33439 -6.0161,-4.33439 -0.3997,0 -3.4727,-1.88894 -6.8289,-4.19765 -3.3564,-2.3087 -7.1086,-4.19764 -8.3387,-4.19764 h -2.2365 l -1.9501,2.97612 -1.9499,2.97602 -0.113,10.36173 -0.1131,10.36173 4.9873,4.65207 4.9873,4.65221 h -4.7232 -4.7232 l -1.9791,3.02038 -1.979,3.02051 0.8369,7.39746 c 0.4604,4.06862 1.6213,8.91415 2.5797,10.76784 l 1.7428,3.3701 4.4493,1.85907 4.4492,1.85897 -1.7794,1.11323 c -0.9787,0.61224 -3.7776,1.03934 -6.2197,0.94914 l -4.4403,-0.16417 -1.8561,1.54051 -1.8563,1.54056 v 7.60709 7.60699 l 3.7843,4.31004 c 2.0812,2.37059 5.8591,5.36868 8.3953,6.66239 2.536,1.29384 4.611,2.67353 4.611,3.06596 0,0.39232 -2.9364,0.34648 -6.5255,-0.10191 l -6.5254,-0.8153 -1.8699,3.61587 c -1.0284,1.98873 -1.8698,5.49641 -1.8698,7.79491 0,2.29865 0.5773,5.69755 1.2828,7.55326 0.7055,1.8557 2.1385,4.31949 3.1841,5.47506 1.0459,1.15557 3.1279,2.10099 4.6269,2.10099 z m 15.2835,-16.79065 h -1.5901 v -2.38367 -2.38354 l 4.4974,-2.92338 c 2.4738,-1.60769 7.3699,-5.61382 10.8803,-8.90239 l 6.383,-5.97911 -1.8423,-3.56275 c -1.0133,-1.95947 -3.4128,-4.84133 -5.3322,-6.40405 -1.9195,-1.56272 -5.3121,-3.88043 -7.5389,-5.15028 l -4.0489,-2.30907 2.167,-0.49053 2.167,-0.49051 2.6302,1.90826 c 1.4467,1.04964 3.8406,2.77355 5.3197,3.83088 l 2.6892,1.92264 1.8082,-0.69392 1.8084,-0.69381 v -7.59787 -7.59776 l -3.0872,-6.19488 -3.087,-6.19479 -6.3538,-3.63528 c -3.4947,-1.99942 -7.1666,-3.6353 -8.1598,-3.6353 -0.9931,0 -2.4779,-0.80954 -3.2988,-1.79898 l -1.4932,-1.79901 h 2.5683 c 1.4124,0 5.6022,1.61909 9.3106,3.59799 3.7084,1.9789 7.7591,3.598 9.002,3.598 h 2.2594 l 1.0958,2.88187 c 0.6025,1.58489 1.7212,3.26853 2.4861,3.74117 0.7649,0.47266 2.9569,3.32923 4.8714,6.34794 1.9143,3.01871 3.4806,6.5193 3.4806,7.77908 0,1.2599 -1.3492,3.8941 -2.9983,5.85392 -1.6491,1.95983 -2.9983,4.39148 -2.9983,5.40371 v 1.84049 l 4.2885,-0.80451 4.2886,-0.80463 1.7081,1.4176 c 0.9395,0.7797 1.7081,2.79324 1.7081,4.47472 v 3.05697 l -5.1126,4.89158 -5.1125,4.89158 -9.2455,4.68388 c -5.085,2.57615 -10.4343,5.94926 -11.887,7.49578 -1.4531,1.54656 -3.3572,2.81196 -4.2315,2.81196 z m -177.63,-2.39866 c 1.3015,0 3.7991,-1.00072 5.55,-2.2238 1.7509,-1.22306 4.5478,-2.55241 6.215,-2.95418 1.6673,-0.40179 4.6356,-2.40611 6.5964,-4.45407 l 3.5647,-3.72369 v -12.45262 -12.45265 l -1.4113,-1.41016 -1.4114,-1.41018 -2.8993,0.72774 c -1.5946,0.40024 -5.6386,2.90875 -8.9867,5.5745 -3.3479,2.66575 -7.7931,7.39891 -9.8783,10.51812 l -3.7907,5.67137 0.4453,7.37037 0.4455,7.37036 1.597,1.92444 c 0.8786,1.05841 2.6622,1.92445 3.9638,1.92445 z m -9.0153,-27.58457 c 0.9682,0 4.818,-2.34409 8.5553,-5.20907 3.7371,-2.86505 9.3592,-6.77788 12.4934,-8.69512 l 5.6983,-3.48611 1.9201,-4.03789 1.9201,-4.0379 -1.0222,-7.83222 -1.0223,-7.83222 -1.99,-1.24778 -1.9901,-1.24767 -8.5988,7.0349 c -4.7294,3.86917 -10.5499,9.41595 -12.9346,12.32623 l -4.3357,5.29123 -0.8415,7.13683 c -0.463,3.92516 -0.565,8.1943 -0.2269,9.48682 l 0.6145,2.34997 z m 5.2308,-32.3819 c 0.4368,0 2.6848,-1.48418 4.9954,-3.29817 2.3105,-1.81397 6.4089,-4.64738 9.1074,-6.29647 l 4.9067,-2.99833 1.5254,-3.59798 1.5252,-3.59801 -0.065,-10.79394 -0.065,-10.79397 -1.4502,-2.69848 c -0.7976,-1.48419 -2.3159,-2.69851 -3.3742,-2.69851 -1.0582,0 -5.5785,2.95276 -10.0451,6.56166 l -8.1214,6.56177 -1.3062,6.09032 c -0.7183,3.3496 -1.3062,10.27331 -1.3062,15.38595 v 9.29578 l 1.4393,1.43918 c 0.7916,0.79156 1.7967,1.4392 2.2338,1.4392 z m 189.5907,-39.61578 c 1.0836,0.0204 2.2499,-0.69056 2.5917,-1.58094 0.3416,-0.89039 0.1311,-7.71889 -0.4687,-15.17439 l -1.0896,-13.55568 -3.0499,-3.99868 c -1.6775,-2.19934 -3.9725,-4.46967 -5.1001,-5.04522 -1.1276,-0.57555 -3.8481,-1.38773 -6.046,-1.80476 l -3.996,-0.75821 -2.2275,1.19202 -2.2276,1.19214 -0.7765,5.17929 -0.7768,5.17931 1.2737,4.71204 c 0.7004,2.59163 3.2176,7.8153 5.5933,11.60819 l 4.3198,6.89614 h 1.6397 c 0.9019,0 3.1541,1.33223 5.0048,2.96044 1.8507,1.6282 4.2517,2.97745 5.3357,2.99831 z m -216.6363,142.74637 -1.7848,1.48129 -0.7063,-1.84038 c -0.3885,-1.01225 -0.098,-2.97708 0.6457,-4.36636 l 1.3517,-2.52592 1.1394,0.704 c 0.6263,0.38726 1.139,1.68551 1.139,2.88508 0,1.19955 -0.8032,2.84758 -1.7847,3.66229 z m -46.343,-5.50515 -3.4433,4.67748 v -3.04699 -3.04701 l 7.2902,-7.62702 7.2905,-7.62716 2.4489,-5.39696 2.4488,-5.39703 0.5283,1.4188 c 0.2905,0.78034 -0.8385,4.30728 -2.5086,7.83777 -1.67,3.53036 -4.7409,8.01911 -6.8239,9.97483 -2.083,1.95572 -5.3369,5.66073 -7.2309,8.23329 z m 112.6294,-8.87505 h -6.2143 l 1.1394,-1.03624 c 0.6266,-0.57002 3.672,-1.64943 6.7676,-2.39866 l 5.6282,-1.36243 14.1607,0.14245 14.1607,0.14246 -6.5962,1.03049 c -3.628,0.56667 -10.2493,1.58191 -14.7141,2.25616 -4.4647,0.67415 -10.9141,1.22574 -14.332,1.22574 z m 209.5075,-15.59128 c -1.0102,0 -2.1562,-0.83283 -2.5469,-1.85071 -0.3906,-1.01787 -0.3867,-2.17426 0.015,-2.56956 0.3952,-0.39542 1.5414,-0.0359 2.5467,0.79816 1.0055,0.83448 1.828,1.99075 1.828,2.56956 10e-5,0.57893 -0.8263,1.05255 -1.8365,1.05255 z m -335.287,-1.19933 c -1.0961,0 -2.6432,-0.78368 -3.4381,-1.74142 -0.7949,-0.95769 -1.2658,-2.53036 -1.0465,-3.49487 0.2195,-0.96438 4.8744,-5.8652 10.3447,-10.89075 l 9.9456,-9.1372 1.1482,0.70962 c 0.6314,0.39027 1.148,1.90682 1.148,3.37024 0,1.46343 -0.8881,3.99509 -1.9735,5.62605 -1.0853,1.63097 -4.7099,5.79876 -8.0544,9.26183 l -6.081,6.2965 z m 355.1735,-0.0121 -1.859,-0.0121 -9.8944,-10.92314 -9.8946,-10.92276 v -2.85609 -2.8586 h 1.7777 c 0.9778,0 6.9145,4.64824 13.1927,10.32935 l 11.4149,10.32934 v 2.02374 c 0,1.1131 -0.6476,2.6714 -1.4392,3.46295 -0.7914,0.79152 -2.2757,1.4344 -3.2981,1.42866 z M 290.1794,829.60427 H 284.26 l -4.0047,-4.24635 c -2.2028,-2.33557 -5.0654,-6.6438 -6.3616,-9.57401 -1.2961,-2.93021 -2.708,-7.67031 -3.1373,-10.53371 l -0.7807,-5.20616 1.8118,-4.3363 1.8117,-4.33617 4.9787,-3.14297 4.9787,-3.14285 2.5571,0.37156 2.5573,0.37143 2.1455,5.99666 c 1.18,3.29815 2.1478,6.85608 2.1505,7.90656 v 1.91006 l -4.1977,2.2605 -4.1975,2.26062 v 2.0837 c 0,1.14609 0.9785,2.60747 2.1746,3.24767 l 2.1747,1.16396 2.8068,-1.42158 c 1.5438,-0.78185 3.8323,-2.80344 5.0856,-4.4922 l 2.2787,-3.07076 1.8459,-10.69636 c 1.0152,-5.88306 2.5502,-12.05829 3.4109,-13.72271 0.8608,-1.66455 2.5647,-3.9067 3.7866,-4.98273 1.222,-1.07591 4.5522,-3.12822 7.4008,-4.56081 2.8485,-1.43261 7.8226,-2.91773 11.0534,-3.30032 l 5.8742,-0.69573 3.4684,1.43666 c 1.9077,0.79013 4.5175,2.88704 5.7998,4.65978 1.2823,1.77272 3.576,6.15748 5.0972,9.74407 l 2.7658,6.52085 -0.5307,6.39845 -0.5306,6.39842 -3.497,3.68121 c -1.9234,2.02472 -5.4994,4.71132 -7.947,5.97015 -2.4472,1.25881 -5.307,2.2888 -6.3549,2.2888 h -1.9054 l -2.3137,-5.09715 c -1.2726,-2.80344 -2.3255,-6.49942 -2.3399,-8.21314 l -0.027,-3.11597 4.8042,-2.16647 c 2.6424,-1.19153 5.3854,-2.86665 6.0957,-3.72261 l 1.2915,-1.55611 -0.7795,-2.45625 -0.7795,-2.45621 h -3.1042 -3.1041 l -4.1383,3.1564 -4.1383,3.15639 -1.6718,4.00107 c -0.9195,2.20053 -1.6718,6.16625 -1.6718,8.81256 0,2.64644 -0.8916,7.11623 -1.9814,9.93309 -1.0899,2.81676 -3.0702,6.33307 -4.4012,7.81398 -1.3308,1.48106 -5.1326,4.04464 -8.4483,5.69682 l -6.0285,3.00421 z m 624.1981,-1.287 c -1.0735,-0.0479 -3.5136,-1.08612 -5.4222,-2.30645 -1.9086,-1.22029 -3.8931,-2.90296 -4.4098,-3.73925 l -0.9398,-1.52039 1.7113,-3.30955 c 0.9412,-1.82022 1.7113,-4.15376 1.7113,-5.18567 v -1.87617 l -3.8976,-2.37659 c -2.1438,-1.30702 -5.3233,-2.37852 -7.0658,-2.38103 h -3.1678 l -1.9196,4.79731 c -1.0559,2.63853 -2.4851,4.79732 -3.1763,4.79732 -0.6913,0 -3.3942,-1.09031 -6.0064,-2.423 l -4.7495,-2.42266 v -1.81685 c 0,-0.99929 0.8479,-3.11094 1.8841,-4.6925 l 1.8844,-2.87576 -1.2497,-2.33485 -1.2496,-2.33486 -4.8564,-1.94315 c -2.6713,-1.07365 -5.8329,-1.94807 -7.0262,-1.94807 h -2.1692 l -2.8088,5.99664 -2.8087,5.99665 h -1.5254 c -0.8389,0 -3.3969,-1.10421 -5.6845,-2.45394 -2.2875,-1.34961 -4.4679,-3.25847 -4.8452,-4.24192 l -0.686,-1.78795 4.8481,-11.04955 c 2.6666,-6.07724 5.3513,-12.27897 5.9657,-13.78174 0.6146,-1.50264 1.9109,-3.03658 2.8808,-3.40883 l 1.7634,-0.67668 6.9421,3.2316 c 3.8181,1.77741 9.6406,4.49306 12.9388,6.03478 3.298,1.54174 13.0126,5.86449 21.5879,9.60602 8.5752,3.74169 17.4734,7.49979 19.7736,8.35118 2.3004,0.85153 4.7033,2.37409 5.3399,3.38331 l 1.1576,1.83498 -2.5512,5.77754 c -1.4032,3.17761 -3.7817,9.01572 -5.2855,12.97351 -1.5039,3.95777 -3.2298,7.87058 -3.8352,8.69511 -0.6054,0.82456 -1.979,1.45973 -3.0526,1.41151 z m -503.7008,-5.90899 c -0.6592,0 -2.0467,-0.84804 -3.0832,-1.88461 -1.0366,-1.03658 -1.8847,-2.62654 -1.8847,-3.53312 v -1.64846 l 10.3065,-7.5607 c 5.6685,-4.15845 12.9929,-9.62749 16.2764,-12.15364 l 5.9701,-4.59296 1.7134,0.65748 c 0.9424,0.36158 1.7134,1.40573 1.7134,2.32021 0,0.91439 -2.8647,4.30451 -6.3662,7.53335 -3.5013,3.22897 -10.2092,9.24396 -14.9067,13.36666 -4.6971,4.12269 -9.0798,7.49579 -9.739,7.49579 z m 381.7736,0 c -0.7487,0 -7.8589,-5.6402 -15.8001,-12.53382 -7.9412,-6.89352 -14.7764,-13.41401 -15.1893,-14.49006 -0.4127,-1.07591 -0.7505,-2.72163 -0.7505,-3.65712 0,-0.93547 0.5668,-1.70088 1.2598,-1.70088 0.6929,0 7.73,4.8495 15.6379,10.7767 7.9079,5.92719 15.4363,11.34313 16.73,12.0355 l 2.3521,1.25881 v 2.71624 c 0,1.49389 -0.6476,3.36389 -1.4391,4.15545 -0.7918,0.79154 -2.0519,1.43918 -2.8008,1.43918 z m -394.1609,-17.0159 c -0.4526,0.20579 -1.7264,-1.00432 -2.8303,-2.68927 l -2.0074,-3.06355 0.6305,-1.64273 c 0.3467,-0.90357 7.2872,-5.57149 15.4231,-10.37324 8.1362,-4.80176 16.7109,-10.00337 19.0551,-11.55914 2.3442,-1.55575 4.9453,-2.82862 5.7801,-2.82862 h 1.5182 l -0.383,2.68843 -0.3834,2.68828 -7.342,5.40718 c -4.038,2.97385 -12.1335,8.9151 -17.9898,13.2027 -5.8564,4.28759 -11.0184,7.96403 -11.4711,8.16996 z m 203.8885,0.14095 c -2.8469,-0.0467 -5.9856,-0.45106 -6.9751,-0.89948 -0.9895,-0.44832 -6.9261,-4.29707 -13.1926,-8.55291 -6.2666,-4.25568 -12.4733,-7.76373 -13.7928,-7.79564 -1.3195,-0.0323 -3.4783,-1.00347 -4.7974,-2.15916 -1.3188,-1.15565 -4.5569,-3.93884 -7.1954,-6.1848 -2.6385,-2.246 -5.7748,-5.75716 -6.9695,-7.80272 l -2.1723,-3.71913 1.8865,-0.72392 1.8864,-0.72392 6.2824,5.29421 6.2824,5.29409 7.575,3.23495 7.5749,3.23482 h 12.3875 12.3875 l 7.6223,-2.29457 c 4.1921,-1.26204 9.511,-2.66825 11.8197,-3.12484 2.3087,-0.45659 6.0866,-1.66539 8.3953,-2.68601 2.3087,-1.02063 8.0951,-3.66226 12.8587,-5.87012 4.7635,-2.20797 8.9463,-4.01441 9.2948,-4.01441 0.3487,0 0.6337,0.59727 0.6337,1.3272 0,0.72991 -3.7352,5.1824 -8.3007,9.89446 l -8.3007,8.56728 -0.8243,3.29816 -0.8242,3.29815 h -3.6325 -3.6324 l -7.931,5.20881 c -4.362,2.86483 -9.1098,5.83318 -10.5506,6.59632 -1.4409,0.76313 -4.9489,1.34961 -7.7956,1.30318 z m 201.5391,-1.11501 c -1.1485,0 -2.414,-0.52759 -2.8125,-1.17234 -0.3985,-0.64488 -9.2005,-7.22549 -19.5599,-14.62366 -10.3595,-7.39819 -19.2318,-14.02161 -19.7165,-14.71865 -0.4846,-0.69717 -0.8894,-1.94221 -0.8993,-2.76675 -0.015,-0.82453 0.8345,-1.49915 1.8771,-1.49915 1.0425,0 4.6855,1.82035 8.0954,4.04522 3.41,2.22476 12.4122,7.78424 20.0047,12.35429 7.5927,4.57017 14.7439,8.66959 15.8912,9.10987 l 2.0862,0.80056 v 2.79611 c 0,1.53789 -0.6476,3.44375 -1.4392,4.23531 -0.7914,0.79156 -2.3786,1.43919 -3.5272,1.43919 z m -416.2751,-19.19012 -2.0761,5.9e-4 -0.7564,-3.01393 -0.7565,-3.0139 1.2455,-1.48357 c 0.685,-0.81592 3.0391,-2.38283 5.2311,-3.48203 2.192,-1.09917 12.5025,-6.09138 22.912,-11.09378 10.4097,-5.0024 19.4497,-9.09536 20.0887,-9.09536 0.6394,0 1.1623,0.72595 1.1623,1.6131 0,0.88727 -0.9444,2.45347 -2.0987,3.48046 -1.1543,1.0271 -6.6862,4.54174 -12.2931,7.8105 -5.6069,3.26878 -14.7818,8.71817 -20.3886,12.11001 -5.6069,3.39169 -11.1286,6.16718 -12.2703,6.16766 z m 427.4958,-0.0526 c -1.1312,-0.0288 -6.3742,-2.68265 -11.6512,-5.89637 -5.2771,-3.21373 -15.6111,-9.40947 -22.9644,-13.76818 -7.3534,-4.35874 -14.0498,-8.7443 -14.8808,-9.74576 l -1.5111,-1.82071 1.0885,-1.07807 1.0886,-1.07796 14.9916,7.24827 c 8.2453,3.98657 19.3092,9.29397 24.5861,11.79421 5.2772,2.50011 10.5822,5.63817 11.7891,6.97337 l 2.1945,2.42757 -1.3372,2.49844 -1.3372,2.49844 z m -335.1409,-2.15375 -0.5422,1.60734 -1.8681,-3.59797 c -1.0276,-1.97891 -4.4188,-6.2965 -7.5363,-9.59465 l -5.6679,-5.99665 -1.2517,-4.19766 c -0.6881,-2.3087 -1.2406,-6.79024 -1.2279,-9.95887 l 0.024,-5.7612 1.2673,-1.26734 1.2672,-1.26721 -0.1922,7.6937 -0.1924,7.69358 4.5527,6.53083 c 2.5041,3.59199 6.2083,8.77585 8.2316,11.51978 l 3.6785,4.98896 z m 451.8571,-2.58994 c -1.4507,0 -2.9477,-0.31004 -3.3267,-0.68902 -0.379,-0.37888 -4.3816,-1.65364 -8.895,-2.83271 -4.5132,-1.17905 -10.6348,-3.00633 -13.6033,-4.06067 -2.9682,-1.05446 -10.254,-3.32803 -16.1907,-5.05243 -5.9367,-1.72438 -14.302,-4.28125 -18.5897,-5.68193 -4.2875,-1.40071 -8.4588,-3.03623 -9.2696,-3.63456 l -1.4738,-1.08781 1.1668,-2.18061 c 0.642,-1.19933 1.7628,-4.95779 2.4906,-8.35203 l 1.3237,-6.17125 1.4608,-0.56059 c 0.8036,-0.30834 3.0446,0.26518 4.9802,1.27454 1.9354,1.00925 4.2646,1.83845 5.1758,1.84242 0.9111,0 6.3081,1.53716 11.9931,3.40705 5.6853,1.86976 15.1939,4.86376 21.1308,6.65328 5.9366,1.78952 14.8415,4.53537 19.7889,6.10194 l 8.9949,2.84828 0.3796,1.84986 c 0.209,1.01738 -0.808,5.10711 -2.2595,9.08804 l -2.6392,7.2382 z m -447.1269,-5.2596 c -0.2901,0.29011 -1.872,-1.24119 -3.5151,-3.40298 -1.6433,-2.16166 -3.8774,-5.65759 -4.9647,-7.76867 l -1.9766,-3.83832 0.021,-4.55696 c 0.015,-2.50637 0.8078,-8.27263 1.7699,-12.81377 l 1.7493,-8.25666 -0.7468,-8.83377 -0.7467,-8.8338 h 1.3177 c 0.7246,0 2.973,2.40597 4.9962,5.34663 l 3.6785,5.34647 -0.5276,23.54224 c -0.2902,12.9482 -0.7647,23.7796 -1.0549,24.06959 z m -221.3532,-7.44763 c -0.4948,0.30582 -1.6216,0.10914 -2.5042,-0.43584 l -1.6047,-0.99174 -2.794,-10.62258 c -1.5368,-5.84244 -2.8128,-11.82591 -2.8355,-13.29677 l -0.041,-2.67401 4.4974,-2.27921 c 2.4737,-1.25342 8.2754,-3.74166 12.8929,-5.52939 4.6174,-1.78771 12.443,-4.85261 17.3902,-6.81075 4.9474,-1.95826 10.6141,-4.34014 12.5931,-5.29313 1.9789,-0.95299 6.2396,-2.67534 9.4682,-3.8273 3.2285,-1.15207 6.4476,-3.0132 7.1535,-4.13589 0.706,-1.12281 0.9818,-2.34288 0.6132,-2.71144 -0.3685,-0.36855 -14.6515,-0.11758 -31.7398,0.55807 -17.0884,0.67557 -31.8794,1.47851 -32.8687,1.78459 -0.9894,0.30595 -2.6085,0.0481 -3.5979,-0.57318 l -1.7992,-1.12939 v -18.55459 -18.5546 l 3.4408,-3.59005 3.4408,-3.59008 5.5542,-1.22535 c 3.0549,-0.67402 15.4234,-1.82731 27.4854,-2.56285 l 21.931,-1.33749 4.0561,1.33868 4.056,1.33859 2.1678,3.23757 2.1677,3.23759 1.3905,19.78894 1.3905,19.78893 1.6371,4.75474 1.6373,4.75475 3.2878,1.84157 3.2878,1.84157 2.1091,-1.35645 2.1092,-1.35642 -0.2998,-2.54139 c -0.1649,-1.39769 -0.4348,-3.7389 -0.5997,-5.20245 l -0.2998,-2.66108 2.1215,-0.42946 2.1214,-0.42961 1.7763,4.25137 c 0.9771,2.33834 1.7764,5.64261 1.7764,7.34279 v 3.09138 l -2.9438,2.94388 -2.9438,2.94376 h -4.7811 c -2.6295,0 -5.1145,0.53969 -5.5222,1.19933 -0.4077,0.65963 -2.2084,1.19932 -4.0015,1.19932 -1.7933,0 -4.4599,0.84013 -5.9259,1.867 l -2.6657,1.867 v 2.18386 c 0,1.20099 0.8026,2.84985 1.7835,3.66384 l 1.7835,1.48008 2.9025,-0.72847 c 1.5964,-0.40058 3.6271,-0.99497 4.5131,-1.32058 0.8857,-0.32573 2.3376,-0.12874 3.2261,0.43751 l 1.6159,1.02974 1.4958,7.96055 1.496,7.96055 -1.3127,0.9934 c -0.7219,0.5463 -7.2493,1.91126 -14.5052,3.03322 -7.2559,1.122 -22.7981,2.81424 -34.5381,3.76063 -11.74,0.94639 -21.7501,1.97098 -22.2448,2.27669 z M 284.116,749.2496 c 1.648,0 5.2592,-0.50853 8.0248,-1.13013 2.7657,-0.62149 6.4533,-1.42636 8.1944,-1.78856 1.7413,-0.3622 3.4785,-1.47278 3.8602,-2.46798 0.3819,-0.99507 0.3837,-2.61884 0,-3.6083 l -0.6904,-1.799 -2.5701,0.0419 c -1.4136,0.0238 -3.9194,0.81375 -5.5684,1.75656 -1.6491,0.94266 -4.0778,1.73505 -5.3971,1.76096 -1.3192,0.0264 -4.1795,1.13264 -6.3558,2.45958 l -3.9571,2.41269 0.7298,1.18086 c 0.4012,0.64944 2.078,1.18085 3.7258,1.18085 z m 0.3302,-59.40435 23.5173,-0.85189 1.4992,-1.20126 c 0.8244,-0.66067 1.499,-1.95632 1.499,-2.87921 0,-0.92276 -1.2147,-2.23137 -2.6994,-2.90777 l -2.6996,-1.23005 -21.421,1.00697 -21.421,1.00696 -1.5827,2.16431 -1.5826,2.16431 0.6868,1.78976 0.6868,1.78964 z m 95.8836,75.9088 c -0.4361,0.22823 -1.9369,-0.81301 -3.335,-2.31374 -1.3982,-1.50072 -2.3907,-3.49485 -2.2056,-4.43129 l 0.3367,-1.70255 4.7973,-1.52425 c 2.6386,-0.83832 8.8451,-3.13863 13.7922,-5.11166 4.9472,-1.97302 11.9634,-4.74562 15.5912,-6.16118 3.6282,-1.4157 8.2971,-3.35693 10.3757,-4.31388 2.0787,-0.95694 4.3937,-1.73987 5.1449,-1.73987 0.7512,0 3.4815,-1.0794 6.0674,-2.39865 2.5861,-1.31928 5.5329,-2.39867 6.5486,-2.39867 h 1.8468 v 1.61779 1.61789 l -14.6918,7.29131 c -8.0805,4.0102 -21.1681,10.41031 -29.0838,14.22249 -7.9156,3.8122 -14.7486,7.11803 -15.1846,7.34626 z m 443.0177,0.25702 c -0.4796,-0.0157 -3.3005,-1.31291 -6.2689,-2.88198 -2.9682,-1.56898 -13.2224,-6.61264 -22.7872,-11.20811 -9.5646,-4.59547 -19.4637,-9.32021 -21.9978,-10.49964 -2.5343,-1.1793 -4.8947,-2.89207 -5.2454,-3.80596 -0.3508,-0.914 -0.3488,-1.9507 0,-2.3038 0.3531,-0.35306 4.3325,0.71901 8.8433,2.38249 4.5108,1.66334 11.7521,4.34192 16.0917,5.95237 4.3398,1.61035 8.9274,3.52148 10.1944,4.24671 1.267,0.72537 5.5421,2.46499 9.4998,3.86605 3.9578,1.40106 9.0662,3.24178 11.3518,4.09055 2.2857,0.84877 4.3603,2.15698 4.6102,2.90695 0.2501,0.75004 -0.418,2.6957 -1.4849,4.32358 -1.0665,1.62796 -2.3316,2.94686 -2.8111,2.93079 z m -71.5942,-5.29719 -1.7607,2.32802 v -2.99835 c 0,-1.64905 0.7755,-4.34756 1.7183,-5.99664 l 1.714,-2.9983 0.042,3.66861 c 0.023,2.01775 -0.7498,4.71624 -1.7183,5.99666 z m -138.2608,-6.76434 c -1.1543,-0.0541 -3.7179,-0.83882 -5.6969,-1.74491 -1.9788,-0.90609 -5.9494,-1.67187 -8.8233,-1.70161 l -5.2255,-0.054 0.661,-1.72246 0.661,-1.72236 -2.3529,-2.99114 c -1.294,-1.645 -1.9381,-3.24717 -1.4314,-3.56046 0.5068,-0.31313 4.5894,-0.27487 9.0725,0.0852 l 8.1512,0.65436 1.6635,3.21672 c 0.9149,1.76926 2.5086,3.91822 3.5415,4.77549 1.0331,0.85728 1.8782,2.30212 1.8782,3.21073 v 1.65183 z M 445.141,748.05028 c -0.5795,0 -1.0537,-0.97627 -1.0537,-2.16948 0,-1.19308 0.7654,-3.21612 1.701,-4.49557 l 1.7009,-2.32621 0.8591,0.8592 0.8591,0.8592 -1.5061,3.63635 c -0.8285,2.00013 -1.9807,3.63651 -2.5603,3.63651 z m 497.9271,-2.55782 c -0.3627,-0.0876 -3.8977,-0.94136 -7.8555,-1.89734 -3.9578,-0.95611 -12.323,-2.82657 -18.5896,-4.15677 -6.2665,-1.33017 -15.7112,-3.42538 -20.9882,-4.65627 -5.2771,-1.23088 -12.8016,-2.79755 -16.721,-3.48165 l -7.1263,-1.24382 -1.0341,-1.49725 -1.0342,-1.49735 0.6915,-8.29301 c 0.3802,-4.56117 0.9978,-9.51439 1.3726,-11.00707 0.3746,-1.4927 1.4173,-2.99644 2.3171,-3.34171 0.8997,-0.34527 7.0104,-0.99796 13.579,-1.45034 6.5688,-0.45237 12.6652,-1.29864 13.5474,-1.88043 l 1.6041,-1.05793 -2.0757,-1.59163 c -1.1416,-0.87539 -6.2686,-2.50563 -11.3936,-3.6228 -5.1249,-1.11719 -10.6673,-2.43549 -12.3163,-2.92973 l -2.9984,-0.89854 0.1631,-2.95168 c 0.09,-1.62341 0.6294,-6.99941 1.1993,-11.94665 l 1.0363,-8.99496 15.0578,-0.7305 c 8.2816,-0.40178 25.2823,-0.94148 37.7788,-1.19933 l 22.7212,-0.46883 -0.2136,7.56885 -0.2138,7.56885 -1.3707,1.65174 -1.3708,1.65182 -18.9231,-0.70388 -18.923,-0.70378 -0.9343,1.51177 -0.9344,1.51174 1.5954,0.98609 c 0.8776,0.54233 4.3198,1.34589 7.6495,1.78568 3.3299,0.43992 9.2924,1.55349 13.2499,2.47459 3.9579,0.9212 9.6248,2.40837 12.5931,3.30498 l 5.3971,1.63025 0.3563,7.34121 0.3564,7.34133 -1.2981,2.42552 -1.2981,2.42541 h -19.147 -19.1471 v 1.63481 1.63481 l 6.2964,1.91642 c 3.4631,1.05396 9.8046,2.50923 14.0923,3.23397 4.2876,0.72465 9.8194,1.84601 12.2931,2.49173 l 4.4974,1.17404 v 8.10914 8.10925 l -1.4392,1.43921 c -0.7917,0.79154 -1.736,1.36758 -2.099,1.28004 z m -571.0237,-1.04022 c -1.0537,0 -2.2756,-0.3598 -2.7154,-0.79961 -0.4397,-0.43966 -0.7995,-2.08635 -0.7995,-3.65913 v -2.85958 l 3.8978,-1.60362 c 2.1438,-0.88197 6.3264,-1.99771 9.2948,-2.47937 2.9684,-0.48154 6.8543,-1.62137 8.6356,-2.53274 1.7812,-0.9115 4.3549,-1.65723 5.7193,-1.65723 1.3644,0 6.1136,-1.2665 10.5537,-2.81436 4.4401,-1.54785 10.2318,-3.20125 12.8703,-3.67414 2.6385,-0.47289 8.1848,-2.19777 12.3252,-3.83293 4.1403,-1.63517 8.0531,-2.64849 8.6951,-2.25174 0.6419,0.39686 1.1673,1.39612 1.1673,2.22067 v 1.49941 l -5.6968,1.94375 c -3.1333,1.06896 -8.3954,2.87155 -11.6934,4.00565 -3.2984,1.13395 -7.3461,2.61201 -8.9951,3.28436 -1.649,0.67223 -5.6967,2.23817 -8.9949,3.47961 -3.2982,1.24153 -8.965,3.26204 -12.593,4.49016 -3.6279,1.22811 -9.5571,3.35968 -13.1756,4.73689 -3.6188,1.37718 -7.4416,2.50395 -8.4954,2.50395 z m 458.696,-0.36172 c -1.2474,0.13085 -4.9665,-0.73698 -8.2647,-1.92862 -3.2982,-1.19168 -12.2031,-4.46524 -19.789,-7.27444 -7.5858,-2.80919 -18.1099,-6.71672 -23.3868,-8.68349 -5.2772,-1.96666 -10.7926,-3.85227 -12.2566,-4.19023 -1.4641,-0.33796 -3.2788,-1.35776 -4.0328,-2.26638 l -1.3711,-1.65196 1.9068,-0.7317 1.9068,-0.73171 7.5231,2.50337 c 4.1377,1.37671 13.4597,4.16178 20.7156,6.18888 7.2559,2.02711 16.7007,4.71759 20.9883,5.97892 4.2877,1.26131 9.846,2.64211 12.352,3.06835 2.5059,0.42637 5.3163,1.53515 6.2452,2.4639 l 1.6888,1.68879 -0.9788,2.66417 -0.9786,2.6642 z m -363.5661,-6.44436 c -0.4947,0.29228 -2.2779,-0.89015 -3.9628,-2.62773 -1.6849,-1.73758 -3.422,-4.10363 -3.8602,-5.25799 -0.4382,-1.15435 -1.5153,-2.09882 -2.3936,-2.09882 -0.8782,0 -2.2444,0.64764 -3.036,1.4392 -0.7914,0.79155 -1.4392,2.41067 -1.4392,3.59798 0,1.18735 -0.5974,2.15881 -1.3276,2.15881 h -1.3276 l 0.6846,-1.78437 c 0.3766,-0.98142 1.0428,-4.48202 1.4801,-7.77921 l 0.7952,-5.99472 -1.4719,-3.55362 c -0.8095,-1.95442 -1.2502,-4.21901 -0.979,-5.03239 l 0.493,-1.47889 4.3706,8.60314 4.3706,8.60329 4.2517,3.73289 c 2.3384,2.05315 4.2516,4.45479 4.2516,5.33702 0,0.88211 -0.4047,1.84313 -0.8995,2.13541 z m 115.3233,-1.58924 c -0.3649,0 -0.4871,-0.91518 -0.2717,-2.03392 0.2154,-1.11862 2.1263,-3.0469 4.2462,-4.28499 l 3.8545,-2.25124 8.7346,-0.35296 8.7344,-0.35296 3.8979,1.57855 3.8979,1.57855 v 1.56033 1.56033 l -11.428,-0.41677 -11.4277,-0.41665 -4.7883,1.91581 c -2.6336,1.05372 -5.0869,1.91592 -5.4517,1.91592 z m 171.0767,-2.39866 c -0.585,0 -2.2996,-2.02385 -3.8101,-4.49748 -1.5105,-2.47362 -3.3834,-5.03718 -4.1617,-5.69681 -0.7786,-0.65962 -3.8205,-3.95635 -6.76,-7.3261 l -5.3442,-6.12678 -0.7636,-5.57053 c -0.42,-3.0638 -1.9199,-7.86257 -3.333,-10.66382 -1.4134,-2.80128 -4.7757,-7.81196 -7.4718,-11.13458 -2.6962,-3.32275 -7.7817,-8.44987 -11.301,-11.39363 -3.5192,-2.94387 -9.1922,-6.58913 -12.6066,-8.10088 -3.4144,-1.51162 -8.6514,-3.33905 -11.6377,-4.06082 -2.9864,-0.72186 -5.9297,-1.766 -6.5409,-2.32033 l -1.111,-1.00792 2.1287,-2.35211 2.1286,-2.35212 -0.8053,-5.172 c -0.4431,-2.84469 -1.0614,-6.08239 -1.3742,-7.19489 l -0.5688,-2.02292 -2.5478,-0.37574 c -1.4013,-0.20676 -2.782,-1.08612 -3.068,-1.95432 l -0.5201,-1.57832 2.5251,-0.66035 c 1.3886,-0.36315 2.521,-1.272 2.5165,-2.01954 0,-0.74766 -1.095,-5.89195 -2.4229,-11.43165 -1.3281,-5.53983 -2.1352,-10.93681 -1.7938,-11.9933 0.3416,-1.05661 2.3764,-2.92072 4.5218,-4.14259 2.1455,-1.22188 10.3705,-5.50182 18.2778,-9.51082 l 14.3769,-7.28916 10.2094,-2.1354 c 5.6152,-1.17439 11.6616,-2.15663 13.4367,-2.18266 1.775,-0.0264 3.4735,0.35754 3.7742,0.85224 0.3008,0.49473 -0.192,7.10603 -1.0951,14.69179 -0.9032,7.58575 -2.4887,18.10986 -3.5233,23.3869 -1.0346,5.27708 -2.3678,14.91489 -2.9626,21.41729 l -1.0815,11.82263 -2.1053,2.32633 -2.1052,2.32623 -3.0609,-0.35668 -3.061,-0.35657 0.4182,-8.69514 0.418,-8.69512 h -1.1814 -1.1814 l -0.8666,5.69681 c -0.4765,3.13323 -1.0765,7.81961 -1.3329,10.41424 l -0.4666,4.71745 -2.4011,2.55576 c -1.3205,1.40576 -2.4011,3.15905 -2.4011,3.89616 0,0.73709 1.5675,2.45634 3.4833,3.82046 1.9159,1.36422 4.5306,2.48033 5.8107,2.48033 1.2802,0 5.5709,-2.09644 9.5352,-4.65855 l 7.2077,-4.65867 2.573,-5.31473 c 1.4149,-2.92299 2.5726,-6.74502 2.5726,-8.49328 0,-1.74827 -0.8823,-5.02892 -1.9606,-7.29035 l -1.9609,-4.11192 0.7843,-3.12485 0.7843,-3.12485 h 2.8885 2.8885 l 2.4816,3.15485 c 1.3648,1.73529 3.0788,5.37263 3.8086,8.08311 l 1.327,4.92816 -0.721,5.26049 c -0.3965,2.89327 -2.3625,10.0414 -4.3688,15.88465 l -3.6479,10.62425 3.6461,9.1058 c 2.0054,5.00816 3.9818,11.20498 4.3922,13.7707 l 0.7459,4.66493 -2.9708,5.73721 -2.9706,5.73724 0.5962,1.79898 c 0.3278,0.98945 1.5109,3.14825 2.6287,4.79732 1.1179,1.64908 2.3732,3.94281 2.7897,5.09715 l 0.7571,2.09882 z m -387.3404,-9.59463 c -0.4963,0 -1.2624,-0.3598 -1.7021,-0.79958 -0.4399,-0.43968 -0.7996,-2.29229 -0.7996,-4.11683 V 715.83 l 2.0987,-0.59595 c 1.1545,-0.32764 5.8768,-1.3959 10.4942,-2.37384 4.6173,-0.97791 11.9034,-2.3352 16.191,-3.01607 4.2875,-0.68097 12.3829,-2.13192 17.99,-3.22428 5.6069,-1.09246 13.6711,-2.74585 17.9206,-3.67425 l 7.7263,-1.68794 1.0976,1.09762 1.0974,1.09751 -2.6364,1.41101 c -1.45,0.77608 -7.8494,2.7587 -14.2207,4.40587 -6.3715,1.64716 -15.7093,4.01163 -20.7504,5.25449 -5.0411,1.24287 -11.2477,3.05601 -13.7923,4.02926 -2.5445,0.97339 -8.0431,2.61132 -12.2191,3.63996 -4.176,1.02868 -7.9988,1.87024 -8.4952,1.87024 z m 469.1641,-0.0181 c -1.1705,-0.0121 -2.9379,-0.54148 -3.9274,-1.18097 -0.9893,-0.63948 -3.0267,-1.17091 -4.5275,-1.18098 -1.5005,-0.0121 -5.8181,-1.11993 -9.5945,-2.46616 -3.7765,-1.34639 -10.9139,-3.47402 -15.8611,-4.72814 -4.9474,-1.25413 -11.4238,-2.92192 -14.392,-3.70629 -2.9684,-0.78424 -8.224,-2.2365 -11.6791,-3.22715 -3.4552,-0.99065 -6.8945,-2.539 -7.6428,-3.44051 l -1.3605,-1.63973 h 1.7458 c 0.9603,0 4.9393,0.56381 8.8421,1.25294 3.9029,0.68913 14.6519,2.62341 23.8868,4.2984 9.2348,1.67486 21.1082,3.89422 26.3851,4.93189 5.2771,1.03752 10.2915,2.51786 11.1433,3.28952 l 1.5484,1.40309 -1.2191,3.20605 -1.2189,3.20606 z m -236.5212,-7.17797 c -1.1995,0 -2.8529,-0.80955 -3.6741,-1.79899 -0.8211,-0.98946 -2.656,-1.79899 -4.0776,-1.79899 -1.4215,0 -3.784,-0.84014 -5.2502,-1.867 -1.4659,-1.02688 -2.6654,-2.64596 -2.6654,-3.59799 v -1.731 h 3.4362 3.4362 l 3.0495,-2.39866 c 1.6771,-1.31926 3.8768,-2.39865 4.8883,-2.39865 1.0113,0 2.1724,0.5397 2.58,1.19932 0.4076,0.65964 2.5386,1.19933 4.7353,1.19933 h 3.994 l 2.821,2.28426 2.8209,2.28424 -2.2531,2.48968 -2.253,2.48958 -4.0464,0.75905 c -2.2253,0.41748 -4.3418,1.23758 -4.7033,1.82249 -0.3615,0.58479 -1.6388,1.06333 -2.8383,1.06333 z m -232.1356,-14.3959 -2.928,1.1131 -1.8394,-1.83954 c -1.0118,-1.01175 -1.8396,-2.84865 -1.8396,-4.0818 0,-1.23327 0.4408,-2.51476 0.9797,-2.84768 0.5389,-0.33305 5.5312,-1.19106 11.0938,-1.90647 5.5629,-0.71551 16.5903,-2.05288 24.5061,-2.97206 7.9155,-0.91916 20.1936,-2.04653 27.2846,-2.50528 l 12.8928,-0.83411 v 1.29635 c 0,0.713 -2.2936,1.91711 -5.0971,2.67568 -2.8034,0.75871 -9.6846,2.06718 -15.2915,2.90779 -5.6069,0.8406 -18.4381,2.95766 -28.5141,4.7046 -10.0759,1.74696 -19.6374,3.67714 -21.2473,4.28942 z m 81.7436,1.2033 c -0.2199,0 -0.7594,-0.3598 -1.1993,-0.79959 -0.4397,-0.43967 -0.7996,-3.37622 -0.7996,-6.52542 v -5.72609 l 1.1994,-0.74117 1.1993,-0.7412 v 7.26674 c 0,3.99664 -0.1798,7.26673 -0.3998,7.26673 z m 391.6811,-1.4297 -2.0989,1.05336 -5.2216,-1.57063 c -2.8715,-0.86389 -9.6178,-2.16098 -14.9913,-2.88236 -5.3737,-0.7214 -12.7386,-2.03837 -16.3666,-2.92661 -3.6281,-0.88821 -9.8346,-1.94843 -13.7923,-2.35595 -3.9578,-0.40765 -10.8389,-1.64141 -15.2915,-2.74179 -4.4525,-1.10039 -8.0954,-2.51307 -8.0954,-3.1395 v -1.13875 l 13.4924,0.83618 c 7.4209,0.45993 20.4572,1.63995 28.9696,2.62234 8.5123,0.98236 19.4792,2.29347 24.3705,2.91363 4.8916,0.62017 9.3953,1.43776 10.0087,1.81688 0.6132,0.37897 1.1151,1.98752 1.1151,3.57447 v 2.88536 z M 582.531,686.16577 c -1.9354,0.28016 -6.7574,0.0409 -10.7152,-0.5331 -3.9578,-0.57328 -10.287,-1.67679 -14.0651,-2.45215 l -6.8692,-1.40968 0.6435,-1.04128 0.6436,-1.04112 h 19.1185 19.1183 v 1.01342 c 0,0.55745 -0.98,1.90022 -2.1775,2.98406 -1.1975,1.08395 -3.7611,2.19981 -5.6969,2.47985 z m 37.1865,-2.31926 -3.6694,1.5253 -4.4259,-2.27069 c -2.4344,-1.24886 -4.4261,-2.71744 -4.4261,-3.26361 0,-0.54605 4.4526,-1.33952 9.8946,-1.76312 5.4418,-0.42362 13.1325,-0.7652 17.0902,-0.75908 3.9579,0 7.9424,0.48393 8.8549,1.06178 l 1.659,1.05061 -3.4579,0.65532 c -1.9018,0.36039 -6.696,1.01139 -10.6539,1.44675 -3.9578,0.43523 -8.8472,1.4778 -10.8655,2.31674 z m -168.9665,0.63924 c -0.3669,0 -0.667,-0.87442 -0.667,-1.94328 0,-1.06869 1.4841,-4.28723 3.298,-7.15206 1.814,-2.86498 3.703,-5.22873 4.1977,-5.25283 0.4946,-0.0241 0.8994,0.46401 0.8994,1.08479 0,0.62066 -0.5243,1.45263 -1.1651,1.84866 -0.6409,0.396 -2.2296,3.1264 -3.5305,6.06739 -1.301,2.94099 -2.6657,5.34733 -3.0325,5.34733 z m -87.7185,-3.60038 c -1.3742,9.9e-4 -2.8583,-0.35741 -3.2981,-0.7972 -0.4397,-0.43968 -0.7995,-2.32862 -0.7995,-4.19764 v -3.39807 l 2.0987,0.0157 c 1.1544,0.0121 18.3646,-0.31675 38.2447,-0.72296 19.88,-0.40633 37.3397,-0.35966 38.7991,0.10312 l 2.6533,0.84205 -1.0202,1.00993 c -0.5611,0.55555 -9.9252,1.59598 -20.8092,2.31233 -10.8839,0.71623 -27.3448,2.09594 -36.5795,3.0662 -9.2349,0.97015 -17.9151,1.76493 -19.2893,1.76626 z m 300.4327,-0.37827 c -0.9348,0.12044 -2.3777,-0.0611 -3.2062,-0.40227 -0.8287,-0.34168 -1.2016,-1.11488 -0.8289,-1.71814 0.3728,-0.60328 2.0403,-1.09691 3.7054,-1.09691 h 3.0276 l -0.4993,1.49916 c -0.2745,0.82453 -1.264,1.59776 -2.1986,1.71816 z m 174.0021,-0.06 c -2.9683,0.0876 -11.8734,-0.56367 -19.789,-1.44698 -7.9156,-0.8833 -22.9654,-2.18254 -33.444,-2.88727 -10.4787,-0.70461 -19.5275,-1.57496 -20.1085,-1.93392 -0.5808,-0.35907 -0.7455,-1.15519 -0.3661,-1.76924 l 0.69,-1.11647 18.2191,0.14608 c 10.0205,0.0803 27.6636,0.48513 39.2072,0.89949 l 20.9882,0.75345 v 3.59797 3.59799 z M 489.9581,668.78241 c -1.1525,-0.0611 -5.0636,-1.2978 -8.6916,-2.74707 l -6.5963,-2.63504 -1.5573,-5.34841 c -0.8564,-2.94148 -2.0463,-7.23722 -2.6441,-9.54594 -0.5979,-2.30871 -1.902,-10.40417 -2.8985,-17.98994 -0.9962,-7.58576 -2.3875,-18.84291 -3.0916,-25.01585 l -1.2803,-11.22368 1.2212,-1.47158 c 0.6717,-0.80932 3.5226,-2.16636 6.3356,-3.01559 2.8129,-0.84925 7.671,-2.32849 10.7959,-3.28724 l 5.6815,-1.74324 15.3067,9.25045 c 8.4186,5.08765 16.7908,10.29262 18.6049,11.56657 l 3.2981,2.31624 v 3.40945 c 0,1.87528 -1.0725,6.83069 -2.3832,11.01214 -1.3107,4.18146 -2.3901,9.10027 -2.3987,10.9308 -0.015,1.83041 -1.0949,6.39915 -2.4141,10.15268 -1.3191,3.75354 -2.3986,8.0366 -2.3986,9.51799 v 2.69336 l -2.4402,2.27333 c -1.3421,1.25029 -6.4707,4.23962 -11.3971,6.64296 -4.9262,2.40334 -9.8998,4.31926 -11.0523,4.25761 z m 389.2918,-8.8213 -2.0586,0.65338 -1.2851,-2.40092 c -0.7067,-1.32059 -1.6232,-5.63769 -2.0366,-9.59356 l -0.7519,-7.1925 5.5255,-1.39135 c 3.039,-0.76528 6.126,-2.11501 6.86,-2.9995 l 1.3347,-1.6082 -0.7795,-2.45623 -0.7796,-2.45622 -2.6176,-0.1215 c -1.4396,-0.0672 -4.3325,-0.0288 -6.4282,0.084 l -3.8104,0.2058 -1.2866,-2.40418 c -0.7078,-1.32214 -1.2868,-5.48741 -1.2868,-9.25593 v -6.8519 l -2.2748,-6.71937 c -1.2513,-3.69573 -3.7757,-12.26339 -5.6103,-19.03923 l -3.3355,-12.31976 1.47,-1.47253 1.4701,-1.47253 29.626,-0.59967 29.626,-0.59967 -0.3607,-6.82131 -0.3608,-6.82142 2.3425,-1.25366 c 1.2884,-0.68948 4.0489,-1.39783 6.1344,-1.57401 l 3.7919,-0.3202 3.9886,11.82501 c 2.1936,6.50373 4.3267,13.93994 4.7401,16.52497 l 0.7514,4.69993 -5.7163,2.50108 -5.7165,2.50097 -24.8262,-0.67007 -24.8263,-0.67017 -0.7462,2.35139 -0.7463,2.35141 1.4039,4.25401 1.4039,4.25404 -2.0343,2.24788 -2.0344,2.24791 0.7881,1.27489 0.7878,1.27488 h 32.9406 32.9403 l 1.0002,2.6985 c 0.55,1.48418 1.7136,7.97098 2.5856,14.4151 l 1.5856,11.71673 -1.1161,1.05433 c -0.614,0.57976 -5.164,2.11561 -10.1112,3.41281 -4.9473,1.29731 -13.3125,3.57795 -18.5896,5.06825 -5.277,1.49029 -13.1026,3.66466 -17.3903,4.83197 -4.2876,1.1673 -11.019,2.9909 -14.9585,4.05242 -3.9398,1.06153 -8.0896,2.22415 -9.222,2.58359 z m 22.8096,-24.66828 c 1.0839,-0.0121 5.8224,-1.02124 10.5304,-2.24432 4.708,-1.22308 9.2182,-2.6305 10.0225,-3.12774 l 1.4627,-0.90392 -1.6272,-1.03107 c -0.895,-0.56705 -5.7714,-1.03934 -10.8363,-1.04941 l -9.2092,-0.0181 -1.8848,1.88464 c -1.0363,1.03656 -1.8846,2.07183 -1.8846,2.30056 0,0.22881 0.3277,1.26959 0.7281,2.313 0.4004,1.04341 1.6147,1.88787 2.6984,1.87661 z m -503.0071,23.98874 -37.2392,0.0181 -1.4392,-1.43921 c -0.7915,-0.79155 -1.4391,-2.34456 -1.4391,-3.45119 0,-1.1065 0.7587,-2.64164 1.6861,-3.41126 l 1.6861,-1.39937 17.8031,1.85393 c 9.7916,1.01953 25.786,2.38821 35.5431,3.04125 9.7571,0.65305 19.1182,1.53311 20.8024,1.95587 l 3.0621,0.76854 -1.6131,1.0223 -1.6132,1.02243 z m 404.4938,0.0182 h -37.0393 l 0.4904,-1.49917 0.4904,-1.49915 10.7033,-0.92864 c 5.887,-0.5108 22.2749,-1.97567 36.4178,-3.25534 l 25.7143,-2.32657 1.5703,1.30331 c 0.8638,0.71683 1.5705,2.20869 1.5705,3.31519 0,1.10662 -0.6476,2.65963 -1.4392,3.45117 l -1.4391,1.4392 z m -128.9786,-1.1993 c -0.5447,0 -2.0823,-1.21433 -3.417,-2.69849 -1.3347,-1.48417 -3.5875,-5.26207 -5.0063,-8.39531 -1.4189,-3.13325 -3.7283,-8.16899 -5.1322,-11.19047 l -2.5525,-5.49365 -5.7754,-5.77536 c -3.1764,-3.17644 -8.0993,-7.44628 -10.94,-9.48838 -2.8405,-2.04209 -6.9416,-4.86351 -9.1136,-6.26986 -2.1719,-1.40633 -3.6936,-2.81253 -3.3812,-3.12485 0.3123,-0.3123 2.0895,0.22859 3.9491,1.20185 1.8596,0.97336 4.9576,2.51021 6.8846,3.41508 1.9269,0.90491 7.1637,5.18652 11.6374,9.51465 l 8.134,7.86941 3.6531,7.72187 c 2.0091,4.24706 3.6535,8.2906 3.6539,8.98574 5e-4,0.69514 1.8899,3.09476 4.1986,5.33245 l 4.1977,4.0685 v 2.16346 c 0,1.18987 -0.4456,2.16336 -0.9902,2.16336 z M 428.7958,643.49892 c -4.4525,-0.11517 -10.5241,-0.40035 -13.4925,-0.6335 -2.9684,-0.23314 -12.4131,-1.2768 -20.9882,-2.31924 -8.5753,-1.04248 -18.9497,-2.16865 -23.0545,-2.50254 l -7.4632,-0.60709 -1.2836,-1.54667 -1.2835,-1.54666 0.8095,-3.22595 0.8098,-3.22583 3.1396,0.59103 c 1.727,0.32501 11.1316,1.98237 20.8993,3.6829 9.7677,1.70052 18.2288,3.382 18.8026,3.73651 0.5738,0.35465 6.795,1.45227 13.825,2.43909 7.0299,0.98679 13.8152,2.34732 15.0785,3.02339 1.2631,0.67604 2.2966,1.47996 2.2966,1.78664 0,0.30653 -3.643,0.46317 -8.0954,0.34792 z m 343.0082,0.18996 c -2.8034,0.0121 -5.0972,-0.43476 -5.0972,-0.98991 0,-0.55518 2.0865,-1.63459 4.6367,-2.39866 2.5502,-0.76411 6.1312,-1.3892 7.9579,-1.3892 1.8266,0 10.0357,-1.3833 18.2422,-3.074 8.2066,-1.69057 19.8721,-3.89422 25.9231,-4.89675 6.0513,-1.0025 12.3515,-1.91292 14.0006,-2.02315 l 2.9983,-0.20039 v 4.19765 4.19764 l -7.7956,0.7617 c -4.2876,0.41894 -12.653,1.37876 -18.5897,2.13302 -5.9366,0.75425 -16.7307,1.88689 -23.9866,2.51703 -7.2559,0.63002 -15.4863,1.15434 -18.2897,1.16502 z m -461.0944,-8.46403 c -1.5104,-0.0491 -6.794,-1.1053 -11.7412,-2.34827 -4.9472,-1.243 -10.3443,-2.28905 -11.9933,-2.32455 -1.6492,-0.0359 -8.3559,-1.39806 -14.9041,-3.02772 l -11.9058,-2.96316 -3.2136,-3.07892 -3.2138,-3.07892 -1.3712,-4.577 c -0.7542,-2.51739 -1.3656,-6.40335 -1.3584,-8.63552 0.015,-2.23222 0.7843,-6.60005 1.727,-9.70643 0.9426,-3.10627 2.919,-7.27789 4.392,-9.27021 l 2.6782,-3.62235 4.0662,-1.34204 4.0663,-1.34194 9.8184,0.82466 c 5.4001,0.45347 15.7551,2.39483 23.0111,4.31387 7.2559,1.91917 14.2211,3.49004 15.478,3.49113 1.2571,9.9e-4 4.091,1.37899 6.2977,3.06212 2.2068,1.68316 4.8214,4.62475 5.8101,6.53672 l 1.7977,3.47648 v 7.10471 7.10484 l -1.8305,5.18829 c -1.0069,2.85369 -2.7608,6.2171 -3.8979,7.47447 -1.1369,1.25724 -4.0696,3.30787 -6.5169,4.55696 -2.4474,1.24911 -5.6856,2.23135 -7.196,2.18278 z m 1.0535,-19.25296 c 1.4303,0.0841 3.454,-0.17558 4.4975,-0.57602 l 1.897,-0.728 v -2.19957 c 0,-1.20978 -0.6746,-2.63613 -1.4992,-3.16982 -0.8244,-0.5336 -5.5469,-1.92192 -10.4941,-3.08515 -4.9472,-1.16325 -13.5824,-2.89567 -19.1892,-3.84985 -5.6069,-0.95419 -12.2672,-2.33511 -14.8006,-3.06873 -2.5338,-0.73364 -5.3672,-1.04198 -6.2966,-0.6853 -0.9297,0.35668 -1.6902,1.67883 -1.6902,2.938 0,1.25916 0.6748,2.81148 1.4994,3.4495 0.8245,0.63804 3.9277,1.78209 6.896,2.54234 2.9684,0.76038 8.6351,1.91162 12.593,2.55842 3.9577,0.6468 10.9738,2.19884 15.5915,3.44903 4.6174,1.25018 9.5653,2.34145 10.9955,2.42515 z m 131.4246,14.42136 c -1.814,-0.0672 -8.4252,-1.18074 -14.6918,-2.47423 -6.2665,-1.29348 -18.1398,-3.63731 -26.3852,-5.20855 -8.2455,-1.57125 -18.7696,-3.50169 -23.387,-4.28989 -4.6173,-0.78821 -9.6095,-1.88392 -11.0937,-2.43488 l -2.6984,-1.00181 v -2.28148 c 0,-1.25485 0.789,-2.93643 1.7535,-3.73675 l 1.7535,-1.45539 6.3419,1.2978 c 3.4881,0.71371 10.6596,2.62318 15.9365,4.24333 5.2771,1.62007 13.6425,4.01645 18.5896,5.3254 4.9473,1.30882 13.8524,3.72619 19.789,5.37192 5.9367,1.64571 12.2781,3.31217 14.0921,3.70317 1.814,0.39098 3.2982,1.24033 3.2982,1.88738 v 1.17654 z m 318.4348,0.12256 c -0.424,0 -1.1049,-0.54064 -1.5133,-1.20161 l -0.7426,-1.20148 3.1485,-1.19719 c 1.7318,-0.6583 3.857,-1.19704 4.7231,-1.19704 0.8659,0 3.4773,-0.79502 5.8031,-1.76686 2.3258,-0.97181 7.6536,-2.53896 11.8399,-3.48261 4.1862,-0.94363 11.9289,-2.85788 17.2059,-4.25376 5.2769,-1.39603 12.5629,-3.55628 16.1909,-4.80056 3.6279,-1.2443 9.1351,-2.64034 12.2382,-3.10218 l 5.6419,-0.83978 0.7675,3.05804 c 0.4222,1.68194 0.4429,3.58336 0.045,4.22536 -0.3968,0.64201 -4.6302,1.98044 -9.4077,2.97434 -4.7775,0.99387 -16.7818,3.24214 -26.6762,4.99615 -9.8944,1.75393 -22.6035,4.22407 -28.2422,5.48909 -5.6387,1.26506 -10.599,2.30009 -11.0229,2.30009 z m -88.7106,-4.15016 c -0.2944,0.29432 -1.7354,-1.86747 -3.202,-4.80416 l -2.6667,-5.33953 -7.7359,-6.79179 c -4.2548,-3.73557 -7.7361,-7.27947 -7.7361,-7.87551 v -1.08372 l 3.6082,1.8659 c 1.9844,1.02615 6.5554,4.86065 10.1578,8.52089 l 6.5495,6.65508 0.7803,4.15878 c 0.429,2.28737 0.5393,4.39963 0.2449,4.69406 z M 442.5881,614.83684 c -2.1438,-0.0481 -6.8663,-1.16285 -10.4941,-2.47708 -3.6281,-1.31411 -10.3742,-3.43176 -14.9917,-4.70592 -4.6174,-1.27405 -13.2526,-3.69549 -19.1892,-5.38092 -5.9367,-1.68555 -14.302,-3.98094 -18.5897,-5.10086 l -7.7956,-2.03647 -0.3577,-2.50359 -0.3577,-2.50361 1.856,-1.54031 1.856,-1.54029 4.4984,1.25487 c 2.4739,0.69033 11.7842,4.02146 20.6893,7.4026 8.905,3.38116 18.3497,6.87924 20.9882,7.77358 2.6386,0.89422 8.0129,2.8002 11.943,4.23544 3.9301,1.43511 8.6524,3.38858 10.4941,4.34097 1.8417,0.95239 3.3485,1.98753 3.3485,2.30043 0,0.31289 -1.7541,0.52938 -3.8978,0.48116 z m 316.9027,0.0876 h -4.1116 l 2.5226,-1.76696 c 1.3875,-0.97183 6.2299,-3.16934 10.7611,-4.88344 4.531,-1.71395 10.6669,-3.88654 13.6352,-4.82777 2.9684,-0.94124 6.4764,-2.18709 7.7956,-2.76865 1.3193,-0.58157 6.1766,-2.41689 10.7941,-4.07844 4.6174,-1.66167 12.2304,-4.47939 16.9177,-6.26146 4.6874,-1.78209 9.5448,-3.04523 10.794,-2.80691 l 2.2715,0.4332 0.4014,2.82467 c 0.2207,1.55348 -0.072,3.29791 -0.6506,3.87646 -0.5786,0.57854 -5.0769,2.15327 -9.9961,3.4994 -4.9192,1.34601 -11.3726,2.96835 -14.341,3.60495 -2.9684,0.63661 -8.6351,2.1938 -12.593,3.4603 -3.9577,1.26649 -12.3469,3.96593 -18.6427,5.99868 -6.2957,2.03275 -13.2968,3.69597 -15.5582,3.69597 z M 451.583,602.85684 c -0.4946,-0.0407 -3.0582,-1.06069 -5.6967,-2.26602 -2.6386,-1.20543 -7.7658,-3.29287 -11.3938,-4.63876 -3.6279,-1.34588 -10.3741,-3.86148 -14.9915,-5.59031 -4.6174,-1.72872 -12.1733,-4.67691 -16.7907,-6.55157 -4.6174,-1.87466 -11.4774,-4.60004 -15.2443,-6.05627 -3.767,-1.45622 -7.4737,-3.40033 -8.2373,-4.32046 l -1.3883,-1.67282 1.9416,-2.96318 1.9415,-2.96319 9.5316,4.75619 c 5.2423,2.61584 9.7777,4.75618 10.0785,4.75618 0.3008,0 10.9881,5.05588 23.7493,11.2353 12.761,6.17957 24.1465,11.55951 25.3009,11.95578 1.1543,0.39613 2.0987,1.54675 2.0987,2.55683 0,1.01022 -0.4047,1.8032 -0.8995,1.7623 z m 301.0609,-1.12497 h -2.8692 l 0.6834,-1.10577 c 0.3758,-0.60807 4.0505,-2.71145 8.1662,-4.67404 4.1156,-1.96246 13.9592,-6.66696 21.8748,-10.45431 7.9156,-3.78736 20.1356,-9.69862 27.1554,-13.13626 l 12.7633,-6.25007 1.9286,1.07928 1.9282,1.07917 v 2.92264 2.92264 l -4.4974,1.92864 c -2.4736,1.06081 -7.1959,2.90105 -10.4941,4.0896 -3.2982,1.18842 -9.5048,3.60615 -13.7923,5.37263 -4.2876,1.7665 -9.4964,3.98119 -11.575,4.92156 -2.0785,0.94029 -4.2374,1.72057 -4.7972,1.734 -0.5599,0.0136 -5.7419,1.81376 -11.5153,4.00085 -5.7735,2.18711 -10.8556,4.33485 -11.2937,4.77297 -0.4381,0.438 -2.0877,0.79647 -3.6657,0.79647 z m -84.1297,-1.19933 c -0.6175,0 -2.8501,-3.06059 -4.9611,-6.80127 -2.1111,-3.74058 -6.4316,-9.54234 -9.6014,-12.89279 l -5.7629,-6.09151 -11.4966,-5.39699 c -6.3231,-2.96834 -11.4945,-5.93668 -11.4922,-6.59631 0,-0.65964 6.3419,-8.24599 14.0875,-16.85863 7.7455,-8.61261 17.13,-19.12006 20.8543,-23.34972 l 6.7717,-7.69047 19.0139,0.33616 19.0139,0.33618 1.4493,1.88632 c 0.7968,1.03741 2.0713,4.91713 2.8316,8.6216 0.7606,3.70437 2.6719,10.78486 4.2478,15.73437 1.5757,4.94951 2.8651,9.92108 2.8651,11.04809 0,1.12702 1.3101,6.175 2.9115,11.2177 1.6014,5.04269 2.623,9.92061 2.2703,10.83967 l -0.6412,1.671 h -4.4657 -4.4659 l -5.3002,2.76364 c -2.9153,1.5199 -12.4346,6.91688 -21.1539,11.99329 -8.7193,5.07627 -16.3585,9.22967 -16.9758,9.22967 z M 528.64,598.94594 c -0.6597,0.18208 -6.5958,-2.893 -13.1916,-6.83353 -6.5957,-3.94051 -12.1659,-7.68565 -12.3782,-8.32251 -0.2122,-0.63672 0.7318,-5.23169 2.0978,-10.21084 1.366,-4.97927 2.4837,-9.317 2.4837,-9.6395 0,-0.32237 -0.5589,-0.58622 -1.242,-0.58622 -0.683,0 -2.2952,2.29372 -3.5829,5.09714 -1.2874,2.80342 -3.0222,6.17656 -3.8551,7.49581 -0.8329,1.31928 -1.9892,2.74382 -2.5699,3.16563 -0.5807,0.4218 -2.8743,-0.30619 -5.0972,-1.61766 l -4.0416,-2.3845 v -8.08624 c 0,-4.44736 0.3528,-16.23472 0.7839,-26.19407 0.431,-9.95936 1.1852,-18.75739 1.6757,-19.55122 l 0.892,-1.44329 21.4114,1.51405 21.4113,1.51389 3.8978,2.3531 c 2.1439,1.2942 3.8978,2.74407 3.8978,3.22176 0,0.4778 5.1093,5.12532 11.354,10.32777 6.2449,5.20247 11.6402,10.2045 11.9898,11.11563 l 0.6357,1.65664 -3.6241,5.00827 c -1.9932,2.75463 -9.9522,13.34686 -17.6865,23.53853 -7.7344,10.19165 -14.6022,18.67919 -15.2618,18.86136 z m -78.0314,-13.34336 c -0.6184,0.11637 -10.3211,-4.44545 -21.5615,-10.13745 -11.2405,-5.69191 -25.0028,-12.43104 -30.583,-14.97569 -5.5801,-2.54471 -10.4843,-5.15998 -10.8981,-5.81157 -0.414,-0.6516 -0.4815,-2.22141 -0.1508,-3.48862 0.3312,-1.26709 1.4951,-2.78159 2.5862,-3.36555 l 1.9839,-1.06165 8.3604,5.23938 c 4.5982,2.88176 12.3557,7.55926 17.2387,10.39459 4.883,2.83522 10.28,5.98275 11.9933,6.9945 1.7134,1.01175 7.5922,4.44626 13.064,7.63218 l 9.949,5.79276 -0.4291,1.28771 c -0.2362,0.70831 -0.9353,1.38307 -1.5538,1.49941 z m 321.7951,-9.63938 -20.0886,9.94866 -0.7417,-1.20002 c -0.4079,-0.66 0,-1.90755 0.8994,-2.77225 0.9025,-0.86472 10.2763,-6.53972 20.8304,-12.61095 10.5541,-6.07125 22.4274,-13.13878 26.3853,-15.70547 3.9577,-2.56679 8.2752,-5.14573 9.5946,-5.73088 l 2.3986,-1.06391 2.0989,1.85211 c 1.1543,1.01861 2.0987,2.86303 2.0987,4.09872 v 2.24669 l -11.6935,5.49436 c -6.4313,3.02184 -20.7333,9.97123 -31.7821,15.44294 z m -440.1464,8.97806 c -1.5542,0 -3.3621,-0.5361 -4.0173,-1.19129 -0.6551,-0.65519 -4.676,-2.59882 -8.9349,-4.31913 -4.2591,-1.72034 -10.3073,-4.15257 -13.4406,-5.40503 -3.1331,-1.25246 -8.2604,-3.30165 -11.3936,-4.55386 -3.1333,-1.25222 -11.0938,-4.44592 -17.6901,-7.09728 l -11.9934,-4.8207 -0.384,-2.50336 -0.3841,-2.50348 3.1178,-6.59019 3.1176,-6.5902 h 1.464 c 0.8053,0 5.4569,1.6312 10.3372,3.61981 4.8803,1.98875 9.1296,3.35945 9.443,3.04596 0.3134,-0.31339 0.2626,-1.37049 -0.1131,-2.34914 -0.3755,-0.97865 -4.2756,-4.60292 -8.6669,-8.05386 l -7.9842,-6.2744 0.6272,-3.69142 c 0.3447,-2.03022 1.4869,-5.71517 2.5381,-8.1888 l 1.9112,-4.49748 h 1.8189 c 1.0005,0 6.9389,4.62402 13.1967,10.27574 6.2575,5.65172 12.8527,11.04535 14.6556,11.986 l 3.2782,1.71009 8.9949,0.10914 c 4.9474,0.06 12.2331,0.52182 16.191,1.02687 3.9577,0.50516 7.8706,0.67175 8.6951,0.37022 0.8246,-0.30149 1.4992,-1.27488 1.4992,-2.16296 0,-0.88799 -1.2145,-2.47866 -2.6986,-3.53456 -1.4841,-1.05589 -6.2065,-4.12917 -10.4941,-6.82947 -4.2875,-2.70028 -11.3036,-7.17931 -15.5913,-9.95322 -4.2875,-2.77406 -12.5584,-8.15244 -18.3795,-11.95205 -5.8211,-3.7996 -10.8647,-7.64009 -11.2078,-8.53431 l -0.6241,-1.62605 6.9345,-11.13086 c 3.8139,-6.12197 8.5586,-12.88499 10.5436,-15.02878 l 3.6092,-3.89783 h 5.956 5.9557 l 5.5024,3.16479 c 3.0263,1.7406 6.4492,3.98513 7.6063,4.98778 1.157,1.00264 2.6733,3.93811 3.3695,6.52327 l 1.2657,4.70016 4.617,-0.78003 4.6173,-0.78004 4.0065,2.02805 c 2.2037,1.11551 8.4591,5.02987 13.901,8.69862 5.442,3.66889 9.8945,7.29913 9.8945,8.06742 0,0.76829 -1.0301,2.32898 -2.289,3.46834 -1.259,1.13936 -2.9275,3.61285 -3.7079,5.49677 -0.7801,1.88378 -2.1035,3.6878 -2.9406,4.00912 l -1.5218,0.58395 -12.8306,-8.29349 c -7.0567,-4.55781 -13.8206,-8.28987 -15.0305,-8.28987 -1.21,0 -2.4906,0.75712 -2.8458,1.6824 -0.355,0.9253 -0.015,2.48719 0.7712,3.47087 0.7792,0.98357 6.9487,5.35632 13.71,9.71719 l 12.2931,7.92878 v 2.29215 c 0,1.26075 -2.6985,6.32684 -5.9967,11.25799 -3.298,4.93117 -6.002,9.69874 -6.0083,10.59451 -0.015,0.89591 -1.3308,4.46234 -2.9432,7.92543 l -2.9314,6.29647 h -1.634 c -0.8986,0 -4.8362,-0.54845 -8.7502,-1.21887 -3.914,-0.67033 -8.8705,-1.50432 -11.0142,-1.85335 l -3.8979,-0.63442 v 1.88293 1.88309 l 3.2982,1.20146 c 1.8139,0.66073 4.9172,1.97145 6.8961,2.9127 1.979,0.94125 5.2172,2.19873 7.196,2.79444 l 3.5981,1.08322 -0.1551,3.56958 c -0.084,1.9633 -1.2693,6.0884 -2.631,9.16708 l -2.4761,5.59738 z m -9.1308,-91.20781 c 1.0838,0.0323 2.3111,-0.82885 2.7274,-1.91364 l 0.7569,-1.97242 -2.0488,-2.26397 c -1.127,-1.24515 -3.8825,-3.39734 -6.1238,-4.78247 l -4.0752,-2.51857 -1.831,1.83102 -1.8311,1.83102 1.0863,1.94099 c 0.5972,1.06753 2.9497,3.25677 5.2274,4.86507 2.2778,1.60831 5.0282,2.95059 6.1119,2.98297 z m 142.2429,82.81249 c -0.1681,0 -5.7,-3.16273 -12.2931,-7.0283 -6.5931,-3.86566 -21.4322,-12.77034 -32.9756,-19.78821 -11.5436,-7.01776 -21.5053,-13.53804 -22.1372,-14.48933 l -1.1489,-1.72956 2.2342,-2.46893 c 1.2289,-1.35789 2.5733,-2.46883 2.9877,-2.46883 0.4142,0 5.5927,3.51727 11.5076,7.81627 5.9148,4.29888 15.6115,11.32766 21.5481,15.61934 5.9368,4.2917 15.2465,11.02316 20.6885,14.95876 5.442,3.9356 9.8944,7.70077 9.8944,8.36724 0,0.66635 -0.1371,1.21155 -0.3057,1.21155 z m 99.0314,-4.82704 -3.9785,2.34757 v -1.48537 c 0,-0.81687 1.6676,-3.5084 3.7058,-5.98118 2.0383,-2.47278 5.3814,-5.36233 7.429,-6.42121 2.0476,-1.05889 7.2594,-2.93656 11.5817,-4.17259 l 7.8586,-2.24743 h 8.8597 c 4.8728,0 11.081,0.63073 13.7961,1.40153 2.7151,0.77081 5.4364,1.83751 6.0475,2.37025 l 1.111,0.96882 -2.0494,2.26456 -2.0494,2.26458 -6.2575,0.90262 c -3.4417,0.49653 -7.4719,0.88307 -8.9562,0.85919 -1.4842,-0.024 -6.3413,-0.12059 -10.7939,-0.21467 l -8.0954,-0.17101 -7.1153,2.48344 c -3.9133,1.36592 -8.9055,3.53981 -11.0938,4.8309 z m 182.717,-1.19142 -2.1988,0.0216 0.4932,-1.47997 c 0.2715,-0.81387 4.3447,-4.18698 9.0518,-7.49581 4.7071,-3.30871 17.032,-12.11839 27.3891,-19.57701 l 18.8307,-13.56106 2.4841,2.48392 2.484,2.48407 -1.3096,2.07577 c -0.7202,1.14178 -7.4589,5.71386 -14.9749,10.16038 -7.5161,4.44651 -17.3406,10.38595 -21.8323,13.19898 -4.4916,2.81291 -10.4285,6.58875 -13.1926,8.39075 -2.7642,1.80199 -6.0154,3.28615 -7.2247,3.29815 z m -271.9745,-5.46162 c -0.3995,0.4067 -3.9944,-1.56633 -7.9887,-4.38439 -3.9942,-2.81807 -15.9652,-11.60016 -26.6021,-19.51573 -10.6368,-7.9156 -21.7333,-16.01105 -24.6589,-17.98994 -2.9255,-1.9789 -5.6023,-4.31171 -5.9488,-5.184 -0.3462,-0.87237 -0.072,-2.6264 0.6077,-3.89779 0.6805,-1.27155 2.0621,-2.31184 3.0703,-2.31184 1.0083,0 7.294,4.72235 13.9682,10.49412 6.6742,5.77178 17.2832,14.81172 23.5753,20.08878 6.2925,5.27705 14.4247,12.37718 18.0719,15.77802 3.6472,3.40094 6.3044,6.51606 5.9051,6.92277 z m 388.7093,0.62615 c -0.9895,-0.0193 -3.4296,-0.74428 -5.4222,-1.61261 -1.9929,-0.86831 -4.9921,-3.41076 -6.6648,-5.64992 -1.673,-2.23915 -3.9553,-6.51774 -5.0721,-9.50818 -1.1166,-2.99038 -2.0302,-7.73961 -2.0302,-10.55371 V 533.251 l 1.8005,-3.48189 c 0.9904,-1.9151 4.1908,-5.12642 7.1122,-7.1365 l 5.3118,-3.65445 h 2.9343 2.9344 l 2.5463,5.91916 c 1.4006,3.25546 2.5464,6.75258 2.5464,7.77129 v 1.85212 l -4.7571,2.42683 c -2.6164,1.33485 -5.3677,3.56766 -6.1137,4.96163 l -1.3565,2.53468 1.8144,1.81459 1.8146,1.81457 2.8,-0.71107 c 1.54,-0.3911 4.5088,-2.27836 6.5976,-4.19383 l 3.7973,-3.48286 1.2931,-4.65673 c 0.7112,-2.5612 1.3077,-7.08542 1.326,-10.05374 l 0.033,-5.39699 2.2029,-4.79733 c 1.2117,-2.63852 3.2421,-5.71996 4.512,-6.84757 1.2699,-1.1276 5.4094,-3.42131 9.1986,-5.09715 3.7893,-1.67581 7.9802,-3.04688 9.3136,-3.04688 1.3331,0 3.8813,0.76133 5.6625,1.69189 1.7814,0.93055 4.6883,3.22429 6.4597,5.09714 1.7716,1.87288 4.3352,6.01356 5.6967,9.20151 l 2.4759,5.79623 v 6.23005 6.23 l -1.779,2.53985 c -0.9783,1.39685 -4.2473,3.98633 -7.264,5.75424 l -5.485,3.21445 -1.5291,-1.26913 c -0.8409,-0.698 -2.5567,-4.29179 -3.8124,-7.98633 l -2.2833,-6.71709 3.8911,-3.19801 3.8914,-3.19788 -0.015,-2.018 -0.015,-2.018 -2.4574,-0.77992 -2.4573,-0.78004 -2.9147,1.90982 c -1.603,1.05037 -3.6621,3.38882 -4.5756,5.19657 -0.9134,1.80774 -2.0319,6.25522 -2.4855,9.88321 -0.4538,3.62795 -1.4345,8.75509 -2.1798,11.39362 -0.7452,2.63851 -2.3461,6.24346 -3.5575,8.01091 -1.2113,1.76745 -4.0242,4.33953 -6.2511,5.71577 -2.2266,1.37624 -6.6696,3.29743 -9.8728,4.26925 -3.2034,0.97183 -6.6341,1.75175 -7.6235,1.73302 z m -130.9929,-3.53802 c -0.5133,0 -0.9251,-0.40475 -0.915,-0.89947 0.015,-0.49473 0.4148,-1.49329 0.8995,-2.219 0.4846,-0.72585 8.4368,-7.7171 17.6717,-15.53614 9.2348,-7.81901 21.2328,-18.15413 26.6622,-22.9669 5.4295,-4.81268 10.5835,-8.75031 11.4537,-8.75031 0.8701,0 2.2295,0.64762 3.0211,1.43918 0.7916,0.79157 1.4392,2.3044 1.4392,3.36198 v 1.92275 l -19.4891,14.27418 c -10.719,7.85083 -22.3905,16.45733 -25.9365,19.12548 -3.546,2.66826 -8.1183,6.06561 -10.1605,7.54977 -2.0422,1.48417 -4.133,2.69848 -4.6463,2.69848 z M 624.8861,551.30703 c -0.8244,-0.0288 -3.6578,-1.23376 -6.2964,-2.67679 l -4.7973,-2.62377 -14.9917,-0.0216 -14.9915,-0.0216 -5.1031,1.69308 c -2.8068,0.93118 -5.4861,1.31004 -5.9544,0.84194 -0.468,-0.4681 -0.2797,-1.76972 0.4184,-2.89241 0.6982,-1.12271 3.0526,-3.25558 5.2321,-4.73976 l 3.9627,-2.6985 8.5178,0.0252 8.5177,0.0252 9.5946,2.86255 c 5.277,1.57448 11.3487,3.76148 13.4925,4.86006 l 3.8978,1.99736 v 1.71107 c 0,0.94126 -0.6746,1.68735 -1.4992,1.6582 z m -148.3249,-3.54497 c -0.609,0 -2.9016,-1.48418 -5.0945,-3.29817 -2.1931,-1.81398 -13.9729,-12.12283 -26.1775,-22.90851 -12.2047,-10.78568 -22.3806,-20.12668 -22.6132,-20.75777 -0.2326,-0.63119 0.5257,-2.1957 1.6851,-3.47683 1.1594,-1.28102 2.5282,-2.32924 3.0416,-2.32924 0.5136,0 8.7225,7.96055 18.2419,17.69012 9.5196,9.72957 20.6192,21.09369 24.666,25.25355 4.0468,4.16001 7.3578,8.07281 7.3578,8.69514 0,0.62247 -0.4983,1.13171 -1.1072,1.13171 z m 251.3793,-1.24516 c -0.543,0.0252 -0.813,-0.71623 -0.5995,-1.64775 0.2131,-0.9314 10.8291,-12.53492 23.5907,-25.78559 12.7617,-13.25055 23.5888,-24.09202 24.0602,-24.09202 0.4715,0 2.02,1.08324 3.4412,2.40731 l 2.5838,2.40718 -0.6174,1.49065 c -0.3395,0.81973 -2.6808,3.10961 -5.2026,5.0885 -2.5219,1.9789 -10.0933,8.45527 -16.8255,14.39195 -6.7322,5.93668 -16.1111,14.14646 -20.8419,18.24398 -4.7309,4.0975 -9.0459,7.47062 -9.589,7.49579 z m -101.4022,-5.9988 c -1.7333,-0.0264 -4.6535,-0.86268 -6.4895,-1.85823 -1.8359,-0.9957 -7.5028,-3.24001 -12.5929,-4.98744 l -9.2549,-3.17713 -9.5946,-0.06 -9.5946,-0.0598 -4.5661,2.69656 c -2.5113,1.48322 -5.3447,2.6967 -6.2964,2.6967 -0.9518,0 -1.6994,-0.67464 -1.6612,-1.49918 0.038,-0.82453 1.2522,-3.21996 2.6983,-5.32321 1.4463,-2.10314 5.0072,-6.84936 7.9133,-10.54715 l 5.284,-6.72318 -1.4315,-1.43165 -1.4316,-1.43152 -10.5528,11.20485 -10.5527,11.20497 -2.1661,-0.42549 c -1.1913,-0.23401 -2.7424,-1.34087 -3.447,-2.45973 l -1.281,-2.03418 2.0577,-3.96247 c 1.1316,-2.1793 3.6386,-6.66083 5.5707,-9.95899 1.932,-3.29816 5.1676,-9.33581 7.1902,-13.4169 2.0224,-4.08119 3.6771,-7.76373 3.6771,-8.1835 0,-0.41964 -0.8901,-0.58863 -1.9782,-0.37539 l -1.9786,0.38785 -5.5173,8.53841 c -3.0346,4.6962 -7.5345,11.57735 -10,15.29145 -2.4654,3.71419 -5.1215,6.75305 -5.9022,6.75305 -0.7807,0 -2.4605,-0.94445 -3.7325,-2.09881 l -2.3127,-2.09884 -11.574,-0.59966 -11.5739,-0.59968 0.3439,-6.59629 c 0.1889,-3.62799 1.3397,-10.37422 2.5571,-14.99162 1.2174,-4.61743 2.8559,-11.50109 3.6413,-15.29698 l 1.4279,-6.90166 3.8106,-2.85176 c 2.0958,-1.56849 7.8583,-4.28388 12.8055,-6.03431 4.9472,-1.7503 11.9633,-4.0438 15.5913,-5.09655 3.628,-1.05266 9.2072,-2.6342 12.3985,-3.51439 3.1912,-0.88019 9.6988,-1.95347 14.4615,-2.38498 l 8.6595,-0.78473 1.9122,1.91233 1.9124,1.91244 0.816,5.93176 0.8157,5.93189 2.1273,1.92528 2.1274,1.92518 1.2076,-1.52941 c 0.6642,-0.8412 1.5682,-3.8907 2.0092,-6.77679 0.4409,-2.88607 1.3733,-6.31567 2.0722,-7.62138 l 1.2704,-2.37407 18.1805,0.55313 18.1804,0.55326 7.7955,2.70314 c 4.2877,1.48671 11.679,4.58217 16.4253,6.87889 l 8.6297,4.17583 1.6843,2.58791 c 0.9265,1.42337 3.1311,6.90562 4.8996,12.18267 1.7684,5.27704 4.0508,12.29312 5.072,15.59128 1.0212,3.29817 1.949,7.3459 2.0619,8.99497 l 0.2055,2.99833 -1.799,-0.45455 c -0.9895,-0.24994 -6.1166,-0.89062 -11.3937,-1.42373 -5.277,-0.53297 -9.9502,-1.00312 -10.3846,-1.04461 -0.4346,-0.0419 -3.5469,-3.58347 -6.9165,-7.87109 -3.3695,-4.28761 -6.6569,-7.79562 -7.3055,-7.79562 -0.6483,0 -1.179,0.87982 -1.179,1.95525 0,1.07545 1.9979,5.65448 4.44,10.17572 l 4.44,8.2202 -3.5111,3.66469 -3.5109,3.66465 -2.3462,-0.34781 -2.3461,-0.34782 -9.6768,-15.66562 c -5.3221,-8.61597 -11.697,-18.01908 -14.1666,-20.89567 -2.4695,-2.8766 -4.745,-4.97518 -5.0566,-4.6636 -0.3116,0.31158 2.6932,6.97003 6.6773,14.79661 3.9841,7.82658 9.6843,18.53096 12.667,23.78762 l 5.4231,9.55746 -2.3405,3.13792 c -1.2872,1.72583 -3.1589,3.29912 -4.1591,3.49616 l -1.8188,0.35837 -2.8325,-4.55602 c -1.5578,-2.50576 -3.0541,-5.0956 -3.325,-5.75522 -0.2711,-0.65964 -2.233,-3.1468 -4.3601,-5.527 -2.127,-2.38029 -4.1336,-5.0788 -4.4592,-5.99666 -0.3257,-0.91794 -0.9672,-1.32273 -1.4258,-0.8996 -0.4584,0.42324 0.7216,3.93128 2.6225,7.79565 1.901,3.86448 4.9733,9.85176 6.8275,13.30535 l 3.3712,6.2791 -1.5075,1.81637 -1.5075,1.81626 z m 96.2688,-10.74599 c -0.9211,0 -1.6748,-0.73711 -1.6748,-1.63817 0,-0.90093 3.537,-5.89313 7.86,-11.09379 4.3231,-5.20053 12.7283,-15.52724 18.6784,-22.94808 5.9502,-7.42086 11.5045,-13.49246 12.3428,-13.49246 0.8383,0 2.4704,1.04532 3.6266,2.3231 l 2.1024,2.32309 -0.9345,1.57472 c -0.5139,0.86604 -8.0615,8.86065 -16.7724,17.76566 -8.7108,8.90504 -17.574,18.21482 -19.6959,20.68844 -2.1218,2.47361 -4.6115,4.49749 -5.5326,4.49749 z m -243.584,-2.27418 -1.2269,1.22693 -19.6531,-20.48239 c -10.809,-11.26532 -19.8323,-21.30981 -20.0518,-22.32119 -0.2193,-1.0114 0.2516,-2.62259 1.0465,-3.58027 0.7948,-0.95777 2.169,-1.7414 3.0535,-1.7414 0.8848,0 5.8107,5.20112 10.947,11.55804 5.1361,6.35694 11.9671,14.58733 15.1798,18.28979 3.2127,3.70244 7.2116,8.7774 8.8867,11.27765 l 3.0452,4.54594 z m 358.1672,-3.72247 c -0.6007,0 -2.4264,-2.11346 -4.057,-4.69645 -1.6305,-2.58312 -3.5265,-5.04366 -4.2127,-5.46787 -0.6865,-0.42407 -1.248,-1.69992 -1.248,-2.83509 v -2.06392 l 12.593,-9.4945 12.5929,-9.49449 v -2.76277 -2.76277 h -2.4564 -2.4566 l -11.8775,8.99496 c -6.5326,4.94725 -12.5783,8.9903 -13.4346,8.98454 -0.8564,0 -3.672,-3.379 -6.2572,-7.49582 -2.585,-4.11692 -8.2207,-11.11155 -12.5238,-15.54354 l -7.8237,-8.05818 3.9105,-4.86614 3.9107,-4.86618 -0.3819,-1.9387 c -0.2098,-1.06636 -1.297,-2.51511 -2.4157,-3.21961 l -2.0339,-1.28087 -4.7919,3.85079 c -2.6354,2.11789 -5.0805,3.85081 -5.4334,3.85081 -0.3531,0 -3.4798,-2.70688 -6.9485,-6.01537 l -6.3068,-6.01534 1.2771,-2.08012 c 0.7023,-1.14405 7.7102,-7.29901 15.5732,-13.67775 7.863,-6.37864 15.1234,-12.33294 16.1342,-13.23161 1.0109,-0.89865 7.0699,-5.79912 13.4644,-10.88979 l 11.6262,-9.25581 h 2.1551 2.1552 l 9.4145,9.47002 9.4145,9.47001 -0.9487,1.62376 c -0.5219,0.89304 -2.6123,3.74168 -4.6454,6.33031 -2.033,2.58852 -7.7443,10.48623 -12.6914,17.5504 -4.9474,7.06417 -12.3682,17.58674 -16.4908,23.38343 -4.1228,5.79673 -7.4959,11.25656 -7.4959,12.13304 0,0.87635 0.4807,1.59343 1.0683,1.59343 0.5876,0 3.51,-1.75402 6.4939,-3.89783 2.984,-2.1438 14.2418,-10.32372 25.0171,-18.17752 10.7754,-7.85393 20.9703,-15.54463 22.6555,-17.09045 1.6852,-1.54593 3.4491,-2.81074 3.9197,-2.81074 0.4705,0 4.634,5.77322 9.2518,12.82934 4.6178,7.05614 8.9969,14.83427 9.7309,17.28462 l 1.3348,4.45515 -2.6373,5.44808 -2.6373,5.44806 -6.2159,4.48658 -6.2161,4.48669 -5.9747,0.066 -5.9747,0.066 -0.6906,4.2383 c -0.3797,2.33114 -1.0909,4.88655 -1.5805,5.67883 -0.4897,0.79216 -4.5063,3.98418 -8.9262,7.09319 -4.4196,3.10903 -9.5613,6.89507 -11.4259,8.41341 -1.8646,1.51824 -3.8818,2.7605 -4.4825,2.7605 z m 31.6458,-45.43371 c 1.8615,-1.06681 4.456,-2.93416 5.7657,-4.14957 l 2.3811,-2.20966 -0.3686,-2.57531 -0.3687,-2.57543 -2.0158,-0.38403 -2.0156,-0.38401 -4.8805,4.4092 -4.8804,4.4091 v 2.15915 c 0,1.18759 0.6747,2.4025 1.4992,2.69981 0.8245,0.29732 3.0221,-0.33234 4.8836,-1.39925 z m -55.2531,-30.35395 2.495,-0.36975 5.7973,-7.56359 c 3.1886,-4.15999 5.7973,-8.0728 5.7973,-8.69512 0,-0.62235 -0.6188,-1.13157 -1.3754,-1.13157 -0.7568,0 -3.79,2.02387 -6.7405,4.49748 -2.9506,2.47361 -6.4427,5.35716 -7.76,6.40778 l -2.3953,1.91029 0.8433,2.65712 0.8434,2.65711 z m -95.4489,62.33672 c -0.834,0.18768 -1.8718,-0.0136 -2.3059,-0.44831 -0.4343,-0.43442 0.2188,-2.74672 1.4515,-5.13865 1.2328,-2.39195 6.2583,-10.06946 11.1678,-17.06132 4.9097,-6.99161 9.9309,-14.41246 11.1585,-16.49078 l 2.2321,-3.77847 h 1.9541 c 1.0748,0 2.8717,1.01365 3.993,2.25257 l 2.0384,2.25258 -7.5496,9.31651 c -4.1521,5.12413 -10.941,13.6901 -15.0863,19.03552 -4.1454,5.34541 -8.2193,9.87264 -9.0536,10.06035 z m -233.3996,-0.94083 h -2.3286 l -5.7334,-7.49581 c -3.1535,-4.12269 -9.6614,-12.17104 -14.4622,-17.88511 -4.8006,-5.7141 -8.7284,-11.13807 -8.7284,-12.05327 0,-0.91522 0.6476,-2.31159 1.4393,-3.10315 0.7914,-0.79157 2.3331,-1.43918 3.426,-1.43918 h 1.9867 l 4.1744,6.29646 c 2.2958,3.46307 8.3099,12.32791 13.3646,19.69972 5.0547,7.37179 9.1901,13.98309 9.1901,14.69177 0,0.70869 -1.0478,1.28857 -2.3285,1.28857 z m 17.62,-2.46487 c -0.8246,-0.0359 -8.4708,-10.62666 -16.9916,-23.53384 l -15.4924,-23.46774 1.2311,-1.9518 1.2313,-1.95192 h 2.7984 2.7984 l 6.0659,11.09416 c 3.3362,6.10172 9.1691,16.50949 12.9619,23.12836 3.7929,6.61874 6.8962,13.09499 6.8962,14.39159 v 2.3574 z m 199.8926,-3.74371 -1.7033,0.38787 v -2.49711 c 0,-1.37337 3.0668,-7.75439 6.8149,-14.18003 3.7484,-6.42566 9.2267,-16.13555 12.1741,-21.57751 l 5.359,-9.89448 h 1.978 c 1.0881,0 2.6257,0.64767 3.4173,1.43921 0.7915,0.79156 1.4392,2.10422 1.4392,2.91712 0,0.8128 -6.2497,10.82419 -13.8881,22.24757 -7.6383,11.42325 -14.6544,20.94414 -15.5911,21.15736 z M 382.085,492.96847 c -0.5637,0.34841 -3.7321,-1.61742 -7.0408,-4.36844 -3.3088,-2.75101 -7.8822,-6.79096 -10.1633,-8.97758 -2.2809,-2.18662 -12.3775,-11.31412 -22.4369,-20.2833 -10.0593,-8.96918 -18.2897,-17.02387 -18.2897,-17.8994 0,-0.87551 2.5677,-4.43091 5.706,-7.90093 3.1384,-3.47003 7.5462,-8.60291 9.7954,-11.40636 2.2491,-2.80343 4.6991,-5.09715 5.4442,-5.09715 0.7451,0 3.4586,2.15437 6.0297,4.78749 l 4.6748,4.7875 -3.2321,3.37359 -3.2322,3.37358 v 2.39771 2.39758 l 3.955,3.83318 c 2.1753,2.1083 4.6387,3.83329 5.4744,3.83329 0.8357,0 2.882,-1.6191 4.5471,-3.59798 1.665,-1.9789 3.6831,-3.598 4.4846,-3.598 0.8014,0 3.182,1.77968 5.2903,3.95491 2.1084,2.17522 3.8332,4.50985 3.8332,5.18794 0,0.6781 -1.3492,2.50061 -2.9983,4.04977 -1.6491,1.54919 -2.9982,3.55387 -2.9982,4.45479 0,0.90094 2.2937,3.76855 5.097,6.3724 2.8036,2.60375 5.666,4.74095 6.3611,4.74912 0.6951,0.0121 3.0947,-1.87396 5.3324,-4.18267 2.2378,-2.30871 4.4865,-4.19765 4.9977,-4.19765 0.5109,0 3.3733,1.72295 6.3609,3.82885 2.9877,2.10592 5.432,4.16157 5.432,4.56813 0,0.40658 -0.7923,1.78688 -1.7608,3.06727 -0.9684,1.2804 -1.7779,3.69214 -1.7989,5.35935 -0.021,1.66717 0.802,4.23074 1.8287,5.69679 1.0269,1.46606 2.3488,2.66553 2.9376,2.66553 0.5888,0 2.6514,-1.69155 4.5835,-3.75882 l 3.513,-3.75894 1.3451,0.83137 c 0.7399,0.45718 1.3451,1.8375 1.3451,3.06716 0,1.22969 -1.3475,3.83751 -2.9947,5.79491 -1.6472,1.95756 -4.3568,3.90095 -6.0213,4.3188 l -3.0264,0.75954 -2.3616,-1.26386 c -1.299,-0.69526 -3.1907,-2.867 -4.2039,-4.82635 -1.0132,-1.95932 -2.5692,-3.56249 -3.4577,-3.56249 -0.8885,0 -3.8005,2.37062 -6.4713,5.26794 -2.6707,2.89746 -5.317,5.55302 -5.8807,5.90143 z m 126.2808,-9.97002 h -1.6844 l -3.7125,-6.57808 c -2.0418,-3.61802 -3.7126,-6.84075 -3.7126,-7.16145 0,-0.32081 -2.4285,-4.69117 -5.3969,-9.71193 -2.9683,-5.02074 -5.397,-9.90513 -5.397,-10.85428 0,-0.94904 1.3639,-2.34697 3.0309,-3.10651 l 3.0308,-1.3809 1.0275,1.10674 c 0.5651,0.60878 4.0584,8.00433 7.7631,16.43451 3.7047,8.4302 6.7356,16.66062 6.7356,18.28979 v 2.96211 z m 188.1228,-2.39866 c -0.7379,0 -1.7016,-0.35982 -2.1412,-0.79959 -0.4399,-0.43969 -0.7996,-1.58612 -0.7996,-2.54751 0,-0.96137 1.9521,-6.13348 4.3381,-11.49352 2.386,-5.36018 5.4861,-12.3092 6.8891,-15.44246 l 2.551,-5.69681 h 1.9199 c 1.056,0 2.8268,1.00192 3.935,2.22655 l 2.015,2.22655 -4.8301,7.95048 c -2.6566,4.37289 -6.564,11.46644 -8.6829,15.76352 -2.119,4.29694 -4.4564,7.81279 -5.1943,7.81279 z M 518.2227,462.60985 c -0.6206,0 -3.6015,-5.22043 -6.6239,-11.60099 l -5.4955,-11.60112 2.6317,-2.13108 2.6318,-2.13108 1.6258,0.62374 c 0.8942,0.34313 2.7223,3.68927 4.0626,7.43574 1.3403,3.74647 3.1066,8.8002 3.925,11.23041 l 1.4882,4.41844 -1.5586,1.87804 c -0.8571,1.03286 -2.0663,1.8779 -2.6871,1.8779 z m 166.5425,-3.80942 -2.0187,0.3887 -0.6707,-1.74766 c -0.3688,-0.96127 0.3968,-4.99929 1.7015,-8.97327 1.3046,-3.9741 2.9762,-8.35465 3.7147,-9.7346 l 1.3427,-2.50899 h 2.994 2.9937 l 0.6986,1.82056 c 0.3842,1.00121 -0.015,3.56479 -0.8798,5.69682 -0.8681,2.13193 -2.9911,6.30476 -4.7178,9.27299 l -3.1396,5.39662 z M 409.0453,457.8081 h -3.9363 l -3.598,-2.24744 c -1.9789,-1.23602 -5.2977,-4.06751 -7.375,-6.29204 -2.0775,-2.2245 -8.5991,-10.12832 -14.4928,-17.56418 -5.8937,-7.43583 -11.8847,-15.86029 -13.3133,-18.72093 -1.4288,-2.86074 -2.5924,-6.49147 -2.5861,-8.06837 0,-1.57674 1.2977,-5.62857 2.8694,-9.00395 l 2.8575,-6.13698 4.0268,-3.01619 c 2.2149,-1.6589 5.7542,-3.88955 7.8652,-4.95682 2.1111,-1.06728 5.7895,-1.94065 8.1743,-1.94065 2.3848,0 5.5149,0.6028 6.9558,1.33942 1.4407,0.73675 4.9133,3.54761 7.7167,6.24635 2.8035,2.69885 5.0971,5.65148 5.0971,6.5613 0,0.90992 -2.5635,4.01426 -5.6968,6.89864 -3.1332,2.88439 -6.4412,5.26579 -7.351,5.29194 -0.9098,0.0264 -4.0185,-2.49124 -6.9081,-5.59427 l -5.254,-5.64189 -1.9041,1.90406 -1.904,1.90392 1.4837,2.77237 c 0.816,1.52484 6.5625,9.2238 12.7698,17.10892 6.2073,7.88511 12.8189,16.19622 14.6924,18.46919 l 3.4066,4.13252 2.2305,-0.42539 2.2307,-0.42541 0.3505,-2.4363 0.3505,-2.43632 -3.6427,-5.02868 -3.6428,-5.02865 -4.2008,-1.75524 -4.2009,-1.75521 -1.4276,-3.13325 -1.4276,-3.13311 7.1218,-6.46873 c 3.9168,-3.55781 7.7152,-6.49352 8.4409,-6.52373 0.7257,-0.03 3.9794,3.04807 7.2306,6.84096 3.2512,3.79288 8.7292,10.52761 12.1731,14.96597 3.4442,4.43834 6.2619,8.82873 6.2619,9.75653 0,0.92767 -1.4841,2.69334 -3.298,3.92348 -1.8141,1.23028 -4.609,2.50661 -6.2108,2.83643 l -2.9126,0.59964 -0.9235,3.45493 c -0.5078,1.9002 -2.1656,4.80318 -3.6838,6.45106 -1.5182,1.64788 -4.4969,3.73616 -6.6194,4.64057 -2.1227,0.90439 -5.6307,1.64247 -7.7958,1.63998 z m 126.7906,-4.79288 c -0.8279,0 -2.0274,-0.67463 -2.6655,-1.49917 -0.6383,-0.82454 -2.1043,-4.19764 -3.258,-7.49581 -1.1536,-3.29814 -2.3727,-7.72632 -2.7094,-9.84024 l -0.6118,-3.84362 3.055,-0.76685 c 1.6804,-0.42169 3.6045,-0.42708 4.2761,-0.0121 0.6716,0.4151 1.5539,2.75967 1.9605,5.21014 0.4068,2.45047 1.5031,6.83353 2.4363,9.74012 l 1.6969,5.28483 -1.3375,1.61131 c -0.7355,0.8863 -2.0147,1.61141 -2.8426,1.61141 z m 131.2505,-1.19933 c -1.1996,0 -2.5506,-0.59786 -3.0022,-1.32863 l -0.8212,-1.32873 1.8946,-6.76674 c 1.0422,-3.72176 2.1996,-8.25103 2.5722,-10.065 l 0.6778,-3.29817 h 2.8286 c 1.5557,0 3.4505,0.74935 4.2104,1.66503 l 1.382,1.66515 -2.6361,8.22934 c -1.4499,4.52613 -3.1511,8.90404 -3.7806,9.72858 -0.6295,0.82454 -2.126,1.49917 -3.3255,1.49917 z m -113.3653,-4.79732 c -0.8853,0 -2.1332,-0.97793 -2.7728,-2.17318 -0.6396,-1.19514 -2.011,-5.82923 -3.0474,-10.29781 -1.0362,-4.4686 -1.5795,-8.6179 -1.207,-9.22056 0.3725,-0.60267 1.9757,-1.0957 3.5626,-1.0957 h 2.8853 l 1.0631,2.09882 c 0.5846,1.15435 1.7551,5.46463 2.6011,9.57832 l 1.5384,7.4795 -1.5066,1.8153 c -0.8286,0.99844 -2.231,1.81531 -3.1167,1.81531 z m 96.0511,-0.39327 c -0.6596,0.19492 -1.95,-0.1206 -2.8675,-0.701 l -1.6681,-1.05517 0.8408,-7.43248 c 0.4625,-4.0878 1.3483,-8.7671 1.9686,-10.39844 l 1.1278,-2.96605 3.2976,0.37935 3.2974,0.37946 0.2837,2.99832 c 0.156,1.64908 -0.9233,6.47314 -2.3985,10.7201 -1.4754,4.24693 -3.2221,7.88113 -3.8818,8.07591 z m 120.6152,-2.00539 c -0.6272,0 -1.4318,-0.47156 -1.788,-1.04798 -0.3562,-0.57639 -4.4359,-3.33677 -9.0658,-6.1342 -4.6299,-2.79743 -8.418,-5.65663 -8.418,-6.35381 0,-0.69705 1.3325,-4.54797 2.9613,-8.55746 1.6285,-4.00959 4.327,-9.9452 5.9966,-13.19021 1.6693,-3.24505 3.0353,-6.61815 3.0353,-7.49583 0,-0.87765 -0.5929,-1.5957 -1.3177,-1.5957 -0.7248,0 -2.869,1.66058 -4.765,3.69021 -1.8959,2.02963 -5.9455,7.02183 -8.9988,11.0938 -3.0534,4.07197 -6.3307,7.84891 -7.2829,8.39327 l -1.7315,0.98969 -8.4072,-5.74431 c -4.624,-3.15951 -8.9242,-6.36725 -9.5558,-7.12834 l -1.1486,-1.38402 4.3121,-9.45265 c 2.3717,-5.19895 6.9664,-14.92792 10.2101,-21.61993 3.244,-6.69203 5.8982,-12.46644 5.8982,-12.83199 0,-0.36556 2.6855,-6.35886 5.9679,-13.31843 l 5.9679,-12.65378 h 1.8406 c 1.0123,0 4.5041,1.75402 7.7595,3.89783 3.2553,2.1438 5.948,4.63157 5.9837,5.5283 0.036,0.89674 -3.713,8.83559 -8.3304,17.64177 -4.6174,8.80634 -8.3953,16.94367 -8.3953,18.08301 v 2.07174 l 3.7128,-3.52256 c 2.0421,-1.93738 7.7562,-9.05446 12.6982,-15.81568 l 8.9852,-12.29311 h 1.7597 c 0.9678,0 4.9682,2.17893 8.8897,4.84204 3.9217,2.66312 7.1302,5.42734 7.1302,6.14272 0,0.71552 -4.0831,9.11515 -9.0738,18.66601 -4.9904,9.55099 -8.7917,17.6473 -8.4469,17.99197 0.3446,0.3447 1.4306,0.31832 2.413,-0.0588 0.9824,-0.37696 6.4156,-6.94196 12.0739,-14.58878 5.6582,-7.64692 11.155,-14.23627 12.2152,-14.64308 l 1.9276,-0.73976 5.3133,2.88727 c 2.9222,1.58803 6.088,3.73758 7.035,4.77694 l 1.722,1.88978 -6.8929,9.12916 c -3.791,5.02113 -11.976,15.7743 -18.1887,23.89592 -6.2128,8.12164 -12.959,16.70583 -14.9915,19.07607 -2.0327,2.37023 -4.635,5.4735 -5.7828,6.89614 -1.148,1.42275 -2.6003,2.58672 -3.2274,2.58672 z m -198.1446,-1.19934 c -0.5929,0 -1.5631,-1.21431 -2.1557,-2.69847 -0.5925,-1.48418 -1.7286,-6.04474 -2.5241,-10.13459 -0.7956,-4.08994 -1.1256,-8.27261 -0.7334,-9.29481 l 0.7132,-1.8587 h 2.2896 c 1.2592,0 2.8352,0.67461 3.5024,1.49915 0.6671,0.82454 1.5987,5.42409 2.0702,10.22129 l 0.8573,8.72212 -1.4706,1.77202 c -0.8088,0.97457 -1.9558,1.77199 -2.5489,1.77199 z m 58.7433,-1.44769 c -1.0026,0.19319 -2.4905,-0.45287 -3.3062,-1.43574 l -1.483,-1.78699 0.7569,-6.95959 c 0.4164,-3.82778 1.0172,-8.20797 1.3355,-9.73376 l 0.5784,-2.77404 3.2563,0.37539 3.2563,0.37551 -0.3225,7.19596 c -0.1774,3.9578 -0.756,8.81507 -1.2856,10.79397 l -0.9631,3.59801 z m -19.7718,-1.18736 -2.5136,0.36317 -0.7524,-1.96044 c -0.4138,-1.07829 -0.7522,-5.3803 -0.7522,-9.55996 0,-4.17966 0.3274,-8.4531 0.728,-9.49651 l 0.7279,-1.89711 h 3.3888 3.389 l 0.658,2.09881 c 0.3621,1.15436 -0.021,6.14658 -0.8508,11.0938 l -1.509,8.99497 z m -19.749,-1.19859 -3.1376,0.364 -0.8552,-9.80357 -0.8552,-9.80368 1.1561,-1.15603 c 0.6359,-0.63588 2.4326,-0.97543 3.9928,-0.75473 l 2.8368,0.40142 v 10.19428 10.1943 z m -136.3425,-15.53036 -8.7534,0.44279 -4.4392,-4.66911 -4.4393,-4.6691 -10.499,-19.91872 -10.4989,-19.91882 -0.7455,-5.4392 -0.7456,-5.4392 2.6264,-5.42504 2.6263,-5.42517 5.4424,-3.60493 5.4424,-3.60495 5.2667,-0.78977 c 2.8964,-0.43427 7.2735,-0.41315 9.7266,0.0467 l 4.4602,0.83677 3.6433,3.88919 c 2.0038,2.13899 6.2287,8.70436 9.3886,14.58961 3.16,5.88533 7.9438,15.22907 10.6309,20.76374 2.6872,5.53479 5.1599,12.10902 5.4953,14.60939 l 0.6099,4.54629 -2.5587,5.28545 -2.5587,5.28545 -5.6836,4.08289 -5.6838,4.08274 z m 4.4454,-14.47782 1.9092,-0.36352 0.3469,-2.40814 0.3467,-2.40814 -6.5163,-12.57124 c -3.584,-6.91413 -8.9194,-16.88884 -11.8563,-22.16588 l -5.3399,-9.59465 -2.4299,-0.36327 -2.43,-0.36316 -0.755,1.96738 -0.7551,1.96749 6.4155,12.18808 c 3.5286,6.70341 8.7156,16.50565 11.5266,21.7827 2.811,5.27706 5.6773,10.2924 6.3697,11.14525 0.6922,0.85285 2.1178,1.38703 3.1679,1.1871 z m 37.1108,-6.93536 h -1.9853 l -1.2407,-3.29817 c -0.6824,-1.81398 -2.6549,-6.80618 -4.3836,-11.09379 -1.7286,-4.2876 -3.6183,-8.87505 -4.1993,-10.19429 -0.581,-1.31927 -4.0741,-10.22429 -7.7624,-19.78894 -3.6884,-9.56465 -7.7417,-19.52737 -9.0072,-22.13939 l -2.3013,-4.74923 1.2297,-1.48153 c 0.6762,-0.81495 3.8793,-2.36172 7.1178,-3.4374 3.2385,-1.07568 6.816,-1.77705 7.9501,-1.55877 l 2.0616,0.39709 3.4034,9.58852 c 1.872,5.27359 3.8656,11.35466 4.4305,13.51334 0.565,2.15867 1.9409,5.31963 3.0579,7.02435 l 2.0309,3.09944 1.2234,-1.22357 1.2238,-1.22356 -0.5717,-4.60146 c -0.3143,-2.53082 -1.5742,-10.12175 -2.8002,-16.8688 l -2.2285,-12.26737 1.3685,-1.36854 c 0.7525,-0.7527 3.7055,-1.89001 6.562,-2.52735 2.8565,-0.63744 6.7651,-1.24754 8.6859,-1.35584 l 3.492,-0.19681 6.1026,17.63663 c 3.3562,9.70017 6.7593,18.29072 7.5622,19.09009 l 1.4599,1.45322 0.7758,-2.02158 0.7756,-2.02172 -1.459,-5.67463 c -0.8026,-3.12115 -2.1755,-11.34159 -3.0507,-18.26771 l -1.5916,-12.59295 1.4861,-1.52747 c 0.8172,-0.84013 4.2382,-2.57341 7.6026,-3.85177 l 6.1169,-2.32418 1.1141,1.45311 c 0.6128,0.7991 1.9878,6.04041 3.0554,11.64729 1.0674,5.60686 2.2633,13.70232 2.657,17.98993 0.3938,4.2876 1.2075,9.68459 1.8083,11.9933 0.6005,2.30872 1.9432,11.13111 2.9838,19.60533 l 1.8918,15.40767 -1.3967,1.68276 c -0.7681,0.92552 -2.674,1.68279 -4.2352,1.68279 -1.5612,0 -5.6674,1.07484 -9.1248,2.38857 l -6.2861,2.38848 -2.0351,-2.08864 c -1.1193,-1.14883 -4.0224,-6.94603 -6.4512,-12.8827 -2.429,-5.93668 -4.958,-11.46261 -5.6199,-12.27996 -0.6619,-0.81721 -1.6822,-1.19021 -2.2669,-0.82871 -0.5849,0.36146 -1.064,2.64932 -1.0644,5.08394 -6e-4,2.43476 0.8898,8.91413 1.9785,14.39866 l 1.9795,9.97195 -1.7372,1.73712 c -0.9555,0.95552 -5.4871,2.80954 -10.0702,4.12017 -4.5832,1.31074 -9.2264,2.38308 -10.3184,2.38308 z m 192.3436,-3.61635 c -0.4796,-0.0121 -1.6768,-0.52722 -2.6606,-1.1492 -0.9836,-0.62197 -4.7616,-1.49089 -8.3952,-1.93091 -3.6336,-0.44015 -7.6031,-1.31904 -8.821,-1.95311 l -2.2142,-1.15305 0.4153,-15.07063 0.4153,-15.07067 -1.2926,-0.44771 -1.2924,-0.4477 -1.3463,2.95478 c -0.7405,1.62508 -2.7801,7.17103 -4.5325,12.3242 -1.7524,5.15315 -3.9074,10.12917 -4.7891,11.05768 l -1.6029,1.6882 -7.5637,-1.88442 c -4.16,-1.03644 -9.0479,-2.4574 -10.862,-3.1577 l -3.298,-1.27331 0.03,-4.52712 c 0.017,-2.49006 0.5335,-6.70906 1.1496,-9.37564 0.616,-2.66658 1.9598,-14.2701 2.9856,-25.78559 1.026,-11.51548 2.3678,-24.38825 2.9816,-28.60629 0.6139,-4.21792 1.6207,-8.17354 2.2374,-8.79024 l 1.1211,-1.12125 5.585,0.83749 c 3.0718,0.46066 6.6299,1.7178 7.9069,2.79373 l 2.3219,1.95609 -2.2532,14.39197 c -1.2393,7.91556 -2.6424,16.68565 -3.1182,19.4891 l -0.8648,5.09714 h 1.9779 1.978 l 1.0958,-2.69848 c 0.6025,-1.48418 3.077,-9.17488 5.4988,-17.09045 2.4217,-7.91558 5.138,-15.16504 6.0365,-16.10988 l 1.6329,-1.71803 7.3492,1.36676 c 4.0421,0.75173 8.107,1.99568 9.0332,2.76433 0.9262,0.76864 1.6769,2.54581 1.6682,3.94915 -0.015,1.40346 -1.081,7.67882 -2.383,13.94532 -1.3019,6.26651 -2.3741,13.14765 -2.3829,15.29146 l -0.017,3.89782 h 1.7284 c 0.9504,0 2.066,-0.54655 2.4787,-1.21445 0.4129,-0.66802 1.7568,-4.58084 2.9868,-8.69514 1.2297,-4.11442 3.3928,-10.71889 4.8067,-14.67667 1.4138,-3.95779 3.2861,-7.93249 4.1606,-8.83269 l 1.5899,-1.63674 7.9152,2.63409 7.9151,2.63396 v 1.76075 c 0,0.96846 -0.8073,3.32165 -1.7938,5.22943 -0.9866,1.90776 -5.6121,14.69886 -10.279,28.42447 -4.6669,13.72573 -9.017,27.11468 -9.6671,29.75321 -0.6498,2.63851 -1.9734,6.01163 -2.9412,7.49581 -0.9678,1.48417 -2.1519,2.69022 -2.6314,2.68013 z m -104.6137,-14.3736 h -6.7164 l -1.4392,-1.43918 -1.4392,-1.4392 v -12.50758 -12.50757 l -3.1782,-9.74 c -1.7482,-5.35692 -5.2886,-16.12198 -7.8678,-23.9223 l -4.6893,-14.18219 1.4183,-1.70893 1.4182,-1.70879 h 6.5106 6.5106 l 1.6699,3.99641 c 0.9183,2.19788 2.0305,6.71622 2.4715,10.04066 0.441,3.32441 1.2209,6.72236 1.7329,7.55097 l 0.9312,1.50648 1.2363,-0.76409 c 0.68,-0.42026 1.8198,-3.4843 2.5327,-6.80895 0.713,-3.32467 1.2964,-7.79936 1.2964,-9.94364 0,-2.14441 0.6478,-4.54643 1.4392,-5.33797 l 1.4392,-1.4392 h 6.9562 6.9561 l 0.015,1.49915 c 0.015,0.82454 -0.8548,5.27705 -1.9118,9.89447 -1.0569,4.61741 -2.6376,11.0938 -3.5126,14.39196 -0.8749,3.29814 -2.5167,10.79696 -3.6487,16.66383 l -2.0578,10.66732 0.6285,12.31449 0.6284,12.3146 -1.3045,1.30461 -1.3042,1.30464 z"
+   id="path17" />
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..4eaa7d5
--- /dev/null
+++ b/content/works/elanza.svg
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+<path
+   fill-rule="evenodd"
+   clip-rule="evenodd"
+   d="m 204.3474,285.25659 c -6.5565,0 -11.8728,5.24718 -11.8728,11.72009 0,6.47317 5.3162,11.72007 11.8728,11.72007 6.5578,0 11.8731,-5.2469 11.8731,-11.72007 0,-6.47291 -5.3153,-11.72009 -11.8731,-11.72009 z m -16.622,75.00851 c 0,-10.35616 8.5049,-18.75214 18.9971,-18.75214 10.491,0 18.997,8.39598 18.997,18.75214 0,10.35616 -8.506,18.75212 -18.997,18.75212 -10.4922,0 -18.9971,-8.39596 -18.9971,-18.75212 z m 137.7256,77.35203 c 0,16.82982 -13.8201,30.47269 -30.8689,30.47269 -17.0488,0 -30.8701,-13.64287 -30.8701,-30.47269 0,-16.82886 13.8213,-30.47172 30.8701,-30.47172 17.0488,0 30.8689,13.64286 30.8689,30.47172 z m 42.5693,222.68195 c 1.4298,0 2.6558,-0.52006 3.6764,-1.56021 1.0215,-1.03923 1.5325,-2.23548 1.5325,-3.58693 0,-1.35144 -0.511,-2.57262 -1.5325,-3.66545 -1.0206,-1.09093 -2.2466,-1.63687 -3.6764,-1.63687 h -46.5736 c -0.9193,0 -1.3793,-0.4157 -1.3793,-1.24799 V 605.3997 c 0,-0.93485 0.46,-1.40225 1.3793,-1.40225 h 43.8152 c 1.431,0 2.605,-0.49422 3.524,-1.48263 0.9194,-0.98749 1.3792,-2.15696 1.3792,-3.50932 0,-1.35145 -0.4598,-2.5209 -1.3792,-3.5084 -0.919,-0.98748 -2.093,-1.48261 -3.524,-1.48261 h -43.8152 c -0.9193,0 -1.3793,-0.41568 -1.3793,-1.24708 v -34.62306 c 0,-0.8323 0.46,-1.24799 1.3793,-1.24799 h 46.5736 c 1.4298,0 2.6558,-0.54594 3.6764,-1.63782 1.0215,-1.09188 1.5325,-2.31306 1.5325,-3.6645 0,-1.35236 -0.511,-2.54771 -1.5325,-3.58786 -1.0206,-1.0392 -2.2466,-1.55928 -3.6764,-1.55928 h -51.4762 c -2.3487,0 -4.3913,0.88405 -6.128,2.65116 -1.7357,1.76715 -2.6049,3.84742 -2.6049,6.23901 v 96.07184 c 0,2.3916 0.8692,4.47095 2.6049,6.239 1.7367,1.76714 3.779,2.65117 6.128,2.65117 z m 118.2178,0 c 1.43,0 2.6559,-0.52006 3.6764,-1.56021 1.0219,-1.03923 1.5326,-2.2872 1.5326,-3.74304 0,-1.45491 -0.5107,-2.70288 -1.5326,-3.74301 -1.0205,-1.03923 -2.2464,-1.5593 -3.6764,-1.5593 H 438.593 c -0.8177,0 -1.2258,-0.46744 -1.2258,-1.4041 v -95.29221 c 0,-1.76715 -0.6384,-3.30055 -1.9159,-4.6012 -1.2759,-1.29972 -2.7824,-1.94912 -4.5191,-1.94912 -1.7357,0 -3.2432,0.64941 -4.5189,1.94912 -1.2765,1.30064 -1.9149,2.83405 -1.9149,4.6012 v 98.4117 c 0,2.3916 0.8683,4.47096 2.604,6.23901 1.7367,1.76716 3.779,2.65116 6.1282,2.65116 z m 135.0726,-1.95003 c -0.9192,1.30062 -2.145,1.95003 -3.6775,1.95003 -2.0425,0 -3.8547,-0.59858 -5.4382,-1.79391 -1.5832,-1.19536 -2.6816,-2.72875 -3.2941,-4.60029 l -8.1198,-25.57864 c -0.3065,-0.83138 -0.9191,-1.24706 -1.8382,-1.24706 h -42.4371 c -0.8176,0 -1.3791,0.41568 -1.685,1.24706 l -8.4263,25.88993 c -0.6127,1.87153 -1.6592,3.35416 -3.1408,4.4451 -1.481,1.09189 -3.1917,1.6378 -5.1326,1.6378 -1.5315,0 -2.7572,-0.64941 -3.6764,-1.95003 -0.9192,-1.29971 -1.1234,-2.67701 -0.6135,-4.13287 l 34.9309,-101.21896 c 0.715,-1.9759 1.9148,-3.56107 3.5998,-4.75729 1.6859,-1.19535 3.549,-1.79302 5.5924,-1.79302 2.0425,0 3.9065,0.59767 5.5914,1.79302 1.6859,1.19623 2.8858,2.78139 3.6009,4.75729 L 621.9229,654.061 c 0.5108,1.5593 0.3067,2.98833 -0.6122,4.28805 z m -25.5851,-41.25192 h -36.0024 c -0.3066,0 -0.5625,-0.12932 -0.7667,-0.38981 -0.2041,-0.25957 -0.255,-0.54594 -0.1533,-0.85725 l 18.6912,-58.01794 c 0,-0.10342 0.1029,-0.15612 0.3064,-0.15612 0.1029,0 0.1536,0.0527 0.1536,0.15612 l 18.6903,58.01794 c 0,0.31131 -0.077,0.59768 -0.2301,0.85725 -0.1533,0.26049 -0.3834,0.38981 -0.689,0.38981 z m 148.0938,41.33043 c -1.2287,1.24798 -2.7076,1.87152 -4.4446,1.87152 -4.1864,0 -7.3546,-1.87152 -9.4979,-5.61547 l -50.8635,-87.80612 c 0,-0.10343 -0.1029,-0.1552 -0.3064,-0.1552 -0.1008,0 -0.1533,0.0517 -0.1533,0.1552 v 87.33868 c 0,1.76807 -0.6127,3.22392 -1.8375,4.36658 -1.1242,1.14454 -2.5038,1.71635 -4.1367,1.71635 -1.635,0 -3.0391,-0.5718 -4.2131,-1.71635 -1.1752,-1.14266 -1.7626,-2.5985 -1.7626,-4.36658 V 552.84109 c 0,-1.76713 0.6125,-3.27469 1.8392,-4.52268 1.2249,-1.24706 2.7058,-1.87151 4.4425,-1.87151 4.1885,0 7.354,1.87151 9.4988,5.61457 l 50.8645,87.80612 c 0,0.10428 0.1008,0.1561 0.3048,0.1561 0.1008,0 0.1563,-0.0517 0.1563,-0.1561 v -87.33873 c 0,-1.76711 0.5837,-3.22298 1.7569,-4.36656 1.174,-1.14359 2.578,-1.7154 4.2131,-1.7154 1.6352,0 3.0403,0.57182 4.2135,1.7154 1.1739,1.14358 1.7641,2.59944 1.7641,4.36656 v 101.37602 c 0,1.76715 -0.6105,3.2747 -1.8381,4.52268 z m 119.4408,1.87152 c 1.4318,0 2.6325,-0.52006 3.6025,-1.56022 0.97,-1.03922 1.4588,-2.23548 1.4588,-3.5869 0,-1.45492 -0.5155,-2.70291 -1.5334,-3.74305 -1.0246,-1.04014 -2.1979,-1.55929 -3.5279,-1.55929 h -51.935 c -0.1008,0 -0.1497,-0.0517 -0.1497,-0.1561 v -0.15519 l 0.1497,-0.15613 54.3911,-88.11928 c 1.7367,-2.59943 2.6052,-5.82239 2.6052,-9.66888 0,-1.35238 -0.4887,-2.54772 -1.4588,-3.58786 -0.97,-1.03921 -2.1707,-1.55929 -3.6025,-1.55929 h -61.2778 c -1.4312,0 -2.6318,0.52008 -3.6028,1.55929 -0.9698,1.04014 -1.4511,2.23548 -1.4511,3.58786 0,1.4549 0.5081,2.70287 1.5325,3.74303 1.018,1.03921 2.192,1.55928 3.5214,1.55928 h 51.9359 c 0.1008,0 0.1486,0.0517 0.1486,0.1561 v 0.15522 l -0.1486,0.15611 -54.3849,88.11927 c -1.7366,2.59849 -2.6049,5.8224 -2.6049,9.66889 0,1.35143 0.4813,2.5477 1.4511,3.58692 0.971,1.04015 2.1716,1.56021 3.6028,1.56021 z m 135.6833,-1.95004 c -0.9147,1.30063 -2.1434,1.95004 -3.6767,1.95004 -2.0414,0 -3.8519,-0.59858 -5.4315,-1.79392 -1.589,-1.19535 -2.6791,-2.72875 -3.2978,-4.60028 l -8.1199,-25.57864 c -0.3049,-0.83137 -0.9238,-1.24706 -1.8385,-1.24706 h -42.4343 c -0.8212,0 -1.3838,0.41569 -1.6895,1.24706 l -8.4265,25.88994 c -0.6105,1.87152 -1.6555,3.35415 -3.1407,4.44509 -1.4789,1.09188 -3.1887,1.63781 -5.1295,1.63781 -1.5334,0 -2.7612,-0.64941 -3.6765,-1.95004 -0.9228,-1.29971 -1.1271,-2.67702 -0.6107,-4.13286 l 34.9261,-101.21897 c 0.7122,-1.9759 1.913,-3.56106 3.6025,-4.75729 1.6831,-1.19535 3.5483,-1.79302 5.5906,-1.79302 2.0425,0 3.9076,0.59767 5.5905,1.79302 1.6896,1.19623 2.8831,2.78139 3.6029,4.75729 l 34.778,101.06378 c 0.5081,1.5593 0.3049,2.98834 -0.6185,4.28805 z m -25.5879,-41.25191 h -35.9949 c -0.305,0 -0.5627,-0.12932 -0.7667,-0.38981 -0.2032,-0.25957 -0.258,-0.54594 -0.1561,-0.85725 l 18.6919,-58.01794 c 0,-0.10342 0.1009,-0.15613 0.3049,-0.15613 0.1008,0 0.1562,0.0527 0.1562,0.15613 l 18.6883,58.01794 c 0,0.31131 -0.074,0.59768 -0.2309,0.85725 -0.1569,0.26049 -0.3786,0.38981 -0.6927,0.38981 z M 204.3474,496.218 c -17.0486,0 -30.8688,13.64286 -30.8688,30.47173 0,16.82979 13.8202,30.47267 30.8688,30.47267 17.0489,0 30.8701,-13.64287 30.8701,-30.47267 0,-16.82887 -13.8212,-30.47173 -30.8701,-30.47173 z m -35.6187,128.92038 c 0,-19.41813 15.9475,-35.15977 35.6187,-35.15977 19.6722,0 35.6189,15.74164 35.6189,35.15977 0,19.41909 -15.9468,35.1607 -35.6189,35.1607 -19.6712,0 -35.6187,-15.74161 -35.6187,-35.1607 z m 35.6187,-213.30494 c -14.4252,0 -26.12,11.54409 -26.12,25.78369 0,14.24053 11.6948,25.78464 26.12,25.78464 14.4262,0 26.1209,-11.54411 26.1209,-25.78464 0,-14.2396 -11.6946,-25.78369 -26.1209,-25.78369 z m 225.5854,25.78369 c 0,19.41909 -15.9466,35.16072 -35.6189,35.16072 -19.6713,0 -35.6179,-15.74164 -35.6179,-35.16073 0,-19.41813 15.9466,-35.15976 35.6179,-35.15976 19.6723,0 35.6189,15.74164 35.6189,35.15977 z m -303.9469,16.4086 c 10.4916,0 18.9969,-8.39597 18.9969,-18.75213 0,-10.35616 -8.5053,-18.75213 -18.9969,-18.75213 -10.4913,0 -18.9963,8.39597 -18.9963,18.75213 0,10.35616 8.505,18.75213 18.9963,18.75213 z m -52.24,-16.4086 c 0,6.47363 -5.3159,11.72055 -11.8731,11.72055 -6.5573,0 -11.8728,-5.24692 -11.8728,-11.72055 0,-6.4727 5.3156,-11.71961 11.8728,-11.71961 6.5572,0 11.8731,5.24691 11.8731,11.71961 z"
+   fill="#5ac7bc"
+   id="path1-2"
+   style="stroke-width:9.23746" />
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..d054093
--- /dev/null
+++ b/content/works/it-fundamentals.svg
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata><g
+   id="g27"
+   transform="matrix(0.38608031,0,0,0.38608031,375.833,367.48524)"><path
+     style="fill:#7b86fe;stroke-width:1.67747"
+     d="m 820.74488,856.87097 c 1.15327,-0.46535 3.04041,-0.46535 4.19368,0 1.15327,0.46533 0.20969,0.8461 -2.09685,0.8461 -2.30653,0 -3.25009,-0.38077 -2.09683,-0.8461 z m -213.89013,-157.79484 -0.40699,-111.09785 -33.96884,-0.4908 -33.96881,-0.49086 34.02146,-0.38263 c 25.95897,-0.29196 34.21135,0.1143 34.82276,1.7142 0.44071,1.15326 0.60018,51.54035 0.35436,111.9713 l -0.44693,109.87445 z m 227.30991,-112.41306 55.77596,-0.47693 v -70.40863 -70.40864 l -54.93723,-0.47589 -54.93723,-0.47589 55.35659,0.0338 55.35662,0.0338 v 71.29258 71.29259 l -56.19534,0.035 -56.19534,0.035 z M 328.40667,444.06682 c 23.75721,-0.2625 62.63262,-0.2625 86.38983,0 23.75722,0.26252 4.3195,0.47728 -43.19492,0.47728 -47.51439,0 -66.95213,-0.21476 -43.19491,-0.47728 z m 244.47145,0.0179 33.53164,-0.50746 0.43836,-67.4836 0.43836,-67.48357 85.5511,-0.0235 85.55111,-0.0235 -85.11271,0.45828 -85.11272,0.45825 -0.43838,67.50291 -0.4384,67.50282 -33.96997,0.0535 -33.96999,0.0535 z M 340.06796,383.22 c -39.88488,-10.44921 -67.30577,-42.49098 -70.19165,-82.02019 -3.37989,-46.29637 28.04368,-86.79517 75.11203,-96.80456 18.22396,-3.87545 48.64427,-2.34687 64.61423,3.24679 29.74459,10.41839 51.69784,33.12782 60.1582,62.23046 3.44195,11.83986 3.8692,33.72927 0.90349,46.28576 -7.54788,31.95684 -36.57858,59.82758 -70.69359,67.86901 -15.34488,3.61701 -44.51563,3.22389 -59.90271,-0.80727 z"
+     id="path2-9" /><path
+     style="fill:#4eb2fe;stroke-width:1.67747"
+     d="M 286.05049,723.78411 V 445.32365 h 85.55109 85.55111 v 278.46046 278.46039 h -85.55111 -85.55109 z m 474.02855,275.85038 c -41.15944,-5.60355 -76.92452,-21.11074 -101.95707,-44.20698 -23.0286,-21.24729 -36.75722,-47.6605 -45.41729,-87.38076 -3.2974,-15.12383 -3.52399,-22.68973 -4.44633,-148.45632 l -0.97187,-132.52033 -33.96881,-0.4541 -33.96881,-0.4541 v -70.38439 -70.38439 l 33.96881,-0.45408 33.96881,-0.45412 0.4384,-67.51826 0.43841,-67.51827 h 85.53205 85.53209 v 67.93763 67.93763 h 55.3566 55.35659 v 70.45386 70.45384 h -55.39889 -55.39886 l 0.46164,122.03614 0.46165,122.03613 4.19368,7.48371 c 4.5355,8.09365 12.0073,13.99574 21.60982,17.06984 3.56566,1.1415 22.49973,2.25028 45.90845,2.68838 l 39.83999,0.74567 v 71.97668 71.9766 l -57.45344,-0.1728 c -37.95765,-0.1143 -63.09726,-0.9413 -74.08562,-2.43724 z"
+     id="path1-22" /></g>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..c7e47f0
--- /dev/null
+++ b/content/works/kpn.svg
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+<g
+   id="kpn_logo_00000106118444337680772500000008831362196428316330_"
+   transform="matrix(7.1174375,0,0,7.1174375,208.883,450.88968)">
+	<g
+   id="g11">
+		<path
+   class="st0"
+   d="m 100.7,13.3 c -3.4,0 -6.2,0.6 -8.8,1.6 V 32 h 5.7 V 18.3 c 0.8,-0.4 1.9,-0.6 2.9,-0.6 3.1,0 3.7,1.9 3.7,5.4 V 32 h 5.7 v -9.7 c 0.1,-5.5 -1.7,-9 -9.2,-9 z"
+   id="path1-0" />
+		<rect
+   x="46"
+   y="6.9000001"
+   class="st0"
+   width="5.6999998"
+   height="25.1"
+   id="rect1-3" />
+		<polygon
+   class="st0"
+   points="58,13.9 51.7,22.1 58.3,31.9 65.1,31.9 58,21.9 64.5,13.9 "
+   id="polygon1" />
+		<path
+   class="st0"
+   d="m 77.1,13.2 c -3,0 -6.2,0.7 -8.6,1.6 V 39 h 5.7 v -6.9 c 7.2,1.3 13,-1.7 12.9,-9.4 0,-6.1 -3.2,-9.5 -10,-9.5 z m -0.3,14.9 c -0.9,0 -2,-0.2 -2.6,-0.4 v -9.6 c 3.4,-1.4 7,-0.4 7,4.6 0,3.5 -1.3,5.4 -4.4,5.4 z"
+   id="path2-6" />
+		<g
+   id="g10">
+			<path
+   class="st0"
+   d="m 14.5,30.9 c 3.7,-1 7.7,-1 11.5,0.1 l 0.9,-2.6 c -4.4,-1.3 -9.2,-1.3 -13.6,0 l 0.9,2.6 z"
+   id="path3-1" />
+			<polygon
+   class="st0"
+   points="20,16.3 22.1,14.1 20,11.9 17.9,14.1 "
+   id="polygon3" />
+			<path
+   class="st0"
+   d="m 14.4,20.2 c -0.2,1.4 0.6,3.5 2.1,5.9 1,-0.2 1.9,-0.2 2.9,-0.2 l -0.3,-0.5 c -1.6,-3.1 -1.9,-4 -1.9,-4.7 0,-1 0.8,-1.1 1.9,-1 v -2.4 c -2.5,-0.8 -4.5,0.6 -4.7,2.9 z"
+   id="path4-0" />
+			<path
+   class="st0"
+   d="m 12.7,20.1 c -1.7,-0.1 -3,1 -3,2.5 -0.1,1.1 0.6,2.4 2.7,4.2 0.9,-0.3 1.8,-0.5 2.7,-0.7 -1.6,-1.6 -2.9,-2.9 -2.7,-3.4 0,-0.1 0,-0.4 0.5,-0.5 l 0.4,-0.1 C 13.1,21.4 13,20.7 13.1,20 h -0.4 z"
+   id="path5-6" />
+			<path
+   class="st0"
+   d="m 20.6,25.9 c 0.9,0 1.9,0.1 2.9,0.2 1.5,-2.4 2.3,-4.5 2.1,-5.9 -0.3,-2.3 -2.3,-3.7 -4.7,-2.8 v 2.4 c 1.1,-0.1 1.9,0 1.9,1 0,0.7 -0.3,1.6 -1.9,4.7 z"
+   id="path6-3" />
+			<path
+   class="st0"
+   d="m 25.3,25.7 -0.5,0.5 c 0.9,0.2 1.9,0.4 2.7,0.7 2.1,-1.8 2.8,-3.1 2.7,-4.2 0,-1.7 -1.5,-2.7 -3.3,-2.5 0,0.7 0,1.4 -0.2,2.1 l 0.4,0.1 c 0.5,0.1 0.5,0.4 0.5,0.5 0,0.4 -0.3,0.9 -2.3,2.8 z"
+   id="path7-2" />
+			<path
+   class="st0"
+   d="m 6.4,20.6 c 0.5,-0.3 1.5,-1 2.7,-1.6 -1,-2.4 -1.6,-4.6 -1.6,-6.3 0,-3.6 0.9,-6.6 2.4,-8.1 4,-4 11.8,1.1 15.4,6.6 1.1,-0.2 2.4,-0.4 3.5,-0.4 C 25.4,4.4 18.1,0 13.5,0 c -6.2,0 -9,6.4 -9,12.7 0,3.1 1,5.5 1.9,7.9 z"
+   id="path8-0" />
+			<path
+   class="st0"
+   d="m 29.3,12.7 c -1.8,0 -2.9,0.3 -2.9,0.3 0.4,0.9 0.7,2 0.8,3.1 0.7,-0.1 1.4,-0.2 2.1,-0.2 4,0 6.4,2.3 6.5,5.1 0,1.5 -0.8,3.5 -1.6,5.4 -0.4,1 -1.1,2.9 -1.5,4.5 -0.7,2.7 -2.6,10.2 -6.9,7.3 -1,0.4 -2.3,1.1 -3.4,1.3 2,1.8 3.4,2.4 5.4,2.4 5.3,0 7.2,-7.5 7.9,-10.3 0.7,-3.1 3.3,-7.4 3.2,-10.7 0,-4.9 -4.5,-8.4 -9.6,-8.2 z"
+   id="path9" />
+			<path
+   class="st0"
+   d="M 24.3,36.9 C 23.5,36.1 22.7,35.3 22,34.5 16.5,36.6 9.5,34.1 5.5,30.2 4.1,28.8 3.2,27.1 3.2,25.9 c 0,-1.8 0.6,-3 1.8,-4 -0.4,-1 -0.8,-2 -1.2,-3 -2.5,1.6 -3.8,4 -3.8,7 0,2.1 1.1,4.5 3.2,6.6 4.2,4.2 13.9,8.1 21.1,4.4 z"
+   id="path10" />
+		</g>
+	</g>
+</g>
+</svg>
new file mode 100644
index 0000000..9139ec1
--- /dev/null
+++ b/content/works/liberty-mutual.svg
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+<g
+   id="g28"
+   transform="matrix(0.33286228,0,0,0.33451752,-3493.8512,121.84482)"><path
+     d="m 11970.247,1162.975 c -2.738,-3.6125 -9.5,-0.6375 -9.5,-0.6375 l -108.125,40.0875 a 392.95,392.95 0 0 0 -29.05,-57.6125 l 35.013,-95.5375 c 0,0 4.375,-9.4875 0.312,-11.85 -4.025,-2.3875 -10.6,3.9625 -10.6,3.9625 l -63.6,52.1625 c -24.8,-26.5625 -53.913,-47.9875 -87.362,-63.1625 a 290.05,290.05 0 0 0 -38.988,-14.025 l -19.737,-75.58747 c 0,0 -1.701,-7.575 -6.775,-7.575 -5.063,0 -6.438,7.1625 -6.438,7.1625 l -12.65,66.77497 a 339.925,339.925 0 0 0 -42.825,-2.75 c -47.437,0 -89.575,9 -126.462,25.55 a 267.825,267.825 0 0 0 -44.538,25.3125 c -2.312,1.625 -4.5,3.3875 -6.763,5.075 -13.125,-33.7875 -23.449,-61.36246 -25.387,-69.64997 7.288,-6.6125 22.6,-30.7125 26.338,-46.975 5.187,-22.75002 3.6,-33.51252 -1.875,-50.72502 -3.963,-12.5875 -11.925,-24.3625 -11.4,-32.3125 0.4,-5.9375 3.562,-10.1875 6.237,-12.925 -1.45,-8.35 -6.887,-11.9875 -13.35,-12.825 -5.95,-0.8 -10.588,0.95 -15.887,1.1875 -1.326,-2.45 -3.988,-1.9875 -1.988,-10.6 3.025,-13.05 28.05,-19.175 48.55,-27.1125 25.938,-10.0625 40.425,-28.75 41.3,-58.7375 0.625,-21.8125 -11.525,-37.95 -26.762,-45.225 -3.063,8.8 -15.7,20.6375 -24.488,25.4625 -8.65,4.775 -20.65,6.6 -29.325,4.575 1.9,-16.0375 -5.5,-29.7 -17.213,-35.2125 -3.75,6.8375 -17.837,16.2625 -39.012,15.6125 -21.175,-0.675 -22.537,-5.6875 -52.287,-5.5875 -42.351,0.075 -77.425,25.625 -81.738,63.125 -2.775,24.3625 6.588,44.8 13.65,55.3875 -5.275,3.9625 -17.65,15.875 -19.863,19.45 -3.062,-3.575 -11.462,-8.325 -21.587,-1.7125 2.187,5.325 2.6,11.8 0.875,18.0125 -1.75,6.1375 -17.2,36.1625 -18.962,60.3875 -3,41.01252 20.687,68.77502 40.562,76.71252 -4.388,6.625 -5.3,13.66247 -2.2,19.42497 2.037,3.8125 6.15,7.5 14.562,7.5 -4.849,5.2875 -6.687,13.275 -3.537,21.15 3.537,8.8125 13.65,21.625 22.488,21.625 -0.438,7.4875 3.087,25.1 4.862,32.175 -3.075,5.7375 -6.188,10.075 -5.725,20.65 0.438,11.025 7.5,19.925 16.3,21.6875 2.212,5.3125 3.875,11.125 6.938,14.65 3.087,3.5375 5.837,7.825 12.475,12.225 6.6,4.4125 14.1,7.9625 22.937,7.9625 8.813,0 16.575,0.425 20.55,-0.8875 0.187,2.525 1.013,25.8625 2.038,51.775 -22.175,61.725 -33.238,133.2875 -33.238,210.05 v 0.037 c 0.01,137.5875 39.25,260.1625 114.162,339.1625 0,0 4.313,5.3125 16.338,13.0875 0,0 23.45,-40.075 59.113,-85.65 a 313.1625,313.1625 0 0 1 30.774,-33.4875 762.9625,762.9625 0 0 1 51.125,-40.85 c 46.101,-31.4 99.451,-55.325 148.75,-65.5 -56.537,29.1375 -88.587,44.7625 -141.75,90.3375 -33.637,28.8625 -87.262,79.775 -123.912,149.55 7.625,6.05 17.9,12.2625 30.013,13.4875 7.75,-9.1 47.6,-82.175 108.787,-140.925 123.775,-115.9 269.575,-142.7 345.913,-141.2375 4.287,-31.425 6.5,-64.1875 6.5,-98.0125 0,-55.4125 -5.776,-108.0375 -17.301,-156.2625 l 91.138,-101.425 c 0,-0.037 6.3,-6.325 3.6,-9.9625 z"
+     fill="#344673"
+     id="path2-2"
+     style="stroke-width:12.5" /><path
+     d="m 11292.447,1117.1875 c -5.275,-3.0875 -19.837,-10.175 -31.3,-9.7 -11.888,0.475 -21.925,2.875 -31.3,8.8125 -3.963,-2.6625 -5.2,-7.95 -2.65,-14.125 2.525,-6.15 6.187,-7.0375 6.187,-7.0375 l -3.362,-57.7875 c 0,0 16.237,-11.55 20.625,-12.8625 4.4,-1.3125 6.4,-4.7625 6.4,-9.1625 7.188,4.8875 17.8,15.7125 23.487,23.825 5.313,7.5 8.401,15.85 8.838,25.125 0.438,9.25 0.525,20.2875 -1.338,31.75 3.625,3.1 7.051,5.725 7.5,10.5625 0.438,4.8875 -1.312,6.625 -3.087,10.6 z m 526.562,179.9125 c -0.637,-11.2625 -13.712,-41.675 -21.637,-48.3 l 137.175,-60.8375 z m -376.299,-227.275 116.1,105.325 c -11.213,6.3 -28.026,23.2625 -32.638,37.125 z m 67.937,208.625 c -3.962,6.1875 -5.388,9.9 -6.712,17.375 -1.338,7.525 -0.35,11.6875 0.562,17.8625 l -35.637,-24.575 c 0.437,-8.35 -1.75,-21.9625 -2.313,-29.075 -0.06,-0.775 -0.312,-2.025 -0.513,-3.0875 z"
+     fill="#ffffff"
+     id="path3-9"
+     style="stroke-width:12.5" /><path
+     d="m 11314.497,1288.7 c -2.2,-3.9625 -12.338,-218.275 -12.775,-225.7375 l 11.463,-8.3625 v -2.225 c -8.363,-0.45 -18.088,-3.525 -21.138,-8.4125 l -3.1,-65.66247 c -11.487,-0.8875 -23.3,-4.525 -27.7,-8.9125 -5.488,-5.5125 -9.775,-12.275 -3.588,-24.1875 5.713,4 22.451,8.8375 37.013,8.8375 3.075,0 9.563,6.9375 13.25,8.3875 4.212,1.675 11.275,5.575 14.612,7.0375 3,1.3125 4.863,8.3625 5.75,11.0125 0.875,2.65 107.038,278.26247 108.826,281.33747 1.774,3.0875 7.962,49.3625 8.362,52.9 0.475,3.525 16.338,40.5375 19.412,44.0875 -14.1,-0.425 -37.212,7.65 -56.174,26.2125 -18.525,18.0875 -34.913,57.85 -38.638,76.1875 -1.325,-9.7125 -53.35,-168.5375 -55.575,-172.5 z m 134.925,263.6625 c -4.612,42.3625 -14.925,79.1125 -30.425,105.3625 -9.963,16.9 -37.963,51.1625 -47.762,64.0875 10.612,-21.1375 18.799,-72.2125 18.112,-111.9125 -0.438,-25.775 -8.262,-82.6375 -1.438,-120.3375 7.338,-40.45 18.838,-63.1875 45.913,-88.1125 13.8,-12.7125 42.075,-28.95 82.425,-17.9875 l 32.65,61.4 c -17.475,-3.3375 -40.562,-0.3375 -55.962,11.5 -28.95,22.2375 -38.7,52.225 -43.513,96 z"
+     fill="#ffffff"
+     id="path4-3"
+     style="stroke-width:12.5" /><path
+     d="m 11452.61,1635.8625 c 7.937,-17.875 18.375,-68.8125 21.299,-85.8625 3.776,-21.8625 7.276,-53.7875 33.326,-75.2625 12.799,-10.5625 33.825,-11.9375 42.187,-9.5 l 36.938,75.2125 c 3.299,7.9625 14.149,10.775 21.412,10.3375 -34.6,11.2375 -121.837,52.65 -155.162,85.075 z m 314.174,-240.125 c -5.937,9.275 -3.812,18.175 -0.525,24.3875 3.75,7 23.288,43.1 23.288,43.1 6.163,16.375 10.975,24.6125 16.85,35.1625 10.588,0 22.05,-0.275 34.15,0 -12.913,-28.9125 -42.4,-84.8 -42.4,-84.8 l -2.125,-45.0875 c -8.587,5.1875 -23.3,17.9875 -29.238,27.2375 z m -157.412,-239.4125 c 14.55,-2.625 47.5,0.3875 58.063,5.6875 l -33.45,-189.38747 z m -281.1,-175.84997 c -0.888,-2.6375 -2.712,-9.7 -5.75,-11.0125 -3.312,-1.4875 -10.4,-5.4 -14.613,-7.075 -3.65,-1.4375 -10.162,-8.35 -13.237,-8.35 -14.55,0 -31.312,-4.8375 -37.025,-8.8375 -6.187,11.9125 -1.9,18.675 3.588,24.1875 4.412,4.3875 16.212,7.975 27.7,8.9125 l 3.099,65.66247 c 3.063,4.8875 12.776,7.9375 21.138,8.3625 v 2.2 l -11.462,8.4125 c 0.437,7.4625 10.574,221.775 12.799,225.7375 2.188,3.9625 54.226,162.7875 55.538,172.475 3.712,-18.3 20.112,-58.0875 38.638,-76.175 18.962,-18.525 42.074,-26.6125 56.175,-26.1875 -3.076,-3.55 -18.938,-40.5625 -19.413,-44.0875 -0.4,-3.5375 -6.587,-49.8125 -8.337,-52.9 -1.775,-3.075 -107.963,-278.67497 -108.838,-281.32497 z"
+     fill="#ffffff"
+     id="path5-1"
+     style="stroke-width:12.5" /><path
+     d="m 11260.46,927.92503 c 29.987,0.062 44.199,12.525 51.225,19.1375 0.875,-10.1375 -0.725,-19.075 -10.151,-26.71252 -7.837,-6.3625 -21.612,-11.9875 -42.762,-11.9875 -14.113,0 -28.3,4.1375 -37.125,11.6125 -8.087,6.875 -9.412,14.63752 -7.662,26.11252 2.637,-8.375 21.774,-18.2625 46.475,-18.1625 z m -53.713,-157.32502 c -0.662,11.4375 2.375,23.375 7.688,30.4375 3.012,4.0125 10.15,11.75 15.425,11.45 7.512,-0.475 14.562,-14.825 32.174,-14.125 11.463,0.45 18.963,16.6375 28.676,17.1875 7.5,0.475 11.462,-7.025 19.049,-7.8375 6.488,-0.6875 8.738,2.575 12.713,6.525 2.65,-6.15 6.463,-10.3375 16.3,-17.6125 11.9,-8.8375 52.475,-17.2125 69.688,-32.6375 8.612,-7.725 10.562,-22 7.837,-31.6125 -6.525,9.1625 -24.612,18.8375 -42.225,19.7125 -8.837,0.4375 -30.012,-3.4625 -37.512,-7.425 3.762,-6.45 5,-13.7875 1.9,-20.85 -5.738,4.425 -30.538,6.825 -40.263,6.825 -9.7,0 -28.612,-3.95 -43.288,-3.1375 -32.199,1.7 -47.099,24.575 -48.162,43.1 z"
+     fill="#ffffff"
+     id="path6"
+     style="stroke-width:12.5" /><path
+     d="m 11262.31,870.67501 c 69.687,1.3375 101.137,33.5125 102.037,59.97502 3.537,-7.96252 3.062,-15.43752 2.625,-24.26252 -0.338,-7.025 -10.987,-26.875 -11.463,-33.5 -0.437,-6.6125 1.326,-11.0125 2.65,-17.1875 -4.4,0.875 -19.824,7.05 -26.449,1.7625 -7.088,-5.675 -2.188,-19.825 -11.463,-23.3625 -9.275,-3.5625 -23.8,7.4875 -33.075,6.175 -9.25,-1.3375 -17.187,-14.0875 -26.862,-14.0875 -9.75,0 -14.588,11.875 -26.488,14.5375 -9.175,2.05 -20.3,-3.4875 -25.737,-3.075 -6,0.425 -9.625,5.1 -12.275,10.825 -2.638,5.7625 -4.776,8.1125 -11.813,9.875 -5.625,1.425 -13.675,-3.5 -17.65,-2.625 3.075,3.0875 4.625,15.625 1.838,22.925 -3.526,9.2625 -11.088,18.975 -11.988,30.525 -0.75,10.2 2.65,14.9 5.312,22.38752 -1.774,-37.51252 39.951,-62.05002 100.801,-60.88752 z m -43.926,133.59999 c -4.837,0.8875 -14.987,8.8375 -19.924,17.1125 1.437,5.3375 7.15,17.7625 12.775,21.1625 1.274,-5.7375 7.587,-15.3 10.712,-17.525 4.375,-3.1375 8.775,-5.2875 12.3,-7.025 3.525,-1.7875 4.838,-3.55 4.838,-7.5625 0,-3.925 -0.513,-5.8 -2.275,-9.7625 3.5,-0.4251 10.025,0.1125 12.275,-2.99996 2.187,-3.06251 3.25,-7.06251 3.25,-11.01251 0,-3.9875 -1.788,-4.875 -5.725,-5.3 a 165.05,165.05 0 0 0 -21.25,-0.275 l 11.549,-5.9125 c 2.625,-1.2875 3.526,-3.9375 3.975,-6.15 0.426,-2.2 0.326,-7.175 -0.887,-13.2125 -13.25,0.425 -36.613,12.325 -42.787,17.6125 l 4.875,11.9375 -8.838,-0.3625 c -1.312,6.0375 -0.437,15.34987 2.213,20.62497 7.937,-1.35 17.187,-1.775 22.924,-1.35 z m 570.363,276.2625 c -1.625,-8.5625 -23.113,-34.175 -59.75,-61.925 -28.55,-21.7125 -70.463,-43.1125 -104.95,-42.925 -58.2,0.3375 -82.237,40.3 -86.625,61.1625 -2.65,12.6125 -2.013,26.2625 0.638,33.7625 -9.25,7.9375 -12.776,14.325 -14.563,23.3625 -1.25,6.5125 0,15.8625 5.975,21.6125 -0.662,-8.6125 5.187,-18.575 9.925,-25.1375 5.313,-7.2875 14.112,-10.125 22.088,-14.9375 l 1.312,15.9 c -7.538,4.3375 -16.837,13.5875 -17.462,18.425 l 0.625,26.275 20.012,-11.925 3.863,7.9625 -7.275,46.2875 11.237,-2 20.487,8.475 -19.837,16.65 v 6.65 c 0,0 3.013,-4.1 10,-3.7875 7,0.3125 25.05,8.4 25.05,8.4 l -0.65,4 h -35.05 c -1.337,4.6125 2.775,8.175 5.438,10.15 4.6,-1.3 9.387,-3.6875 12.024,-3.6875 2.613,0 8.738,1.5625 14.025,2.225 l -6.337,8.5 c 0,0 -3.275,2.5 -9.275,1.3 -3.3,-0.65 -6.587,3.9625 -6.587,7.75 0,4 2.562,13.925 2.562,13.925 3.25,14.9 18.463,11.8625 20.4,11.725 9.675,-0.8375 41.163,-12.225 41.163,-12.225 l -30.263,42.45 13.225,45.3875 c 19.975,-8.2125 79.638,-29.425 144.425,-40.0375 -7.075,-11.7375 -8.225,-16.425 -16.912,-33.925 l -33.063,-76.05 4.625,-11.2375 c 7.275,2.65 18.5,-2.6625 25.775,-8.6 7.288,-5.9625 15.875,-16.55 19.175,-23.175 -4.625,-2.625 -8.563,-2 -12.55,0.6875 -3.962,2.6625 -7.05,7.75 -12.55,5.275 -5.987,-2.6125 -3.063,-9.1375 -2.4,-15.1125 0.663,-5.9375 -6.875,-6.025 -12.15,-1.4375 -5.3,4.625 -16.562,2.6625 -23.837,-4.5875 -7.275,-7.3 -42.288,-36.4125 -54.875,-43.625 -18.088,-10.4 -42.326,-13.0625 -60.188,-9.8375 -10.425,1.8375 -17.863,6.475 -21.837,4.4875 l -13.088,-20.2375 2.088,-1.3 c 4.625,1.9875 8.987,5.675 14.962,3.7 5.938,-1.9875 25.075,-6.3625 42.325,-6.6 26.488,-0.45 58.65,9.225 72.775,15.2375 0.65,17.175 35.262,39 50.912,40.9625 13.213,1.6625 21.213,-1.9625 29.113,-6.6125 l -33.738,-29.6375 17.863,-22.6125 c 0,0 28.45,27.1 32.425,32.45 1.263,-3.15 -0.01,-8.3 -0.7,-11.9625 z m -203.012,34.4 c 0,0 14.524,-8.35 28.2,-11.275 20.175,-4.3125 42.537,7.8125 58.4,20.2625 l -3.025,4.7875 -22.738,5.375 c -4.425,-3.925 -12.8,-5.6875 -21.85,-5.275 -8.05,0.4 -14.537,3.3375 -14.537,3.3375 l 4.474,7.25 -10.449,2.65 c -4.625,-5.9375 -11.9,-13.2375 -18.488,-15.2125 v -11.9 z m -34.438,-52.2375 c -5.95,-19.9625 9.95,-39.7 17.188,-46.95 l 11.237,25.775 c -8.55,4.6375 -21.8,14.725 -28.425,21.175 z m 104.513,-22.5 c -10.588,-7.2875 -45.625,-5.975 -60.188,-2.65 l -10.588,-30.4625 c 7.963,-5.9375 23.163,-9.9 37.038,-9.9 13.9,0 29.1,3.35 39.663,8.6125 z m 68.8,31.2 c -14.563,-9.3625 -43.025,-23.25 -51.576,-25.925 l 12.526,-32.3875 c 10.612,5.3125 49.625,29.075 55.574,35.0625 z m -4.513,-86.1125 c 13.088,4.65 40.763,27.9125 47.388,33.2125 l 70.087,-149.425 z"
+     fill="#ffffff"
+     id="path7"
+     style="stroke-width:12.5" /><g
+     id="g9"
+     transform="matrix(12.5,0,0,12.5,11023.841,2.6753662e-6)"><g
+       fill="#6a6f72"
+       id="g8"><path
+         d="m 86.293,101.776 c 0,1.839 0.769,2.414 3.528,2.414 2.759,0 4.023,-0.842 5.827,-4.563 h 0.65 l -0.65,5.83 H 78.511 v -0.652 c 2.569,-0.651 2.836,-1.229 2.836,-3.644 v -14.34 c 0,-1.994 -0.497,-2.567 -2.836,-3.145 v -0.652 h 10.62 v 0.652 c -2.224,0.577 -2.837,1.036 -2.837,2.992 v 15.108 z m 17.215,0.573 c 0,1.457 0.729,2.264 2.339,2.456 v 0.652 h -9.088 v -0.652 c 1.954,-0.385 2.417,-0.922 2.417,-2.761 v -7.708 c 0,-1.764 -0.5,-2.262 -2.609,-2.685 v -0.652 l 6.29,-0.535 h 0.652 v 11.885 z m -2.147,-20.895 a 2.486,2.486 0 0 1 2.491,2.491 c 0,1.382 -1.111,2.533 -2.491,2.533 -1.382,0 -2.531,-1.151 -2.531,-2.533 0,-1.379 1.149,-2.491 2.531,-2.491 z m 11.579,12.652 c 1.457,-1.343 2.222,-1.726 3.373,-1.726 2.566,0 4.293,2.454 4.293,5.982 0,4.715 -2.146,6.632 -5.364,6.632 -1.729,0 -2.302,-0.768 -2.302,-2.414 z m 0,-12.652 h -0.654 l -5.864,0.422 v 0.652 c 1.342,0.23 2.186,0.919 2.186,2.146 v 20.782 c 2.185,0.42 4.333,0.572 7.055,0.572 7.056,0 9.736,-3.681 9.736,-8.129 0,-4.218 -2.988,-7.475 -6.898,-7.475 -2.071,0 -3.838,0.843 -5.56,2.647 V 81.454 Z m 18.823,14.608 c 0.115,-2.761 1.302,-4.6 3.068,-4.6 1.762,0 3.066,1.917 3.219,4.6 z m 10.965,0.881 c -0.535,-3.985 -3.486,-6.518 -7.591,-6.518 -4.561,0 -8.051,3.411 -8.051,7.898 0,4.409 3.373,7.705 7.897,7.705 3.488,0 6.439,-1.916 7.744,-5.022 h -0.65 c -1.382,2.109 -3.068,3.146 -5.177,3.146 -2.684,0 -5.367,-2.457 -5.138,-7.21 h 10.966 z m 13.879,-0.92 c -1.267,-1.226 -2.264,-1.878 -3.261,-1.878 -1.302,0 -2.109,0.536 -3.219,2.069 v 5.905 c 0,1.727 0.343,2.261 2.451,2.686 v 0.652 h -9.2 v -0.652 c 1.92,-0.462 2.414,-1.037 2.414,-2.686 v -7.63 c 0,-1.84 -0.802,-2.684 -2.641,-2.837 V 91 l 6.321,-0.573 h 0.654 v 4.602 h 0.075 c 1.419,-3.146 2.991,-4.602 4.795,-4.602 0.955,0 1.877,0.423 2.566,1.226 z m 24.417,-5.024 v 0.652 c 1.842,0.382 2.262,1.534 0.96,4.603 l -1.997,4.638 -3.065,-6.324 c -0.885,-1.842 -0.885,-2.686 0.765,-2.916 V 91 h -12.809 v -5.596 h -0.729 c -2.034,2.607 -4.41,4.909 -6.212,6.02 v 0.729 h 2.606 v 9.279 c 0,3.296 2.187,4.598 4.907,4.598 2.148,0 3.568,-0.767 4.64,-2.571 l -0.459,-0.42 c -0.69,0.808 -1.345,1.152 -2.106,1.152 -2.034,0 -2.646,-1.379 -2.646,-3.721 v -8.317 h 3.876 c 2.108,0 2.723,0.767 3.643,2.722 l 5.29,11.155 c -1.765,4.755 -3.296,6.672 -5.979,6.672 -0.577,0 -1.037,-0.038 -1.957,-0.345 l -0.882,4.37 c 0.54,0.077 0.845,0.077 1.227,0.077 2.991,0 4.641,-1.267 6.175,-4.793 l 7.283,-16.64 c 1.189,-2.684 1.649,-3.218 3.488,-3.719 V 91 h -6.019 z m -74.193,40.467 c 0.268,1.954 1.229,3.065 3.413,3.485 v 0.652 H 99.162 v -0.652 c 2.454,-0.611 2.877,-2.026 2.454,-4.939 l -1.839,-12.811 h -0.078 l -7.283,18.402 h -0.807 l -7.208,-18.402 h -0.075 l -1.954,13.19 c -0.385,2.608 0.113,4.37 2.644,4.56 v 0.652 H 76.89 v -0.652 c 2.414,-0.109 3.448,-1.494 3.984,-4.939 l 2.225,-14.649 c -0.882,-0.92 -2.109,-1.494 -3.258,-1.534 v -0.652 h 8.088 l 5.866,14.8 5.942,-14.8 h 7.594 v 0.652 c -2.302,0.425 -2.839,1.571 -2.533,3.643 z m 5.173,-7.169 c 0,-1.611 -0.537,-2.186 -2.264,-2.493 v -0.652 l 5.944,-0.577 h 0.651 v 10.659 c 0,1.727 1.112,2.531 2.687,2.531 1.454,0 2.336,-0.612 3.603,-2.608 v -7.206 c 0,-1.189 -0.77,-1.877 -2.264,-2.146 v -0.652 l 5.942,-0.577 h 0.652 v 11.504 c 0,1.916 0.385,2.376 2.304,2.873 v 0.652 l -6.635,0.575 v -3.523 h -0.077 c -1.609,2.451 -3.413,3.523 -5.752,3.523 -2.988,0 -4.792,-1.647 -4.792,-4.408 v -7.475 z m 20.589,-1.996 h -2.608 v -0.728 c 1.801,-1.111 4.18,-3.413 6.209,-6.019 h 0.732 v 5.597 h 4.752 v 1.149 h -4.752 v 8.32 c 0,2.339 0.611,3.719 2.644,3.719 0.765,0 1.419,-0.346 2.108,-1.15 l 0.46,0.423 c -1.072,1.802 -2.491,2.566 -4.641,2.566 -2.721,0 -4.904,-1.3 -4.904,-4.601 z m 11.884,1.996 c 0,-1.611 -0.537,-2.186 -2.264,-2.493 v -0.652 l 5.944,-0.577 h 0.654 v 10.659 c 0,1.727 1.109,2.531 2.679,2.531 1.459,0 2.341,-0.612 3.605,-2.608 v -7.206 c 0,-1.189 -0.768,-1.877 -2.262,-2.146 v -0.652 l 5.942,-0.577 h 0.652 v 11.504 c 0,1.916 0.385,2.376 2.301,2.873 v 0.652 l -6.634,0.575 v -3.523 h -0.075 c -1.611,2.451 -3.413,3.523 -5.754,3.523 -2.988,0 -4.79,-1.647 -4.79,-4.408 v -7.475 z m 27.145,8.818 c -1,0.997 -1.842,1.494 -2.724,1.494 -1.189,0 -1.994,-1.037 -1.994,-2.606 0,-1.954 1.109,-2.838 4.718,-4.372 z m 4.367,-7.134 c 0,-3.988 -3.258,-5.407 -6.364,-5.407 -3.373,0 -5.712,1.804 -6.479,4.91 h 0.577 c 0.917,-1.612 2.374,-2.414 4.33,-2.414 2.608,0 3.605,1.227 3.605,3.796 -3.528,1.302 -9.277,1.608 -9.277,5.52 0,2.108 1.954,3.793 4.333,3.793 1.761,0 3.103,-0.42 4.56,-1.725 l 0.348,-0.305 c 0.725,1.454 1.724,2.029 3.485,2.029 2.111,0 3.376,-0.995 3.528,-2.796 h -0.612 c -0.155,0.882 -0.537,1.339 -1.151,1.339 -0.65,0 -0.883,-0.572 -0.883,-1.914 z m 5.638,-10.426 c 0,-2.032 -0.655,-2.762 -2.724,-2.876 v -0.65 l 6.403,-0.425 h 0.652 v 20.475 c 0,1.916 0.423,2.376 2.566,2.873 v 0.652 h -9.622 v -0.652 c 2.111,-0.342 2.724,-1.031 2.724,-2.873 v -16.524 z m 7.431,17.298 h 1.127 v 2.931 h 0.45 v -2.931 h 1.126 v -0.399 h -2.703 z m 6.212,2.93 v -1.966 c 0,-0.098 0.007,-0.52 0.007,-0.832 h -0.007 l -0.938,2.798 h -0.447 l -0.935,-2.793 h -0.01 c 0,0.308 0.01,0.729 0.01,0.827 v 1.966 h -0.437 v -3.33 h 0.645 l 0.952,2.815 h 0.007 l 0.947,-2.815 h 0.64 v 3.33 z"
+         id="path8"
+         style="fill:#ffffff;fill-opacity:1" /></g></g></g>
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..48ebfdf
--- /dev/null
+++ b/content/works/logos.svg
@@ -0,0 +1,560 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
+   sodipodi:docname="logos.svg"
+   xml:space="preserve"
+   inkscape:export-batch-path="."
+   inkscape:export-batch-name=""
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style><clipPath
+     id="clip0_226_73"><rect
+       width="102.824"
+       height="58"
+       fill="#ffffff"
+       transform="translate(0.304688)"
+       id="rect1"
+       x="0"
+       y="0" /></clipPath><linearGradient
+     id="linearGradient6"
+     inkscape:collect="always"><stop
+       style="stop-color:#fb38c2;stop-opacity:1;"
+       offset="0"
+       id="stop6" /><stop
+       style="stop-color:#9255fd;stop-opacity:0.98823529;"
+       offset="1"
+       id="stop7" /></linearGradient><linearGradient
+     inkscape:collect="always"
+     xlink:href="#linearGradient6"
+     id="linearGradient7"
+     x1="68.409904"
+     y1="332.95786"
+     x2="542.59009"
+     y2="332.95786"
+     gradientUnits="userSpaceOnUse"
+     gradientTransform="matrix(2.3529412,0,0,2.3529412,4721.1765,-183.43019)" /></defs><sodipodi:namedview
+   id="base"
+   pagecolor="#242424"
+   bordercolor="#666666"
+   borderopacity="1.0"
+   inkscape:pageopacity="0.0"
+   inkscape:pageshadow="2"
+   inkscape:zoom="0.25277435"
+   inkscape:cx="2743.5537"
+   inkscape:cy="391.65366"
+   inkscape:document-units="px"
+   inkscape:current-layer="svg8"
+   inkscape:document-rotation="0"
+   showgrid="true"
+   units="px"
+   scale-x="1"
+   inkscape:showpageshadow="0"
+   inkscape:pagecheckerboard="1"
+   inkscape:deskcolor="#d1d1d1"
+   inkscape:window-width="1920"
+   inkscape:window-height="1011"
+   inkscape:window-x="0"
+   inkscape:window-y="0"
+   inkscape:window-maximized="1"
+   showguides="false"><sodipodi:guide
+     position="300,1200"
+     orientation="1200,0"
+     id="guide3"
+     inkscape:locked="false" /><sodipodi:guide
+     position="300,0"
+     orientation="0,600"
+     id="guide4"
+     inkscape:locked="false" /><sodipodi:guide
+     position="900,0"
+     orientation="-1200,0"
+     id="guide5"
+     inkscape:locked="false" /><sodipodi:guide
+     position="900,1200"
+     orientation="0,-600"
+     id="guide6"
+     inkscape:locked="false" /><sodipodi:guide
+     position="0,900"
+     orientation="600,0"
+     id="guide7"
+     inkscape:locked="false" /><sodipodi:guide
+     position="0,400"
+     orientation="0,1"
+     id="guide8"
+     inkscape:locked="false"
+     inkscape:label=""
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="1200,300"
+     orientation="-600,0"
+     id="guide9"
+     inkscape:locked="false" /><sodipodi:guide
+     position="1200,800"
+     orientation="0,1"
+     id="guide10"
+     inkscape:locked="false"
+     inkscape:label=""
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="200,1000"
+     orientation="800,0"
+     id="guide11"
+     inkscape:locked="false" /><sodipodi:guide
+     position="200,200"
+     orientation="0,800"
+     id="guide12"
+     inkscape:locked="false" /><sodipodi:guide
+     position="1000,200"
+     orientation="-800,0"
+     id="guide13"
+     inkscape:locked="false" /><sodipodi:guide
+     position="1000,1000"
+     orientation="0,-800"
+     id="guide14"
+     inkscape:locked="false" /><inkscape:grid
+     id="grid15"
+     units="px"
+     originx="0"
+     originy="0"
+     spacingx="10"
+     spacingy="10"
+     empcolor="#0099e5"
+     empopacity="0.30196078"
+     color="#0099e5"
+     opacity="0.14902"
+     empspacing="5"
+     enabled="true"
+     visible="true" /><inkscape:page
+     x="0"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page17"
+     margin="0"
+     bleed="0"
+     inkscape:label="saleslift-studio" /><inkscape:page
+     x="1212"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page19"
+     margin="0"
+     bleed="0"
+     inkscape:label="basebuilder" /><inkscape:page
+     x="2420"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page18"
+     margin="0"
+     bleed="0"
+     inkscape:label="district-court-of-warsaw" /><inkscape:page
+     x="3630"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page20"
+     margin="0"
+     bleed="0"
+     inkscape:label="elanza" /><inkscape:page
+     x="4840"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page21"
+     margin="0"
+     bleed="0"
+     inkscape:label="brightboost" /><inkscape:page
+     x="6050"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page23"
+     margin="0"
+     bleed="0"
+     inkscape:label="it-fundamentals" /><inkscape:page
+     x="7260"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page24"
+     margin="0"
+     bleed="0"
+     inkscape:label="liberty-mutual" /><inkscape:page
+     x="8480"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page25"
+     margin="0"
+     bleed="0"
+     inkscape:label="niteo" /><inkscape:page
+     x="9680"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page26"
+     margin="0"
+     bleed="0"
+     inkscape:label="citi-group" /><inkscape:page
+     x="10890"
+     y="0"
+     width="1200"
+     height="1200"
+     id="page27"
+     margin="0"
+     bleed="0"
+     inkscape:label="kpn" /><sodipodi:guide
+     position="1200,-910"
+     orientation="-1,0"
+     id="guide28"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="2420,1205.8125"
+     orientation="-1,0"
+     id="guide30"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="3630,1205.8125"
+     orientation="-1,0"
+     id="guide31"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="4840,1205.8125"
+     orientation="-1,0"
+     id="guide32"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="6050,1205.8125"
+     orientation="-1,0"
+     id="guide33"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="1212,-910"
+     orientation="-1,0"
+     id="guide34"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="7260,1205.8125"
+     orientation="-1,0"
+     id="guide35"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="8470,1205.8125"
+     orientation="-1,0"
+     id="guide36"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="9680,1205.8125"
+     orientation="-1,0"
+     id="guide37"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /><sodipodi:guide
+     position="10890,1205.8125"
+     orientation="-1,0"
+     id="guide38"
+     inkscape:label=""
+     inkscape:locked="false"
+     inkscape:color="rgb(0,134,229)" /></sodipodi:namedview><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" /></cc:Work></rdf:RDF></metadata><g
+   id="g38"
+   inkscape:label="saleslift-studio"
+   transform="matrix(0.8314447,0,0,0.8314447,99.999982,101.31297)"
+   style="fill:#b3b3b3;fill-opacity:1"><g
+     id="Sigil"
+     transform="matrix(1.4906223,0,0,1.4906223,-404.7632,-57.19273)"
+     fill="#ffffff"
+     style="fill:#b3b3b3;fill-opacity:1"><path
+       id="Path"
+       d="m 400.06209,470.38178 18.33264,-18.33262 -73.3887,-73.39517 -73.46627,73.38869 18.40374,18.33264 55.06253,-54.99143 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:6.46425" /><rect
+       id="Rectangle"
+       width="35.792583"
+       height="35.792583"
+       transform="rotate(-45)"
+       x="-110.72787"
+       y="562.79285"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:6.46425" /></g><g
+     id="Text"
+     transform="matrix(5.6420463,0,0,5.6420463,-1030.3697,627.79985)"
+     fill="#ffffff"
+     style="fill:#b3b3b3;fill-opacity:1"><path
+       id="Letter-2"
+       d="m 239.16873,-21.460982 a 4.0516838,4.114 0 0 1 1.81016,1.188 3.7641068,3.822 0 0 1 0.90508,2.276 h -2.81471 a 1.6200826,1.645 0 0 0 -1.82099,-1.446 2.0681905,2.1 0 0 0 -1.17,0.3 0.96121618,0.976 0 0 0 -0.44122,0.841 0.78788211,0.8 0 0 0 0.32008,0.684 2.7191781,2.761 0 0 0 0.97106,0.392 l 1.57577,0.37 a 5.6678269,5.755 0 0 1 2.53008,1.122 2.6275868,2.668 0 0 1 0.86175,2.137 3.3061503,3.357 0 0 1 -0.57417,1.973 3.6646367,3.721 0 0 1 -1.63387,1.289 6.2784356,6.375 0 0 1 -2.46213,0.4600002 6.6428311,6.745 0 0 1 -2.42865,-0.4370002 4.2762302,4.342 0 0 1 -1.81213,-1.331 4.1432751,4.207 0 0 1 -0.84697,-2.264 h 2.80388 a 1.7550074,1.782 0 0 0 0.75045,1.188 2.8629666,2.907 0 0 0 1.61122,0.422 2.1509182,2.184 0 0 0 1.18183,-0.269 0.81841254,0.831 0 0 0 0.40871,-0.731 q 0,-0.74 -1.19167,-0.975 l -1.85546,-0.431 a 4.8868388,4.962 0 0 1 -2.46805,-1.188 2.9171335,2.962 0 0 1 -0.7997,-2.174 3.3790294,3.431 0 0 1 0.56334,-1.972 3.6439548,3.7 0 0 1 1.57576,-1.3 5.6924483,5.78 0 0 1 2.33115,-0.46 6.9126807,7.019 0 0 1 2.1194,0.336 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397"
+       inkscape:label="Path-1" /><path
+       id="Shape"
+       d="m 254.77668,-10.118982 h -2.98017 l 4.77654,-11.499 h 2.67092 l 4.76866,11.5 h -2.95456 l -0.76228,-1.96 h -4.76865 z m 1.67425,-4.382 h 2.91418 l -1.4566,-3.8 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397"
+       inkscape:label="Path-2" /><path
+       id="Letter-3"
+       d="m 274.64509,-10.117982 v -11.432 h 2.79305 v 8.921 h 5.56343 v 2.511 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-4"
+       d="m 301.53256,-16.988982 v 2.42 h -4.98434 v 1.985 h 5.71214 v 2.477 h -8.50912 v -11.432 h 8.50912 v 2.477 h -5.71214 v 2.085 h 4.98926 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-5"
+       d="m 319.7346,-21.460982 a 4.0516838,4.114 0 0 1 1.81016,1.188 3.7641068,3.822 0 0 1 0.90508,2.276 h -2.81471 a 1.6200826,1.645 0 0 0 -1.82099,-1.446 2.0681905,2.1 0 0 0 -1.17,0.3 0.96121618,0.976 0 0 0 -0.44122,0.841 0.78788211,0.8 0 0 0 0.32008,0.684 2.7191781,2.761 0 0 0 0.97106,0.392 l 1.57577,0.37 a 5.6678269,5.755 0 0 1 2.52811,1.121 2.6275868,2.668 0 0 1 0.86372,2.138 3.3061503,3.357 0 0 1 -0.57417,1.973 3.6646367,3.721 0 0 1 -1.62993,1.292 6.2784356,6.375 0 0 1 -2.46213,0.4600002 6.6428311,6.745 0 0 1 -2.42865,-0.4370002 4.2762302,4.342 0 0 1 -1.81016,-1.334 4.1432751,4.207 0 0 1 -0.85288,-2.264 h 2.80388 a 1.7550074,1.782 0 0 0 0.75045,1.188 2.8629666,2.907 0 0 0 1.61122,0.426 2.1509182,2.184 0 0 0 1.18183,-0.269 0.81841254,0.831 0 0 0 0.40871,-0.74 q 0,-0.74 -1.19167,-0.975 l -1.85153,-0.426 a 4.8868388,4.962 0 0 1 -2.47296,-1.188 2.9171335,2.962 0 0 1 -0.79478,-2.174 3.3790294,3.431 0 0 1 0.5594,-1.972 3.6439548,3.7 0 0 1 1.57576,-1.3 5.6924483,5.78 0 0 1 2.33115,-0.46 6.9648779,7.072 0 0 1 2.1194,0.336 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-6"
+       d="m 333.57671,-10.117982 v -11.432 h 2.79304 v 8.921 h 5.56343 v 2.511 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-7"
+       d="m 352.68383,-10.117982 v -11.432 h 2.79305 v 11.432 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-8"
+       d="m 374.51703,-16.618982 v 2.477 h -4.83464 v 4.035 h -2.79304 v -11.432 h 8.38897 v 2.511 h -5.59593 v 2.42 h 4.83464 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-9"
+       d="m 391.73521,-10.117982 h -2.80388 v -8.888 h -3.58683 v -2.544 h 9.96769 v 2.544 h -3.576 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-10"
+       d="m 215.19,0.852 a 3.381,3.381 0 0 1 1.423,2.488 h -1.177 a 2.649,2.649 0 0 0 -1,-1.692 3.553,3.553 0 0 0 -2.2,-0.605 3.348,3.348 0 0 0 -2.1,0.594 1.894,1.894 0 0 0 -0.785,1.58 c 0,1.02 0.785,1.67 2.331,1.95 l 1.726,0.336 c 2.118,0.4 3.172,1.39 3.172,2.97 a 3.226,3.226 0 0 1 -0.527,1.816 3.442,3.442 0 0 1 -1.491,1.222 5.352,5.352 0 0 1 -2.23,0.426 5.01,5.01 0 0 1 -3.306,-1.031 4.089,4.089 0 0 1 -1.457,-2.869 h 1.177 a 3.214,3.214 0 0 0 1.143,2.085 3.871,3.871 0 0 0 2.488,0.74 3.479,3.479 0 0 0 2.174,-0.616 1.939,1.939 0 0 0 0.818,-1.636 1.638,1.638 0 0 0 -0.538,-1.244 3.176,3.176 0 0 0 -1.614,-0.706 l -1.984,-0.381 a 4.5,4.5 0 0 1 -2.365,-1.054 2.553,2.553 0 0 1 -0.8,-1.939 2.97,2.97 0 0 1 0.5,-1.715 3.335,3.335 0 0 1 1.444,-1.156 5.068,5.068 0 0 1 2.118,-0.415 5.188,5.188 0 0 1 3.06,0.852 z"
+       transform="translate(24.577)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-11"
+       d="M 230.487,11.652 H 229.3 V 1.318 h -4.26 V 0.22 h 9.706 v 1.1 H 230.5 v 10.332 z"
+       transform="translate(26.685,0.027)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-12"
+       d="m 252.863,9.455 a 4.366,4.366 0 0 1 -1.715,1.8 5.035,5.035 0 0 1 -2.555,0.65 4.843,4.843 0 0 1 -2.533,-0.65 4.366,4.366 0 0 1 -1.715,-1.8 A 5.658,5.658 0 0 1 243.74,6.8 V 0.22 h 1.2 V 6.8 a 4.526,4.526 0 0 0 0.46,2.051 3.47,3.47 0 0 0 1.3,1.423 3.527,3.527 0 0 0 1.905,0.527 3.566,3.566 0 0 0 1.917,-0.527 3.47,3.47 0 0 0 1.3,-1.423 4.385,4.385 0 0 0 0.46,-2.051 V 0.22 h 1.188 V 6.8 a 5.658,5.658 0 0 1 -0.607,2.655 z"
+       transform="translate(28.944,0.027)"
+       fill="blabla #ffffff"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-13"
+       d="m 270.753,0.947 a 5.354,5.354 0 0 1 2.141,2.006 5.582,5.582 0 0 1 0.762,2.9 5.954,5.954 0 0 1 -0.762,3 5.342,5.342 0 0 1 -2.141,2.062 6.464,6.464 0 0 1 -3.116,0.74 H 263.67 V 0.23 h 3.967 a 6.453,6.453 0 0 1 3.116,0.717 z m -0.65,9.011 a 4.213,4.213 0 0 0 1.7,-1.67 4.786,4.786 0 0 0 0.616,-2.432 A 4.432,4.432 0 0 0 271.803,3.514 4.224,4.224 0 0 0 270.1,1.9 5.1,5.1 0 0 0 267.634,1.317 h -2.779 v 9.246 h 2.779 A 4.993,4.993 0 0 0 270.1,9.958 Z"
+       transform="translate(31.351,0.028)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-14"
+       d="M 283.46,11.652 V 0.22 h 1.188 v 11.432 z"
+       transform="translate(33.741,0.027)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-15"
+       d="m 304.413,0.806 a 5.925,5.925 0 0 1 2.959,5.144 5.85,5.85 0 0 1 -0.8,2.981 5.807,5.807 0 0 1 -2.163,2.163 5.77,5.77 0 0 1 -2.981,0.8 5.849,5.849 0 0 1 -2.981,-0.8 5.92,5.92 0 0 1 -2.174,-2.163 5.85,5.85 0 0 1 -0.8,-2.981 5.85,5.85 0 0 1 0.8,-2.981 5.92,5.92 0 0 1 2.177,-2.163 5.982,5.982 0 0 1 5.962,0 z m -0.594,9.347 a 4.844,4.844 0 0 0 1.726,-1.771 4.758,4.758 0 0 0 0.628,-2.421 4.872,4.872 0 0 0 -0.628,-2.421 4.757,4.757 0 0 0 -1.726,-1.771 4.561,4.561 0 0 0 -2.4,-0.65 4.666,4.666 0 0 0 -2.4,0.65 4.814,4.814 0 0 0 -1.715,1.771 4.91,4.91 0 0 0 1.715,6.613 4.75,4.75 0 0 0 4.8,0 z"
+       transform="translate(35.193,0.001)"
+       style="fill:#b3b3b3;fill-opacity:1" /></g></g><path
+   style="fill:#ffffff;stroke-width:1.10001;fill-opacity:1.0"
+   d="m 2876.2907,900.32189 c -1.105,-0.024 -3.5276,-1.23804 -5.3835,-2.69845 -1.856,-1.4604 -5.9818,-4.96963 -9.1683,-7.79816 -3.1866,-2.82863 -6.4382,-6.69874 -7.2259,-8.60026 -0.7877,-1.90169 -1.2399,-4.44463 -1.0049,-5.65112 l 0.4272,-2.19369 2.6371,5.5981 2.637,5.59826 6.7871,5.5286 6.7871,5.52868 2.3552,-0.74752 c 1.2954,-0.41115 4.7133,-1.79059 7.5954,-3.06547 2.8822,-1.27492 5.5091,-2.7531 5.8377,-3.28472 0.3286,-0.53166 -1.5379,-3.80874 -4.148,-7.28225 l -4.7455,-6.31552 v -4.60614 -4.60614 l -1.2748,-0.78785 -1.2749,-0.78794 -2.2122,2.00189 c -1.2167,1.10113 -3.3844,4.72705 -4.8172,8.05759 l -2.605,6.05551 -1.2253,-1.22521 -1.2251,-1.22514 0.7889,-3.41673 c 0.4337,-1.87917 2.2423,-5.37578 4.019,-7.77035 1.7767,-2.3945 4.8083,-6.34614 6.7369,-8.78166 l 3.5065,-4.42801 0.5399,-6.50972 c 0.2968,-3.58051 0.9465,-6.50983 1.4438,-6.50983 0.4972,0 1.5554,0.78509 2.3518,1.74464 0.7964,0.95957 3.8308,3.14116 6.7433,4.84791 2.9122,1.7068 5.2951,3.82445 5.2951,4.70611 v 1.60302 l -3.6386,1.50705 c -2.0013,0.82896 -4.6997,2.8562 -5.9967,4.50492 l -2.358,2.99773 v 5.14324 5.14329 l 2.9741,3.53441 c 1.6358,1.94387 4.6231,4.21746 6.6386,5.05229 l 3.6647,1.51801 4.932,-2.22389 4.9316,-2.22407 2.2174,-3.63584 2.2173,-3.6359 -6e-4,-4.19771 -6e-4,-4.19763 -3.2931,-4.96296 c -1.8112,-2.72955 -8.6017,-9.71657 -15.0902,-15.52662 l -11.7975,-10.56395 -1.7883,-4.46942 c -0.9836,-2.45824 -2.5417,-4.75857 -3.4623,-5.11191 l -1.6741,-0.64235 -1.1411,2.03898 c -0.6276,1.1215 -1.3834,1.77371 -1.6795,1.44939 -0.2961,-0.3243 -0.7991,-7.20101 -1.1177,-15.2815 l -0.5793,-14.69177 h 1.0277 1.0278 v 5.32622 5.32621 l 1.2748,0.78785 1.2751,0.78796 2.3228,-2.10231 2.3232,-2.10242 -0.039,-4.3116 -0.039,-4.31158 -3.3243,-4.79732 -3.3243,-4.79731 h -2.8899 -2.8899 l -1.5239,-2.99833 c -0.8381,-1.64907 -1.5319,-3.72344 -1.5415,-4.60974 -0.015,-0.88631 1.0616,-1.89375 2.3809,-2.23868 l 2.3987,-0.62734 0.1492,-2.55855 c 0.083,-1.40728 0.3106,-7.31027 0.5068,-13.11779 l 0.3569,-10.55914 1.439,-1.73397 c 0.7916,-0.95372 1.8255,-1.734 2.298,-1.734 0.4721,0 0.8843,3.91281 0.9153,8.69514 0.032,4.78232 0.1462,10.85393 0.2572,13.49244 l 0.2005,4.79734 4.2399,8.69885 4.2401,8.69884 2.9576,0.74228 c 1.6267,0.40824 4.9212,0.42372 7.3211,0.0348 l 4.3635,-0.70809 1.166,-2.0836 1.166,-2.08348 0.9175,2.34542 c 0.5045,1.29 0.9553,4.35597 1.0017,6.81327 l 0.084,4.46788 -3.0764,-1.16973 c -1.692,-0.64331 -5.0653,-1.16131 -7.4959,-1.15122 -2.4307,0.0121 -5.0187,0.41484 -5.7512,0.89949 -0.7325,0.48465 -2.2166,2.6083 -3.2982,4.71937 -1.0814,2.11106 -1.9663,4.65567 -1.9663,5.65458 0,0.99905 0.9446,2.29517 2.0988,2.8803 l 2.0989,1.06394 8.1388,-0.56453 8.139,-0.56451 1.7876,-3.75535 c 0.9833,-2.06549 2.5749,-5.10458 3.5369,-6.75368 l 1.7493,-2.99832 0.089,-6.5963 c 0.048,-3.62797 0.5978,-9.2948 1.2195,-12.59296 0.6217,-3.29816 1.6242,-11.93334 2.2279,-19.18929 0.6036,-7.25592 1.3955,-18.42228 1.7597,-24.81399 l 0.662,-11.62126 -5.1709,-5.32036 c -2.8438,-2.92623 -7.0551,-8.76037 -9.3584,-12.96498 l -4.1876,-7.64451 -2.5802,-0.38092 -2.58,-0.38091 -3.0163,3.25449 -3.0161,3.25452 v 4.701 c 0,2.58563 0.5748,5.7749 1.2771,7.08733 0.7023,1.31256 1.0665,3.01811 0.809,3.79036 l -0.4679,1.40392 -3.162,-5.39541 c -1.7391,-2.96762 -3.7659,-8.21133 -4.5039,-11.65293 l -1.342,-6.25736 3.7239,-11.98671 3.7241,-11.9867 -1.1844,-6.91461 c -0.6514,-3.80308 -1.4936,-8.80356 -1.8715,-11.11228 l -0.6873,-4.19766 1.1217,-1.67389 1.1217,-1.6739 1.9496,0.74801 1.9495,0.74815 -0.7002,2.78976 -0.7001,2.78976 2.5583,6.83774 2.5584,6.83774 3.9224,2.99183 c 2.1572,1.64548 4.9508,3.00002 6.2078,3.01009 1.257,0.0121 3.082,0.52207 4.0557,1.13779 l 1.7702,1.11945 -2.8357,3.83548 c -1.5596,2.10949 -3.2436,5.64403 -3.7422,7.85453 l -0.9064,4.01905 1.0931,4.86509 1.093,4.86495 5.6763,7.68136 c 3.1218,4.22463 6.3506,7.70341 7.1752,7.73051 l 1.4992,0.0491 v -2.83339 -2.83343 l -3.6,-4.52998 c -1.98,-2.4916 -4.2087,-6.56141 -4.9526,-9.04426 l -1.3524,-4.51414 0.8453,-4.50542 0.8452,-4.50552 6.2537,-6.10434 c 3.4396,-3.35741 9.6552,-7.99329 13.8125,-10.302 4.1572,-2.30872 9.3978,-5.14632 11.6457,-6.30596 l 4.0872,-2.10819 v -1.71886 c 0,-0.94532 -0.6001,-2.08961 -1.3335,-2.54283 l -1.3335,-0.82418 0.766,-5.7732 c 0.4211,-3.17524 1.5845,-7.7328 2.5853,-10.12775 1.0005,-2.39493 2.3046,-6.60902 2.8978,-9.36448 0.593,-2.75559 2.2211,-8.19058 3.6178,-12.07797 1.3966,-3.88726 5.4991,-11.51573 9.1165,-16.95217 3.6175,-5.43631 8.4199,-11.97037 10.6717,-14.52004 l 4.0946,-4.63576 0.05,2.02279 0.05,2.02289 3.6327,0.37577 3.6326,0.37585 -2.7332,3.74696 c -1.5033,2.0607 -5.0268,6.76001 -7.8303,10.44292 -2.8034,3.68278 -5.097,7.15076 -5.097,7.70664 0,0.5559 0.5938,1.60447 1.3196,2.33031 l 1.3196,1.31974 18.7691,-9.63049 18.7691,-9.63051 0.3879,-1.64355 0.3877,-1.64369 h -3.0456 c -1.6751,0 -5.0877,0.85467 -7.5836,1.89927 -2.4961,1.0446 -7.102,3.20341 -10.2357,4.79732 -3.1336,1.5939 -5.9671,2.89806 -6.2964,2.89806 -0.3296,0 -0.5991,-0.69312 -0.5991,-1.54016 0,-0.84699 2.8334,-4.30118 6.2964,-7.67597 l 6.2966,-6.13576 6.2795,-3.12968 6.2794,-3.12952 14.1091,0.0121 c 7.76,0.0121 16.4579,-0.0528 19.3284,-0.13281 l 5.2193,-0.14502 2.5764,2.67943 2.5763,2.67929 -4.3803,-0.76841 -4.3802,-0.7684 -5.2144,1.17148 -5.2143,1.17152 -2.0989,2.59175 c -1.1542,1.42541 -2.0988,3.88115 -2.0988,5.45718 0,1.57605 -0.4737,2.86545 -1.0525,2.86545 -0.5788,0 -1.7243,-0.80956 -2.5456,-1.799 -0.8211,-0.98944 -2.3946,-1.79899 -3.4967,-1.79899 h -2.0037 l -1.1475,3.8032 -1.1476,3.80331 -11.9487,6.27669 -11.9487,6.27682 -6.3929,1.28388 -6.3927,1.28377 -8.3252,7.45369 c -4.5788,4.09957 -10.1344,10.1846 -12.346,13.52221 -2.2115,3.33773 -4.6108,7.17715 -5.3316,8.53192 l -1.3109,2.46329 0.9117,1.47517 0.9116,1.47517 1.9463,-0.74694 c 1.0706,-0.41077 3.6807,-3.53226 5.8006,-6.9368 2.1198,-3.40441 6.8507,-9.29312 10.5131,-13.08599 l 6.6591,-6.89616 h 2.0081 c 1.1043,0 2.298,0.7557 2.6525,1.67933 l 0.6443,1.67929 -2.9883,4.0175 -2.9884,4.01752 0.6694,3.4285 0.6693,3.42841 -3.0563,2.40406 -3.0562,2.40407 0.3618,1.84276 0.3615,1.84278 10.4011,-0.25139 10.4009,-0.25137 5.1902,2.63541 c 2.8547,1.44951 6.4775,3.64068 8.0507,4.86928 l 2.8603,2.23374 h 10.9965 10.9966 l 4.0799,-4.2094 4.0799,-4.2093 4.2509,-1.18096 c 2.3379,-0.64957 7.3189,-1.18399 11.0689,-1.18759 3.75,0 8.2349,0.53202 9.9666,1.19034 l 3.1485,1.19716 -0.7425,1.20149 -0.7426,1.20163 h -5.8694 -5.8695 l -3.7127,4.62004 -3.7128,4.62005 -23.6284,-0.12361 -23.6285,-0.12376 -8.3953,-4.00012 c -4.6174,-2.20005 -10.913,-4.40538 -13.9902,-4.90082 l -5.5952,-0.9007 -1.9007,1.06381 -1.9008,1.0637 v 3.51545 3.51562 l -3.2982,0.7227 c -1.8139,0.39746 -4.0106,0.94494 -4.8813,1.21672 l -1.5833,0.49424 0.3839,2.67007 0.384,2.67018 4.1975,1.23304 c 2.3087,0.67822 4.8723,1.6697 5.6969,2.20329 0.8246,0.53369 1.4992,1.74802 1.4992,2.69848 v 1.728 h -4.6992 c -2.5846,0 -5.553,0.32754 -6.5964,0.72798 l -1.897,0.72801 v 2.23603 2.23602 l 3.8977,1.03815 3.8978,1.03803 -9.5946,0.90584 -9.5946,0.90585 -6.2022,6.36281 c -3.4111,3.49952 -7.004,7.91329 -7.9838,9.80835 l -1.7817,3.44555 -0.8644,11.04809 -0.8642,11.04825 2.0165,0.7738 2.0166,0.77381 4.8964,-2.20796 c 2.6929,-1.21434 6.172,-3.21135 7.7311,-4.43779 l 2.8346,-2.22977 v -3.13241 c 0,-1.72284 -0.8778,-6.26135 -1.9508,-10.08576 l -1.9511,-6.95337 2.0275,-3.09425 2.0274,-3.09426 1.4205,0.47348 1.4203,0.47349 0.9207,6.49712 0.9206,6.49714 8.5354,17.19465 8.5358,17.19481 0.5902,5.23699 c 0.3247,2.88031 0.2196,6.20305 -0.2336,7.38367 l -0.8236,2.1468 -2.2793,-2.99054 c -1.2535,-1.64475 -2.6107,-4.46844 -3.016,-6.27487 -0.4054,-1.80642 -1.3044,-3.63506 -1.9977,-4.06358 l -1.2606,-0.77909 0.8374,16.65652 c 0.4607,9.16097 1.5824,25.40901 2.4929,36.10654 l 1.6554,19.45015 -1.1437,14.0313 -1.1436,14.0313 -2.8448,6.21362 -2.8447,6.21374 1.0643,1.90164 1.0642,1.90163 -0.9144,0.53276 c -0.5029,0.29299 -4.1525,1.45671 -8.1103,2.58611 -3.9578,1.12929 -8.1404,2.89822 -9.2948,3.9307 -1.1544,1.03259 -2.0989,2.56475 -2.0989,3.40488 0,0.84004 0.8174,2.34468 1.8164,3.3436 l 1.8162,1.81629 3.2809,-1.11984 c 1.8044,-0.61595 9.4874,-1.9352 17.0731,-2.93173 7.5858,-0.99639 22.8287,-2.45903 33.8732,-3.2501 l 20.0809,-1.43821 26.6929,1.4327 c 14.6813,0.78796 33.6623,2.26955 42.1803,3.29229 8.518,1.02268 16.2086,1.58266 17.0905,1.24421 0.8817,-0.33832 1.6011,-1.57656 1.5987,-2.75161 0,-1.17516 -1.074,-3.89052 -2.3811,-6.03433 l -2.3765,-3.89785 h -13.4548 c -7.4002,0 -19.4165,-0.58104 -26.7027,-1.29126 -7.2864,-0.71017 -16.2162,-1.74648 -19.8442,-2.30275 l -6.5963,-1.01165 23.3868,0.33715 c 12.8629,0.18533 24.555,0.73282 25.9828,1.21647 l 2.5958,0.87949 1.2868,-2.4043 1.2866,-2.40419 -1.8988,-5.20459 -1.8988,-5.20461 -1.562,-17.39029 -1.5621,-17.39028 1.616,-25.18592 c 0.8888,-13.85226 2.4032,-31.39244 3.3655,-38.9782 0.9622,-7.58577 2.0708,-18.92314 2.4635,-25.19409 0.3927,-6.27093 1.5459,-15.3911 2.5625,-20.26685 1.0167,-4.87587 2.3642,-9.82887 2.9946,-11.00685 l 1.1463,-2.14165 v -9.74431 -9.74419 l 1.0813,0.66826 c 0.5947,0.3676 1.4526,3.8676 1.9063,7.77779 l 0.8252,7.10949 1.9914,1.77945 c 1.0952,0.97866 2.8009,1.93619 3.7904,2.12785 0.9893,0.19165 3.8032,-0.0503 6.2528,-0.53753 l 4.4539,-0.8862 6.6815,1.94232 6.6814,1.94244 2.9598,3.19189 c 1.6278,1.75546 3.4544,4.81506 4.0589,6.79887 0.6046,1.98394 1.4375,6.30561 1.851,9.60376 0.4133,3.29815 1.8638,8.81733 3.2231,12.26471 l 2.4717,6.26817 5.4747,3.6263 c 3.0113,1.9946 6.1559,3.62642 6.988,3.62642 0.8321,0 3.3947,2.29621 5.6943,5.10265 2.2997,2.80643 4.5274,6.48202 4.9506,8.16803 l 0.7694,3.06548 -4.1611,7.98312 c -2.2887,4.39062 -5.0635,10.70017 -6.1665,14.02098 l -2.0055,6.03792 2.5933,4.1962 2.5934,4.1961 h 2.9006 2.9003 v -4.56813 -4.56802 l 1.8814,-2.32812 1.8811,-2.32802 -0.8554,7.19596 c -0.4707,3.95781 -0.8139,8.27538 -0.763,9.59466 0.051,1.31925 0.4714,6.31325 0.9347,11.09774 l 0.8422,8.6991 -2.069,5.41785 -2.0692,5.41786 1.3079,3.75209 c 0.7195,2.06369 1.308,5.71422 1.308,8.11226 0,2.39807 -1.0793,7.43118 -2.3987,11.18476 -1.3191,3.75352 -2.3985,7.83171 -2.3985,9.06267 v 2.2382 l 6.9712,-0.0948 6.9714,-0.0947 3.2982,2.16113 c 1.814,1.18865 4.924,4.69009 6.9112,7.78096 l 3.6129,5.61985 -0.7869,8.34267 c -0.4326,4.58835 -1.5065,9.71552 -2.3865,11.39362 -0.8797,1.67795 -3.3998,4.72606 -5.5998,6.77343 l -4,3.72249 -7.2748,1.97444 -7.2746,1.97433 h -10.1827 -10.1825 l -7.7286,-2.59349 c -4.2508,-1.4265 -9.8875,-3.91598 -12.5261,-5.53209 -2.6385,-1.61622 -7.4957,-5.55948 -10.7941,-8.76289 l -5.9965,-5.82442 -9.5946,-1.83664 -9.5946,-1.83657 -35.4983,-1.86261 -35.4984,-1.8627 -26.0102,1.82186 -26.0102,1.82196 -12.8498,2.48725 c -7.0675,1.36796 -18.5169,4.14431 -25.443,6.16961 -6.9261,2.02532 -14.901,4.70243 -17.7221,5.94929 -2.8211,1.24667 -5.6722,2.26683 -6.3358,2.26683 -0.6636,0 -6.0864,2.42864 -12.0509,5.39697 -5.9643,2.96833 -11.7483,5.37756 -12.8534,5.35378 z m 294.5166,-8.76739 7.4872,-0.29697 4.0898,-3.96391 c 2.2494,-2.18024 4.3454,-5.30071 4.6576,-6.93442 l 0.5679,-2.97036 -1.6475,-0.63227 -1.6476,-0.63219 -4.2426,3.72501 -4.2425,3.72507 h -6.6265 -6.6263 l -6.5133,-6.15994 -6.5132,-6.15987 -1.204,-4.33427 c -0.6621,-2.38382 -1.2069,-6.29053 -1.2105,-8.68175 0,-2.39109 0.3348,-6.05551 0.7524,-8.14306 l 0.759,-3.79554 5.063,-5.64918 c 2.7848,-3.10714 5.9512,-7.37637 7.0366,-9.48743 1.0855,-2.11105 1.9736,-4.69154 1.9736,-5.73447 0,-1.04293 -0.8017,-2.20376 -1.7814,-2.57975 l -1.7812,-0.68349 -3.5244,2.81998 c -1.9383,1.55096 -5.7207,4.40514 -8.4052,6.3424 -2.6848,1.9374 -6.3687,5.6696 -8.1871,8.29385 l -3.3058,4.77141 0.032,11.49508 0.032,11.49512 3.9455,6.88078 3.9455,6.88079 5.1123,4.18901 5.1121,4.18901 4.703,1.16408 c 2.5867,0.64024 8.0724,1.03049 12.1903,0.86716 z m 2.5727,-13.97664 h 3.2799 l 2.6249,-2.44542 2.6248,-2.44532 v -3.75669 -3.75663 l 1.9647,-2.17081 1.9643,-2.1708 -1.4996,-1.80701 c -0.8249,-0.99377 -3.3488,-2.94979 -5.6087,-4.34654 l -4.1091,-2.53941 -3.4655,1.43548 c -1.9062,0.78948 -3.7872,2.2737 -4.1805,3.29813 l -0.7147,1.86258 1.828,2.01992 c 1.0053,1.11081 1.8278,2.47447 1.8278,3.03021 0,0.55576 0.9048,2.01023 2.0106,3.23209 l 2.0104,2.22162 -1.3492,1.34922 -1.3493,1.34929 -3.0178,-1.97726 c -1.6598,-1.08752 -3.5762,-1.97732 -4.2591,-1.97732 -0.683,0 -1.2417,0.76162 -1.2417,1.69238 0,0.93081 1.6605,3.08958 3.69,4.79732 l 3.6901,3.10497 z m -253.0766,-1.19933 c 1.168,0 4.6151,-0.84892 7.6601,-1.88645 3.0451,-1.03752 6.1677,-2.647 6.9392,-3.57676 l 1.4028,-1.69032 -0.101,-7.19154 -0.101,-7.19166 -4.3909,-8.71923 -4.391,-8.71919 -8.5299,-8.82246 -8.5298,-8.8224 -8.995,0.79047 c -4.9472,0.43489 -10.2093,1.08972 -11.6934,1.45515 l -2.6986,0.66455 v 2.21253 2.21254 l 8.6951,7.39062 c 4.7825,4.06477 10.7429,9.28522 13.2454,11.60074 2.5026,2.31566 5.6944,6.43611 7.0925,9.15638 l 2.5424,4.94605 -0.1357,8.0955 -0.1357,8.09548 z m 23.9274,-22.78729 c 1.2311,0 3.0818,-0.94447 4.1128,-2.09882 1.031,-1.15431 3.0394,-5.95659 4.4632,-10.67174 l 2.5889,-8.57294 -0.3794,-4.61968 -0.3796,-4.61972 -2.6637,-0.37863 -2.6639,-0.37874 -4.3186,3.37707 c -2.3751,1.85728 -5.4077,5.4747 -6.7391,8.03862 l -2.4206,4.66168 2.0383,4.93297 c 1.1209,2.71312 2.5072,6.14726 3.0807,7.63141 l 1.0425,2.69852 z m 152.0256,-7.19593 h 2.7254 l 2.1858,-2.88022 c 1.2023,-1.58406 3.1789,-4.68063 4.3925,-6.88117 l 2.2064,-4.00084 1.3916,1.8315 1.3915,1.83137 7.1958,1.32192 c 3.9579,0.727 8.4061,1.71191 9.8849,2.18865 l 2.6889,0.86685 6.8132,-7.37237 6.8129,-7.37228 6.847,-4.15941 c 3.7659,-2.28759 8.289,-6.04977 10.0514,-8.36041 l 3.2044,-4.20111 1.3483,-6.42854 1.3486,-6.42864 -1.4699,-3.54821 -1.4697,-3.54823 -5.7449,-4.28904 -5.745,-4.28903 -2.0716,-4.36532 -2.0714,-4.3652 1.3866,-4.2015 c 0.7626,-2.31087 1.0667,-5.03538 0.6755,-6.05481 l -0.7113,-1.85321 -9.8923,0.37577 -9.8922,0.37586 -0.8087,-7.30249 c -0.4447,-4.01632 -1.3935,-9.47422 -2.1082,-12.12858 l -1.2995,-4.82609 -5.2897,-4.33449 c -2.9094,-2.38392 -5.6165,-4.33439 -6.0161,-4.33439 -0.3997,0 -3.4727,-1.88894 -6.8289,-4.19765 -3.3564,-2.3087 -7.1086,-4.19764 -8.3387,-4.19764 h -2.2365 l -1.9501,2.97612 -1.9499,2.97602 -0.113,10.36173 -0.1131,10.36173 4.9873,4.65207 4.9873,4.65221 h -4.7232 -4.7232 l -1.9791,3.02038 -1.979,3.02051 0.8369,7.39746 c 0.4604,4.06862 1.6213,8.91415 2.5797,10.76784 l 1.7428,3.3701 4.4493,1.85907 4.4492,1.85897 -1.7794,1.11323 c -0.9787,0.61224 -3.7776,1.03934 -6.2197,0.94914 l -4.4403,-0.16417 -1.8561,1.54051 -1.8563,1.54056 v 7.60709 7.60699 l 3.7843,4.31004 c 2.0812,2.37059 5.8591,5.36868 8.3953,6.66239 2.536,1.29384 4.611,2.67353 4.611,3.06596 0,0.39232 -2.9364,0.34648 -6.5255,-0.10191 l -6.5254,-0.8153 -1.8699,3.61587 c -1.0284,1.98873 -1.8698,5.49641 -1.8698,7.79491 0,2.29865 0.5773,5.69755 1.2828,7.55326 0.7055,1.8557 2.1385,4.31949 3.1841,5.47506 1.0459,1.15557 3.1279,2.10099 4.6269,2.10099 z m 15.2835,-16.79065 h -1.5901 v -2.38367 -2.38354 l 4.4974,-2.92338 c 2.4738,-1.60769 7.3699,-5.61382 10.8803,-8.90239 l 6.383,-5.97911 -1.8423,-3.56275 c -1.0133,-1.95947 -3.4128,-4.84133 -5.3322,-6.40405 -1.9195,-1.56272 -5.3121,-3.88043 -7.5389,-5.15028 l -4.0489,-2.30907 2.167,-0.49053 2.167,-0.49051 2.6302,1.90826 c 1.4467,1.04964 3.8406,2.77355 5.3197,3.83088 l 2.6892,1.92264 1.8082,-0.69392 1.8084,-0.69381 v -7.59787 -7.59776 l -3.0872,-6.19488 -3.087,-6.19479 -6.3538,-3.63528 c -3.4947,-1.99942 -7.1666,-3.6353 -8.1598,-3.6353 -0.9931,0 -2.4779,-0.80954 -3.2988,-1.79898 l -1.4932,-1.79901 h 2.5683 c 1.4124,0 5.6022,1.61909 9.3106,3.59799 3.7084,1.9789 7.7591,3.598 9.002,3.598 h 2.2594 l 1.0958,2.88187 c 0.6025,1.58489 1.7212,3.26853 2.4861,3.74117 0.7649,0.47266 2.9569,3.32923 4.8714,6.34794 1.9143,3.01871 3.4806,6.5193 3.4806,7.77908 0,1.2599 -1.3492,3.8941 -2.9983,5.85392 -1.6491,1.95983 -2.9983,4.39148 -2.9983,5.40371 v 1.84049 l 4.2885,-0.80451 4.2886,-0.80463 1.7081,1.4176 c 0.9395,0.7797 1.7081,2.79324 1.7081,4.47472 v 3.05697 l -5.1126,4.89158 -5.1125,4.89158 -9.2455,4.68388 c -5.085,2.57615 -10.4343,5.94926 -11.887,7.49578 -1.4531,1.54656 -3.3572,2.81196 -4.2315,2.81196 z m -177.63,-2.39866 c 1.3015,0 3.7991,-1.00072 5.55,-2.2238 1.7509,-1.22306 4.5478,-2.55241 6.215,-2.95418 1.6673,-0.40179 4.6356,-2.40611 6.5964,-4.45407 l 3.5647,-3.72369 v -12.45262 -12.45265 l -1.4113,-1.41016 -1.4114,-1.41018 -2.8993,0.72774 c -1.5946,0.40024 -5.6386,2.90875 -8.9867,5.5745 -3.3479,2.66575 -7.7931,7.39891 -9.8783,10.51812 l -3.7907,5.67137 0.4453,7.37037 0.4455,7.37036 1.597,1.92444 c 0.8786,1.05841 2.6622,1.92445 3.9638,1.92445 z m -9.0153,-27.58457 c 0.9682,0 4.818,-2.34409 8.5553,-5.20907 3.7371,-2.86505 9.3592,-6.77788 12.4934,-8.69512 l 5.6983,-3.48611 1.9201,-4.03789 1.9201,-4.0379 -1.0222,-7.83222 -1.0223,-7.83222 -1.99,-1.24778 -1.9901,-1.24767 -8.5988,7.0349 c -4.7294,3.86917 -10.5499,9.41595 -12.9346,12.32623 l -4.3357,5.29123 -0.8415,7.13683 c -0.463,3.92516 -0.565,8.1943 -0.2269,9.48682 l 0.6145,2.34997 z m 5.2308,-32.3819 c 0.4368,0 2.6848,-1.48418 4.9954,-3.29817 2.3105,-1.81397 6.4089,-4.64738 9.1074,-6.29647 l 4.9067,-2.99833 1.5254,-3.59798 1.5252,-3.59801 -0.065,-10.79394 -0.065,-10.79397 -1.4502,-2.69848 c -0.7976,-1.48419 -2.3159,-2.69851 -3.3742,-2.69851 -1.0582,0 -5.5785,2.95276 -10.0451,6.56166 l -8.1214,6.56177 -1.3062,6.09032 c -0.7183,3.3496 -1.3062,10.27331 -1.3062,15.38595 v 9.29578 l 1.4393,1.43918 c 0.7916,0.79156 1.7967,1.4392 2.2338,1.4392 z m 189.5907,-39.61578 c 1.0836,0.0204 2.2499,-0.69056 2.5917,-1.58094 0.3416,-0.89039 0.1311,-7.71889 -0.4687,-15.17439 l -1.0896,-13.55568 -3.0499,-3.99868 c -1.6775,-2.19934 -3.9725,-4.46967 -5.1001,-5.04522 -1.1276,-0.57555 -3.8481,-1.38773 -6.046,-1.80476 l -3.996,-0.75821 -2.2275,1.19202 -2.2276,1.19214 -0.7765,5.17929 -0.7768,5.17931 1.2737,4.71204 c 0.7004,2.59163 3.2176,7.8153 5.5933,11.60819 l 4.3198,6.89614 h 1.6397 c 0.9019,0 3.1541,1.33223 5.0048,2.96044 1.8507,1.6282 4.2517,2.97745 5.3357,2.99831 z m -216.6363,142.74637 -1.7848,1.48129 -0.7063,-1.84038 c -0.3885,-1.01225 -0.098,-2.97708 0.6457,-4.36636 l 1.3517,-2.52592 1.1394,0.704 c 0.6263,0.38726 1.139,1.68551 1.139,2.88508 0,1.19955 -0.8032,2.84758 -1.7847,3.66229 z m -46.343,-5.50515 -3.4433,4.67748 v -3.04699 -3.04701 l 7.2902,-7.62702 7.2905,-7.62716 2.4489,-5.39696 2.4488,-5.39703 0.5283,1.4188 c 0.2905,0.78034 -0.8385,4.30728 -2.5086,7.83777 -1.67,3.53036 -4.7409,8.01911 -6.8239,9.97483 -2.083,1.95572 -5.3369,5.66073 -7.2309,8.23329 z m 112.6294,-8.87505 h -6.2143 l 1.1394,-1.03624 c 0.6266,-0.57002 3.672,-1.64943 6.7676,-2.39866 l 5.6282,-1.36243 14.1607,0.14245 14.1607,0.14246 -6.5962,1.03049 c -3.628,0.56667 -10.2493,1.58191 -14.7141,2.25616 -4.4647,0.67415 -10.9141,1.22574 -14.332,1.22574 z m 209.5075,-15.59128 c -1.0102,0 -2.1562,-0.83283 -2.5469,-1.85071 -0.3906,-1.01787 -0.3867,-2.17426 0.015,-2.56956 0.3952,-0.39542 1.5414,-0.0359 2.5467,0.79816 1.0055,0.83448 1.828,1.99075 1.828,2.56956 1e-4,0.57893 -0.8263,1.05255 -1.8365,1.05255 z m -335.287,-1.19933 c -1.0961,0 -2.6432,-0.78368 -3.4381,-1.74142 -0.7949,-0.95769 -1.2658,-2.53036 -1.0465,-3.49487 0.2195,-0.96438 4.8744,-5.8652 10.3447,-10.89075 l 9.9456,-9.1372 1.1482,0.70962 c 0.6314,0.39027 1.148,1.90682 1.148,3.37024 0,1.46343 -0.8881,3.99509 -1.9735,5.62605 -1.0853,1.63097 -4.7099,5.79876 -8.0544,9.26183 l -6.081,6.2965 z m 355.1735,-0.0121 -1.859,-0.0121 -9.8944,-10.92314 -9.8946,-10.92276 v -2.85609 -2.8586 h 1.7777 c 0.9778,0 6.9145,4.64824 13.1927,10.32935 l 11.4149,10.32934 v 2.02374 c 0,1.1131 -0.6476,2.6714 -1.4392,3.46295 -0.7914,0.79152 -2.2757,1.4344 -3.2981,1.42866 z m -488.5808,-9.58294 h -5.9194 l -4.0047,-4.24635 c -2.2028,-2.33557 -5.0654,-6.6438 -6.3616,-9.57401 -1.2961,-2.93021 -2.708,-7.67031 -3.1373,-10.53371 l -0.7807,-5.20616 1.8118,-4.3363 1.8117,-4.33617 4.9787,-3.14297 4.9787,-3.14285 2.5571,0.37156 2.5573,0.37143 2.1455,5.99666 c 1.18,3.29815 2.1478,6.85608 2.1505,7.90656 v 1.91006 l -4.1977,2.2605 -4.1975,2.26062 v 2.0837 c 0,1.14609 0.9785,2.60747 2.1746,3.24767 l 2.1747,1.16396 2.8068,-1.42158 c 1.5438,-0.78185 3.8323,-2.80344 5.0856,-4.4922 l 2.2787,-3.07076 1.8459,-10.69636 c 1.0152,-5.88306 2.5502,-12.05829 3.4109,-13.72271 0.8608,-1.66455 2.5647,-3.9067 3.7866,-4.98273 1.222,-1.07591 4.5522,-3.12822 7.4008,-4.56081 2.8485,-1.43261 7.8226,-2.91773 11.0534,-3.30032 l 5.8742,-0.69573 3.4684,1.43666 c 1.9077,0.79013 4.5175,2.88704 5.7998,4.65978 1.2823,1.77272 3.576,6.15748 5.0972,9.74407 l 2.7658,6.52085 -0.5307,6.39845 -0.5306,6.39842 -3.497,3.68121 c -1.9234,2.02472 -5.4994,4.71132 -7.947,5.97015 -2.4472,1.25881 -5.307,2.2888 -6.3549,2.2888 h -1.9054 l -2.3137,-5.09715 c -1.2726,-2.80344 -2.3255,-6.49942 -2.3399,-8.21314 l -0.027,-3.11597 4.8042,-2.16647 c 2.6424,-1.19153 5.3854,-2.86665 6.0957,-3.72261 l 1.2915,-1.55611 -0.7795,-2.45625 -0.7795,-2.45621 h -3.1042 -3.1041 l -4.1383,3.1564 -4.1383,3.15639 -1.6718,4.00107 c -0.9195,2.20053 -1.6718,6.16625 -1.6718,8.81256 0,2.64644 -0.8916,7.11623 -1.9814,9.93309 -1.0899,2.81676 -3.0702,6.33307 -4.4012,7.81398 -1.3308,1.48106 -5.1326,4.04464 -8.4483,5.69682 l -6.0285,3.00421 z m 624.1981,-1.287 c -1.0735,-0.0479 -3.5136,-1.08612 -5.4222,-2.30645 -1.9086,-1.22029 -3.8931,-2.90296 -4.4098,-3.73925 l -0.9398,-1.52039 1.7113,-3.30955 c 0.9412,-1.82022 1.7113,-4.15376 1.7113,-5.18567 v -1.87617 l -3.8976,-2.37659 c -2.1438,-1.30702 -5.3233,-2.37852 -7.0658,-2.38103 h -3.1678 l -1.9196,4.79731 c -1.0559,2.63853 -2.4851,4.79732 -3.1763,4.79732 -0.6913,0 -3.3942,-1.09031 -6.0064,-2.423 l -4.7495,-2.42266 v -1.81685 c 0,-0.99929 0.8479,-3.11094 1.8841,-4.6925 l 1.8844,-2.87576 -1.2497,-2.33485 -1.2496,-2.33486 -4.8564,-1.94315 c -2.6713,-1.07365 -5.8329,-1.94807 -7.0262,-1.94807 h -2.1692 l -2.8088,5.99664 -2.8087,5.99665 h -1.5254 c -0.8389,0 -3.3969,-1.10421 -5.6845,-2.45394 -2.2875,-1.34961 -4.4679,-3.25847 -4.8452,-4.24192 l -0.686,-1.78795 4.8481,-11.04955 c 2.6666,-6.07724 5.3513,-12.27897 5.9657,-13.78174 0.6146,-1.50264 1.9109,-3.03658 2.8808,-3.40883 l 1.7634,-0.67668 6.9421,3.2316 c 3.8181,1.77741 9.6406,4.49306 12.9388,6.03478 3.298,1.54174 13.0126,5.86449 21.5879,9.60602 8.5752,3.74169 17.4734,7.49979 19.7736,8.35118 2.3004,0.85153 4.7033,2.37409 5.3399,3.38331 l 1.1576,1.83498 -2.5512,5.77754 c -1.4032,3.17761 -3.7817,9.01572 -5.2855,12.97351 -1.5039,3.95777 -3.2298,7.87058 -3.8352,8.69511 -0.6054,0.82456 -1.979,1.45973 -3.0526,1.41151 z m -503.7008,-5.90899 c -0.6592,0 -2.0467,-0.84804 -3.0832,-1.88461 -1.0366,-1.03658 -1.8847,-2.62654 -1.8847,-3.53312 v -1.64846 l 10.3065,-7.5607 c 5.6685,-4.15845 12.9929,-9.62749 16.2764,-12.15364 l 5.9701,-4.59296 1.7134,0.65748 c 0.9424,0.36158 1.7134,1.40573 1.7134,2.32021 0,0.91439 -2.8647,4.30451 -6.3662,7.53335 -3.5013,3.22897 -10.2092,9.24396 -14.9067,13.36666 -4.6971,4.12269 -9.0798,7.49579 -9.739,7.49579 z m 381.7736,0 c -0.7487,0 -7.8589,-5.6402 -15.8001,-12.53382 -7.9412,-6.89352 -14.7764,-13.41401 -15.1893,-14.49006 -0.4127,-1.07591 -0.7505,-2.72163 -0.7505,-3.65712 0,-0.93547 0.5668,-1.70088 1.2598,-1.70088 0.6929,0 7.73,4.8495 15.6379,10.7767 7.9079,5.92719 15.4363,11.34313 16.73,12.0355 l 2.3521,1.25881 v 2.71624 c 0,1.49389 -0.6476,3.36389 -1.4391,4.15545 -0.7918,0.79154 -2.0519,1.43918 -2.8008,1.43918 z m -394.1609,-17.0159 c -0.4526,0.20579 -1.7264,-1.00432 -2.8303,-2.68927 l -2.0074,-3.06355 0.6305,-1.64273 c 0.3467,-0.90357 7.2872,-5.57149 15.4231,-10.37324 8.1362,-4.80176 16.7109,-10.00337 19.0551,-11.55914 2.3442,-1.55575 4.9453,-2.82862 5.7801,-2.82862 h 1.5182 l -0.383,2.68843 -0.3834,2.68828 -7.342,5.40718 c -4.038,2.97385 -12.1335,8.9151 -17.9898,13.2027 -5.8564,4.28759 -11.0184,7.96403 -11.4711,8.16996 z m 203.8885,0.14095 c -2.8469,-0.0467 -5.9856,-0.45106 -6.9751,-0.89948 -0.9895,-0.44832 -6.9261,-4.29707 -13.1926,-8.55291 -6.2666,-4.25568 -12.4733,-7.76373 -13.7928,-7.79564 -1.3195,-0.0323 -3.4783,-1.00347 -4.7974,-2.15916 -1.3188,-1.15565 -4.5569,-3.93884 -7.1954,-6.1848 -2.6385,-2.246 -5.7748,-5.75716 -6.9695,-7.80272 l -2.1723,-3.71913 1.8865,-0.72392 1.8864,-0.72392 6.2824,5.29421 6.2824,5.29409 7.575,3.23495 7.5749,3.23482 h 12.3875 12.3875 l 7.6223,-2.29457 c 4.1921,-1.26204 9.511,-2.66825 11.8197,-3.12484 2.3087,-0.45659 6.0866,-1.66539 8.3953,-2.68601 2.3087,-1.02063 8.0951,-3.66226 12.8587,-5.87012 4.7635,-2.20797 8.9463,-4.01441 9.2948,-4.01441 0.3487,0 0.6337,0.59727 0.6337,1.3272 0,0.72991 -3.7352,5.1824 -8.3007,9.89446 l -8.3007,8.56728 -0.8243,3.29816 -0.8242,3.29815 h -3.6325 -3.6324 l -7.931,5.20881 c -4.362,2.86483 -9.1098,5.83318 -10.5506,6.59632 -1.4409,0.76313 -4.9489,1.34961 -7.7956,1.30318 z m 201.5391,-1.11501 c -1.1485,0 -2.414,-0.52759 -2.8125,-1.17234 -0.3985,-0.64488 -9.2005,-7.22549 -19.5599,-14.62366 -10.3595,-7.39819 -19.2318,-14.02161 -19.7165,-14.71865 -0.4846,-0.69717 -0.8894,-1.94221 -0.8993,-2.76675 -0.015,-0.82453 0.8345,-1.49915 1.8771,-1.49915 1.0425,0 4.6855,1.82035 8.0954,4.04522 3.41,2.22476 12.4122,7.78424 20.0047,12.35429 7.5927,4.57017 14.7439,8.66959 15.8912,9.10987 l 2.0862,0.80056 v 2.79611 c 0,1.53789 -0.6476,3.44375 -1.4392,4.23531 -0.7914,0.79156 -2.3786,1.43919 -3.5272,1.43919 z m -416.2751,-19.19012 -2.0761,5.9e-4 -0.7564,-3.01393 -0.7565,-3.0139 1.2455,-1.48357 c 0.685,-0.81592 3.0391,-2.38283 5.2311,-3.48203 2.192,-1.09917 12.5025,-6.09138 22.912,-11.09378 10.4097,-5.0024 19.4497,-9.09536 20.0887,-9.09536 0.6394,0 1.1623,0.72595 1.1623,1.6131 0,0.88727 -0.9444,2.45347 -2.0987,3.48046 -1.1543,1.0271 -6.6862,4.54174 -12.2931,7.8105 -5.6069,3.26878 -14.7818,8.71817 -20.3886,12.11001 -5.6069,3.39169 -11.1286,6.16718 -12.2703,6.16766 z m 427.4958,-0.0526 c -1.1312,-0.0288 -6.3742,-2.68265 -11.6512,-5.89637 -5.2771,-3.21373 -15.6111,-9.40947 -22.9644,-13.76818 -7.3534,-4.35874 -14.0498,-8.7443 -14.8808,-9.74576 l -1.5111,-1.82071 1.0885,-1.07807 1.0886,-1.07796 14.9916,7.24827 c 8.2453,3.98657 19.3092,9.29397 24.5861,11.79421 5.2772,2.50011 10.5822,5.63817 11.7891,6.97337 l 2.1945,2.42757 -1.3372,2.49844 -1.3372,2.49844 z m -335.1409,-2.15375 -0.5422,1.60734 -1.8681,-3.59797 c -1.0276,-1.97891 -4.4188,-6.2965 -7.5363,-9.59465 l -5.6679,-5.99665 -1.2517,-4.19766 c -0.6881,-2.3087 -1.2406,-6.79024 -1.2279,-9.95887 l 0.024,-5.7612 1.2673,-1.26734 1.2672,-1.26721 -0.1922,7.6937 -0.1924,7.69358 4.5527,6.53083 c 2.5041,3.59199 6.2083,8.77585 8.2316,11.51978 l 3.6785,4.98896 z m 451.8571,-2.58994 c -1.4507,0 -2.9477,-0.31004 -3.3267,-0.68902 -0.379,-0.37888 -4.3816,-1.65364 -8.895,-2.83271 -4.5132,-1.17905 -10.6348,-3.00633 -13.6033,-4.06067 -2.9682,-1.05446 -10.254,-3.32803 -16.1907,-5.05243 -5.9367,-1.72438 -14.302,-4.28125 -18.5897,-5.68193 -4.2875,-1.40071 -8.4588,-3.03623 -9.2696,-3.63456 l -1.4738,-1.08781 1.1668,-2.18061 c 0.642,-1.19933 1.7628,-4.95779 2.4906,-8.35203 l 1.3237,-6.17125 1.4608,-0.56059 c 0.8036,-0.30834 3.0446,0.26518 4.9802,1.27454 1.9354,1.00925 4.2646,1.83845 5.1758,1.84242 0.9111,0 6.3081,1.53716 11.9931,3.40705 5.6853,1.86976 15.1939,4.86376 21.1308,6.65328 5.9366,1.78952 14.8415,4.53537 19.7889,6.10194 l 8.9949,2.84828 0.3796,1.84986 c 0.209,1.01738 -0.808,5.10711 -2.2595,9.08804 l -2.6392,7.2382 z m -447.1269,-5.2596 c -0.2901,0.29011 -1.872,-1.24119 -3.5151,-3.40298 -1.6433,-2.16166 -3.8774,-5.65759 -4.9647,-7.76867 l -1.9766,-3.83832 0.021,-4.55696 c 0.015,-2.50637 0.8078,-8.27263 1.7699,-12.81377 l 1.7493,-8.25666 -0.7468,-8.83377 -0.7467,-8.8338 h 1.3177 c 0.7246,0 2.973,2.40597 4.9962,5.34663 l 3.6785,5.34647 -0.5276,23.54224 c -0.2902,12.9482 -0.7647,23.7796 -1.0549,24.06959 z m -221.3532,-7.44763 c -0.4948,0.30582 -1.6216,0.10914 -2.5042,-0.43584 l -1.6047,-0.99174 -2.794,-10.62258 c -1.5368,-5.84244 -2.8128,-11.82591 -2.8355,-13.29677 l -0.041,-2.67401 4.4974,-2.27921 c 2.4737,-1.25342 8.2754,-3.74166 12.8929,-5.52939 4.6174,-1.78771 12.443,-4.85261 17.3902,-6.81075 4.9474,-1.95826 10.6141,-4.34014 12.5931,-5.29313 1.9789,-0.95299 6.2396,-2.67534 9.4682,-3.8273 3.2285,-1.15207 6.4476,-3.0132 7.1535,-4.13589 0.706,-1.12281 0.9818,-2.34288 0.6132,-2.71144 -0.3685,-0.36855 -14.6515,-0.11758 -31.7398,0.55807 -17.0884,0.67557 -31.8794,1.47851 -32.8687,1.78459 -0.9894,0.30595 -2.6085,0.0481 -3.5979,-0.57318 l -1.7992,-1.12939 v -18.55459 -18.5546 l 3.4408,-3.59005 3.4408,-3.59008 5.5542,-1.22535 c 3.0549,-0.67402 15.4234,-1.82731 27.4854,-2.56285 l 21.931,-1.33749 4.0561,1.33868 4.056,1.33859 2.1678,3.23757 2.1677,3.23759 1.3905,19.78894 1.3905,19.78893 1.6371,4.75474 1.6373,4.75475 3.2878,1.84157 3.2878,1.84157 2.1091,-1.35645 2.1092,-1.35642 -0.2998,-2.54139 c -0.1649,-1.39769 -0.4348,-3.7389 -0.5997,-5.20245 l -0.2998,-2.66108 2.1215,-0.42946 2.1214,-0.42961 1.7763,4.25137 c 0.9771,2.33834 1.7764,5.64261 1.7764,7.34279 v 3.09138 l -2.9438,2.94388 -2.9438,2.94376 h -4.7811 c -2.6295,0 -5.1145,0.53969 -5.5222,1.19933 -0.4077,0.65963 -2.2084,1.19932 -4.0015,1.19932 -1.7933,0 -4.4599,0.84013 -5.9259,1.867 l -2.6657,1.867 v 2.18386 c 0,1.20099 0.8026,2.84985 1.7835,3.66384 l 1.7835,1.48008 2.9025,-0.72847 c 1.5964,-0.40058 3.6271,-0.99497 4.5131,-1.32058 0.8857,-0.32573 2.3376,-0.12874 3.2261,0.43751 l 1.6159,1.02974 1.4958,7.96055 1.496,7.96055 -1.3127,0.9934 c -0.7219,0.5463 -7.2493,1.91126 -14.5052,3.03322 -7.2559,1.122 -22.7981,2.81424 -34.5381,3.76063 -11.74,0.94639 -21.7501,1.97098 -22.2448,2.27669 z m 20.9422,-18.47508 c 1.648,0 5.2592,-0.50853 8.0248,-1.13013 2.7657,-0.62149 6.4533,-1.42636 8.1944,-1.78856 1.7413,-0.3622 3.4785,-1.47278 3.8602,-2.46798 0.3819,-0.99507 0.3837,-2.61884 0,-3.6083 l -0.6904,-1.799 -2.5701,0.0419 c -1.4136,0.0238 -3.9194,0.81375 -5.5684,1.75656 -1.6491,0.94266 -4.0778,1.73505 -5.3971,1.76096 -1.3192,0.0264 -4.1795,1.13264 -6.3558,2.45958 l -3.9571,2.41269 0.7298,1.18086 c 0.4012,0.64944 2.078,1.18085 3.7258,1.18085 z m 0.3302,-59.40435 23.5173,-0.85189 1.4992,-1.20126 c 0.8244,-0.66067 1.499,-1.95632 1.499,-2.87921 0,-0.92276 -1.2147,-2.23137 -2.6994,-2.90777 l -2.6996,-1.23005 -21.421,1.00697 -21.421,1.00696 -1.5827,2.16431 -1.5826,2.16431 0.6868,1.78976 0.6868,1.78964 z m 95.8836,75.9088 c -0.4361,0.22823 -1.9369,-0.81301 -3.335,-2.31374 -1.3982,-1.50072 -2.3907,-3.49485 -2.2056,-4.43129 l 0.3367,-1.70255 4.7973,-1.52425 c 2.6386,-0.83832 8.8451,-3.13863 13.7922,-5.11166 4.9472,-1.97302 11.9634,-4.74562 15.5912,-6.16118 3.6282,-1.4157 8.2971,-3.35693 10.3757,-4.31388 2.0787,-0.95694 4.3937,-1.73987 5.1449,-1.73987 0.7512,0 3.4815,-1.0794 6.0674,-2.39865 2.5861,-1.31928 5.5329,-2.39867 6.5486,-2.39867 h 1.8468 v 1.61779 1.61789 l -14.6918,7.29131 c -8.0805,4.0102 -21.1681,10.41031 -29.0838,14.22249 -7.9156,3.8122 -14.7486,7.11803 -15.1846,7.34626 z m 443.0177,0.25702 c -0.4796,-0.0157 -3.3005,-1.31291 -6.2689,-2.88198 -2.9682,-1.56898 -13.2224,-6.61264 -22.7872,-11.20811 -9.5646,-4.59547 -19.4637,-9.32021 -21.9978,-10.49964 -2.5343,-1.1793 -4.8947,-2.89207 -5.2454,-3.80596 -0.3508,-0.914 -0.3488,-1.9507 0,-2.3038 0.3531,-0.35306 4.3325,0.71901 8.8433,2.38249 4.5108,1.66334 11.7521,4.34192 16.0917,5.95237 4.3398,1.61035 8.9274,3.52148 10.1944,4.24671 1.267,0.72537 5.5421,2.46499 9.4998,3.86605 3.9578,1.40106 9.0662,3.24178 11.3518,4.09055 2.2857,0.84877 4.3603,2.15698 4.6102,2.90695 0.2501,0.75004 -0.418,2.6957 -1.4849,4.32358 -1.0665,1.62796 -2.3316,2.94686 -2.8111,2.93079 z m -71.5942,-5.29719 -1.7607,2.32802 v -2.99835 c 0,-1.64905 0.7755,-4.34756 1.7183,-5.99664 l 1.714,-2.9983 0.042,3.66861 c 0.023,2.01775 -0.7498,4.71624 -1.7183,5.99666 z m -138.2608,-6.76434 c -1.1543,-0.0541 -3.7179,-0.83882 -5.6969,-1.74491 -1.9788,-0.90609 -5.9494,-1.67187 -8.8233,-1.70161 l -5.2255,-0.054 0.661,-1.72246 0.661,-1.72236 -2.3529,-2.99114 c -1.294,-1.645 -1.9381,-3.24717 -1.4314,-3.56046 0.5068,-0.31313 4.5894,-0.27487 9.0725,0.0852 l 8.1512,0.65436 1.6635,3.21672 c 0.9149,1.76926 2.5086,3.91822 3.5415,4.77549 1.0331,0.85728 1.8782,2.30212 1.8782,3.21073 v 1.65183 z m -168.3515,-5.89926 c -0.5795,0 -1.0537,-0.97627 -1.0537,-2.16948 0,-1.19308 0.7654,-3.21612 1.701,-4.49557 l 1.7009,-2.32621 0.8591,0.8592 0.8591,0.8592 -1.5061,3.63635 c -0.8285,2.00013 -1.9807,3.63651 -2.5603,3.63651 z m 497.9271,-2.55782 c -0.3627,-0.0876 -3.8977,-0.94136 -7.8555,-1.89734 -3.9578,-0.95611 -12.323,-2.82657 -18.5896,-4.15677 -6.2665,-1.33017 -15.7112,-3.42538 -20.9882,-4.65627 -5.2771,-1.23088 -12.8016,-2.79755 -16.721,-3.48165 l -7.1263,-1.24382 -1.0341,-1.49725 -1.0342,-1.49735 0.6915,-8.29301 c 0.3802,-4.56117 0.9978,-9.51439 1.3726,-11.00707 0.3746,-1.4927 1.4173,-2.99644 2.3171,-3.34171 0.8997,-0.34527 7.0104,-0.99796 13.579,-1.45034 6.5688,-0.45237 12.6652,-1.29864 13.5474,-1.88043 l 1.6041,-1.05793 -2.0757,-1.59163 c -1.1416,-0.87539 -6.2686,-2.50563 -11.3936,-3.6228 -5.1249,-1.11719 -10.6673,-2.43549 -12.3163,-2.92973 l -2.9984,-0.89854 0.1631,-2.95168 c 0.09,-1.62341 0.6294,-6.99941 1.1993,-11.94665 l 1.0363,-8.99496 15.0578,-0.7305 c 8.2816,-0.40178 25.2823,-0.94148 37.7788,-1.19933 l 22.7212,-0.46883 -0.2136,7.56885 -0.2138,7.56885 -1.3707,1.65174 -1.3708,1.65182 -18.9231,-0.70388 -18.923,-0.70378 -0.9343,1.51177 -0.9344,1.51174 1.5954,0.98609 c 0.8776,0.54233 4.3198,1.34589 7.6495,1.78568 3.3299,0.43992 9.2924,1.55349 13.2499,2.47459 3.9579,0.9212 9.6248,2.40837 12.5931,3.30498 l 5.3971,1.63025 0.3563,7.34121 0.3564,7.34133 -1.2981,2.42552 -1.2981,2.42541 h -19.147 -19.1471 v 1.63481 1.63481 l 6.2964,1.91642 c 3.4631,1.05396 9.8046,2.50923 14.0923,3.23397 4.2876,0.72465 9.8194,1.84601 12.2931,2.49173 l 4.4974,1.17404 v 8.10914 8.10925 l -1.4392,1.43921 c -0.7917,0.79154 -1.736,1.36758 -2.099,1.28004 z m -571.0237,-1.04022 c -1.0537,0 -2.2756,-0.3598 -2.7154,-0.79961 -0.4397,-0.43966 -0.7995,-2.08635 -0.7995,-3.65913 v -2.85958 l 3.8978,-1.60362 c 2.1438,-0.88197 6.3264,-1.99771 9.2948,-2.47937 2.9684,-0.48154 6.8543,-1.62137 8.6356,-2.53274 1.7812,-0.9115 4.3549,-1.65723 5.7193,-1.65723 1.3644,0 6.1136,-1.2665 10.5537,-2.81436 4.4401,-1.54785 10.2318,-3.20125 12.8703,-3.67414 2.6385,-0.47289 8.1848,-2.19777 12.3252,-3.83293 4.1403,-1.63517 8.0531,-2.64849 8.6951,-2.25174 0.6419,0.39686 1.1673,1.39612 1.1673,2.22067 v 1.49941 l -5.6968,1.94375 c -3.1333,1.06896 -8.3954,2.87155 -11.6934,4.00565 -3.2984,1.13395 -7.3461,2.61201 -8.9951,3.28436 -1.649,0.67223 -5.6967,2.23817 -8.9949,3.47961 -3.2982,1.24153 -8.965,3.26204 -12.593,4.49016 -3.6279,1.22811 -9.5571,3.35968 -13.1756,4.73689 -3.6188,1.37718 -7.4416,2.50395 -8.4954,2.50395 z m 458.696,-0.36172 c -1.2474,0.13085 -4.9665,-0.73698 -8.2647,-1.92862 -3.2982,-1.19168 -12.2031,-4.46524 -19.789,-7.27444 -7.5858,-2.80919 -18.1099,-6.71672 -23.3868,-8.68349 -5.2772,-1.96666 -10.7926,-3.85227 -12.2566,-4.19023 -1.4641,-0.33796 -3.2788,-1.35776 -4.0328,-2.26638 l -1.3711,-1.65196 1.9068,-0.7317 1.9068,-0.73171 7.5231,2.50337 c 4.1377,1.37671 13.4597,4.16178 20.7156,6.18888 7.2559,2.02711 16.7007,4.71759 20.9883,5.97892 4.2877,1.26131 9.846,2.64211 12.352,3.06835 2.5059,0.42637 5.3163,1.53515 6.2452,2.4639 l 1.6888,1.68879 -0.9788,2.66417 -0.9786,2.6642 z m -363.5661,-6.44436 c -0.4947,0.29228 -2.2779,-0.89015 -3.9628,-2.62773 -1.6849,-1.73758 -3.422,-4.10363 -3.8602,-5.25799 -0.4382,-1.15435 -1.5153,-2.09882 -2.3936,-2.09882 -0.8782,0 -2.2444,0.64764 -3.036,1.4392 -0.7914,0.79155 -1.4392,2.41067 -1.4392,3.59798 0,1.18735 -0.5974,2.15881 -1.3276,2.15881 h -1.3276 l 0.6846,-1.78437 c 0.3766,-0.98142 1.0428,-4.48202 1.4801,-7.77921 l 0.7952,-5.99472 -1.4719,-3.55362 c -0.8095,-1.95442 -1.2502,-4.21901 -0.979,-5.03239 l 0.493,-1.47889 4.3706,8.60314 4.3706,8.60329 4.2517,3.73289 c 2.3384,2.05315 4.2516,4.45479 4.2516,5.33702 0,0.88211 -0.4047,1.84313 -0.8995,2.13541 z m 115.3233,-1.58924 c -0.3649,0 -0.4871,-0.91518 -0.2717,-2.03392 0.2154,-1.11862 2.1263,-3.0469 4.2462,-4.28499 l 3.8545,-2.25124 8.7346,-0.35296 8.7344,-0.35296 3.8979,1.57855 3.8979,1.57855 v 1.56033 1.56033 l -11.428,-0.41677 -11.4277,-0.41665 -4.7883,1.91581 c -2.6336,1.05372 -5.0869,1.91592 -5.4517,1.91592 z m 171.0767,-2.39866 c -0.585,0 -2.2996,-2.02385 -3.8101,-4.49748 -1.5105,-2.47362 -3.3834,-5.03718 -4.1617,-5.69681 -0.7786,-0.65962 -3.8205,-3.95635 -6.76,-7.3261 l -5.3442,-6.12678 -0.7636,-5.57053 c -0.42,-3.0638 -1.9199,-7.86257 -3.333,-10.66382 -1.4134,-2.80128 -4.7757,-7.81196 -7.4718,-11.13458 -2.6962,-3.32275 -7.7817,-8.44987 -11.301,-11.39363 -3.5192,-2.94387 -9.1922,-6.58913 -12.6066,-8.10088 -3.4144,-1.51162 -8.6514,-3.33905 -11.6377,-4.06082 -2.9864,-0.72186 -5.9297,-1.766 -6.5409,-2.32033 l -1.111,-1.00792 2.1287,-2.35211 2.1286,-2.35212 -0.8053,-5.172 c -0.4431,-2.84469 -1.0614,-6.08239 -1.3742,-7.19489 l -0.5688,-2.02292 -2.5478,-0.37574 c -1.4013,-0.20676 -2.782,-1.08612 -3.068,-1.95432 l -0.5201,-1.57832 2.5251,-0.66035 c 1.3886,-0.36315 2.521,-1.272 2.5165,-2.01954 0,-0.74766 -1.095,-5.89195 -2.4229,-11.43165 -1.3281,-5.53983 -2.1352,-10.93681 -1.7938,-11.9933 0.3416,-1.05661 2.3764,-2.92072 4.5218,-4.14259 2.1455,-1.22188 10.3705,-5.50182 18.2778,-9.51082 l 14.3769,-7.28916 10.2094,-2.1354 c 5.6152,-1.17439 11.6616,-2.15663 13.4367,-2.18266 1.775,-0.0264 3.4735,0.35754 3.7742,0.85224 0.3008,0.49473 -0.192,7.10603 -1.0951,14.69179 -0.9032,7.58575 -2.4887,18.10986 -3.5233,23.3869 -1.0346,5.27708 -2.3678,14.91489 -2.9626,21.41729 l -1.0815,11.82263 -2.1053,2.32633 -2.1052,2.32623 -3.0609,-0.35668 -3.061,-0.35657 0.4182,-8.69514 0.418,-8.69512 h -1.1814 -1.1814 l -0.8666,5.69681 c -0.4765,3.13323 -1.0765,7.81961 -1.3329,10.41424 l -0.4666,4.71745 -2.4011,2.55576 c -1.3205,1.40576 -2.4011,3.15905 -2.4011,3.89616 0,0.73709 1.5675,2.45634 3.4833,3.82046 1.9159,1.36422 4.5306,2.48033 5.8107,2.48033 1.2802,0 5.5709,-2.09644 9.5352,-4.65855 l 7.2077,-4.65867 2.573,-5.31473 c 1.4149,-2.92299 2.5726,-6.74502 2.5726,-8.49328 0,-1.74827 -0.8823,-5.02892 -1.9606,-7.29035 l -1.9609,-4.11192 0.7843,-3.12485 0.7843,-3.12485 h 2.8885 2.8885 l 2.4816,3.15485 c 1.3648,1.73529 3.0788,5.37263 3.8086,8.08311 l 1.327,4.92816 -0.721,5.26049 c -0.3965,2.89327 -2.3625,10.0414 -4.3688,15.88465 l -3.6479,10.62425 3.6461,9.1058 c 2.0054,5.00816 3.9818,11.20498 4.3922,13.7707 l 0.7459,4.66493 -2.9708,5.73721 -2.9706,5.73724 0.5962,1.79898 c 0.3278,0.98945 1.5109,3.14825 2.6287,4.79732 1.1179,1.64908 2.3732,3.94281 2.7897,5.09715 l 0.7571,2.09882 z m -387.3404,-9.59463 c -0.4963,0 -1.2624,-0.3598 -1.7021,-0.79958 -0.4399,-0.43968 -0.7996,-2.29229 -0.7996,-4.11683 V 715.83 l 2.0987,-0.59595 c 1.1545,-0.32764 5.8768,-1.3959 10.4942,-2.37384 4.6173,-0.97791 11.9034,-2.3352 16.191,-3.01607 4.2875,-0.68097 12.3829,-2.13192 17.99,-3.22428 5.6069,-1.09246 13.6711,-2.74585 17.9206,-3.67425 l 7.7263,-1.68794 1.0976,1.09762 1.0974,1.09751 -2.6364,1.41101 c -1.45,0.77608 -7.8494,2.7587 -14.2207,4.40587 -6.3715,1.64716 -15.7093,4.01163 -20.7504,5.25449 -5.0411,1.24287 -11.2477,3.05601 -13.7923,4.02926 -2.5445,0.97339 -8.0431,2.61132 -12.2191,3.63996 -4.176,1.02868 -7.9988,1.87024 -8.4952,1.87024 z m 469.1641,-0.0181 c -1.1705,-0.0121 -2.9379,-0.54148 -3.9274,-1.18097 -0.9893,-0.63948 -3.0267,-1.17091 -4.5275,-1.18098 -1.5005,-0.0121 -5.8181,-1.11993 -9.5945,-2.46616 -3.7765,-1.34639 -10.9139,-3.47402 -15.8611,-4.72814 -4.9474,-1.25413 -11.4238,-2.92192 -14.392,-3.70629 -2.9684,-0.78424 -8.224,-2.2365 -11.6791,-3.22715 -3.4552,-0.99065 -6.8945,-2.539 -7.6428,-3.44051 l -1.3605,-1.63973 h 1.7458 c 0.9603,0 4.9393,0.56381 8.8421,1.25294 3.9029,0.68913 14.6519,2.62341 23.8868,4.2984 9.2348,1.67486 21.1082,3.89422 26.3851,4.93189 5.2771,1.03752 10.2915,2.51786 11.1433,3.28952 l 1.5484,1.40309 -1.2191,3.20605 -1.2189,3.20606 z m -236.5212,-7.17797 c -1.1995,0 -2.8529,-0.80955 -3.6741,-1.79899 -0.8211,-0.98946 -2.656,-1.79899 -4.0776,-1.79899 -1.4215,0 -3.784,-0.84014 -5.2502,-1.867 -1.4659,-1.02688 -2.6654,-2.64596 -2.6654,-3.59799 v -1.731 h 3.4362 3.4362 l 3.0495,-2.39866 c 1.6771,-1.31926 3.8768,-2.39865 4.8883,-2.39865 1.0113,0 2.1724,0.5397 2.58,1.19932 0.4076,0.65964 2.5386,1.19933 4.7353,1.19933 h 3.994 l 2.821,2.28426 2.8209,2.28424 -2.2531,2.48968 -2.253,2.48958 -4.0464,0.75905 c -2.2253,0.41748 -4.3418,1.23758 -4.7033,1.82249 -0.3615,0.58479 -1.6388,1.06333 -2.8383,1.06333 z m -232.1356,-14.3959 -2.928,1.1131 -1.8394,-1.83954 c -1.0118,-1.01175 -1.8396,-2.84865 -1.8396,-4.0818 0,-1.23327 0.4408,-2.51476 0.9797,-2.84768 0.5389,-0.33305 5.5312,-1.19106 11.0938,-1.90647 5.5629,-0.71551 16.5903,-2.05288 24.5061,-2.97206 7.9155,-0.91916 20.1936,-2.04653 27.2846,-2.50528 l 12.8928,-0.83411 v 1.29635 c 0,0.713 -2.2936,1.91711 -5.0971,2.67568 -2.8034,0.75871 -9.6846,2.06718 -15.2915,2.90779 -5.6069,0.8406 -18.4381,2.95766 -28.5141,4.7046 -10.0759,1.74696 -19.6374,3.67714 -21.2473,4.28942 z m 81.7436,1.2033 c -0.2199,0 -0.7594,-0.3598 -1.1993,-0.79959 -0.4397,-0.43967 -0.7996,-3.37622 -0.7996,-6.52542 v -5.72609 l 1.1994,-0.74117 1.1993,-0.7412 v 7.26674 c 0,3.99664 -0.1798,7.26673 -0.3998,7.26673 z m 391.6811,-1.4297 -2.0989,1.05336 -5.2216,-1.57063 c -2.8715,-0.86389 -9.6178,-2.16098 -14.9913,-2.88236 -5.3737,-0.7214 -12.7386,-2.03837 -16.3666,-2.92661 -3.6281,-0.88821 -9.8346,-1.94843 -13.7923,-2.35595 -3.9578,-0.40765 -10.8389,-1.64141 -15.2915,-2.74179 -4.4525,-1.10039 -8.0954,-2.51307 -8.0954,-3.1395 v -1.13875 l 13.4924,0.83618 c 7.4209,0.45993 20.4572,1.63995 28.9696,2.62234 8.5123,0.98236 19.4792,2.29347 24.3705,2.91363 4.8916,0.62017 9.3953,1.43776 10.0087,1.81688 0.6132,0.37897 1.1151,1.98752 1.1151,3.57447 v 2.88536 z M 3002.531,686.16577 c -1.9354,0.28016 -6.7574,0.0409 -10.7152,-0.5331 -3.9578,-0.57328 -10.287,-1.67679 -14.0651,-2.45215 l -6.8692,-1.40968 0.6435,-1.04128 0.6436,-1.04112 h 19.1185 19.1183 v 1.01342 c 0,0.55745 -0.98,1.90022 -2.1775,2.98406 -1.1975,1.08395 -3.7611,2.19981 -5.6969,2.47985 z m 37.1865,-2.31926 -3.6694,1.5253 -4.4259,-2.27069 c -2.4344,-1.24886 -4.4261,-2.71744 -4.4261,-3.26361 0,-0.54605 4.4526,-1.33952 9.8946,-1.76312 5.4418,-0.42362 13.1325,-0.7652 17.0902,-0.75908 3.9579,0 7.9424,0.48393 8.8549,1.06178 l 1.659,1.05061 -3.4579,0.65532 c -1.9018,0.36039 -6.696,1.01139 -10.6539,1.44675 -3.9578,0.43523 -8.8472,1.4778 -10.8655,2.31674 z m -168.9665,0.63924 c -0.3669,0 -0.667,-0.87442 -0.667,-1.94328 0,-1.06869 1.4841,-4.28723 3.298,-7.15206 1.814,-2.86498 3.703,-5.22873 4.1977,-5.25283 0.4946,-0.0241 0.8994,0.46401 0.8994,1.08479 0,0.62066 -0.5243,1.45263 -1.1651,1.84866 -0.6409,0.396 -2.2296,3.1264 -3.5305,6.06739 -1.301,2.94099 -2.6657,5.34733 -3.0325,5.34733 z m -87.7185,-3.60038 c -1.3742,9.9e-4 -2.8583,-0.35741 -3.2981,-0.7972 -0.4397,-0.43968 -0.7995,-2.32862 -0.7995,-4.19764 v -3.39807 l 2.0987,0.0157 c 1.1544,0.0121 18.3646,-0.31675 38.2447,-0.72296 19.88,-0.40633 37.3397,-0.35966 38.7991,0.10312 l 2.6533,0.84205 -1.0202,1.00993 c -0.5611,0.55555 -9.9252,1.59598 -20.8092,2.31233 -10.8839,0.71623 -27.3448,2.09594 -36.5795,3.0662 -9.2349,0.97015 -17.9151,1.76493 -19.2893,1.76626 z m 300.4327,-0.37827 c -0.9348,0.12044 -2.3777,-0.0611 -3.2062,-0.40227 -0.8287,-0.34168 -1.2016,-1.11488 -0.8289,-1.71814 0.3728,-0.60328 2.0403,-1.09691 3.7054,-1.09691 h 3.0276 l -0.4993,1.49916 c -0.2745,0.82453 -1.264,1.59776 -2.1986,1.71816 z m 174.0021,-0.06 c -2.9683,0.0876 -11.8734,-0.56367 -19.789,-1.44698 -7.9156,-0.8833 -22.9654,-2.18254 -33.444,-2.88727 -10.4787,-0.70461 -19.5275,-1.57496 -20.1085,-1.93392 -0.5808,-0.35907 -0.7455,-1.15519 -0.3661,-1.76924 l 0.69,-1.11647 18.2191,0.14608 c 10.0205,0.0803 27.6636,0.48513 39.2072,0.89949 l 20.9882,0.75345 v 3.59797 3.59799 z m -347.5092,-11.66469 c -1.1525,-0.0611 -5.0636,-1.2978 -8.6916,-2.74707 l -6.5963,-2.63504 -1.5573,-5.34841 c -0.8564,-2.94148 -2.0463,-7.23722 -2.6441,-9.54594 -0.5979,-2.30871 -1.902,-10.40417 -2.8985,-17.98994 -0.9962,-7.58576 -2.3875,-18.84291 -3.0916,-25.01585 l -1.2803,-11.22368 1.2212,-1.47158 c 0.6717,-0.80932 3.5226,-2.16636 6.3356,-3.01559 2.8129,-0.84925 7.671,-2.32849 10.7959,-3.28724 l 5.6815,-1.74324 15.3067,9.25045 c 8.4186,5.08765 16.7908,10.29262 18.6049,11.56657 l 3.2981,2.31624 v 3.40945 c 0,1.87528 -1.0725,6.83069 -2.3832,11.01214 -1.3107,4.18146 -2.3901,9.10027 -2.3987,10.9308 -0.015,1.83041 -1.0949,6.39915 -2.4141,10.15268 -1.3191,3.75354 -2.3986,8.0366 -2.3986,9.51799 v 2.69336 l -2.4402,2.27333 c -1.3421,1.25029 -6.4707,4.23962 -11.3971,6.64296 -4.9262,2.40334 -9.8998,4.31926 -11.0523,4.25761 z m 389.2918,-8.8213 -2.0586,0.65338 -1.2851,-2.40092 c -0.7067,-1.32059 -1.6232,-5.63769 -2.0366,-9.59356 l -0.7519,-7.1925 5.5255,-1.39135 c 3.039,-0.76528 6.126,-2.11501 6.86,-2.9995 l 1.3347,-1.6082 -0.7795,-2.45623 -0.7796,-2.45622 -2.6176,-0.1215 c -1.4396,-0.0672 -4.3325,-0.0288 -6.4282,0.084 l -3.8104,0.2058 -1.2866,-2.40418 c -0.7078,-1.32214 -1.2868,-5.48741 -1.2868,-9.25593 v -6.8519 l -2.2748,-6.71937 c -1.2513,-3.69573 -3.7757,-12.26339 -5.6103,-19.03923 l -3.3355,-12.31976 1.47,-1.47253 1.4701,-1.47253 29.626,-0.59967 29.626,-0.59967 -0.3607,-6.82131 -0.3608,-6.82142 2.3425,-1.25366 c 1.2884,-0.68948 4.0489,-1.39783 6.1344,-1.57401 l 3.7919,-0.3202 3.9886,11.82501 c 2.1936,6.50373 4.3267,13.93994 4.7401,16.52497 l 0.7514,4.69993 -5.7163,2.50108 -5.7165,2.50097 -24.8262,-0.67007 -24.8263,-0.67017 -0.7462,2.35139 -0.7463,2.35141 1.4039,4.25401 1.4039,4.25404 -2.0343,2.24788 -2.0344,2.24791 0.7881,1.27489 0.7878,1.27488 h 32.9406 32.9403 l 1.0002,2.6985 c 0.55,1.48418 1.7136,7.97098 2.5856,14.4151 l 1.5856,11.71673 -1.1161,1.05433 c -0.614,0.57976 -5.164,2.11561 -10.1112,3.41281 -4.9473,1.29731 -13.3125,3.57795 -18.5896,5.06825 -5.277,1.49029 -13.1026,3.66466 -17.3903,4.83197 -4.2876,1.1673 -11.019,2.9909 -14.9585,4.05242 -3.9398,1.06153 -8.0896,2.22415 -9.222,2.58359 z m 22.8096,-24.66828 c 1.0839,-0.0121 5.8224,-1.02124 10.5304,-2.24432 4.708,-1.22308 9.2182,-2.6305 10.0225,-3.12774 l 1.4627,-0.90392 -1.6272,-1.03107 c -0.895,-0.56705 -5.7714,-1.03934 -10.8363,-1.04941 l -9.2092,-0.0181 -1.8848,1.88464 c -1.0363,1.03656 -1.8846,2.07183 -1.8846,2.30056 0,0.22881 0.3277,1.26959 0.7281,2.313 0.4004,1.04341 1.6147,1.88787 2.6984,1.87661 z m -503.0071,23.98874 -37.2392,0.0181 -1.4392,-1.43921 c -0.7915,-0.79155 -1.4391,-2.34456 -1.4391,-3.45119 0,-1.1065 0.7587,-2.64164 1.6861,-3.41126 l 1.6861,-1.39937 17.8031,1.85393 c 9.7916,1.01953 25.786,2.38821 35.5431,3.04125 9.7571,0.65305 19.1182,1.53311 20.8024,1.95587 l 3.0621,0.76854 -1.6131,1.0223 -1.6132,1.02243 z m 404.4938,0.0182 h -37.0393 l 0.4904,-1.49917 0.4904,-1.49915 10.7033,-0.92864 c 5.887,-0.5108 22.2749,-1.97567 36.4178,-3.25534 l 25.7143,-2.32657 1.5703,1.30331 c 0.8638,0.71683 1.5705,2.20869 1.5705,3.31519 0,1.10662 -0.6476,2.65963 -1.4392,3.45117 l -1.4391,1.4392 z m -128.9786,-1.1993 c -0.5447,0 -2.0823,-1.21433 -3.417,-2.69849 -1.3347,-1.48417 -3.5875,-5.26207 -5.0063,-8.39531 -1.4189,-3.13325 -3.7283,-8.16899 -5.1322,-11.19047 l -2.5525,-5.49365 -5.7754,-5.77536 c -3.1764,-3.17644 -8.0993,-7.44628 -10.94,-9.48838 -2.8405,-2.04209 -6.9416,-4.86351 -9.1136,-6.26986 -2.1719,-1.40633 -3.6936,-2.81253 -3.3812,-3.12485 0.3123,-0.3123 2.0895,0.22859 3.9491,1.20185 1.8596,0.97336 4.9576,2.51021 6.8846,3.41508 1.9269,0.90491 7.1637,5.18652 11.6374,9.51465 l 8.134,7.86941 3.6531,7.72187 c 2.0091,4.24706 3.6535,8.2906 3.6539,8.98574 5e-4,0.69514 1.8899,3.09476 4.1986,5.33245 l 4.1977,4.0685 v 2.16346 c 0,1.18987 -0.4456,2.16336 -0.9902,2.16336 z m -245.7718,-14.60155 c -4.4525,-0.11517 -10.5241,-0.40035 -13.4925,-0.6335 -2.9684,-0.23314 -12.4131,-1.2768 -20.9882,-2.31924 -8.5753,-1.04248 -18.9497,-2.16865 -23.0545,-2.50254 l -7.4632,-0.60709 -1.2836,-1.54667 -1.2835,-1.54666 0.8095,-3.22595 0.8098,-3.22583 3.1396,0.59103 c 1.727,0.32501 11.1316,1.98237 20.8993,3.6829 9.7677,1.70052 18.2288,3.382 18.8026,3.73651 0.5738,0.35465 6.795,1.45227 13.825,2.43909 7.0299,0.98679 13.8152,2.34732 15.0785,3.02339 1.2631,0.67604 2.2966,1.47996 2.2966,1.78664 0,0.30653 -3.643,0.46317 -8.0954,0.34792 z m 343.0082,0.18996 c -2.8034,0.0121 -5.0972,-0.43476 -5.0972,-0.98991 0,-0.55518 2.0865,-1.63459 4.6367,-2.39866 2.5502,-0.76411 6.1312,-1.3892 7.9579,-1.3892 1.8266,0 10.0357,-1.3833 18.2422,-3.074 8.2066,-1.69057 19.8721,-3.89422 25.9231,-4.89675 6.0513,-1.0025 12.3515,-1.91292 14.0006,-2.02315 l 2.9983,-0.20039 v 4.19765 4.19764 l -7.7956,0.7617 c -4.2876,0.41894 -12.653,1.37876 -18.5897,2.13302 -5.9366,0.75425 -16.7307,1.88689 -23.9866,2.51703 -7.2559,0.63002 -15.4863,1.15434 -18.2897,1.16502 z m -461.0944,-8.46403 c -1.5104,-0.0491 -6.794,-1.1053 -11.7412,-2.34827 -4.9472,-1.243 -10.3443,-2.28905 -11.9933,-2.32455 -1.6492,-0.0359 -8.3559,-1.39806 -14.9041,-3.02772 l -11.9058,-2.96316 -3.2136,-3.07892 -3.2138,-3.07892 -1.3712,-4.577 c -0.7542,-2.51739 -1.3656,-6.40335 -1.3584,-8.63552 0.015,-2.23222 0.7843,-6.60005 1.727,-9.70643 0.9426,-3.10627 2.919,-7.27789 4.392,-9.27021 l 2.6782,-3.62235 4.0662,-1.34204 4.0663,-1.34194 9.8184,0.82466 c 5.4001,0.45347 15.7551,2.39483 23.0111,4.31387 7.2559,1.91917 14.2211,3.49004 15.478,3.49113 1.2571,9.9e-4 4.091,1.37899 6.2977,3.06212 2.2068,1.68316 4.8214,4.62475 5.8101,6.53672 l 1.7977,3.47648 v 7.10471 7.10484 l -1.8305,5.18829 c -1.0069,2.85369 -2.7608,6.2171 -3.8979,7.47447 -1.1369,1.25724 -4.0696,3.30787 -6.5169,4.55696 -2.4474,1.24911 -5.6856,2.23135 -7.196,2.18278 z m 1.0535,-19.25296 c 1.4303,0.0841 3.454,-0.17558 4.4975,-0.57602 l 1.897,-0.728 v -2.19957 c 0,-1.20978 -0.6746,-2.63613 -1.4992,-3.16982 -0.8244,-0.5336 -5.5469,-1.92192 -10.4941,-3.08515 -4.9472,-1.16325 -13.5824,-2.89567 -19.1892,-3.84985 -5.6069,-0.95419 -12.2672,-2.33511 -14.8006,-3.06873 -2.5338,-0.73364 -5.3672,-1.04198 -6.2966,-0.6853 -0.9297,0.35668 -1.6902,1.67883 -1.6902,2.938 0,1.25916 0.6748,2.81148 1.4994,3.4495 0.8245,0.63804 3.9277,1.78209 6.896,2.54234 2.9684,0.76038 8.6351,1.91162 12.593,2.55842 3.9577,0.6468 10.9738,2.19884 15.5915,3.44903 4.6174,1.25018 9.5653,2.34145 10.9955,2.42515 z m 131.4246,14.42136 c -1.814,-0.0672 -8.4252,-1.18074 -14.6918,-2.47423 -6.2665,-1.29348 -18.1398,-3.63731 -26.3852,-5.20855 -8.2455,-1.57125 -18.7696,-3.50169 -23.387,-4.28989 -4.6173,-0.78821 -9.6095,-1.88392 -11.0937,-2.43488 l -2.6984,-1.00181 v -2.28148 c 0,-1.25485 0.789,-2.93643 1.7535,-3.73675 l 1.7535,-1.45539 6.3419,1.2978 c 3.4881,0.71371 10.6596,2.62318 15.9365,4.24333 5.2771,1.62007 13.6425,4.01645 18.5896,5.3254 4.9473,1.30882 13.8524,3.72619 19.789,5.37192 5.9367,1.64571 12.2781,3.31217 14.0921,3.70317 1.814,0.39098 3.2982,1.24033 3.2982,1.88738 v 1.17654 z m 318.4348,0.12256 c -0.424,0 -1.1049,-0.54064 -1.5133,-1.20161 l -0.7426,-1.20148 3.1485,-1.19719 c 1.7318,-0.6583 3.857,-1.19704 4.7231,-1.19704 0.8659,0 3.4773,-0.79502 5.8031,-1.76686 2.3258,-0.97181 7.6536,-2.53896 11.8399,-3.48261 4.1862,-0.94363 11.9289,-2.85788 17.2059,-4.25376 5.2769,-1.39603 12.5629,-3.55628 16.1909,-4.80056 3.6279,-1.2443 9.1351,-2.64034 12.2382,-3.10218 l 5.6419,-0.83978 0.7675,3.05804 c 0.4222,1.68194 0.4429,3.58336 0.045,4.22536 -0.3968,0.64201 -4.6302,1.98044 -9.4077,2.97434 -4.7775,0.99387 -16.7818,3.24214 -26.6762,4.99615 -9.8944,1.75393 -22.6035,4.22407 -28.2422,5.48909 -5.6387,1.26506 -10.599,2.30009 -11.0229,2.30009 z m -88.7106,-4.15016 c -0.2944,0.29432 -1.7354,-1.86747 -3.202,-4.80416 l -2.6667,-5.33953 -7.7359,-6.79179 c -4.2548,-3.73557 -7.7361,-7.27947 -7.7361,-7.87551 v -1.08372 l 3.6082,1.8659 c 1.9844,1.02615 6.5554,4.86065 10.1578,8.52089 l 6.5495,6.65508 0.7803,4.15878 c 0.429,2.28737 0.5393,4.39963 0.2449,4.69406 z m -230.3238,-11.52881 c -2.1438,-0.0481 -6.8663,-1.16285 -10.4941,-2.47708 -3.6281,-1.31411 -10.3742,-3.43176 -14.9917,-4.70592 -4.6174,-1.27405 -13.2526,-3.69549 -19.1892,-5.38092 -5.9367,-1.68555 -14.302,-3.98094 -18.5897,-5.10086 l -7.7956,-2.03647 -0.3577,-2.50359 -0.3577,-2.50361 1.856,-1.54031 1.856,-1.54029 4.4984,1.25487 c 2.4739,0.69033 11.7842,4.02146 20.6893,7.4026 8.905,3.38116 18.3497,6.87924 20.9882,7.77358 2.6386,0.89422 8.0129,2.8002 11.943,4.23544 3.9301,1.43511 8.6524,3.38858 10.4941,4.34097 1.8417,0.95239 3.3485,1.98753 3.3485,2.30043 0,0.31289 -1.7541,0.52938 -3.8978,0.48116 z m 316.9027,0.0876 h -4.1116 l 2.5226,-1.76696 c 1.3875,-0.97183 6.2299,-3.16934 10.7611,-4.88344 4.531,-1.71395 10.6669,-3.88654 13.6352,-4.82777 2.9684,-0.94124 6.4764,-2.18709 7.7956,-2.76865 1.3193,-0.58157 6.1766,-2.41689 10.7941,-4.07844 4.6174,-1.66167 12.2304,-4.47939 16.9177,-6.26146 4.6874,-1.78209 9.5448,-3.04523 10.794,-2.80691 l 2.2715,0.4332 0.4014,2.82467 c 0.2207,1.55348 -0.072,3.29791 -0.6506,3.87646 -0.5786,0.57854 -5.0769,2.15327 -9.9961,3.4994 -4.9192,1.34601 -11.3726,2.96835 -14.341,3.60495 -2.9684,0.63661 -8.6351,2.1938 -12.593,3.4603 -3.9577,1.26649 -12.3469,3.96593 -18.6427,5.99868 -6.2957,2.03275 -13.2968,3.69597 -15.5582,3.69597 z m -307.9078,-12.0676 c -0.4946,-0.0407 -3.0582,-1.06069 -5.6967,-2.26602 -2.6386,-1.20543 -7.7658,-3.29287 -11.3938,-4.63876 -3.6279,-1.34588 -10.3741,-3.86148 -14.9915,-5.59031 -4.6174,-1.72872 -12.1733,-4.67691 -16.7907,-6.55157 -4.6174,-1.87466 -11.4774,-4.60004 -15.2443,-6.05627 -3.767,-1.45622 -7.4737,-3.40033 -8.2373,-4.32046 l -1.3883,-1.67282 1.9416,-2.96318 1.9415,-2.96319 9.5316,4.75619 c 5.2423,2.61584 9.7777,4.75618 10.0785,4.75618 0.3008,0 10.9881,5.05588 23.7493,11.2353 12.761,6.17957 24.1465,11.55951 25.3009,11.95578 1.1543,0.39613 2.0987,1.54675 2.0987,2.55683 0,1.01022 -0.4047,1.8032 -0.8995,1.7623 z m 301.0609,-1.12497 h -2.8692 l 0.6834,-1.10577 c 0.3758,-0.60807 4.0505,-2.71145 8.1662,-4.67404 4.1156,-1.96246 13.9592,-6.66696 21.8748,-10.45431 7.9156,-3.78736 20.1356,-9.69862 27.1554,-13.13626 l 12.7633,-6.25007 1.9286,1.07928 1.9282,1.07917 v 2.92264 2.92264 l -4.4974,1.92864 c -2.4736,1.06081 -7.1959,2.90105 -10.4941,4.0896 -3.2982,1.18842 -9.5048,3.60615 -13.7923,5.37263 -4.2876,1.7665 -9.4964,3.98119 -11.575,4.92156 -2.0785,0.94029 -4.2374,1.72057 -4.7972,1.734 -0.5599,0.0136 -5.7419,1.81376 -11.5153,4.00085 -5.7735,2.18711 -10.8556,4.33485 -11.2937,4.77297 -0.4381,0.438 -2.0877,0.79647 -3.6657,0.79647 z m -84.1297,-1.19933 c -0.6175,0 -2.8501,-3.06059 -4.9611,-6.80127 -2.1111,-3.74058 -6.4316,-9.54234 -9.6014,-12.89279 l -5.7629,-6.09151 -11.4966,-5.39699 c -6.3231,-2.96834 -11.4945,-5.93668 -11.4922,-6.59631 0,-0.65964 6.3419,-8.24599 14.0875,-16.85863 7.7455,-8.61261 17.13,-19.12006 20.8543,-23.34972 l 6.7717,-7.69047 19.0139,0.33616 19.0139,0.33618 1.4493,1.88632 c 0.7968,1.03741 2.0713,4.91713 2.8316,8.6216 0.7606,3.70437 2.6719,10.78486 4.2478,15.73437 1.5757,4.94951 2.8651,9.92108 2.8651,11.04809 0,1.12702 1.3101,6.175 2.9115,11.2177 1.6014,5.04269 2.623,9.92061 2.2703,10.83967 l -0.6412,1.671 h -4.4657 -4.4659 l -5.3002,2.76364 c -2.9153,1.5199 -12.4346,6.91688 -21.1539,11.99329 -8.7193,5.07627 -16.3585,9.22967 -16.9758,9.22967 z m -139.8742,-1.5866 c -0.6597,0.18208 -6.5958,-2.893 -13.1916,-6.83353 -6.5957,-3.94051 -12.1659,-7.68565 -12.3782,-8.32251 -0.2122,-0.63672 0.7318,-5.23169 2.0978,-10.21084 1.366,-4.97927 2.4837,-9.317 2.4837,-9.6395 0,-0.32237 -0.5589,-0.58622 -1.242,-0.58622 -0.683,0 -2.2952,2.29372 -3.5829,5.09714 -1.2874,2.80342 -3.0222,6.17656 -3.8551,7.49581 -0.8329,1.31928 -1.9892,2.74382 -2.5699,3.16563 -0.5807,0.4218 -2.8743,-0.30619 -5.0972,-1.61766 l -4.0416,-2.3845 v -8.08624 c 0,-4.44736 0.3528,-16.23472 0.7839,-26.19407 0.431,-9.95936 1.1852,-18.75739 1.6757,-19.55122 l 0.892,-1.44329 21.4114,1.51405 21.4113,1.51389 3.8978,2.3531 c 2.1439,1.2942 3.8978,2.74407 3.8978,3.22176 0,0.4778 5.1093,5.12532 11.354,10.32777 6.2449,5.20247 11.6402,10.2045 11.9898,11.11563 l 0.6357,1.65664 -3.6241,5.00827 c -1.9932,2.75463 -9.9522,13.34686 -17.6865,23.53853 -7.7344,10.19165 -14.6022,18.67919 -15.2618,18.86136 z m -78.0314,-13.34336 c -0.6184,0.11637 -10.3211,-4.44545 -21.5615,-10.13745 -11.2405,-5.69191 -25.0028,-12.43104 -30.583,-14.97569 -5.5801,-2.54471 -10.4843,-5.15998 -10.8981,-5.81157 -0.414,-0.6516 -0.4815,-2.22141 -0.1508,-3.48862 0.3312,-1.26709 1.4951,-2.78159 2.5862,-3.36555 l 1.9839,-1.06165 8.3604,5.23938 c 4.5982,2.88176 12.3557,7.55926 17.2387,10.39459 4.883,2.83522 10.28,5.98275 11.9933,6.9945 1.7134,1.01175 7.5922,4.44626 13.064,7.63218 l 9.949,5.79276 -0.4291,1.28771 c -0.2362,0.70831 -0.9353,1.38307 -1.5538,1.49941 z m 321.7951,-9.63938 -20.0886,9.94866 -0.7417,-1.20002 c -0.4079,-0.66 0,-1.90755 0.8994,-2.77225 0.9025,-0.86472 10.2763,-6.53972 20.8304,-12.61095 10.5541,-6.07125 22.4274,-13.13878 26.3853,-15.70547 3.9577,-2.56679 8.2752,-5.14573 9.5946,-5.73088 l 2.3986,-1.06391 2.0989,1.85211 c 1.1543,1.01861 2.0987,2.86303 2.0987,4.09872 v 2.24669 l -11.6935,5.49436 c -6.4313,3.02184 -20.7333,9.97123 -31.7821,15.44294 z m -440.1464,8.97806 c -1.5542,0 -3.3621,-0.5361 -4.0173,-1.19129 -0.6551,-0.65519 -4.676,-2.59882 -8.9349,-4.31913 -4.2591,-1.72034 -10.3073,-4.15257 -13.4406,-5.40503 -3.1331,-1.25246 -8.2604,-3.30165 -11.3936,-4.55386 -3.1333,-1.25222 -11.0938,-4.44592 -17.6901,-7.09728 l -11.9934,-4.8207 -0.384,-2.50336 -0.3841,-2.50348 3.1178,-6.59019 3.1176,-6.5902 h 1.464 c 0.8053,0 5.4569,1.6312 10.3372,3.61981 4.8803,1.98875 9.1296,3.35945 9.443,3.04596 0.3134,-0.31339 0.2626,-1.37049 -0.1131,-2.34914 -0.3755,-0.97865 -4.2756,-4.60292 -8.6669,-8.05386 l -7.9842,-6.2744 0.6272,-3.69142 c 0.3447,-2.03022 1.4869,-5.71517 2.5381,-8.1888 l 1.9112,-4.49748 h 1.8189 c 1.0005,0 6.9389,4.62402 13.1967,10.27574 6.2575,5.65172 12.8527,11.04535 14.6556,11.986 l 3.2782,1.71009 8.9949,0.10914 c 4.9474,0.06 12.2331,0.52182 16.191,1.02687 3.9577,0.50516 7.8706,0.67175 8.6951,0.37022 0.8246,-0.30149 1.4992,-1.27488 1.4992,-2.16296 0,-0.88799 -1.2145,-2.47866 -2.6986,-3.53456 -1.4841,-1.05589 -6.2065,-4.12917 -10.4941,-6.82947 -4.2875,-2.70028 -11.3036,-7.17931 -15.5913,-9.95322 -4.2875,-2.77406 -12.5584,-8.15244 -18.3795,-11.95205 -5.8211,-3.7996 -10.8647,-7.64009 -11.2078,-8.53431 l -0.6241,-1.62605 6.9345,-11.13086 c 3.8139,-6.12197 8.5586,-12.88499 10.5436,-15.02878 l 3.6092,-3.89783 h 5.956 5.9557 l 5.5024,3.16479 c 3.0263,1.7406 6.4492,3.98513 7.6063,4.98778 1.157,1.00264 2.6733,3.93811 3.3695,6.52327 l 1.2657,4.70016 4.617,-0.78003 4.6173,-0.78004 4.0065,2.02805 c 2.2037,1.11551 8.4591,5.02987 13.901,8.69862 5.442,3.66889 9.8945,7.29913 9.8945,8.06742 0,0.76829 -1.0301,2.32898 -2.289,3.46834 -1.259,1.13936 -2.9275,3.61285 -3.7079,5.49677 -0.7801,1.88378 -2.1035,3.6878 -2.9406,4.00912 l -1.5218,0.58395 -12.8306,-8.29349 c -7.0567,-4.55781 -13.8206,-8.28987 -15.0305,-8.28987 -1.21,0 -2.4906,0.75712 -2.8458,1.6824 -0.355,0.9253 -0.015,2.48719 0.7712,3.47087 0.7792,0.98357 6.9487,5.35632 13.71,9.71719 l 12.2931,7.92878 v 2.29215 c 0,1.26075 -2.6985,6.32684 -5.9967,11.25799 -3.298,4.93117 -6.002,9.69874 -6.0083,10.59451 -0.015,0.89591 -1.3308,4.46234 -2.9432,7.92543 l -2.9314,6.29647 h -1.634 c -0.8986,0 -4.8362,-0.54845 -8.7502,-1.21887 -3.914,-0.67033 -8.8705,-1.50432 -11.0142,-1.85335 l -3.8979,-0.63442 v 1.88293 1.88309 l 3.2982,1.20146 c 1.8139,0.66073 4.9172,1.97145 6.8961,2.9127 1.979,0.94125 5.2172,2.19873 7.196,2.79444 l 3.5981,1.08322 -0.1551,3.56958 c -0.084,1.9633 -1.2693,6.0884 -2.631,9.16708 l -2.4761,5.59738 z m -9.1308,-91.20781 c 1.0838,0.0323 2.3111,-0.82885 2.7274,-1.91364 l 0.7569,-1.97242 -2.0488,-2.26397 c -1.127,-1.24515 -3.8825,-3.39734 -6.1238,-4.78247 l -4.0752,-2.51857 -1.831,1.83102 -1.8311,1.83102 1.0863,1.94099 c 0.5972,1.06753 2.9497,3.25677 5.2274,4.86507 2.2778,1.60831 5.0282,2.95059 6.1119,2.98297 z m 142.2429,82.81249 c -0.1681,0 -5.7,-3.16273 -12.2931,-7.0283 -6.5931,-3.86566 -21.4322,-12.77034 -32.9756,-19.78821 -11.5436,-7.01776 -21.5053,-13.53804 -22.1372,-14.48933 l -1.1489,-1.72956 2.2342,-2.46893 c 1.2289,-1.35789 2.5733,-2.46883 2.9877,-2.46883 0.4142,0 5.5927,3.51727 11.5076,7.81627 5.9148,4.29888 15.6115,11.32766 21.5481,15.61934 5.9368,4.2917 15.2465,11.02316 20.6885,14.95876 5.442,3.9356 9.8944,7.70077 9.8944,8.36724 0,0.66635 -0.1371,1.21155 -0.3057,1.21155 z m 99.0314,-4.82704 -3.9785,2.34757 v -1.48537 c 0,-0.81687 1.6676,-3.5084 3.7058,-5.98118 2.0383,-2.47278 5.3814,-5.36233 7.429,-6.42121 2.0476,-1.05889 7.2594,-2.93656 11.5817,-4.17259 l 7.8586,-2.24743 h 8.8597 c 4.8728,0 11.081,0.63073 13.7961,1.40153 2.7151,0.77081 5.4364,1.83751 6.0475,2.37025 l 1.111,0.96882 -2.0494,2.26456 -2.0494,2.26458 -6.2575,0.90262 c -3.4417,0.49653 -7.4719,0.88307 -8.9562,0.85919 -1.4842,-0.024 -6.3413,-0.12059 -10.7939,-0.21467 l -8.0954,-0.17101 -7.1153,2.48344 c -3.9133,1.36592 -8.9055,3.53981 -11.0938,4.8309 z m 182.717,-1.19142 -2.1988,0.0216 0.4932,-1.47997 c 0.2715,-0.81387 4.3447,-4.18698 9.0518,-7.49581 4.7071,-3.30871 17.032,-12.11839 27.3891,-19.57701 l 18.8307,-13.56106 2.4841,2.48392 2.484,2.48407 -1.3096,2.07577 c -0.7202,1.14178 -7.4589,5.71386 -14.9749,10.16038 -7.5161,4.44651 -17.3406,10.38595 -21.8323,13.19898 -4.4916,2.81291 -10.4285,6.58875 -13.1926,8.39075 -2.7642,1.80199 -6.0154,3.28615 -7.2247,3.29815 z m -271.9745,-5.46162 c -0.3995,0.4067 -3.9944,-1.56633 -7.9887,-4.38439 -3.9942,-2.81807 -15.9652,-11.60016 -26.6021,-19.51573 -10.6368,-7.9156 -21.7333,-16.01105 -24.6589,-17.98994 -2.9255,-1.9789 -5.6023,-4.31171 -5.9488,-5.184 -0.3462,-0.87237 -0.072,-2.6264 0.6077,-3.89779 0.6805,-1.27155 2.0621,-2.31184 3.0703,-2.31184 1.0083,0 7.294,4.72235 13.9682,10.49412 6.6742,5.77178 17.2832,14.81172 23.5753,20.08878 6.2925,5.27705 14.4247,12.37718 18.0719,15.77802 3.6472,3.40094 6.3044,6.51606 5.9051,6.92277 z m 388.7093,0.62615 c -0.9895,-0.0193 -3.4296,-0.74428 -5.4222,-1.61261 -1.9929,-0.86831 -4.9921,-3.41076 -6.6648,-5.64992 -1.673,-2.23915 -3.9553,-6.51774 -5.0721,-9.50818 -1.1166,-2.99038 -2.0302,-7.73961 -2.0302,-10.55371 V 533.251 l 1.8005,-3.48189 c 0.9904,-1.9151 4.1908,-5.12642 7.1122,-7.1365 l 5.3118,-3.65445 h 2.9343 2.9344 l 2.5463,5.91916 c 1.4006,3.25546 2.5464,6.75258 2.5464,7.77129 v 1.85212 l -4.7571,2.42683 c -2.6164,1.33485 -5.3677,3.56766 -6.1137,4.96163 l -1.3565,2.53468 1.8144,1.81459 1.8146,1.81457 2.8,-0.71107 c 1.54,-0.3911 4.5088,-2.27836 6.5976,-4.19383 l 3.7973,-3.48286 1.2931,-4.65673 c 0.7112,-2.5612 1.3077,-7.08542 1.326,-10.05374 l 0.033,-5.39699 2.2029,-4.79733 c 1.2117,-2.63852 3.2421,-5.71996 4.512,-6.84757 1.2699,-1.1276 5.4094,-3.42131 9.1986,-5.09715 3.7893,-1.67581 7.9802,-3.04688 9.3136,-3.04688 1.3331,0 3.8813,0.76133 5.6625,1.69189 1.7814,0.93055 4.6883,3.22429 6.4597,5.09714 1.7716,1.87288 4.3352,6.01356 5.6967,9.20151 l 2.4759,5.79623 v 6.23005 6.23 l -1.779,2.53985 c -0.9783,1.39685 -4.2473,3.98633 -7.264,5.75424 l -5.485,3.21445 -1.5291,-1.26913 c -0.8409,-0.698 -2.5567,-4.29179 -3.8124,-7.98633 l -2.2833,-6.71709 3.8911,-3.19801 3.8914,-3.19788 -0.015,-2.018 -0.015,-2.018 -2.4574,-0.77992 -2.4573,-0.78004 -2.9147,1.90982 c -1.603,1.05037 -3.6621,3.38882 -4.5756,5.19657 -0.9134,1.80774 -2.0319,6.25522 -2.4855,9.88321 -0.4538,3.62795 -1.4345,8.75509 -2.1798,11.39362 -0.7452,2.63851 -2.3461,6.24346 -3.5575,8.01091 -1.2113,1.76745 -4.0242,4.33953 -6.2511,5.71577 -2.2266,1.37624 -6.6696,3.29743 -9.8728,4.26925 -3.2034,0.97183 -6.6341,1.75175 -7.6235,1.73302 z m -130.9929,-3.53802 c -0.5133,0 -0.9251,-0.40475 -0.915,-0.89947 0.015,-0.49473 0.4148,-1.49329 0.8995,-2.219 0.4846,-0.72585 8.4368,-7.7171 17.6717,-15.53614 9.2348,-7.81901 21.2328,-18.15413 26.6622,-22.9669 5.4295,-4.81268 10.5835,-8.75031 11.4537,-8.75031 0.8701,0 2.2295,0.64762 3.0211,1.43918 0.7916,0.79157 1.4392,2.3044 1.4392,3.36198 v 1.92275 l -19.4891,14.27418 c -10.719,7.85083 -22.3905,16.45733 -25.9365,19.12548 -3.546,2.66826 -8.1183,6.06561 -10.1605,7.54977 -2.0422,1.48417 -4.133,2.69848 -4.6463,2.69848 z m -107.9736,-10.84696 c -0.8244,-0.0288 -3.6578,-1.23376 -6.2964,-2.67679 l -4.7973,-2.62377 -14.9917,-0.0216 -14.9915,-0.0216 -5.1031,1.69308 c -2.8068,0.93118 -5.4861,1.31004 -5.9544,0.84194 -0.468,-0.4681 -0.2797,-1.76972 0.4184,-2.89241 0.6982,-1.12271 3.0526,-3.25558 5.2321,-4.73976 l 3.9627,-2.6985 8.5178,0.0252 8.5177,0.0252 9.5946,2.86255 c 5.277,1.57448 11.3487,3.76148 13.4925,4.86006 l 3.8978,1.99736 v 1.71107 c 0,0.94126 -0.6746,1.68735 -1.4992,1.6582 z m -148.3249,-3.54497 c -0.609,0 -2.9016,-1.48418 -5.0945,-3.29817 -2.1931,-1.81398 -13.9729,-12.12283 -26.1775,-22.90851 -12.2047,-10.78568 -22.3806,-20.12668 -22.6132,-20.75777 -0.2326,-0.63119 0.5257,-2.1957 1.6851,-3.47683 1.1594,-1.28102 2.5282,-2.32924 3.0416,-2.32924 0.5136,0 8.7225,7.96055 18.2419,17.69012 9.5196,9.72957 20.6192,21.09369 24.666,25.25355 4.0468,4.16001 7.3578,8.07281 7.3578,8.69514 0,0.62247 -0.4983,1.13171 -1.1072,1.13171 z m 251.3793,-1.24516 c -0.543,0.0252 -0.813,-0.71623 -0.5995,-1.64775 0.2131,-0.9314 10.8291,-12.53492 23.5907,-25.78559 12.7617,-13.25055 23.5888,-24.09202 24.0602,-24.09202 0.4715,0 2.02,1.08324 3.4412,2.40731 l 2.5838,2.40718 -0.6174,1.49065 c -0.3395,0.81973 -2.6808,3.10961 -5.2026,5.0885 -2.5219,1.9789 -10.0933,8.45527 -16.8255,14.39195 -6.7322,5.93668 -16.1111,14.14646 -20.8419,18.24398 -4.7309,4.0975 -9.0459,7.47062 -9.589,7.49579 z m -101.4022,-5.9988 c -1.7333,-0.0264 -4.6535,-0.86268 -6.4895,-1.85823 -1.8359,-0.9957 -7.5028,-3.24001 -12.5929,-4.98744 l -9.2549,-3.17713 -9.5946,-0.06 -9.5946,-0.0598 -4.5661,2.69656 c -2.5113,1.48322 -5.3447,2.6967 -6.2964,2.6967 -0.9518,0 -1.6994,-0.67464 -1.6612,-1.49918 0.038,-0.82453 1.2522,-3.21996 2.6983,-5.32321 1.4463,-2.10314 5.0072,-6.84936 7.9133,-10.54715 l 5.284,-6.72318 -1.4315,-1.43165 -1.4316,-1.43152 -10.5528,11.20485 -10.5527,11.20497 -2.1661,-0.42549 c -1.1913,-0.23401 -2.7424,-1.34087 -3.447,-2.45973 l -1.281,-2.03418 2.0577,-3.96247 c 1.1316,-2.1793 3.6386,-6.66083 5.5707,-9.95899 1.932,-3.29816 5.1676,-9.33581 7.1902,-13.4169 2.0224,-4.08119 3.6771,-7.76373 3.6771,-8.1835 0,-0.41964 -0.8901,-0.58863 -1.9782,-0.37539 l -1.9786,0.38785 -5.5173,8.53841 c -3.0346,4.6962 -7.5345,11.57735 -10,15.29145 -2.4654,3.71419 -5.1215,6.75305 -5.9022,6.75305 -0.7807,0 -2.4605,-0.94445 -3.7325,-2.09881 l -2.3127,-2.09884 -11.574,-0.59966 -11.5739,-0.59968 0.3439,-6.59629 c 0.1889,-3.62799 1.3397,-10.37422 2.5571,-14.99162 1.2174,-4.61743 2.8559,-11.50109 3.6413,-15.29698 l 1.4279,-6.90166 3.8106,-2.85176 c 2.0958,-1.56849 7.8583,-4.28388 12.8055,-6.03431 4.9472,-1.7503 11.9633,-4.0438 15.5913,-5.09655 3.628,-1.05266 9.2072,-2.6342 12.3985,-3.51439 3.1912,-0.88019 9.6988,-1.95347 14.4615,-2.38498 l 8.6595,-0.78473 1.9122,1.91233 1.9124,1.91244 0.816,5.93176 0.8157,5.93189 2.1273,1.92528 2.1274,1.92518 1.2076,-1.52941 c 0.6642,-0.8412 1.5682,-3.8907 2.0092,-6.77679 0.4409,-2.88607 1.3733,-6.31567 2.0722,-7.62138 l 1.2704,-2.37407 18.1805,0.55313 18.1804,0.55326 7.7955,2.70314 c 4.2877,1.48671 11.679,4.58217 16.4253,6.87889 l 8.6297,4.17583 1.6843,2.58791 c 0.9265,1.42337 3.1311,6.90562 4.8996,12.18267 1.7684,5.27704 4.0508,12.29312 5.072,15.59128 1.0212,3.29817 1.949,7.3459 2.0619,8.99497 l 0.2055,2.99833 -1.799,-0.45455 c -0.9895,-0.24994 -6.1166,-0.89062 -11.3937,-1.42373 -5.277,-0.53297 -9.9502,-1.00312 -10.3846,-1.04461 -0.4346,-0.0419 -3.5469,-3.58347 -6.9165,-7.87109 -3.3695,-4.28761 -6.6569,-7.79562 -7.3055,-7.79562 -0.6483,0 -1.179,0.87982 -1.179,1.95525 0,1.07545 1.9979,5.65448 4.44,10.17572 l 4.44,8.2202 -3.5111,3.66469 -3.5109,3.66465 -2.3462,-0.34781 -2.3461,-0.34782 -9.6768,-15.66562 c -5.3221,-8.61597 -11.697,-18.01908 -14.1666,-20.89567 -2.4695,-2.8766 -4.745,-4.97518 -5.0566,-4.6636 -0.3116,0.31158 2.6932,6.97003 6.6773,14.79661 3.9841,7.82658 9.6843,18.53096 12.667,23.78762 l 5.4231,9.55746 -2.3405,3.13792 c -1.2872,1.72583 -3.1589,3.29912 -4.1591,3.49616 l -1.8188,0.35837 -2.8325,-4.55602 c -1.5578,-2.50576 -3.0541,-5.0956 -3.325,-5.75522 -0.2711,-0.65964 -2.233,-3.1468 -4.3601,-5.527 -2.127,-2.38029 -4.1336,-5.0788 -4.4592,-5.99666 -0.3257,-0.91794 -0.9672,-1.32273 -1.4258,-0.8996 -0.4584,0.42324 0.7216,3.93128 2.6225,7.79565 1.901,3.86448 4.9733,9.85176 6.8275,13.30535 l 3.3712,6.2791 -1.5075,1.81637 -1.5075,1.81626 z m 96.2688,-10.74599 c -0.9211,0 -1.6748,-0.73711 -1.6748,-1.63817 0,-0.90093 3.537,-5.89313 7.86,-11.09379 4.3231,-5.20053 12.7283,-15.52724 18.6784,-22.94808 5.9502,-7.42086 11.5045,-13.49246 12.3428,-13.49246 0.8383,0 2.4704,1.04532 3.6266,2.3231 l 2.1024,2.32309 -0.9345,1.57472 c -0.5139,0.86604 -8.0615,8.86065 -16.7724,17.76566 -8.7108,8.90504 -17.574,18.21482 -19.6959,20.68844 -2.1218,2.47361 -4.6115,4.49749 -5.5326,4.49749 z m -243.584,-2.27418 -1.2269,1.22693 -19.6531,-20.48239 c -10.809,-11.26532 -19.8323,-21.30981 -20.0518,-22.32119 -0.2193,-1.0114 0.2516,-2.62259 1.0465,-3.58027 0.7948,-0.95777 2.169,-1.7414 3.0535,-1.7414 0.8848,0 5.8107,5.20112 10.947,11.55804 5.1361,6.35694 11.9671,14.58733 15.1798,18.28979 3.2127,3.70244 7.2116,8.7774 8.8867,11.27765 l 3.0452,4.54594 z m 358.1672,-3.72247 c -0.6007,0 -2.4264,-2.11346 -4.057,-4.69645 -1.6305,-2.58312 -3.5265,-5.04366 -4.2127,-5.46787 -0.6865,-0.42407 -1.248,-1.69992 -1.248,-2.83509 v -2.06392 l 12.593,-9.4945 12.5929,-9.49449 v -2.76277 -2.76277 h -2.4564 -2.4566 l -11.8775,8.99496 c -6.5326,4.94725 -12.5783,8.9903 -13.4346,8.98454 -0.8564,0 -3.672,-3.379 -6.2572,-7.49582 -2.585,-4.11692 -8.2207,-11.11155 -12.5238,-15.54354 l -7.8237,-8.05818 3.9105,-4.86614 3.9107,-4.86618 -0.3819,-1.9387 c -0.2098,-1.06636 -1.297,-2.51511 -2.4157,-3.21961 l -2.0339,-1.28087 -4.7919,3.85079 c -2.6354,2.11789 -5.0805,3.85081 -5.4334,3.85081 -0.3531,0 -3.4798,-2.70688 -6.9485,-6.01537 l -6.3068,-6.01534 1.2771,-2.08012 c 0.7023,-1.14405 7.7102,-7.29901 15.5732,-13.67775 7.863,-6.37864 15.1234,-12.33294 16.1342,-13.23161 1.0109,-0.89865 7.0699,-5.79912 13.4644,-10.88979 l 11.6262,-9.25581 h 2.1551 2.1552 l 9.4145,9.47002 9.4145,9.47001 -0.9487,1.62376 c -0.5219,0.89304 -2.6123,3.74168 -4.6454,6.33031 -2.033,2.58852 -7.7443,10.48623 -12.6914,17.5504 -4.9474,7.06417 -12.3682,17.58674 -16.4908,23.38343 -4.1228,5.79673 -7.4959,11.25656 -7.4959,12.13304 0,0.87635 0.4807,1.59343 1.0683,1.59343 0.5876,0 3.51,-1.75402 6.4939,-3.89783 2.984,-2.1438 14.2418,-10.32372 25.0171,-18.17752 10.7754,-7.85393 20.9703,-15.54463 22.6555,-17.09045 1.6852,-1.54593 3.4491,-2.81074 3.9197,-2.81074 0.4705,0 4.634,5.77322 9.2518,12.82934 4.6178,7.05614 8.9969,14.83427 9.7309,17.28462 l 1.3348,4.45515 -2.6373,5.44808 -2.6373,5.44806 -6.2159,4.48658 -6.2161,4.48669 -5.9747,0.066 -5.9747,0.066 -0.6906,4.2383 c -0.3797,2.33114 -1.0909,4.88655 -1.5805,5.67883 -0.4897,0.79216 -4.5063,3.98418 -8.9262,7.09319 -4.4196,3.10903 -9.5613,6.89507 -11.4259,8.41341 -1.8646,1.51824 -3.8818,2.7605 -4.4825,2.7605 z m 31.6458,-45.43371 c 1.8615,-1.06681 4.456,-2.93416 5.7657,-4.14957 l 2.3811,-2.20966 -0.3686,-2.57531 -0.3687,-2.57543 -2.0158,-0.38403 -2.0156,-0.38401 -4.8805,4.4092 -4.8804,4.4091 v 2.15915 c 0,1.18759 0.6747,2.4025 1.4992,2.69981 0.8245,0.29732 3.0221,-0.33234 4.8836,-1.39925 z m -55.2531,-30.35395 2.495,-0.36975 5.7973,-7.56359 c 3.1886,-4.15999 5.7973,-8.0728 5.7973,-8.69512 0,-0.62235 -0.6188,-1.13157 -1.3754,-1.13157 -0.7568,0 -3.79,2.02387 -6.7405,4.49748 -2.9506,2.47361 -6.4427,5.35716 -7.76,6.40778 l -2.3953,1.91029 0.8433,2.65712 0.8434,2.65711 z m -95.4489,62.33672 c -0.834,0.18768 -1.8718,-0.0136 -2.3059,-0.44831 -0.4343,-0.43442 0.2188,-2.74672 1.4515,-5.13865 1.2328,-2.39195 6.2583,-10.06946 11.1678,-17.06132 4.9097,-6.99161 9.9309,-14.41246 11.1585,-16.49078 l 2.2321,-3.77847 h 1.9541 c 1.0748,0 2.8717,1.01365 3.993,2.25257 l 2.0384,2.25258 -7.5496,9.31651 c -4.1521,5.12413 -10.941,13.6901 -15.0863,19.03552 -4.1454,5.34541 -8.2193,9.87264 -9.0536,10.06035 z m -233.3996,-0.94083 h -2.3286 l -5.7334,-7.49581 c -3.1535,-4.12269 -9.6614,-12.17104 -14.4622,-17.88511 -4.8006,-5.7141 -8.7284,-11.13807 -8.7284,-12.05327 0,-0.91522 0.6476,-2.31159 1.4393,-3.10315 0.7914,-0.79157 2.3331,-1.43918 3.426,-1.43918 h 1.9867 l 4.1744,6.29646 c 2.2958,3.46307 8.3099,12.32791 13.3646,19.69972 5.0547,7.37179 9.1901,13.98309 9.1901,14.69177 0,0.70869 -1.0478,1.28857 -2.3285,1.28857 z m 17.62,-2.46487 c -0.8246,-0.0359 -8.4708,-10.62666 -16.9916,-23.53384 l -15.4924,-23.46774 1.2311,-1.9518 1.2313,-1.95192 h 2.7984 2.7984 l 6.0659,11.09416 c 3.3362,6.10172 9.1691,16.50949 12.9619,23.12836 3.7929,6.61874 6.8962,13.09499 6.8962,14.39159 v 2.3574 z m 199.8926,-3.74371 -1.7033,0.38787 v -2.49711 c 0,-1.37337 3.0668,-7.75439 6.8149,-14.18003 3.7484,-6.42566 9.2267,-16.13555 12.1741,-21.57751 l 5.359,-9.89448 h 1.978 c 1.0881,0 2.6257,0.64767 3.4173,1.43921 0.7915,0.79156 1.4392,2.10422 1.4392,2.91712 0,0.8128 -6.2497,10.82419 -13.8881,22.24757 -7.6383,11.42325 -14.6544,20.94414 -15.5911,21.15736 z M 2802.085,492.96847 c -0.5637,0.34841 -3.7321,-1.61742 -7.0408,-4.36844 -3.3088,-2.75101 -7.8822,-6.79096 -10.1633,-8.97758 -2.2809,-2.18662 -12.3775,-11.31412 -22.4369,-20.2833 -10.0593,-8.96918 -18.2897,-17.02387 -18.2897,-17.8994 0,-0.87551 2.5677,-4.43091 5.706,-7.90093 3.1384,-3.47003 7.5462,-8.60291 9.7954,-11.40636 2.2491,-2.80343 4.6991,-5.09715 5.4442,-5.09715 0.7451,0 3.4586,2.15437 6.0297,4.78749 l 4.6748,4.7875 -3.2321,3.37359 -3.2322,3.37358 v 2.39771 2.39758 l 3.955,3.83318 c 2.1753,2.1083 4.6387,3.83329 5.4744,3.83329 0.8357,0 2.882,-1.6191 4.5471,-3.59798 1.665,-1.9789 3.6831,-3.598 4.4846,-3.598 0.8014,0 3.182,1.77968 5.2903,3.95491 2.1084,2.17522 3.8332,4.50985 3.8332,5.18794 0,0.6781 -1.3492,2.50061 -2.9983,4.04977 -1.6491,1.54919 -2.9982,3.55387 -2.9982,4.45479 0,0.90094 2.2937,3.76855 5.097,6.3724 2.8036,2.60375 5.666,4.74095 6.3611,4.74912 0.6951,0.0121 3.0947,-1.87396 5.3324,-4.18267 2.2378,-2.30871 4.4865,-4.19765 4.9977,-4.19765 0.5109,0 3.3733,1.72295 6.3609,3.82885 2.9877,2.10592 5.432,4.16157 5.432,4.56813 0,0.40658 -0.7923,1.78688 -1.7608,3.06727 -0.9684,1.2804 -1.7779,3.69214 -1.7989,5.35935 -0.021,1.66717 0.802,4.23074 1.8287,5.69679 1.0269,1.46606 2.3488,2.66553 2.9376,2.66553 0.5888,0 2.6514,-1.69155 4.5835,-3.75882 l 3.513,-3.75894 1.3451,0.83137 c 0.7399,0.45718 1.3451,1.8375 1.3451,3.06716 0,1.22969 -1.3475,3.83751 -2.9947,5.79491 -1.6472,1.95756 -4.3568,3.90095 -6.0213,4.3188 l -3.0264,0.75954 -2.3616,-1.26386 c -1.299,-0.69526 -3.1907,-2.867 -4.2039,-4.82635 -1.0132,-1.95932 -2.5692,-3.56249 -3.4577,-3.56249 -0.8885,0 -3.8005,2.37062 -6.4713,5.26794 -2.6707,2.89746 -5.317,5.55302 -5.8807,5.90143 z m 126.2808,-9.97002 h -1.6844 l -3.7125,-6.57808 c -2.0418,-3.61802 -3.7126,-6.84075 -3.7126,-7.16145 0,-0.32081 -2.4285,-4.69117 -5.3969,-9.71193 -2.9683,-5.02074 -5.397,-9.90513 -5.397,-10.85428 0,-0.94904 1.3639,-2.34697 3.0309,-3.10651 l 3.0308,-1.3809 1.0275,1.10674 c 0.5651,0.60878 4.0584,8.00433 7.7631,16.43451 3.7047,8.4302 6.7356,16.66062 6.7356,18.28979 v 2.96211 z m 188.1228,-2.39866 c -0.7379,0 -1.7016,-0.35982 -2.1412,-0.79959 -0.4399,-0.43969 -0.7996,-1.58612 -0.7996,-2.54751 0,-0.96137 1.9521,-6.13348 4.3381,-11.49352 2.386,-5.36018 5.4861,-12.3092 6.8891,-15.44246 l 2.551,-5.69681 h 1.9199 c 1.056,0 2.8268,1.00192 3.935,2.22655 l 2.015,2.22655 -4.8301,7.95048 c -2.6566,4.37289 -6.564,11.46644 -8.6829,15.76352 -2.119,4.29694 -4.4564,7.81279 -5.1943,7.81279 z m -178.2659,-17.98994 c -0.6206,0 -3.6015,-5.22043 -6.6239,-11.60099 l -5.4955,-11.60112 2.6317,-2.13108 2.6318,-2.13108 1.6258,0.62374 c 0.8942,0.34313 2.7223,3.68927 4.0626,7.43574 1.3403,3.74647 3.1066,8.8002 3.925,11.23041 l 1.4882,4.41844 -1.5586,1.87804 c -0.8571,1.03286 -2.0663,1.8779 -2.6871,1.8779 z m 166.5425,-3.80942 -2.0187,0.3887 -0.6707,-1.74766 c -0.3688,-0.96127 0.3968,-4.99929 1.7015,-8.97327 1.3046,-3.9741 2.9762,-8.35465 3.7147,-9.7346 l 1.3427,-2.50899 h 2.994 2.9937 l 0.6986,1.82056 c 0.3842,1.00121 -0.015,3.56479 -0.8798,5.69682 -0.8681,2.13193 -2.9911,6.30476 -4.7178,9.27299 l -3.1396,5.39662 z m -275.7199,-0.99233 h -3.9363 l -3.598,-2.24744 c -1.9789,-1.23602 -5.2977,-4.06751 -7.375,-6.29204 -2.0775,-2.2245 -8.5991,-10.12832 -14.4928,-17.56418 -5.8937,-7.43583 -11.8847,-15.86029 -13.3133,-18.72093 -1.4288,-2.86074 -2.5924,-6.49147 -2.5861,-8.06837 0,-1.57674 1.2977,-5.62857 2.8694,-9.00395 l 2.8575,-6.13698 4.0268,-3.01619 c 2.2149,-1.6589 5.7542,-3.88955 7.8652,-4.95682 2.1111,-1.06728 5.7895,-1.94065 8.1743,-1.94065 2.3848,0 5.5149,0.6028 6.9558,1.33942 1.4407,0.73675 4.9133,3.54761 7.7167,6.24635 2.8035,2.69885 5.0971,5.65148 5.0971,6.5613 0,0.90992 -2.5635,4.01426 -5.6968,6.89864 -3.1332,2.88439 -6.4412,5.26579 -7.351,5.29194 -0.9098,0.0264 -4.0185,-2.49124 -6.9081,-5.59427 l -5.254,-5.64189 -1.9041,1.90406 -1.904,1.90392 1.4837,2.77237 c 0.816,1.52484 6.5625,9.2238 12.7698,17.10892 6.2073,7.88511 12.8189,16.19622 14.6924,18.46919 l 3.4066,4.13252 2.2305,-0.42539 2.2307,-0.42541 0.3505,-2.4363 0.3505,-2.43632 -3.6427,-5.02868 -3.6428,-5.02865 -4.2008,-1.75524 -4.2009,-1.75521 -1.4276,-3.13325 -1.4276,-3.13311 7.1218,-6.46873 c 3.9168,-3.55781 7.7152,-6.49352 8.4409,-6.52373 0.7257,-0.03 3.9794,3.04807 7.2306,6.84096 3.2512,3.79288 8.7292,10.52761 12.1731,14.96597 3.4442,4.43834 6.2619,8.82873 6.2619,9.75653 0,0.92767 -1.4841,2.69334 -3.298,3.92348 -1.8141,1.23028 -4.609,2.50661 -6.2108,2.83643 l -2.9126,0.59964 -0.9235,3.45493 c -0.5078,1.9002 -2.1656,4.80318 -3.6838,6.45106 -1.5182,1.64788 -4.4969,3.73616 -6.6194,4.64057 -2.1227,0.90439 -5.6307,1.64247 -7.7958,1.63998 z m 126.7906,-4.79288 c -0.8279,0 -2.0274,-0.67463 -2.6655,-1.49917 -0.6383,-0.82454 -2.1043,-4.19764 -3.258,-7.49581 -1.1536,-3.29814 -2.3727,-7.72632 -2.7094,-9.84024 l -0.6118,-3.84362 3.055,-0.76685 c 1.6804,-0.42169 3.6045,-0.42708 4.2761,-0.0121 0.6716,0.4151 1.5539,2.75967 1.9605,5.21014 0.4068,2.45047 1.5031,6.83353 2.4363,9.74012 l 1.6969,5.28483 -1.3375,1.61131 c -0.7355,0.8863 -2.0147,1.61141 -2.8426,1.61141 z m 131.2505,-1.19933 c -1.1996,0 -2.5506,-0.59786 -3.0022,-1.32863 l -0.8212,-1.32873 1.8946,-6.76674 c 1.0422,-3.72176 2.1996,-8.25103 2.5722,-10.065 l 0.6778,-3.29817 h 2.8286 c 1.5557,0 3.4505,0.74935 4.2104,1.66503 l 1.382,1.66515 -2.6361,8.22934 c -1.4499,4.52613 -3.1511,8.90404 -3.7806,9.72858 -0.6295,0.82454 -2.126,1.49917 -3.3255,1.49917 z m -113.3653,-4.79732 c -0.8853,0 -2.1332,-0.97793 -2.7728,-2.17318 -0.6396,-1.19514 -2.011,-5.82923 -3.0474,-10.29781 -1.0362,-4.4686 -1.5795,-8.6179 -1.207,-9.22056 0.3725,-0.60267 1.9757,-1.0957 3.5626,-1.0957 h 2.8853 l 1.0631,2.09882 c 0.5846,1.15435 1.7551,5.46463 2.6011,9.57832 l 1.5384,7.4795 -1.5066,1.8153 c -0.8286,0.99844 -2.231,1.81531 -3.1167,1.81531 z m 96.0511,-0.39327 c -0.6596,0.19492 -1.95,-0.1206 -2.8675,-0.701 l -1.6681,-1.05517 0.8408,-7.43248 c 0.4625,-4.0878 1.3483,-8.7671 1.9686,-10.39844 l 1.1278,-2.96605 3.2976,0.37935 3.2974,0.37946 0.2837,2.99832 c 0.156,1.64908 -0.9233,6.47314 -2.3985,10.7201 -1.4754,4.24693 -3.2221,7.88113 -3.8818,8.07591 z m 120.6152,-2.00539 c -0.6272,0 -1.4318,-0.47156 -1.788,-1.04798 -0.3562,-0.57639 -4.4359,-3.33677 -9.0658,-6.1342 -4.6299,-2.79743 -8.418,-5.65663 -8.418,-6.35381 0,-0.69705 1.3325,-4.54797 2.9613,-8.55746 1.6285,-4.00959 4.327,-9.9452 5.9966,-13.19021 1.6693,-3.24505 3.0353,-6.61815 3.0353,-7.49583 0,-0.87765 -0.5929,-1.5957 -1.3177,-1.5957 -0.7248,0 -2.869,1.66058 -4.765,3.69021 -1.8959,2.02963 -5.9455,7.02183 -8.9988,11.0938 -3.0534,4.07197 -6.3307,7.84891 -7.2829,8.39327 l -1.7315,0.98969 -8.4072,-5.74431 c -4.624,-3.15951 -8.9242,-6.36725 -9.5558,-7.12834 l -1.1486,-1.38402 4.3121,-9.45265 c 2.3717,-5.19895 6.9664,-14.92792 10.2101,-21.61993 3.244,-6.69203 5.8982,-12.46644 5.8982,-12.83199 0,-0.36556 2.6855,-6.35886 5.9679,-13.31843 l 5.9679,-12.65378 h 1.8406 c 1.0123,0 4.5041,1.75402 7.7595,3.89783 3.2553,2.1438 5.948,4.63157 5.9837,5.5283 0.036,0.89674 -3.713,8.83559 -8.3304,17.64177 -4.6174,8.80634 -8.3953,16.94367 -8.3953,18.08301 v 2.07174 l 3.7128,-3.52256 c 2.0421,-1.93738 7.7562,-9.05446 12.6982,-15.81568 l 8.9852,-12.29311 h 1.7597 c 0.9678,0 4.9682,2.17893 8.8897,4.84204 3.9217,2.66312 7.1302,5.42734 7.1302,6.14272 0,0.71552 -4.0831,9.11515 -9.0738,18.66601 -4.9904,9.55099 -8.7917,17.6473 -8.4469,17.99197 0.3446,0.3447 1.4306,0.31832 2.413,-0.0588 0.9824,-0.37696 6.4156,-6.94196 12.0739,-14.58878 5.6582,-7.64692 11.155,-14.23627 12.2152,-14.64308 l 1.9276,-0.73976 5.3133,2.88727 c 2.9222,1.58803 6.088,3.73758 7.035,4.77694 l 1.722,1.88978 -6.8929,9.12916 c -3.791,5.02113 -11.976,15.7743 -18.1887,23.89592 -6.2128,8.12164 -12.959,16.70583 -14.9915,19.07607 -2.0327,2.37023 -4.635,5.4735 -5.7828,6.89614 -1.148,1.42275 -2.6003,2.58672 -3.2274,2.58672 z m -198.1446,-1.19934 c -0.5929,0 -1.5631,-1.21431 -2.1557,-2.69847 -0.5925,-1.48418 -1.7286,-6.04474 -2.5241,-10.13459 -0.7956,-4.08994 -1.1256,-8.27261 -0.7334,-9.29481 l 0.7132,-1.8587 h 2.2896 c 1.2592,0 2.8352,0.67461 3.5024,1.49915 0.6671,0.82454 1.5987,5.42409 2.0702,10.22129 l 0.8573,8.72212 -1.4706,1.77202 c -0.8088,0.97457 -1.9558,1.77199 -2.5489,1.77199 z m 58.7433,-1.44769 c -1.0026,0.19319 -2.4905,-0.45287 -3.3062,-1.43574 l -1.483,-1.78699 0.7569,-6.95959 c 0.4164,-3.82778 1.0172,-8.20797 1.3355,-9.73376 l 0.5784,-2.77404 3.2563,0.37539 3.2563,0.37551 -0.3225,7.19596 c -0.1774,3.9578 -0.756,8.81507 -1.2856,10.79397 l -0.9631,3.59801 z m -19.7718,-1.18736 -2.5136,0.36317 -0.7524,-1.96044 c -0.4138,-1.07829 -0.7522,-5.3803 -0.7522,-9.55996 0,-4.17966 0.3274,-8.4531 0.728,-9.49651 l 0.7279,-1.89711 h 3.3888 3.389 l 0.658,2.09881 c 0.3621,1.15436 -0.021,6.14658 -0.8508,11.0938 l -1.509,8.99497 z m -19.749,-1.19859 -3.1376,0.364 -0.8552,-9.80357 -0.8552,-9.80368 1.1561,-1.15603 c 0.6359,-0.63588 2.4326,-0.97543 3.9928,-0.75473 l 2.8368,0.40142 v 10.19428 10.1943 z m -136.3425,-15.53036 -8.7534,0.44279 -4.4392,-4.66911 -4.4393,-4.6691 -10.499,-19.91872 -10.4989,-19.91882 -0.7455,-5.4392 -0.7456,-5.4392 2.6264,-5.42504 2.6263,-5.42517 5.4424,-3.60493 5.4424,-3.60495 5.2667,-0.78977 c 2.8964,-0.43427 7.2735,-0.41315 9.7266,0.0467 l 4.4602,0.83677 3.6433,3.88919 c 2.0038,2.13899 6.2287,8.70436 9.3886,14.58961 3.16,5.88533 7.9438,15.22907 10.6309,20.76374 2.6872,5.53479 5.1599,12.10902 5.4953,14.60939 l 0.6099,4.54629 -2.5587,5.28545 -2.5587,5.28545 -5.6836,4.08289 -5.6838,4.08274 z m 4.4454,-14.47782 1.9092,-0.36352 0.3469,-2.40814 0.3467,-2.40814 -6.5163,-12.57124 c -3.584,-6.91413 -8.9194,-16.88884 -11.8563,-22.16588 l -5.3399,-9.59465 -2.4299,-0.36327 -2.43,-0.36316 -0.755,1.96738 -0.7551,1.96749 6.4155,12.18808 c 3.5286,6.70341 8.7156,16.50565 11.5266,21.7827 2.811,5.27706 5.6773,10.2924 6.3697,11.14525 0.6922,0.85285 2.1178,1.38703 3.1679,1.1871 z m 37.1108,-6.93536 h -1.9853 l -1.2407,-3.29817 c -0.6824,-1.81398 -2.6549,-6.80618 -4.3836,-11.09379 -1.7286,-4.2876 -3.6183,-8.87505 -4.1993,-10.19429 -0.581,-1.31927 -4.0741,-10.22429 -7.7624,-19.78894 -3.6884,-9.56465 -7.7417,-19.52737 -9.0072,-22.13939 l -2.3013,-4.74923 1.2297,-1.48153 c 0.6762,-0.81495 3.8793,-2.36172 7.1178,-3.4374 3.2385,-1.07568 6.816,-1.77705 7.9501,-1.55877 l 2.0616,0.39709 3.4034,9.58852 c 1.872,5.27359 3.8656,11.35466 4.4305,13.51334 0.565,2.15867 1.9409,5.31963 3.0579,7.02435 l 2.0309,3.09944 1.2234,-1.22357 1.2238,-1.22356 -0.5717,-4.60146 c -0.3143,-2.53082 -1.5742,-10.12175 -2.8002,-16.8688 l -2.2285,-12.26737 1.3685,-1.36854 c 0.7525,-0.7527 3.7055,-1.89001 6.562,-2.52735 2.8565,-0.63744 6.7651,-1.24754 8.6859,-1.35584 l 3.492,-0.19681 6.1026,17.63663 c 3.3562,9.70017 6.7593,18.29072 7.5622,19.09009 l 1.4599,1.45322 0.7758,-2.02158 0.7756,-2.02172 -1.459,-5.67463 c -0.8026,-3.12115 -2.1755,-11.34159 -3.0507,-18.26771 l -1.5916,-12.59295 1.4861,-1.52747 c 0.8172,-0.84013 4.2382,-2.57341 7.6026,-3.85177 l 6.1169,-2.32418 1.1141,1.45311 c 0.6128,0.7991 1.9878,6.04041 3.0554,11.64729 1.0674,5.60686 2.2633,13.70232 2.657,17.98993 0.3938,4.2876 1.2075,9.68459 1.8083,11.9933 0.6005,2.30872 1.9432,11.13111 2.9838,19.60533 l 1.8918,15.40767 -1.3967,1.68276 c -0.7681,0.92552 -2.674,1.68279 -4.2352,1.68279 -1.5612,0 -5.6674,1.07484 -9.1248,2.38857 l -6.2861,2.38848 -2.0351,-2.08864 c -1.1193,-1.14883 -4.0224,-6.94603 -6.4512,-12.8827 -2.429,-5.93668 -4.958,-11.46261 -5.6199,-12.27996 -0.6619,-0.81721 -1.6822,-1.19021 -2.2669,-0.82871 -0.5849,0.36146 -1.064,2.64932 -1.0644,5.08394 -6e-4,2.43476 0.8898,8.91413 1.9785,14.39866 l 1.9795,9.97195 -1.7372,1.73712 c -0.9555,0.95552 -5.4871,2.80954 -10.0702,4.12017 -4.5832,1.31074 -9.2264,2.38308 -10.3184,2.38308 z m 192.3436,-3.61635 c -0.4796,-0.0121 -1.6768,-0.52722 -2.6606,-1.1492 -0.9836,-0.62197 -4.7616,-1.49089 -8.3952,-1.93091 -3.6336,-0.44015 -7.6031,-1.31904 -8.821,-1.95311 l -2.2142,-1.15305 0.4153,-15.07063 0.4153,-15.07067 -1.2926,-0.44771 -1.2924,-0.4477 -1.3463,2.95478 c -0.7405,1.62508 -2.7801,7.17103 -4.5325,12.3242 -1.7524,5.15315 -3.9074,10.12917 -4.7891,11.05768 l -1.6029,1.6882 -7.5637,-1.88442 c -4.16,-1.03644 -9.0479,-2.4574 -10.862,-3.1577 l -3.298,-1.27331 0.03,-4.52712 c 0.017,-2.49006 0.5335,-6.70906 1.1496,-9.37564 0.616,-2.66658 1.9598,-14.2701 2.9856,-25.78559 1.026,-11.51548 2.3678,-24.38825 2.9816,-28.60629 0.6139,-4.21792 1.6207,-8.17354 2.2374,-8.79024 l 1.1211,-1.12125 5.585,0.83749 c 3.0718,0.46066 6.6299,1.7178 7.9069,2.79373 l 2.3219,1.95609 -2.2532,14.39197 c -1.2393,7.91556 -2.6424,16.68565 -3.1182,19.4891 l -0.8648,5.09714 h 1.9779 1.978 l 1.0958,-2.69848 c 0.6025,-1.48418 3.077,-9.17488 5.4988,-17.09045 2.4217,-7.91558 5.138,-15.16504 6.0365,-16.10988 l 1.6329,-1.71803 7.3492,1.36676 c 4.0421,0.75173 8.107,1.99568 9.0332,2.76433 0.9262,0.76864 1.6769,2.54581 1.6682,3.94915 -0.015,1.40346 -1.081,7.67882 -2.383,13.94532 -1.3019,6.26651 -2.3741,13.14765 -2.3829,15.29146 l -0.017,3.89782 h 1.7284 c 0.9504,0 2.066,-0.54655 2.4787,-1.21445 0.4129,-0.66802 1.7568,-4.58084 2.9868,-8.69514 1.2297,-4.11442 3.3928,-10.71889 4.8067,-14.67667 1.4138,-3.95779 3.2861,-7.93249 4.1606,-8.83269 l 1.5899,-1.63674 7.9152,2.63409 7.9151,2.63396 v 1.76075 c 0,0.96846 -0.8073,3.32165 -1.7938,5.22943 -0.9866,1.90776 -5.6121,14.69886 -10.279,28.42447 -4.6669,13.72573 -9.017,27.11468 -9.6671,29.75321 -0.6498,2.63851 -1.9734,6.01163 -2.9412,7.49581 -0.9678,1.48417 -2.1519,2.69022 -2.6314,2.68013 z m -104.6137,-14.3736 h -6.7164 l -1.4392,-1.43918 -1.4392,-1.4392 v -12.50758 -12.50757 l -3.1782,-9.74 c -1.7482,-5.35692 -5.2886,-16.12198 -7.8678,-23.9223 l -4.6893,-14.18219 1.4183,-1.70893 1.4182,-1.70879 h 6.5106 6.5106 l 1.6699,3.99641 c 0.9183,2.19788 2.0305,6.71622 2.4715,10.04066 0.441,3.32441 1.2209,6.72236 1.7329,7.55097 l 0.9312,1.50648 1.2363,-0.76409 c 0.68,-0.42026 1.8198,-3.4843 2.5327,-6.80895 0.713,-3.32467 1.2964,-7.79936 1.2964,-9.94364 0,-2.14441 0.6478,-4.54643 1.4392,-5.33797 l 1.4392,-1.4392 h 6.9562 6.9561 l 0.015,1.49915 c 0.015,0.82454 -0.8548,5.27705 -1.9118,9.89447 -1.0569,4.61741 -2.6376,11.0938 -3.5126,14.39196 -0.8749,3.29814 -2.5167,10.79696 -3.6487,16.66383 l -2.0578,10.66732 0.6285,12.31449 0.6284,12.3146 -1.3045,1.30461 -1.3042,1.30464 z"
+   id="path17"
+   inkscape:label="district-court-of-warsaw" /><g
+   id="g3"
+   transform="matrix(5.0075069,0,0,5.0075069,1312.0015,496.3435)"
+   inkscape:label="basebuilder"><path
+     class="a"
+     d="m 6.9,10.3 3.8,5.2 h 11.1 a 4.27,4.27 0 0 1 4.3,4.3 v 10.6 a 4.27,4.27 0 0 1 -4.3,4.3 H 11.2 A 4.27,4.27 0 0 1 6.9,30.4 Z m 5.8,10.8 v 6 a 1.69,1.69 0 0 0 1.7,1.7 h 4.2 a 1.69,1.69 0 0 0 1.7,-1.7 V 22.9 A 1.69,1.69 0 0 0 18.6,21.2 H 12.7 Z M 0,0 6.7,8.4 H 25.6 A 7.38,7.38 0 0 1 33,15.8 V 34 a 7.38,7.38 0 0 1 -7.4,7.4 H 7.4 A 7.32,7.32 0 0 1 0,34 Z"
+     id="path1"
+     style="fill:#ff6903;fill-opacity:1" /><path
+     class="b"
+     d="m 191.5,35.1 h 2.8 V 29 a 8.42,8.42 0 0 1 0.4,-2.7 c 0.7,-2.2 2.3,-3.5 4.2,-3.5 a 2.77,2.77 0 0 1 0.8,0.1 V 20.1 A 3.78,3.78 0 0 0 198.9,20 c -2.3,0 -4,1.7 -4.7,3.9 h -0.1 a 4.54,4.54 0 0 0 0.1,-1 V 22 c 0,-1.2 -0.6,-1.7 -1.9,-1.7 h -2.7 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 V 35.1 Z M 177,26 a 4.24,4.24 0 0 1 4.4,-3.8 c 1.8,0 3.4,1.3 3.5,3.8 z m -3.1,1.7 a 7.59,7.59 0 0 0 7.9,7.8 8.61,8.61 0 0 0 5.7,-2.2 l -1.2,-2 A 6.88,6.88 0 0 1 182,33 5,5 0 0 1 176.9,28.1 h 10.8 c 0,0 0.1,-0.8 0.1,-1.2 0,-3.8 -2.2,-6.9 -6.4,-6.9 -4.2,0 -7.5,3 -7.5,7.7 z M 163.3,33 c -2.5,0 -4.2,-2.1 -4.2,-5.3 0,-3.4 1.9,-5.3 4.2,-5.3 2.8,0 4.2,2.6 4.2,5.3 0.1,3.8 -2,5.3 -4.2,5.3 z m -7,-5.3 c 0,4.6 2.5,7.8 6.5,7.8 a 5.39,5.39 0 0 0 4.9,-2.7 h 0.1 v 0.8 c 0,1 0.5,1.6 1.8,1.6 h 2.7 V 32.8 H 171 a 0.53,0.53 0 0 1 -0.6,-0.6 V 16.4 a 1.65,1.65 0 0 0 -1.9,-1.9 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 v 3.7 a 4.54,4.54 0 0 0 0.1,1 h -0.1 c 0,0 -1.1,-2.3 -4.6,-2.3 -3.9,0.1 -6.6,3.1 -6.6,7.8 z m -6.5,5.6 a 1.65,1.65 0 0 0 1.9,1.9 h 2.8 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 V 16.4 a 1.65,1.65 0 0 0 -1.9,-1.9 H 148 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z m -7.9,0 a 1.65,1.65 0 0 0 1.9,1.9 h 2.8 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 v -9.9 a 1.65,1.65 0 0 0 -1.9,-1.9 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z M 142,17.4 h 2.5 v -3 H 142 Z m -18.5,12.4 c 0,3.9 1.7,5.7 5,5.7 a 5.83,5.83 0 0 0 5.4,-3.4 h 0.1 v 1.4 c 0,1.1 0.6,1.6 1.9,1.6 h 2.7 v -2.4 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 V 20.3 H 134 v 6.9 c 0,2.9 -1.8,5.6 -4.8,5.6 -2.3,0 -2.8,-1.6 -2.8,-3.7 v -7 c 0,-1.3 -0.6,-1.8 -1.9,-1.8 h -2.8 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 z m -14.8,-2 c 0,-3.8 2,-5.3 4.2,-5.3 2.5,0 4.2,2.1 4.2,5.3 0,3.4 -1.9,5.3 -4.3,5.3 -2.7,0 -4.1,-2.7 -4.1,-5.3 z m -2.8,7.3 h 2.7 v -1 A 6.27,6.27 0 0 0 108.5,33 h 0.1 a 5.28,5.28 0 0 0 4.7,2.5 c 3.9,0 6.7,-3 6.7,-7.8 0,-4.6 -2.5,-7.8 -6.5,-7.8 a 5.38,5.38 0 0 0 -4.8,2.4 h -0.1 a 6.76,6.76 0 0 0 0.1,-1.2 v -4.8 a 1.65,1.65 0 0 0 -1.9,-1.9 H 104 v 2.4 h 1.2 a 0.53,0.53 0 0 1 0.6,0.6 v 17.7 z"
+     id="path2"
+     style="fill:#ff6903;fill-opacity:1" /><path
+     class="a"
+     d="m 64.2,32.6 c -1.5,0 -2.3,-0.9 -2.3,-1.9 0,-2.1 3.1,-2.3 5,-2.3 h 0.6 v 0.4 c 0.1,1.7 -1.4,3.8 -3.3,3.8 m -6,-1.8 c 0,3 2.4,4.7 5.1,4.7 a 4.79,4.79 0 0 0 4.5,-2.6 h 0.1 v 0.6 c 0,0.9 0.5,1.6 1.9,1.6 H 73 V 32 h -1.2 a 0.53,0.53 0 0 1 -0.6,-0.6 v -5.6 c 0,-3.3 -1.5,-5.9 -6.4,-5.9 -1.5,0 -5.5,0.3 -5.5,3.1 v 1.6 h 3.5 v -0.8 c 0,-0.8 1.3,-1 2,-1 1.9,0 2.8,0.8 2.8,2.9 v 0.1 H 67 c -2.4,0 -8.8,0.4 -8.8,5 z m 40.4,-5 h -6.5 a 3.58,3.58 0 0 1 3.7,-3 c 1.5,-0.1 2.7,1.2 2.8,3 z m -10.4,1.9 a 7.67,7.67 0 0 0 8,7.8 9,9 0 0 0 6,-2.3 l -1.6,-2.6 a 6.79,6.79 0 0 1 -4.2,1.7 4.3,4.3 0 0 1 -4.5,-4 h 10.3 c 0,0 0.1,-0.9 0.1,-1.4 0,-3.9 -2.3,-7.1 -6.6,-7.1 -4.3,0 -7.5,3.3 -7.5,7.9 z m -13.9,5.1 a 8.12,8.12 0 0 0 6.2,2.7 c 3.2,0 5.7,-1.8 5.7,-4.6 0,-5 -7.9,-4.5 -7.9,-6.8 0,-0.9 0.9,-1.3 2.2,-1.3 0.8,0 1.9,0.4 1.9,1.1 v 0.7 h 3.3 V 23 c 0,-2.4 -3.2,-3.1 -5.2,-3.1 -3.1,0 -5.8,1.4 -5.8,4.4 0,4.8 7.9,4.8 7.9,6.9 0,1 -0.9,1.5 -2,1.5 a 6.64,6.64 0 0 1 -4.4,-2.2 z m -25.5,2.3 c 3.9,0 7.2,-1.9 7.2,-6 a 5,5 0 0 0 -3.3,-4.9 v -0.1 a 4.65,4.65 0 0 0 2.5,-4.4 c 0,-3.4 -2.7,-5.4 -6.4,-5.4 h -9 v 3.2 h 8.9 a 2.41,2.41 0 0 1 2.6,2.6 2.47,2.47 0 0 1 -2.5,2.7 h -2.4 v 3 h 2.8 a 2.81,2.81 0 0 1 2.9,3 2.76,2.76 0 0 1 -2.9,3 h -3 A 0.53,0.53 0 0 1 45.6,31.2 V 18.5 h -3.8 v 14.7 c 0,1.4 0.6,2 2,2 h 5 z"
+     id="path3"
+     style="fill:#ff6903;fill-opacity:1" /></g><g
+   id="g27"
+   transform="matrix(0.38608031,0,0,0.38608031,6425.833,367.48524)"
+   inkscape:label="it-fundamentals"><path
+     style="fill:#7b86fe;stroke-width:1.67747"
+     d="m 820.74488,856.87097 c 1.15327,-0.46535 3.04041,-0.46535 4.19368,0 1.15327,0.46533 0.20969,0.8461 -2.09685,0.8461 -2.30653,0 -3.25009,-0.38077 -2.09683,-0.8461 z m -213.89013,-157.79484 -0.40699,-111.09785 -33.96884,-0.4908 -33.96881,-0.49086 34.02146,-0.38263 c 25.95897,-0.29196 34.21135,0.1143 34.82276,1.7142 0.44071,1.15326 0.60018,51.54035 0.35436,111.9713 l -0.44693,109.87445 z m 227.30991,-112.41306 55.77596,-0.47693 v -70.40863 -70.40864 l -54.93723,-0.47589 -54.93723,-0.47589 55.35659,0.0338 55.35662,0.0338 v 71.29258 71.29259 l -56.19534,0.035 -56.19534,0.035 z M 328.40667,444.06682 c 23.75721,-0.2625 62.63262,-0.2625 86.38983,0 23.75722,0.26252 4.3195,0.47728 -43.19492,0.47728 -47.51439,0 -66.95213,-0.21476 -43.19491,-0.47728 z m 244.47145,0.0179 33.53164,-0.50746 0.43836,-67.4836 0.43836,-67.48357 85.5511,-0.0235 85.55111,-0.0235 -85.11271,0.45828 -85.11272,0.45825 -0.43838,67.50291 -0.4384,67.50282 -33.96997,0.0535 -33.96999,0.0535 z M 340.06796,383.22 c -39.88488,-10.44921 -67.30577,-42.49098 -70.19165,-82.02019 -3.37989,-46.29637 28.04368,-86.79517 75.11203,-96.80456 18.22396,-3.87545 48.64427,-2.34687 64.61423,3.24679 29.74459,10.41839 51.69784,33.12782 60.1582,62.23046 3.44195,11.83986 3.8692,33.72927 0.90349,46.28576 -7.54788,31.95684 -36.57858,59.82758 -70.69359,67.86901 -15.34488,3.61701 -44.51563,3.22389 -59.90271,-0.80727 z"
+     id="path2-9" /><path
+     style="fill:#4eb2fe;stroke-width:1.67747"
+     d="M 286.05049,723.78411 V 445.32365 h 85.55109 85.55111 v 278.46046 278.46039 h -85.55111 -85.55109 z m 474.02855,275.85038 c -41.15944,-5.60355 -76.92452,-21.11074 -101.95707,-44.20698 -23.0286,-21.24729 -36.75722,-47.6605 -45.41729,-87.38076 -3.2974,-15.12383 -3.52399,-22.68973 -4.44633,-148.45632 l -0.97187,-132.52033 -33.96881,-0.4541 -33.96881,-0.4541 v -70.38439 -70.38439 l 33.96881,-0.45408 33.96881,-0.45412 0.4384,-67.51826 0.43841,-67.51827 h 85.53205 85.53209 v 67.93763 67.93763 h 55.3566 55.35659 v 70.45386 70.45384 h -55.39889 -55.39886 l 0.46164,122.03614 0.46165,122.03613 4.19368,7.48371 c 4.5355,8.09365 12.0073,13.99574 21.60982,17.06984 3.56566,1.1415 22.49973,2.25028 45.90845,2.68838 l 39.83999,0.74567 v 71.97668 71.9766 l -57.45344,-0.1728 c -37.95765,-0.1143 -63.09726,-0.9413 -74.08562,-2.43724 z"
+     id="path1-22" /></g>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+<path
+   fill-rule="evenodd"
+   clip-rule="evenodd"
+   d="m 3834.3474,285.25659 c -6.5565,0 -11.8728,5.24718 -11.8728,11.72009 0,6.47317 5.3162,11.72007 11.8728,11.72007 6.5578,0 11.8731,-5.2469 11.8731,-11.72007 0,-6.47291 -5.3153,-11.72009 -11.8731,-11.72009 z m -16.622,75.00851 c 0,-10.35616 8.5049,-18.75214 18.9971,-18.75214 10.491,0 18.997,8.39598 18.997,18.75214 0,10.35616 -8.506,18.75212 -18.997,18.75212 -10.4922,0 -18.9971,-8.39596 -18.9971,-18.75212 z m 137.7256,77.35203 c 0,16.82982 -13.8201,30.47269 -30.8689,30.47269 -17.0488,0 -30.8701,-13.64287 -30.8701,-30.47269 0,-16.82886 13.8213,-30.47172 30.8701,-30.47172 17.0488,0 30.8689,13.64286 30.8689,30.47172 z m 42.5693,222.68195 c 1.4298,0 2.6558,-0.52006 3.6764,-1.56021 1.0215,-1.03923 1.5325,-2.23548 1.5325,-3.58693 0,-1.35144 -0.511,-2.57262 -1.5325,-3.66545 -1.0206,-1.09093 -2.2466,-1.63687 -3.6764,-1.63687 h -46.5736 c -0.9193,0 -1.3793,-0.4157 -1.3793,-1.24799 V 605.3997 c 0,-0.93485 0.46,-1.40225 1.3793,-1.40225 h 43.8152 c 1.431,0 2.605,-0.49422 3.524,-1.48263 0.9194,-0.98749 1.3792,-2.15696 1.3792,-3.50932 0,-1.35145 -0.4598,-2.5209 -1.3792,-3.5084 -0.919,-0.98748 -2.093,-1.48261 -3.524,-1.48261 h -43.8152 c -0.9193,0 -1.3793,-0.41568 -1.3793,-1.24708 v -34.62306 c 0,-0.8323 0.46,-1.24799 1.3793,-1.24799 h 46.5736 c 1.4298,0 2.6558,-0.54594 3.6764,-1.63782 1.0215,-1.09188 1.5325,-2.31306 1.5325,-3.6645 0,-1.35236 -0.511,-2.54771 -1.5325,-3.58786 -1.0206,-1.0392 -2.2466,-1.55928 -3.6764,-1.55928 h -51.4762 c -2.3487,0 -4.3913,0.88405 -6.128,2.65116 -1.7357,1.76715 -2.6049,3.84742 -2.6049,6.23901 v 96.07184 c 0,2.3916 0.8692,4.47095 2.6049,6.239 1.7367,1.76714 3.779,2.65117 6.128,2.65117 z m 118.2178,0 c 1.43,0 2.6559,-0.52006 3.6764,-1.56021 1.0219,-1.03923 1.5326,-2.2872 1.5326,-3.74304 0,-1.45491 -0.5107,-2.70288 -1.5326,-3.74301 -1.0205,-1.03923 -2.2464,-1.5593 -3.6764,-1.5593 h -47.6451 c -0.8177,0 -1.2258,-0.46744 -1.2258,-1.4041 v -95.29221 c 0,-1.76715 -0.6384,-3.30055 -1.9159,-4.6012 -1.2759,-1.29972 -2.7824,-1.94912 -4.5191,-1.94912 -1.7357,0 -3.2432,0.64941 -4.5189,1.94912 -1.2765,1.30064 -1.9149,2.83405 -1.9149,4.6012 v 98.4117 c 0,2.3916 0.8683,4.47096 2.604,6.23901 1.7367,1.76716 3.779,2.65116 6.1282,2.65116 z m 135.0726,-1.95003 c -0.9192,1.30062 -2.145,1.95003 -3.6775,1.95003 -2.0425,0 -3.8547,-0.59858 -5.4382,-1.79391 -1.5832,-1.19536 -2.6816,-2.72875 -3.2941,-4.60029 l -8.1198,-25.57864 c -0.3065,-0.83138 -0.9191,-1.24706 -1.8382,-1.24706 h -42.4371 c -0.8176,0 -1.3791,0.41568 -1.685,1.24706 l -8.4263,25.88993 c -0.6127,1.87153 -1.6592,3.35416 -3.1408,4.4451 -1.481,1.09189 -3.1917,1.6378 -5.1326,1.6378 -1.5315,0 -2.7572,-0.64941 -3.6764,-1.95003 -0.9192,-1.29971 -1.1234,-2.67701 -0.6135,-4.13287 l 34.9309,-101.21896 c 0.715,-1.9759 1.9148,-3.56107 3.5998,-4.75729 1.6859,-1.19535 3.549,-1.79302 5.5924,-1.79302 2.0425,0 3.9065,0.59767 5.5914,1.79302 1.6859,1.19623 2.8858,2.78139 3.6009,4.75729 l 34.7763,101.06379 c 0.5108,1.5593 0.3067,2.98833 -0.6122,4.28805 z m -25.5851,-41.25192 h -36.0024 c -0.3066,0 -0.5625,-0.12932 -0.7667,-0.38981 -0.2041,-0.25957 -0.255,-0.54594 -0.1533,-0.85725 l 18.6912,-58.01794 c 0,-0.10342 0.1029,-0.15612 0.3064,-0.15612 0.1029,0 0.1536,0.0527 0.1536,0.15612 l 18.6903,58.01794 c 0,0.31131 -0.077,0.59768 -0.2301,0.85725 -0.1533,0.26049 -0.3834,0.38981 -0.689,0.38981 z m 148.0938,41.33043 c -1.2287,1.24798 -2.7076,1.87152 -4.4446,1.87152 -4.1864,0 -7.3546,-1.87152 -9.4979,-5.61547 l -50.8635,-87.80612 c 0,-0.10343 -0.1029,-0.1552 -0.3064,-0.1552 -0.1008,0 -0.1533,0.0517 -0.1533,0.1552 v 87.33868 c 0,1.76807 -0.6127,3.22392 -1.8375,4.36658 -1.1242,1.14454 -2.5038,1.71635 -4.1367,1.71635 -1.635,0 -3.0391,-0.5718 -4.2131,-1.71635 -1.1752,-1.14266 -1.7626,-2.5985 -1.7626,-4.36658 V 552.84109 c 0,-1.76713 0.6125,-3.27469 1.8392,-4.52268 1.2249,-1.24706 2.7058,-1.87151 4.4425,-1.87151 4.1885,0 7.354,1.87151 9.4988,5.61457 l 50.8645,87.80612 c 0,0.10428 0.1008,0.1561 0.3048,0.1561 0.1008,0 0.1563,-0.0517 0.1563,-0.1561 v -87.33873 c 0,-1.76711 0.5837,-3.22298 1.7569,-4.36656 1.174,-1.14359 2.578,-1.7154 4.2131,-1.7154 1.6352,0 3.0403,0.57182 4.2135,1.7154 1.1739,1.14358 1.7641,2.59944 1.7641,4.36656 v 101.37602 c 0,1.76715 -0.6105,3.2747 -1.8381,4.52268 z m 119.4408,1.87152 c 1.4318,0 2.6325,-0.52006 3.6025,-1.56022 0.97,-1.03922 1.4588,-2.23548 1.4588,-3.5869 0,-1.45492 -0.5155,-2.70291 -1.5334,-3.74305 -1.0246,-1.04014 -2.1979,-1.55929 -3.5279,-1.55929 h -51.935 c -0.1008,0 -0.1497,-0.0517 -0.1497,-0.1561 v -0.15519 l 0.1497,-0.15613 54.3911,-88.11928 c 1.7367,-2.59943 2.6052,-5.82239 2.6052,-9.66888 0,-1.35238 -0.4887,-2.54772 -1.4588,-3.58786 -0.97,-1.03921 -2.1707,-1.55929 -3.6025,-1.55929 h -61.2778 c -1.4312,0 -2.6318,0.52008 -3.6028,1.55929 -0.9698,1.04014 -1.4511,2.23548 -1.4511,3.58786 0,1.4549 0.5081,2.70287 1.5325,3.74303 1.018,1.03921 2.192,1.55928 3.5214,1.55928 h 51.9359 c 0.1008,0 0.1486,0.0517 0.1486,0.1561 v 0.15522 l -0.1486,0.15611 -54.3849,88.11927 c -1.7366,2.59849 -2.6049,5.8224 -2.6049,9.66889 0,1.35143 0.4813,2.5477 1.4511,3.58692 0.971,1.04015 2.1716,1.56021 3.6028,1.56021 z m 135.6833,-1.95004 c -0.9147,1.30063 -2.1434,1.95004 -3.6767,1.95004 -2.0414,0 -3.8519,-0.59858 -5.4315,-1.79392 -1.589,-1.19535 -2.6791,-2.72875 -3.2978,-4.60028 l -8.1199,-25.57864 c -0.3049,-0.83137 -0.9238,-1.24706 -1.8385,-1.24706 h -42.4343 c -0.8212,0 -1.3838,0.41569 -1.6895,1.24706 l -8.4265,25.88994 c -0.6105,1.87152 -1.6555,3.35415 -3.1407,4.44509 -1.4789,1.09188 -3.1887,1.63781 -5.1295,1.63781 -1.5334,0 -2.7612,-0.64941 -3.6765,-1.95004 -0.9228,-1.29971 -1.1271,-2.67702 -0.6107,-4.13286 l 34.9261,-101.21897 c 0.7122,-1.9759 1.913,-3.56106 3.6025,-4.75729 1.6831,-1.19535 3.5483,-1.79302 5.5906,-1.79302 2.0425,0 3.9076,0.59767 5.5905,1.79302 1.6896,1.19623 2.8831,2.78139 3.6029,4.75729 l 34.778,101.06378 c 0.5081,1.5593 0.3049,2.98834 -0.6185,4.28805 z m -25.5879,-41.25191 h -35.9949 c -0.305,0 -0.5627,-0.12932 -0.7667,-0.38981 -0.2032,-0.25957 -0.258,-0.54594 -0.1561,-0.85725 l 18.6919,-58.01794 c 0,-0.10342 0.1009,-0.15613 0.3049,-0.15613 0.1008,0 0.1562,0.0527 0.1562,0.15613 l 18.6883,58.01794 c 0,0.31131 -0.074,0.59768 -0.2309,0.85725 -0.1569,0.26049 -0.3786,0.38981 -0.6927,0.38981 z M 3834.3474,496.218 c -17.0486,0 -30.8688,13.64286 -30.8688,30.47173 0,16.82979 13.8202,30.47267 30.8688,30.47267 17.0489,0 30.8701,-13.64287 30.8701,-30.47267 0,-16.82887 -13.8212,-30.47173 -30.8701,-30.47173 z m -35.6187,128.92038 c 0,-19.41813 15.9475,-35.15977 35.6187,-35.15977 19.6722,0 35.6189,15.74164 35.6189,35.15977 0,19.41909 -15.9468,35.1607 -35.6189,35.1607 -19.6712,0 -35.6187,-15.74161 -35.6187,-35.1607 z m 35.6187,-213.30494 c -14.4252,0 -26.12,11.54409 -26.12,25.78369 0,14.24053 11.6948,25.78464 26.12,25.78464 14.4262,0 26.1209,-11.54411 26.1209,-25.78464 0,-14.2396 -11.6946,-25.78369 -26.1209,-25.78369 z m 225.5854,25.78369 c 0,19.41909 -15.9466,35.16072 -35.6189,35.16072 -19.6713,0 -35.6179,-15.74164 -35.6179,-35.16073 0,-19.41813 15.9466,-35.15976 35.6179,-35.15976 19.6723,0 35.6189,15.74164 35.6189,35.15977 z m -303.9469,16.4086 c 10.4916,0 18.9969,-8.39597 18.9969,-18.75213 0,-10.35616 -8.5053,-18.75213 -18.9969,-18.75213 -10.4913,0 -18.9963,8.39597 -18.9963,18.75213 0,10.35616 8.505,18.75213 18.9963,18.75213 z m -52.24,-16.4086 c 0,6.47363 -5.3159,11.72055 -11.8731,11.72055 -6.5573,0 -11.8728,-5.24692 -11.8728,-11.72055 0,-6.4727 5.3156,-11.71961 11.8728,-11.71961 6.5572,0 11.8731,5.24691 11.8731,11.71961 z"
+   fill="#5ac7bc"
+   id="path1-2"
+   inkscape:label="elanza"
+   style="stroke-width:9.23746" /><path
+   style="fill:url(#linearGradient7);fill-opacity:1;stroke-width:2.35294"
+   d="m 5240.7735,667.25742 c -13.1363,-5.71423 -16.065,-16.7865 -6.8717,-25.97977 4.7692,-4.76925 5.1418,-6.10189 2.3529,-8.41646 -4.3624,-3.62052 -4.2084,-11.6138 0.3492,-18.1208 l 3.663,-5.22943 -3.663,-5.22943 c -8.3218,-11.88118 -1.7142,-32.04954 12.2383,-37.35423 3.3593,-1.27724 16.3134,-1.55711 30.2792,-0.65418 l 24.4081,1.57799 v 5.53582 c 0,4.74209 -1.1633,5.53579 -8.113,5.53579 h -8.1128 l 2.5475,7.30792 c 5.6827,16.30157 -10.6234,31.59772 -31.8964,29.92084 -7.6462,-0.6027 -9.7844,0.0847 -10.4283,3.35264 -1.1411,5.79034 8.362,8.83037 27.6035,8.83037 12.624,0 17.3082,1.02899 22.1997,4.87666 11.7616,9.25164 6.4334,24.97895 -11.1709,32.97334 -11.5757,5.25674 -34.5203,5.79915 -45.3853,1.07293 z m 39.2057,-11.36966 c 3.2238,-1.63106 6.2126,-4.78885 6.6417,-7.01726 1.0658,-5.53424 -8.3505,-8.77131 -25.5149,-8.77131 -11.8613,0 -14.2817,0.74753 -16.6306,5.13647 -2.3405,4.3732 -1.9644,5.77174 2.5309,9.41177 6.232,5.04641 24.1202,5.7193 32.9729,1.24033 z m -8.988,-54.97677 c 8.428,-7.62719 2.7772,-24.34121 -8.2294,-24.34121 -6.9638,0 -13.3501,6.84756 -13.3501,14.31427 0,12.35237 12.5608,18.18877 21.5795,10.02694 z m -355.697,58.69541 c -10.0453,-3.69358 -11.7648,-7.93132 -11.7648,-28.99552 0,-22.32871 -0.9446,-24.20657 -13.5294,-26.89753 -10.3699,-2.2173 -10.5112,-9.5119 -0.2243,-11.56932 12.5824,-2.51645 13.7537,-4.83824 13.7537,-27.26238 0,-25.36335 2.6047,-28.69567 23.6176,-30.2156 l 14.0295,-1.01479 v 4.98868 c 0,3.99811 -1.4323,4.98868 -7.2135,4.98868 -14.519,0 -16.3159,2.73005 -16.3159,24.78864 0,16.77998 -0.7413,20.65847 -4.7059,24.62311 l -4.7059,4.70588 4.7059,4.70588 c 3.9646,3.96464 4.7059,7.84314 4.7059,24.62311 0,22.05862 1.7969,24.78866 16.3159,24.78866 5.6449,0 7.2135,1.02331 7.2135,4.70589 0,4.07148 -1.5067,4.68083 -11.1765,4.52012 -6.1471,-0.1022 -12.7647,-0.76976 -14.7058,-1.48351 z m 1023.5293,-2.75382 c 0,-3.99811 1.4323,-4.98868 7.2135,-4.98868 14.519,0 16.3159,-2.73004 16.3159,-24.78866 0,-16.77997 0.7413,-20.65847 4.7059,-24.62311 l 4.7059,-4.70588 -4.7059,-4.70588 c -3.9646,-3.96464 -4.7059,-7.84313 -4.7059,-24.62311 0,-22.05859 -1.7969,-24.78864 -16.3159,-24.78864 -5.7812,0 -7.2135,-0.99057 -7.2135,-4.98868 v -4.98868 l 14.0295,1.01479 c 21.0129,1.51993 23.6175,4.85225 23.6175,30.2156 0,22.42414 1.1714,24.74593 13.7538,27.26238 10.2869,2.05742 10.1456,9.35202 -0.2243,11.56932 -12.5848,2.69096 -13.5294,4.56882 -13.5294,26.89753 0,25.36333 -2.6047,28.69565 -23.6176,30.21559 l -14.0295,1.0148 z m -970.1961,-18.32202 c -0.8627,-0.86273 -1.5686,-24.68626 -1.5686,-52.94117 v -51.37254 h 8.2353 8.2353 v 18.82353 c 0,10.35293 0.7941,18.78599 1.7647,18.74014 0.9706,-0.0458 4.4118,-1.59656 7.6471,-3.44602 20.6969,-11.83144 42.3529,5.01214 42.3529,32.94117 0,29.09769 -22.674,46.68722 -45.1802,35.04886 l -7.2994,-3.7747 -2.1124,3.7747 c -2.1332,3.81188 -9.1811,5.09953 -12.0747,2.20603 z m 42.4112,-17.84313 c 6.1686,-6.80346 8.1778,-17.79144 5.2153,-28.52102 -3.7365,-13.53235 -15.315,-17.18468 -26.5248,-8.36703 -5.5385,4.3566 -6.1997,6.47525 -6.1997,19.8666 0,12.82283 0.756,15.51945 5.2295,18.65276 7.4379,5.20977 16.6913,4.53224 22.2797,-1.63131 z m 51.818,17.95467 c -0.9241,-0.9241 -1.6802,-17.38603 -1.6802,-36.58212 v -34.90197 h 8.2353 8.2353 v 7.49906 7.49903 l 6.4706,-6.03506 c 9.2639,-8.64033 15.4534,-11.31597 26.1771,-11.31597 10.7329,0 13.1441,2.41198 10.9903,10.9935 -1.3166,5.24585 -2.4231,5.83771 -8.6031,4.60171 -8.4979,-1.69958 -20.1083,2.81806 -27.2882,10.61786 -4.4131,4.79408 -5.2981,8.82223 -5.8824,26.77383 l -0.6877,21.13077 -7.1434,0.69973 c -3.9289,0.38487 -7.8995,-0.0564 -8.8236,-0.98037 z m 112.9412,0 c -0.9241,-0.9241 -1.6802,-14.15904 -1.6802,-29.41102 V 581.5002 l -14.7058,-0.70048 -14.7059,-0.70051 -0.7446,-6.47059 -0.7444,-6.47061 h 24.9233 24.9235 l -0.6494,35.88237 -0.6496,35.88236 -7.1434,0.69973 c -3.9289,0.38487 -7.8994,-0.0564 -8.8235,-0.98037 z M 5320,587.15803 v -52.94118 h 8.2353 8.2353 v 19.99999 c 0,11.00001 0.7108,20 1.5795,20 0.8686,0 3.4727,-1.71346 5.7868,-3.80766 5.3824,-4.87108 23.3774,-6.94573 29.9119,-3.44857 9.9142,5.30595 12.3347,14.54273 11.6198,44.34217 l -0.6627,27.61996 -7.4413,0.72196 -7.4413,0.72196 -0.794,-27.38678 c -0.6916,-23.8551 -1.383,-27.81688 -5.3613,-30.72195 -6.1472,-4.48876 -10.4702,-4.19136 -19.5504,1.34489 l -7.647,4.66249 v 25.91694 25.91694 H 5328.2353 5320 Z m 112.3901,46.07823 -7.6843,-6.86294 -0.8109,-22.42008 -0.811,-22.42007 -8.6007,-0.71698 c -7.421,-0.61863 -8.703,-1.60464 -9.3454,-7.18757 l -0.7445,-6.47061 h 9.3163 c 10.315,0 12.1728,-2.36351 12.1728,-15.48656 v -8.04283 h 6.9299 6.9299 l 0.7171,11.17647 0.7171,11.17646 15.8824,0.69575 15.8823,0.69574 v 6.95132 6.95131 H 5456.4706 5440 l 0.034,15.88236 c 0.019,8.7353 1.3782,18.5294 3.0203,21.7647 2.6578,5.23634 4.5274,5.90757 17.0241,6.11198 l 14.0386,0.22965 0.7148,5.9334 c 0.8462,7.02412 -3.699,8.8204 -22.4424,8.86932 -10.3064,0.0268 -13.5696,-1.08765 -20,-6.83082 z m 64.0805,-46.07823 v -52.94118 h 8.2353 8.2353 v 18.82353 c 0,10.35293 0.3667,18.82352 0.8149,18.82352 0.4483,0 4.2518,-1.71453 8.4525,-3.81009 18.1648,-9.0618 38.2197,2.31009 41.3931,23.47158 2.613,17.42505 -0.7042,29.75937 -10.6889,39.74399 -7.5258,7.52578 -10.357,8.82981 -19.1713,8.82981 -5.7934,0 -12.7741,-1.70385 -15.8727,-3.87417 l -5.5311,-3.8742 -2.1681,3.8742 c -1.1925,2.13078 -4.7626,3.87417 -7.9335,3.87417 h -5.7655 z m 44.5351,32.62385 c 6.7585,-8.59211 6.8572,-29.46686 0.1709,-36.15328 -5.6319,-5.63184 -11.9232,-5.96158 -21.2933,-1.11604 l -6.9421,3.58983 v 17.2271 17.22706 l 5.2942,2.55326 c 9.38,4.52384 17.5312,3.33251 22.7704,-3.32793 z m 56.6175,15.0232 c -12.7071,-8.64835 -17.0703,-16.35172 -17.2749,-30.49906 -0.3172,-21.94982 12.5052,-37.01671 33.0058,-38.78331 22.6493,-1.95178 38.4176,13.11322 38.4017,36.68915 -0.01,15.48538 -5.484,26.15541 -17.0284,33.19416 -10.646,6.49094 -27.0751,6.22488 -37.1042,-0.60094 z m 30.4808,-13.39816 c 10.6365,-10.63655 7.5161,-36.65807 -4.9204,-41.03179 -13.6947,-4.81613 -25.5365,5.42145 -25.5365,22.077 0,8.19053 5.4104,20.12792 9.9505,21.95462 6.6998,2.69568 16.2008,1.3058 20.5064,-2.99983 z m 56.6007,13.39816 c -15.3279,-10.46261 -20.9466,-32.79509 -12.6499,-50.27897 12.342,-26.00896 51.7725,-25.83845 64.4156,0.27854 6.1293,12.6615 5.952,23.63234 -0.5881,36.38658 -9.4181,18.36702 -34.4565,25.02752 -51.1776,13.61385 z m 32.7716,-15.0232 c 7.244,-9.20933 6.7779,-27.40712 -0.8988,-35.08374 -7.3606,-7.36067 -16.3827,-7.36067 -23.7432,0 -7.9124,7.9123 -8.277,27.72912 -0.6594,35.83765 7.2323,7.69854 18.9267,7.35009 25.3014,-0.75391 z m 55.4648,17.43497 c -3.8823,-1.38096 -8.8786,-3.7562 -11.1027,-5.2783 -3.5672,-2.44117 -3.6483,-3.33239 -0.6872,-7.55985 l 3.3567,-4.79241 13.6284,4.62371 c 16.4672,5.58679 29.653,3.71893 30.8069,-4.36398 0.7796,-5.46058 -2.7344,-7.32573 -25.8923,-13.74289 -18.537,-5.13666 -25.3763,-16.39533 -18.1557,-29.88722 5.34,-9.97794 27.8432,-14.37705 44.7536,-8.74884 11.8125,3.93147 14.3083,6.9614 10.2469,12.43958 -2.8557,3.85185 -4.2303,4.11048 -9.3787,1.76472 -9.6053,-4.37648 -28.5246,-3.56291 -30.3933,1.30694 -2.0696,5.39317 3.4467,9.1763 17.9,12.27597 16.3686,3.51045 24.6443,8.36389 27.1964,15.9499 5.6377,16.75796 -7.5342,29.01108 -30.8622,28.70926 -7.8969,-0.1022 -17.5344,-1.31564 -21.4168,-2.69659 z m 101.8458,-1.70859 c -7.8629,-6.19586 -11.2272,-17.62778 -11.2443,-38.2082 l -0.014,-15.74032 -8.8235,-0.73025 c -7.6071,-0.62961 -8.9243,-1.60277 -9.5543,-7.05862 l -0.7309,-6.32833 10.1426,-0.73049 10.1436,-0.7305 1.1764,-10.58822 1.1765,-10.58825 7.6471,-0.73732 7.647,-0.73732 v 11.91379 11.91378 h 16.6269 16.6269 l -0.7446,6.47061 -0.7445,6.47059 -15.8824,0.69574 -15.8823,0.69574 v 18.54795 c 0,23.17606 2.5539,26.5309 19.5115,25.63087 10.5122,-0.55795 12.0252,-0.0234 13.843,4.8903 1.1224,3.0342 1.4173,6.14015 0.6554,6.90211 -0.7621,0.76193 -8.9906,1.76691 -18.2859,2.2333 -14.4859,0.72677 -17.8134,0.12873 -23.2901,-4.18696 z M 5173.1093,549.3429 c -2.0337,-2.0336 -3.6975,-5.21008 -3.6975,-7.05882 0,-4.42372 8.4592,-12.77311 12.9412,-12.77311 4.4818,0 12.9411,8.34939 12.9411,12.77311 0,5.1435 -6.7529,10.7563 -12.9411,10.7563 -3.0505,0 -7.2101,-1.66386 -9.2437,-3.69748 z"
+   id="path5"
+   inkscape:label="brightboost" /><g
+   id="g4"
+   transform="matrix(5.7142894,0,0,5.7142894,8580,485.71421)"
+   inkscape:label="niteo">
+	<path
+   class="st0"
+   d="m 22,38.2 c 3.7,-0.4 6.4,-1.6 6.4,-3 V 31.6 H 10.7 v 3.6 c 0,1.4 2.7,2.6 6.4,3 v 0.9 c 0,0.5 1.1,0.9 2.4,0.9 1.3,0 2.4,-0.4 2.4,-0.9 v -0.9 z"
+   id="path1-9" />
+	<path
+   class="st1"
+   d="m 9.2,4.2 h 20.6 c 1,0 1.8,-0.9 1.8,-2.1 C 31.6,0.9 30.8,0 29.8,0 H 9.2 C 8.2,0 7.4,0.9 7.4,2.1 7.5,3.3 8.2,4.2 9.2,4.2 m 0,21 h 20.6 c 1,0 1.8,0.9 1.8,2.1 0,1.2 -0.8,2.1 -1.8,2.1 H 9.2 c -1,0 -1.8,-0.9 -1.8,-2.1 0.1,-1.1 0.8,-2.1 1.8,-2.1 M 6,18.9 h 27.2 c 1.3,0 2.3,0.9 2.3,2.1 0,1.2 -1,2.1 -2.3,2.1 H 6 C 4.7,23.1 3.7,22.2 3.7,21 3.6,19.9 4.7,18.9 6,18.9 M 2.8,12.6 h 33.4 c 1.6,0 2.8,0.9 2.8,2.1 0,1.2 -1.3,2.1 -2.8,2.1 H 2.8 C 1.2,16.8 0,15.9 0,14.7 0,13.6 1.3,12.6 2.8,12.6 M 6,10.5 h 27.2 c 1.3,0 2.3,-0.9 2.3,-2.1 0,-1.2 -1,-2.1 -2.3,-2.1 L 6,6.3 c -1.3,0 -2.3,0.9 -2.3,2.1 -0.1,1.2 1,2.1 2.3,2.1"
+   id="path2-7" />
+	<path
+   class="st0"
+   d="m 124.9,18.1 v 13.1 h 16.9 v -3.6 h -12.9 v -6 h 11.3 V 18 h -15.3 z m 45.9,1.9 c 0,4.3 -3.2,7.9 -7.6,7.9 -4.4,0 -7.7,-3.7 -7.7,-8 0,-4.1 3,-7.8 7.3,-7.9 4.6,-0.1 8,3.6 8,8 m 4.2,0 c 0,-6.5 -5.3,-11.6 -11.8,-11.6 -6.5,0 -11.8,5.1 -11.8,11.6 0,6.5 5.3,11.6 11.8,11.6 6.5,0 11.8,-5.1 11.8,-11.6 M 107.8,12.4 H 115 V 8.8 H 96.6 v 3.6 h 7.2 v 18.8 h 4 z M 82.4,31.2 h 3.9 V 8.8 H 82.4 Z M 66.6,24.3 54.6,8.8 h -3.7 v 22.4 h 3.9 V 15.3 l 12.4,15.9 h 3.3 V 8.8 h -3.9 z"
+   id="path3-3" />
+	<path
+   class="st1"
+   d="m 141.1,8.8 h -15.5 c -0.8,0 -1.5,0.7 -1.5,1.5 v 0.6 c 0,0.8 0.7,1.5 1.5,1.5 h 15.5 c 0.8,0 1.5,-0.7 1.5,-1.5 v -0.6 c 0,-0.8 -0.7,-1.5 -1.5,-1.5"
+   id="path4-6" />
+</g>
+<g
+   id="g28"
+   transform="matrix(0.33286228,0,0,0.33451752,3766.1488,121.84482)"
+   inkscape:label="liberty-mutual"><path
+     d="m 11970.247,1162.975 c -2.738,-3.6125 -9.5,-0.6375 -9.5,-0.6375 l -108.125,40.0875 a 392.95,392.95 0 0 0 -29.05,-57.6125 l 35.013,-95.5375 c 0,0 4.375,-9.4875 0.312,-11.85 -4.025,-2.3875 -10.6,3.9625 -10.6,3.9625 l -63.6,52.1625 c -24.8,-26.5625 -53.913,-47.9875 -87.362,-63.1625 a 290.05,290.05 0 0 0 -38.988,-14.025 l -19.737,-75.58747 c 0,0 -1.701,-7.575 -6.775,-7.575 -5.063,0 -6.438,7.1625 -6.438,7.1625 l -12.65,66.77497 a 339.925,339.925 0 0 0 -42.825,-2.75 c -47.437,0 -89.575,9 -126.462,25.55 a 267.825,267.825 0 0 0 -44.538,25.3125 c -2.312,1.625 -4.5,3.3875 -6.763,5.075 -13.125,-33.7875 -23.449,-61.36246 -25.387,-69.64997 7.288,-6.6125 22.6,-30.7125 26.338,-46.975 5.187,-22.75002 3.6,-33.51252 -1.875,-50.72502 -3.963,-12.5875 -11.925,-24.3625 -11.4,-32.3125 0.4,-5.9375 3.562,-10.1875 6.237,-12.925 -1.45,-8.35 -6.887,-11.9875 -13.35,-12.825 -5.95,-0.8 -10.588,0.95 -15.887,1.1875 -1.326,-2.45 -3.988,-1.9875 -1.988,-10.6 3.025,-13.05 28.05,-19.175 48.55,-27.1125 25.938,-10.0625 40.425,-28.75 41.3,-58.7375 0.625,-21.8125 -11.525,-37.95 -26.762,-45.225 -3.063,8.8 -15.7,20.6375 -24.488,25.4625 -8.65,4.775 -20.65,6.6 -29.325,4.575 1.9,-16.0375 -5.5,-29.7 -17.213,-35.2125 -3.75,6.8375 -17.837,16.2625 -39.012,15.6125 -21.175,-0.675 -22.537,-5.6875 -52.287,-5.5875 -42.351,0.075 -77.425,25.625 -81.738,63.125 -2.775,24.3625 6.588,44.8 13.65,55.3875 -5.275,3.9625 -17.65,15.875 -19.863,19.45 -3.062,-3.575 -11.462,-8.325 -21.587,-1.7125 2.187,5.325 2.6,11.8 0.875,18.0125 -1.75,6.1375 -17.2,36.1625 -18.962,60.3875 -3,41.01252 20.687,68.77502 40.562,76.71252 -4.388,6.625 -5.3,13.66247 -2.2,19.42497 2.037,3.8125 6.15,7.5 14.562,7.5 -4.849,5.2875 -6.687,13.275 -3.537,21.15 3.537,8.8125 13.65,21.625 22.488,21.625 -0.438,7.4875 3.087,25.1 4.862,32.175 -3.075,5.7375 -6.188,10.075 -5.725,20.65 0.438,11.025 7.5,19.925 16.3,21.6875 2.212,5.3125 3.875,11.125 6.938,14.65 3.087,3.5375 5.837,7.825 12.475,12.225 6.6,4.4125 14.1,7.9625 22.937,7.9625 8.813,0 16.575,0.425 20.55,-0.8875 0.187,2.525 1.013,25.8625 2.038,51.775 -22.175,61.725 -33.238,133.2875 -33.238,210.05 v 0.037 c 0.01,137.5875 39.25,260.1625 114.162,339.1625 0,0 4.313,5.3125 16.338,13.0875 0,0 23.45,-40.075 59.113,-85.65 a 313.1625,313.1625 0 0 1 30.774,-33.4875 762.9625,762.9625 0 0 1 51.125,-40.85 c 46.101,-31.4 99.451,-55.325 148.75,-65.5 -56.537,29.1375 -88.587,44.7625 -141.75,90.3375 -33.637,28.8625 -87.262,79.775 -123.912,149.55 7.625,6.05 17.9,12.2625 30.013,13.4875 7.75,-9.1 47.6,-82.175 108.787,-140.925 123.775,-115.9 269.575,-142.7 345.913,-141.2375 4.287,-31.425 6.5,-64.1875 6.5,-98.0125 0,-55.4125 -5.776,-108.0375 -17.301,-156.2625 l 91.138,-101.425 c 0,-0.037 6.3,-6.325 3.6,-9.9625 z"
+     fill="#344673"
+     id="path2-2"
+     style="stroke-width:12.5" /><path
+     d="m 11292.447,1117.1875 c -5.275,-3.0875 -19.837,-10.175 -31.3,-9.7 -11.888,0.475 -21.925,2.875 -31.3,8.8125 -3.963,-2.6625 -5.2,-7.95 -2.65,-14.125 2.525,-6.15 6.187,-7.0375 6.187,-7.0375 l -3.362,-57.7875 c 0,0 16.237,-11.55 20.625,-12.8625 4.4,-1.3125 6.4,-4.7625 6.4,-9.1625 7.188,4.8875 17.8,15.7125 23.487,23.825 5.313,7.5 8.401,15.85 8.838,25.125 0.438,9.25 0.525,20.2875 -1.338,31.75 3.625,3.1 7.051,5.725 7.5,10.5625 0.438,4.8875 -1.312,6.625 -3.087,10.6 z m 526.562,179.9125 c -0.637,-11.2625 -13.712,-41.675 -21.637,-48.3 l 137.175,-60.8375 z m -376.299,-227.275 116.1,105.325 c -11.213,6.3 -28.026,23.2625 -32.638,37.125 z m 67.937,208.625 c -3.962,6.1875 -5.388,9.9 -6.712,17.375 -1.338,7.525 -0.35,11.6875 0.562,17.8625 l -35.637,-24.575 c 0.437,-8.35 -1.75,-21.9625 -2.313,-29.075 -0.06,-0.775 -0.312,-2.025 -0.513,-3.0875 z"
+     fill="#ffffff"
+     id="path3-9"
+     style="stroke-width:12.5" /><path
+     d="m 11314.497,1288.7 c -2.2,-3.9625 -12.338,-218.275 -12.775,-225.7375 l 11.463,-8.3625 v -2.225 c -8.363,-0.45 -18.088,-3.525 -21.138,-8.4125 l -3.1,-65.66247 c -11.487,-0.8875 -23.3,-4.525 -27.7,-8.9125 -5.488,-5.5125 -9.775,-12.275 -3.588,-24.1875 5.713,4 22.451,8.8375 37.013,8.8375 3.075,0 9.563,6.9375 13.25,8.3875 4.212,1.675 11.275,5.575 14.612,7.0375 3,1.3125 4.863,8.3625 5.75,11.0125 0.875,2.65 107.038,278.26247 108.826,281.33747 1.774,3.0875 7.962,49.3625 8.362,52.9 0.475,3.525 16.338,40.5375 19.412,44.0875 -14.1,-0.425 -37.212,7.65 -56.174,26.2125 -18.525,18.0875 -34.913,57.85 -38.638,76.1875 -1.325,-9.7125 -53.35,-168.5375 -55.575,-172.5 z m 134.925,263.6625 c -4.612,42.3625 -14.925,79.1125 -30.425,105.3625 -9.963,16.9 -37.963,51.1625 -47.762,64.0875 10.612,-21.1375 18.799,-72.2125 18.112,-111.9125 -0.438,-25.775 -8.262,-82.6375 -1.438,-120.3375 7.338,-40.45 18.838,-63.1875 45.913,-88.1125 13.8,-12.7125 42.075,-28.95 82.425,-17.9875 l 32.65,61.4 c -17.475,-3.3375 -40.562,-0.3375 -55.962,11.5 -28.95,22.2375 -38.7,52.225 -43.513,96 z"
+     fill="#ffffff"
+     id="path4-3"
+     style="stroke-width:12.5" /><path
+     d="m 11452.61,1635.8625 c 7.937,-17.875 18.375,-68.8125 21.299,-85.8625 3.776,-21.8625 7.276,-53.7875 33.326,-75.2625 12.799,-10.5625 33.825,-11.9375 42.187,-9.5 l 36.938,75.2125 c 3.299,7.9625 14.149,10.775 21.412,10.3375 -34.6,11.2375 -121.837,52.65 -155.162,85.075 z m 314.174,-240.125 c -5.937,9.275 -3.812,18.175 -0.525,24.3875 3.75,7 23.288,43.1 23.288,43.1 6.163,16.375 10.975,24.6125 16.85,35.1625 10.588,0 22.05,-0.275 34.15,0 -12.913,-28.9125 -42.4,-84.8 -42.4,-84.8 l -2.125,-45.0875 c -8.587,5.1875 -23.3,17.9875 -29.238,27.2375 z m -157.412,-239.4125 c 14.55,-2.625 47.5,0.3875 58.063,5.6875 l -33.45,-189.38747 z m -281.1,-175.84997 c -0.888,-2.6375 -2.712,-9.7 -5.75,-11.0125 -3.312,-1.4875 -10.4,-5.4 -14.613,-7.075 -3.65,-1.4375 -10.162,-8.35 -13.237,-8.35 -14.55,0 -31.312,-4.8375 -37.025,-8.8375 -6.187,11.9125 -1.9,18.675 3.588,24.1875 4.412,4.3875 16.212,7.975 27.7,8.9125 l 3.099,65.66247 c 3.063,4.8875 12.776,7.9375 21.138,8.3625 v 2.2 l -11.462,8.4125 c 0.437,7.4625 10.574,221.775 12.799,225.7375 2.188,3.9625 54.226,162.7875 55.538,172.475 3.712,-18.3 20.112,-58.0875 38.638,-76.175 18.962,-18.525 42.074,-26.6125 56.175,-26.1875 -3.076,-3.55 -18.938,-40.5625 -19.413,-44.0875 -0.4,-3.5375 -6.587,-49.8125 -8.337,-52.9 -1.775,-3.075 -107.963,-278.67497 -108.838,-281.32497 z"
+     fill="#ffffff"
+     id="path5-1"
+     style="stroke-width:12.5" /><path
+     d="m 11260.46,927.92503 c 29.987,0.062 44.199,12.525 51.225,19.1375 0.875,-10.1375 -0.725,-19.075 -10.151,-26.71252 -7.837,-6.3625 -21.612,-11.9875 -42.762,-11.9875 -14.113,0 -28.3,4.1375 -37.125,11.6125 -8.087,6.875 -9.412,14.63752 -7.662,26.11252 2.637,-8.375 21.774,-18.2625 46.475,-18.1625 z m -53.713,-157.32502 c -0.662,11.4375 2.375,23.375 7.688,30.4375 3.012,4.0125 10.15,11.75 15.425,11.45 7.512,-0.475 14.562,-14.825 32.174,-14.125 11.463,0.45 18.963,16.6375 28.676,17.1875 7.5,0.475 11.462,-7.025 19.049,-7.8375 6.488,-0.6875 8.738,2.575 12.713,6.525 2.65,-6.15 6.463,-10.3375 16.3,-17.6125 11.9,-8.8375 52.475,-17.2125 69.688,-32.6375 8.612,-7.725 10.562,-22 7.837,-31.6125 -6.525,9.1625 -24.612,18.8375 -42.225,19.7125 -8.837,0.4375 -30.012,-3.4625 -37.512,-7.425 3.762,-6.45 5,-13.7875 1.9,-20.85 -5.738,4.425 -30.538,6.825 -40.263,6.825 -9.7,0 -28.612,-3.95 -43.288,-3.1375 -32.199,1.7 -47.099,24.575 -48.162,43.1 z"
+     fill="#ffffff"
+     id="path6"
+     style="stroke-width:12.5" /><path
+     d="m 11262.31,870.67501 c 69.687,1.3375 101.137,33.5125 102.037,59.97502 3.537,-7.96252 3.062,-15.43752 2.625,-24.26252 -0.338,-7.025 -10.987,-26.875 -11.463,-33.5 -0.437,-6.6125 1.326,-11.0125 2.65,-17.1875 -4.4,0.875 -19.824,7.05 -26.449,1.7625 -7.088,-5.675 -2.188,-19.825 -11.463,-23.3625 -9.275,-3.5625 -23.8,7.4875 -33.075,6.175 -9.25,-1.3375 -17.187,-14.0875 -26.862,-14.0875 -9.75,0 -14.588,11.875 -26.488,14.5375 -9.175,2.05 -20.3,-3.4875 -25.737,-3.075 -6,0.425 -9.625,5.1 -12.275,10.825 -2.638,5.7625 -4.776,8.1125 -11.813,9.875 -5.625,1.425 -13.675,-3.5 -17.65,-2.625 3.075,3.0875 4.625,15.625 1.838,22.925 -3.526,9.2625 -11.088,18.975 -11.988,30.525 -0.75,10.2 2.65,14.9 5.312,22.38752 -1.774,-37.51252 39.951,-62.05002 100.801,-60.88752 z m -43.926,133.59999 c -4.837,0.8875 -14.987,8.8375 -19.924,17.1125 1.437,5.3375 7.15,17.7625 12.775,21.1625 1.274,-5.7375 7.587,-15.3 10.712,-17.525 4.375,-3.1375 8.775,-5.2875 12.3,-7.025 3.525,-1.7875 4.838,-3.55 4.838,-7.5625 0,-3.925 -0.513,-5.8 -2.275,-9.7625 3.5,-0.4251 10.025,0.1125 12.275,-2.99996 2.187,-3.06251 3.25,-7.06251 3.25,-11.01251 0,-3.9875 -1.788,-4.875 -5.725,-5.3 a 165.05,165.05 0 0 0 -21.25,-0.275 l 11.549,-5.9125 c 2.625,-1.2875 3.526,-3.9375 3.975,-6.15 0.426,-2.2 0.326,-7.175 -0.887,-13.2125 -13.25,0.425 -36.613,12.325 -42.787,17.6125 l 4.875,11.9375 -8.838,-0.3625 c -1.312,6.0375 -0.437,15.34987 2.213,20.62497 7.937,-1.35 17.187,-1.775 22.924,-1.35 z m 570.363,276.2625 c -1.625,-8.5625 -23.113,-34.175 -59.75,-61.925 -28.55,-21.7125 -70.463,-43.1125 -104.95,-42.925 -58.2,0.3375 -82.237,40.3 -86.625,61.1625 -2.65,12.6125 -2.013,26.2625 0.638,33.7625 -9.25,7.9375 -12.776,14.325 -14.563,23.3625 -1.25,6.5125 0,15.8625 5.975,21.6125 -0.662,-8.6125 5.187,-18.575 9.925,-25.1375 5.313,-7.2875 14.112,-10.125 22.088,-14.9375 l 1.312,15.9 c -7.538,4.3375 -16.837,13.5875 -17.462,18.425 l 0.625,26.275 20.012,-11.925 3.863,7.9625 -7.275,46.2875 11.237,-2 20.487,8.475 -19.837,16.65 v 6.65 c 0,0 3.013,-4.1 10,-3.7875 7,0.3125 25.05,8.4 25.05,8.4 l -0.65,4 h -35.05 c -1.337,4.6125 2.775,8.175 5.438,10.15 4.6,-1.3 9.387,-3.6875 12.024,-3.6875 2.613,0 8.738,1.5625 14.025,2.225 l -6.337,8.5 c 0,0 -3.275,2.5 -9.275,1.3 -3.3,-0.65 -6.587,3.9625 -6.587,7.75 0,4 2.562,13.925 2.562,13.925 3.25,14.9 18.463,11.8625 20.4,11.725 9.675,-0.8375 41.163,-12.225 41.163,-12.225 l -30.263,42.45 13.225,45.3875 c 19.975,-8.2125 79.638,-29.425 144.425,-40.0375 -7.075,-11.7375 -8.225,-16.425 -16.912,-33.925 l -33.063,-76.05 4.625,-11.2375 c 7.275,2.65 18.5,-2.6625 25.775,-8.6 7.288,-5.9625 15.875,-16.55 19.175,-23.175 -4.625,-2.625 -8.563,-2 -12.55,0.6875 -3.962,2.6625 -7.05,7.75 -12.55,5.275 -5.987,-2.6125 -3.063,-9.1375 -2.4,-15.1125 0.663,-5.9375 -6.875,-6.025 -12.15,-1.4375 -5.3,4.625 -16.562,2.6625 -23.837,-4.5875 -7.275,-7.3 -42.288,-36.4125 -54.875,-43.625 -18.088,-10.4 -42.326,-13.0625 -60.188,-9.8375 -10.425,1.8375 -17.863,6.475 -21.837,4.4875 l -13.088,-20.2375 2.088,-1.3 c 4.625,1.9875 8.987,5.675 14.962,3.7 5.938,-1.9875 25.075,-6.3625 42.325,-6.6 26.488,-0.45 58.65,9.225 72.775,15.2375 0.65,17.175 35.262,39 50.912,40.9625 13.213,1.6625 21.213,-1.9625 29.113,-6.6125 l -33.738,-29.6375 17.863,-22.6125 c 0,0 28.45,27.1 32.425,32.45 1.263,-3.15 -0.01,-8.3 -0.7,-11.9625 z m -203.012,34.4 c 0,0 14.524,-8.35 28.2,-11.275 20.175,-4.3125 42.537,7.8125 58.4,20.2625 l -3.025,4.7875 -22.738,5.375 c -4.425,-3.925 -12.8,-5.6875 -21.85,-5.275 -8.05,0.4 -14.537,3.3375 -14.537,3.3375 l 4.474,7.25 -10.449,2.65 c -4.625,-5.9375 -11.9,-13.2375 -18.488,-15.2125 v -11.9 z m -34.438,-52.2375 c -5.95,-19.9625 9.95,-39.7 17.188,-46.95 l 11.237,25.775 c -8.55,4.6375 -21.8,14.725 -28.425,21.175 z m 104.513,-22.5 c -10.588,-7.2875 -45.625,-5.975 -60.188,-2.65 l -10.588,-30.4625 c 7.963,-5.9375 23.163,-9.9 37.038,-9.9 13.9,0 29.1,3.35 39.663,8.6125 z m 68.8,31.2 c -14.563,-9.3625 -43.025,-23.25 -51.576,-25.925 l 12.526,-32.3875 c 10.612,5.3125 49.625,29.075 55.574,35.0625 z m -4.513,-86.1125 c 13.088,4.65 40.763,27.9125 47.388,33.2125 l 70.087,-149.425 z"
+     fill="#ffffff"
+     id="path7"
+     style="stroke-width:12.5" /><g
+     id="g9"
+     transform="matrix(12.5,0,0,12.5,11023.841,2.6753662e-6)"><g
+       fill="#6a6f72"
+       id="g8"><path
+         d="m 86.293,101.776 c 0,1.839 0.769,2.414 3.528,2.414 2.759,0 4.023,-0.842 5.827,-4.563 h 0.65 l -0.65,5.83 H 78.511 v -0.652 c 2.569,-0.651 2.836,-1.229 2.836,-3.644 v -14.34 c 0,-1.994 -0.497,-2.567 -2.836,-3.145 v -0.652 h 10.62 v 0.652 c -2.224,0.577 -2.837,1.036 -2.837,2.992 v 15.108 z m 17.215,0.573 c 0,1.457 0.729,2.264 2.339,2.456 v 0.652 h -9.088 v -0.652 c 1.954,-0.385 2.417,-0.922 2.417,-2.761 v -7.708 c 0,-1.764 -0.5,-2.262 -2.609,-2.685 v -0.652 l 6.29,-0.535 h 0.652 v 11.885 z m -2.147,-20.895 a 2.486,2.486 0 0 1 2.491,2.491 c 0,1.382 -1.111,2.533 -2.491,2.533 -1.382,0 -2.531,-1.151 -2.531,-2.533 0,-1.379 1.149,-2.491 2.531,-2.491 z m 11.579,12.652 c 1.457,-1.343 2.222,-1.726 3.373,-1.726 2.566,0 4.293,2.454 4.293,5.982 0,4.715 -2.146,6.632 -5.364,6.632 -1.729,0 -2.302,-0.768 -2.302,-2.414 z m 0,-12.652 h -0.654 l -5.864,0.422 v 0.652 c 1.342,0.23 2.186,0.919 2.186,2.146 v 20.782 c 2.185,0.42 4.333,0.572 7.055,0.572 7.056,0 9.736,-3.681 9.736,-8.129 0,-4.218 -2.988,-7.475 -6.898,-7.475 -2.071,0 -3.838,0.843 -5.56,2.647 V 81.454 Z m 18.823,14.608 c 0.115,-2.761 1.302,-4.6 3.068,-4.6 1.762,0 3.066,1.917 3.219,4.6 z m 10.965,0.881 c -0.535,-3.985 -3.486,-6.518 -7.591,-6.518 -4.561,0 -8.051,3.411 -8.051,7.898 0,4.409 3.373,7.705 7.897,7.705 3.488,0 6.439,-1.916 7.744,-5.022 h -0.65 c -1.382,2.109 -3.068,3.146 -5.177,3.146 -2.684,0 -5.367,-2.457 -5.138,-7.21 h 10.966 z m 13.879,-0.92 c -1.267,-1.226 -2.264,-1.878 -3.261,-1.878 -1.302,0 -2.109,0.536 -3.219,2.069 v 5.905 c 0,1.727 0.343,2.261 2.451,2.686 v 0.652 h -9.2 v -0.652 c 1.92,-0.462 2.414,-1.037 2.414,-2.686 v -7.63 c 0,-1.84 -0.802,-2.684 -2.641,-2.837 V 91 l 6.321,-0.573 h 0.654 v 4.602 h 0.075 c 1.419,-3.146 2.991,-4.602 4.795,-4.602 0.955,0 1.877,0.423 2.566,1.226 z m 24.417,-5.024 v 0.652 c 1.842,0.382 2.262,1.534 0.96,4.603 l -1.997,4.638 -3.065,-6.324 c -0.885,-1.842 -0.885,-2.686 0.765,-2.916 V 91 h -12.809 v -5.596 h -0.729 c -2.034,2.607 -4.41,4.909 -6.212,6.02 v 0.729 h 2.606 v 9.279 c 0,3.296 2.187,4.598 4.907,4.598 2.148,0 3.568,-0.767 4.64,-2.571 l -0.459,-0.42 c -0.69,0.808 -1.345,1.152 -2.106,1.152 -2.034,0 -2.646,-1.379 -2.646,-3.721 v -8.317 h 3.876 c 2.108,0 2.723,0.767 3.643,2.722 l 5.29,11.155 c -1.765,4.755 -3.296,6.672 -5.979,6.672 -0.577,0 -1.037,-0.038 -1.957,-0.345 l -0.882,4.37 c 0.54,0.077 0.845,0.077 1.227,0.077 2.991,0 4.641,-1.267 6.175,-4.793 l 7.283,-16.64 c 1.189,-2.684 1.649,-3.218 3.488,-3.719 V 91 h -6.019 z m -74.193,40.467 c 0.268,1.954 1.229,3.065 3.413,3.485 v 0.652 H 99.162 v -0.652 c 2.454,-0.611 2.877,-2.026 2.454,-4.939 l -1.839,-12.811 h -0.078 l -7.283,18.402 h -0.807 l -7.208,-18.402 h -0.075 l -1.954,13.19 c -0.385,2.608 0.113,4.37 2.644,4.56 v 0.652 H 76.89 v -0.652 c 2.414,-0.109 3.448,-1.494 3.984,-4.939 l 2.225,-14.649 c -0.882,-0.92 -2.109,-1.494 -3.258,-1.534 v -0.652 h 8.088 l 5.866,14.8 5.942,-14.8 h 7.594 v 0.652 c -2.302,0.425 -2.839,1.571 -2.533,3.643 z m 5.173,-7.169 c 0,-1.611 -0.537,-2.186 -2.264,-2.493 v -0.652 l 5.944,-0.577 h 0.651 v 10.659 c 0,1.727 1.112,2.531 2.687,2.531 1.454,0 2.336,-0.612 3.603,-2.608 v -7.206 c 0,-1.189 -0.77,-1.877 -2.264,-2.146 v -0.652 l 5.942,-0.577 h 0.652 v 11.504 c 0,1.916 0.385,2.376 2.304,2.873 v 0.652 l -6.635,0.575 v -3.523 h -0.077 c -1.609,2.451 -3.413,3.523 -5.752,3.523 -2.988,0 -4.792,-1.647 -4.792,-4.408 v -7.475 z m 20.589,-1.996 h -2.608 v -0.728 c 1.801,-1.111 4.18,-3.413 6.209,-6.019 h 0.732 v 5.597 h 4.752 v 1.149 h -4.752 v 8.32 c 0,2.339 0.611,3.719 2.644,3.719 0.765,0 1.419,-0.346 2.108,-1.15 l 0.46,0.423 c -1.072,1.802 -2.491,2.566 -4.641,2.566 -2.721,0 -4.904,-1.3 -4.904,-4.601 z m 11.884,1.996 c 0,-1.611 -0.537,-2.186 -2.264,-2.493 v -0.652 l 5.944,-0.577 h 0.654 v 10.659 c 0,1.727 1.109,2.531 2.679,2.531 1.459,0 2.341,-0.612 3.605,-2.608 v -7.206 c 0,-1.189 -0.768,-1.877 -2.262,-2.146 v -0.652 l 5.942,-0.577 h 0.652 v 11.504 c 0,1.916 0.385,2.376 2.301,2.873 v 0.652 l -6.634,0.575 v -3.523 h -0.075 c -1.611,2.451 -3.413,3.523 -5.754,3.523 -2.988,0 -4.79,-1.647 -4.79,-4.408 v -7.475 z m 27.145,8.818 c -1,0.997 -1.842,1.494 -2.724,1.494 -1.189,0 -1.994,-1.037 -1.994,-2.606 0,-1.954 1.109,-2.838 4.718,-4.372 z m 4.367,-7.134 c 0,-3.988 -3.258,-5.407 -6.364,-5.407 -3.373,0 -5.712,1.804 -6.479,4.91 h 0.577 c 0.917,-1.612 2.374,-2.414 4.33,-2.414 2.608,0 3.605,1.227 3.605,3.796 -3.528,1.302 -9.277,1.608 -9.277,5.52 0,2.108 1.954,3.793 4.333,3.793 1.761,0 3.103,-0.42 4.56,-1.725 l 0.348,-0.305 c 0.725,1.454 1.724,2.029 3.485,2.029 2.111,0 3.376,-0.995 3.528,-2.796 h -0.612 c -0.155,0.882 -0.537,1.339 -1.151,1.339 -0.65,0 -0.883,-0.572 -0.883,-1.914 z m 5.638,-10.426 c 0,-2.032 -0.655,-2.762 -2.724,-2.876 v -0.65 l 6.403,-0.425 h 0.652 v 20.475 c 0,1.916 0.423,2.376 2.566,2.873 v 0.652 h -9.622 v -0.652 c 2.111,-0.342 2.724,-1.031 2.724,-2.873 v -16.524 z m 7.431,17.298 h 1.127 v 2.931 h 0.45 v -2.931 h 1.126 v -0.399 h -2.703 z m 6.212,2.93 v -1.966 c 0,-0.098 0.007,-0.52 0.007,-0.832 h -0.007 l -0.938,2.798 h -0.447 l -0.935,-2.793 h -0.01 c 0,0.308 0.01,0.729 0.01,0.827 v 1.966 h -0.437 v -3.33 h 0.645 l 0.952,2.815 h 0.007 l 0.947,-2.815 h 0.64 v 3.33 z"
+         id="path8"
+         style="fill:#ffffff;fill-opacity:1.0" /></g></g></g>
+    <g
+   transform="matrix(8.7252754,0,0,8.7252754,9891.6378,151.3825)"
+   id="g3-9"
+   inkscape:label="citi">
+        <path
+   d="m 16.549,50.274 c 0,-5.774 4.728,-10.269 10.889,-10.269 3.566,0 6.821,1.588 8.681,3.991 l -2.674,2.674 c -0.709,-0.908 -1.614,-1.644 -2.647,-2.154 -1.033,-0.51 -2.169,-0.78 -3.321,-0.791 -3.681,0 -6.627,2.752 -6.627,6.549 0,3.837 2.946,6.589 6.627,6.589 1.194,-0.002 2.371,-0.279 3.44,-0.81 1.068,-0.531 2,-1.302 2.722,-2.252 l 2.635,2.597 c -1.782,2.519 -5.193,4.185 -8.836,4.185 -6.161,0 -10.889,-4.495 -10.889,-10.309 z"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="path1-4" />
+        <rect
+   x="39.762001"
+   y="40.702"
+   width="4.224"
+   height="19.183001"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="rect1-7" />
+        <path
+   d="M 51.854,54.731 V 44.268 h -4.612 v -3.566 h 4.805 V 36.594 L 56,34.656 v 6.046 h 6.279 v 3.566 H 56 v 9.766 c 0,1.937 1.086,2.79 3.14,2.79 1.068,0.005 2.126,-0.219 3.1,-0.659 v 3.643 c -1.221,0.536 -2.543,0.8 -3.876,0.775 -3.759,0 -6.51,-2.054 -6.51,-5.852 z"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="path2-8" />
+        <rect
+   x="65.612"
+   y="40.702"
+   width="4.224"
+   height="19.183001"
+   style="fill:#255be3;fill-rule:nonzero"
+   id="rect2" />
+        <path
+   d="m 54.76,28.494 c 3.47,-0.008 6.89,0.819 9.972,2.411 3.083,1.592 5.737,3.902 7.739,6.736 h -4.922 c -1.613,-1.794 -3.585,-3.227 -5.788,-4.209 -2.204,-0.981 -4.589,-1.489 -7.001,-1.489 -2.412,0 -4.797,0.508 -7,1.489 -2.203,0.982 -4.175,2.415 -5.789,4.209 H 37.05 c 2.001,-2.834 4.656,-5.144 7.738,-6.736 3.083,-1.592 6.503,-2.419 9.972,-2.411 z"
+   style="fill:#ff3c28;fill-rule:nonzero"
+   id="path3-4" />
+    </g>
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+<g
+   id="kpn_logo_00000106118444337680772500000008831362196428316330_"
+   transform="matrix(7.1174375,0,0,7.1174375,11098.883,450.88968)"
+   inkscape:label="kpn">
+	<g
+   id="g11">
+		<path
+   class="st0"
+   d="m 100.7,13.3 c -3.4,0 -6.2,0.6 -8.8,1.6 V 32 h 5.7 V 18.3 c 0.8,-0.4 1.9,-0.6 2.9,-0.6 3.1,0 3.7,1.9 3.7,5.4 V 32 h 5.7 v -9.7 c 0.1,-5.5 -1.7,-9 -9.2,-9 z"
+   id="path1-0" />
+		<rect
+   x="46"
+   y="6.9000001"
+   class="st0"
+   width="5.6999998"
+   height="25.1"
+   id="rect1-3" />
+		<polygon
+   class="st0"
+   points="58,21.9 64.5,13.9 58,13.9 51.7,22.1 58.3,31.9 65.1,31.9 "
+   id="polygon1" />
+		<path
+   class="st0"
+   d="m 77.1,13.2 c -3,0 -6.2,0.7 -8.6,1.6 V 39 h 5.7 v -6.9 c 7.2,1.3 13,-1.7 12.9,-9.4 0,-6.1 -3.2,-9.5 -10,-9.5 z m -0.3,14.9 c -0.9,0 -2,-0.2 -2.6,-0.4 v -9.6 c 3.4,-1.4 7,-0.4 7,4.6 0,3.5 -1.3,5.4 -4.4,5.4 z"
+   id="path2-6" />
+		<g
+   id="g10">
+			<path
+   class="st0"
+   d="m 14.5,30.9 c 3.7,-1 7.7,-1 11.5,0.1 l 0.9,-2.6 c -4.4,-1.3 -9.2,-1.3 -13.6,0 l 0.9,2.6 z"
+   id="path3-1" />
+			<polygon
+   class="st0"
+   points="20,11.9 17.9,14.1 20,16.3 22.1,14.1 "
+   id="polygon3" />
+			<path
+   class="st0"
+   d="m 14.4,20.2 c -0.2,1.4 0.6,3.5 2.1,5.9 1,-0.2 1.9,-0.2 2.9,-0.2 l -0.3,-0.5 c -1.6,-3.1 -1.9,-4 -1.9,-4.7 0,-1 0.8,-1.1 1.9,-1 v -2.4 c -2.5,-0.8 -4.5,0.6 -4.7,2.9 z"
+   id="path4-0" />
+			<path
+   class="st0"
+   d="m 12.7,20.1 c -1.7,-0.1 -3,1 -3,2.5 -0.1,1.1 0.6,2.4 2.7,4.2 0.9,-0.3 1.8,-0.5 2.7,-0.7 -1.6,-1.6 -2.9,-2.9 -2.7,-3.4 0,-0.1 0,-0.4 0.5,-0.5 l 0.4,-0.1 C 13.1,21.4 13,20.7 13.1,20 h -0.4 z"
+   id="path5-6" />
+			<path
+   class="st0"
+   d="m 20.6,25.9 c 0.9,0 1.9,0.1 2.9,0.2 1.5,-2.4 2.3,-4.5 2.1,-5.9 -0.3,-2.3 -2.3,-3.7 -4.7,-2.8 v 2.4 c 1.1,-0.1 1.9,0 1.9,1 0,0.7 -0.3,1.6 -1.9,4.7 z"
+   id="path6-3" />
+			<path
+   class="st0"
+   d="m 25.3,25.7 -0.5,0.5 c 0.9,0.2 1.9,0.4 2.7,0.7 2.1,-1.8 2.8,-3.1 2.7,-4.2 0,-1.7 -1.5,-2.7 -3.3,-2.5 0,0.7 0,1.4 -0.2,2.1 l 0.4,0.1 c 0.5,0.1 0.5,0.4 0.5,0.5 0,0.4 -0.3,0.9 -2.3,2.8 z"
+   id="path7-2" />
+			<path
+   class="st0"
+   d="m 6.4,20.6 c 0.5,-0.3 1.5,-1 2.7,-1.6 -1,-2.4 -1.6,-4.6 -1.6,-6.3 0,-3.6 0.9,-6.6 2.4,-8.1 4,-4 11.8,1.1 15.4,6.6 1.1,-0.2 2.4,-0.4 3.5,-0.4 C 25.4,4.4 18.1,0 13.5,0 c -6.2,0 -9,6.4 -9,12.7 0,3.1 1,5.5 1.9,7.9 z"
+   id="path8-0" />
+			<path
+   class="st0"
+   d="m 29.3,12.7 c -1.8,0 -2.9,0.3 -2.9,0.3 0.4,0.9 0.7,2 0.8,3.1 0.7,-0.1 1.4,-0.2 2.1,-0.2 4,0 6.4,2.3 6.5,5.1 0,1.5 -0.8,3.5 -1.6,5.4 -0.4,1 -1.1,2.9 -1.5,4.5 -0.7,2.7 -2.6,10.2 -6.9,7.3 -1,0.4 -2.3,1.1 -3.4,1.3 2,1.8 3.4,2.4 5.4,2.4 5.3,0 7.2,-7.5 7.9,-10.3 0.7,-3.1 3.3,-7.4 3.2,-10.7 0,-4.9 -4.5,-8.4 -9.6,-8.2 z"
+   id="path9" />
+			<path
+   class="st0"
+   d="M 24.3,36.9 C 23.5,36.1 22.7,35.3 22,34.5 16.5,36.6 9.5,34.1 5.5,30.2 4.1,28.8 3.2,27.1 3.2,25.9 c 0,-1.8 0.6,-3 1.8,-4 -0.4,-1 -0.8,-2 -1.2,-3 -2.5,1.6 -3.8,4 -3.8,7 0,2.1 1.1,4.5 3.2,6.6 4.2,4.2 13.9,8.1 21.1,4.4 z"
+   id="path10" />
+		</g>
+	</g>
+</g>
+</svg>
new file mode 100644
index 0000000..dced930
--- /dev/null
+++ b/content/works/niteo.svg
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+<g
+   id="g4"
+   transform="matrix(5.7142894,0,0,5.7142894,100,485.71421)">
+	<path
+   class="st0"
+   d="m 22,38.2 c 3.7,-0.4 6.4,-1.6 6.4,-3 V 31.6 H 10.7 v 3.6 c 0,1.4 2.7,2.6 6.4,3 v 0.9 c 0,0.5 1.1,0.9 2.4,0.9 1.3,0 2.4,-0.4 2.4,-0.9 v -0.9 z"
+   id="path1-9" />
+	<path
+   class="st1"
+   d="m 9.2,4.2 h 20.6 c 1,0 1.8,-0.9 1.8,-2.1 C 31.6,0.9 30.8,0 29.8,0 H 9.2 C 8.2,0 7.4,0.9 7.4,2.1 7.5,3.3 8.2,4.2 9.2,4.2 m 0,21 h 20.6 c 1,0 1.8,0.9 1.8,2.1 0,1.2 -0.8,2.1 -1.8,2.1 H 9.2 c -1,0 -1.8,-0.9 -1.8,-2.1 0.1,-1.1 0.8,-2.1 1.8,-2.1 M 6,18.9 h 27.2 c 1.3,0 2.3,0.9 2.3,2.1 0,1.2 -1,2.1 -2.3,2.1 H 6 C 4.7,23.1 3.7,22.2 3.7,21 3.6,19.9 4.7,18.9 6,18.9 M 2.8,12.6 h 33.4 c 1.6,0 2.8,0.9 2.8,2.1 0,1.2 -1.3,2.1 -2.8,2.1 H 2.8 C 1.2,16.8 0,15.9 0,14.7 0,13.6 1.3,12.6 2.8,12.6 M 6,10.5 h 27.2 c 1.3,0 2.3,-0.9 2.3,-2.1 0,-1.2 -1,-2.1 -2.3,-2.1 L 6,6.3 c -1.3,0 -2.3,0.9 -2.3,2.1 -0.1,1.2 1,2.1 2.3,2.1"
+   id="path2-7" />
+	<path
+   class="st0"
+   d="m 124.9,18.1 v 13.1 h 16.9 v -3.6 h -12.9 v -6 h 11.3 V 18 h -15.3 z m 45.9,1.9 c 0,4.3 -3.2,7.9 -7.6,7.9 -4.4,0 -7.7,-3.7 -7.7,-8 0,-4.1 3,-7.8 7.3,-7.9 4.6,-0.1 8,3.6 8,8 m 4.2,0 c 0,-6.5 -5.3,-11.6 -11.8,-11.6 -6.5,0 -11.8,5.1 -11.8,11.6 0,6.5 5.3,11.6 11.8,11.6 6.5,0 11.8,-5.1 11.8,-11.6 M 107.8,12.4 H 115 V 8.8 H 96.6 v 3.6 h 7.2 v 18.8 h 4 z M 82.4,31.2 h 3.9 V 8.8 H 82.4 Z M 66.6,24.3 54.6,8.8 h -3.7 v 22.4 h 3.9 V 15.3 l 12.4,15.9 h 3.3 V 8.8 h -3.9 z"
+   id="path3-3" />
+	<path
+   class="st1"
+   d="m 141.1,8.8 h -15.5 c -0.8,0 -1.5,0.7 -1.5,1.5 v 0.6 c 0,0.8 0.7,1.5 1.5,1.5 h 15.5 c 0.8,0 1.5,-0.7 1.5,-1.5 v -0.6 c 0,-0.8 -0.7,-1.5 -1.5,-1.5"
+   id="path4-6" />
+</g>
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
new file mode 100644
index 0000000..d68c42a
--- /dev/null
+++ b/content/works/saleslift-studio.svg
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="1200"
+   height="1200"
+   viewBox="0 0 1200 1200"
+   version="1.1"
+   id="svg8"
+   xml:space="preserve"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+   id="defs2"><style
+     id="style1">.a,.b{fill:#fff;}.a{fill-rule:evenodd;}</style></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" /></cc:Work></rdf:RDF></metadata><g
+   id="g38"
+   transform="matrix(0.8314447,0,0,0.8314447,99.999982,101.31297)"
+   style="fill:#b3b3b3;fill-opacity:1"><g
+     id="Sigil"
+     transform="matrix(1.4906223,0,0,1.4906223,-404.7632,-57.19273)"
+     fill="#ffffff"
+     style="fill:#b3b3b3;fill-opacity:1"><path
+       id="Path"
+       d="m 400.06209,470.38178 18.33264,-18.33262 -73.3887,-73.39517 -73.46627,73.38869 18.40374,18.33264 55.06253,-54.99143 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:6.46425" /><rect
+       id="Rectangle"
+       width="35.792583"
+       height="35.792583"
+       transform="rotate(-45)"
+       x="-110.72787"
+       y="562.79285"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:6.46425" /></g><g
+     id="Text"
+     transform="matrix(5.6420463,0,0,5.6420463,-1030.3697,627.79985)"
+     fill="#ffffff"
+     style="fill:#b3b3b3;fill-opacity:1"><path
+       id="Letter-2"
+       d="m 239.16873,-21.460982 a 4.0516838,4.114 0 0 1 1.81016,1.188 3.7641068,3.822 0 0 1 0.90508,2.276 h -2.81471 a 1.6200826,1.645 0 0 0 -1.82099,-1.446 2.0681905,2.1 0 0 0 -1.17,0.3 0.96121618,0.976 0 0 0 -0.44122,0.841 0.78788211,0.8 0 0 0 0.32008,0.684 2.7191781,2.761 0 0 0 0.97106,0.392 l 1.57577,0.37 a 5.6678269,5.755 0 0 1 2.53008,1.122 2.6275868,2.668 0 0 1 0.86175,2.137 3.3061503,3.357 0 0 1 -0.57417,1.973 3.6646367,3.721 0 0 1 -1.63387,1.289 6.2784356,6.375 0 0 1 -2.46213,0.4600002 6.6428311,6.745 0 0 1 -2.42865,-0.4370002 4.2762302,4.342 0 0 1 -1.81213,-1.331 4.1432751,4.207 0 0 1 -0.84697,-2.264 h 2.80388 a 1.7550074,1.782 0 0 0 0.75045,1.188 2.8629666,2.907 0 0 0 1.61122,0.422 2.1509182,2.184 0 0 0 1.18183,-0.269 0.81841254,0.831 0 0 0 0.40871,-0.731 q 0,-0.74 -1.19167,-0.975 l -1.85546,-0.431 a 4.8868388,4.962 0 0 1 -2.46805,-1.188 2.9171335,2.962 0 0 1 -0.7997,-2.174 3.3790294,3.431 0 0 1 0.56334,-1.972 3.6439548,3.7 0 0 1 1.57576,-1.3 5.6924483,5.78 0 0 1 2.33115,-0.46 6.9126807,7.019 0 0 1 2.1194,0.336 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Shape"
+       d="m 254.77668,-10.118982 h -2.98017 l 4.77654,-11.499 h 2.67092 l 4.76866,11.5 h -2.95456 l -0.76228,-1.96 h -4.76865 z m 1.67425,-4.382 h 2.91418 l -1.4566,-3.8 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-3"
+       d="m 274.64509,-10.117982 v -11.432 h 2.79305 v 8.921 h 5.56343 v 2.511 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-4"
+       d="m 301.53256,-16.988982 v 2.42 h -4.98434 v 1.985 h 5.71214 v 2.477 h -8.50912 v -11.432 h 8.50912 v 2.477 h -5.71214 v 2.085 h 4.98926 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-5"
+       d="m 319.7346,-21.460982 a 4.0516838,4.114 0 0 1 1.81016,1.188 3.7641068,3.822 0 0 1 0.90508,2.276 h -2.81471 a 1.6200826,1.645 0 0 0 -1.82099,-1.446 2.0681905,2.1 0 0 0 -1.17,0.3 0.96121618,0.976 0 0 0 -0.44122,0.841 0.78788211,0.8 0 0 0 0.32008,0.684 2.7191781,2.761 0 0 0 0.97106,0.392 l 1.57577,0.37 a 5.6678269,5.755 0 0 1 2.52811,1.121 2.6275868,2.668 0 0 1 0.86372,2.138 3.3061503,3.357 0 0 1 -0.57417,1.973 3.6646367,3.721 0 0 1 -1.62993,1.292 6.2784356,6.375 0 0 1 -2.46213,0.4600002 6.6428311,6.745 0 0 1 -2.42865,-0.4370002 4.2762302,4.342 0 0 1 -1.81016,-1.334 4.1432751,4.207 0 0 1 -0.85288,-2.264 h 2.80388 a 1.7550074,1.782 0 0 0 0.75045,1.188 2.8629666,2.907 0 0 0 1.61122,0.426 2.1509182,2.184 0 0 0 1.18183,-0.269 0.81841254,0.831 0 0 0 0.40871,-0.74 q 0,-0.74 -1.19167,-0.975 l -1.85153,-0.426 a 4.8868388,4.962 0 0 1 -2.47296,-1.188 2.9171335,2.962 0 0 1 -0.79478,-2.174 3.3790294,3.431 0 0 1 0.5594,-1.972 3.6439548,3.7 0 0 1 1.57576,-1.3 5.6924483,5.78 0 0 1 2.33115,-0.46 6.9648779,7.072 0 0 1 2.1194,0.336 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-6"
+       d="m 333.57671,-10.117982 v -11.432 h 2.79304 v 8.921 h 5.56343 v 2.511 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-7"
+       d="m 352.68383,-10.117982 v -11.432 h 2.79305 v 11.432 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-8"
+       d="m 374.51703,-16.618982 v 2.477 h -4.83464 v 4.035 h -2.79304 v -11.432 h 8.38897 v 2.511 h -5.59593 v 2.42 h 4.83464 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-9"
+       d="m 391.73521,-10.117982 h -2.80388 v -8.888 h -3.58683 v -2.544 h 9.96769 v 2.544 h -3.576 z"
+       style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.992397" /><path
+       id="Letter-10"
+       d="m 215.19,0.852 a 3.381,3.381 0 0 1 1.423,2.488 h -1.177 a 2.649,2.649 0 0 0 -1,-1.692 3.553,3.553 0 0 0 -2.2,-0.605 3.348,3.348 0 0 0 -2.1,0.594 1.894,1.894 0 0 0 -0.785,1.58 c 0,1.02 0.785,1.67 2.331,1.95 l 1.726,0.336 c 2.118,0.4 3.172,1.39 3.172,2.97 a 3.226,3.226 0 0 1 -0.527,1.816 3.442,3.442 0 0 1 -1.491,1.222 5.352,5.352 0 0 1 -2.23,0.426 5.01,5.01 0 0 1 -3.306,-1.031 4.089,4.089 0 0 1 -1.457,-2.869 h 1.177 a 3.214,3.214 0 0 0 1.143,2.085 3.871,3.871 0 0 0 2.488,0.74 3.479,3.479 0 0 0 2.174,-0.616 1.939,1.939 0 0 0 0.818,-1.636 1.638,1.638 0 0 0 -0.538,-1.244 3.176,3.176 0 0 0 -1.614,-0.706 l -1.984,-0.381 a 4.5,4.5 0 0 1 -2.365,-1.054 2.553,2.553 0 0 1 -0.8,-1.939 2.97,2.97 0 0 1 0.5,-1.715 3.335,3.335 0 0 1 1.444,-1.156 5.068,5.068 0 0 1 2.118,-0.415 5.188,5.188 0 0 1 3.06,0.852 z"
+       transform="translate(24.577)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-11"
+       d="M 230.487,11.652 H 229.3 V 1.318 h -4.26 V 0.22 h 9.706 v 1.1 H 230.5 v 10.332 z"
+       transform="translate(26.685,0.027)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-12"
+       d="m 252.863,9.455 a 4.366,4.366 0 0 1 -1.715,1.8 5.035,5.035 0 0 1 -2.555,0.65 4.843,4.843 0 0 1 -2.533,-0.65 4.366,4.366 0 0 1 -1.715,-1.8 A 5.658,5.658 0 0 1 243.74,6.8 V 0.22 h 1.2 V 6.8 a 4.526,4.526 0 0 0 0.46,2.051 3.47,3.47 0 0 0 1.3,1.423 3.527,3.527 0 0 0 1.905,0.527 3.566,3.566 0 0 0 1.917,-0.527 3.47,3.47 0 0 0 1.3,-1.423 4.385,4.385 0 0 0 0.46,-2.051 V 0.22 h 1.188 V 6.8 a 5.658,5.658 0 0 1 -0.607,2.655 z"
+       transform="translate(28.944,0.027)"
+       fill="blabla #ffffff"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-13"
+       d="m 270.753,0.947 a 5.354,5.354 0 0 1 2.141,2.006 5.582,5.582 0 0 1 0.762,2.9 5.954,5.954 0 0 1 -0.762,3 5.342,5.342 0 0 1 -2.141,2.062 6.464,6.464 0 0 1 -3.116,0.74 H 263.67 V 0.23 h 3.967 a 6.453,6.453 0 0 1 3.116,0.717 z m -0.65,9.011 a 4.213,4.213 0 0 0 1.7,-1.67 4.786,4.786 0 0 0 0.616,-2.432 A 4.432,4.432 0 0 0 271.803,3.514 4.224,4.224 0 0 0 270.1,1.9 5.1,5.1 0 0 0 267.634,1.317 h -2.779 v 9.246 h 2.779 A 4.993,4.993 0 0 0 270.1,9.958 Z"
+       transform="translate(31.351,0.028)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-14"
+       d="M 283.46,11.652 V 0.22 h 1.188 v 11.432 z"
+       transform="translate(33.741,0.027)"
+       style="fill:#b3b3b3;fill-opacity:1" /><path
+       id="Letter-15"
+       d="m 304.413,0.806 a 5.925,5.925 0 0 1 2.959,5.144 5.85,5.85 0 0 1 -0.8,2.981 5.807,5.807 0 0 1 -2.163,2.163 5.77,5.77 0 0 1 -2.981,0.8 5.849,5.849 0 0 1 -2.981,-0.8 5.92,5.92 0 0 1 -2.174,-2.163 5.85,5.85 0 0 1 -0.8,-2.981 5.85,5.85 0 0 1 0.8,-2.981 5.92,5.92 0 0 1 2.177,-2.163 5.982,5.982 0 0 1 5.962,0 z m -0.594,9.347 a 4.844,4.844 0 0 0 1.726,-1.771 4.758,4.758 0 0 0 0.628,-2.421 4.872,4.872 0 0 0 -0.628,-2.421 4.757,4.757 0 0 0 -1.726,-1.771 4.561,4.561 0 0 0 -2.4,-0.65 4.666,4.666 0 0 0 -2.4,0.65 4.814,4.814 0 0 0 -1.715,1.771 4.91,4.91 0 0 0 1.715,6.613 4.75,4.75 0 0 0 4.8,0 z"
+       transform="translate(35.193,0.001)"
+       style="fill:#b3b3b3;fill-opacity:1" /></g></g>
+<style
+   type="text/css"
+   id="style1-8">
+	.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#203451;}
+	.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#F49A00;}
+</style>
+
+
+    
+
+<style
+   type="text/css"
+   id="style1-5">
+	.st0{fill:#00C300;}
+</style>
+
+</svg>
index bb2194b..025781b 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -213,3 +213,30 @@ footer {
=    text-align: right;
=    opacity: 0.8;
=}
+
+.client-logos ul {
+    --gutter: 1rem;
+    --tile-size: 10rem;
+
+	display: flex;
+	overflow: auto;
+    gap: var(--gutter);
+    height: content-size;
+
+    li {
+        width: var(--tile-size);
+        height: var(--tile-size);
+        flex-shrink: 0;
+        flex-direction: column;
+        display: flex;
+        align-items: center;
+        background-color: oklch(26% 0% 0deg);
+        border-radius: 1rem;
+
+        img {
+            max-width: 100%;
+            max-height: 100%;
+        }
+    }
+
+}
new file mode 100644
index 0000000..1aea58b
--- /dev/null
+++ b/templates/shortcodes/wrap_with.html
@@ -0,0 +1,11 @@
+{%- if not inline -%}
+{%- set inline = false -%}
+{%- endif -%}
+
+{%- if not tag -%}
+{%- set tag = "section" -%}
+{%- endif -%}
+
+<{{ tag }} class="{{ class }}">
+{{ body | markdown(inline=inline) | safe -}}
+</{{tag}}>

CSS is so cool nowadays ;-)

index 1606057..485a34b 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -6,19 +6,20 @@ description: "Featured works of Tad Lispy"
=---
=
=
-I have over 15 years of experience in software development and training. Over those years I worked for many organizations, large and small.
-
-{% wrap_with(class="client-logos") %}
-- ![KPN](kpn.svg "KPN")
-- ![Citi Group](citi-group.svg "Citi Group")
-- ![Liberty Mutual](liberty-mutual.svg "Liberty Mutual")
-- ![IT Fundamentals](it-fundamentals.svg "IT Fundamentals")
-- ![Bright Boost](brightboost.svg "Bright Boost")
-- ![Saleslift](saleslift-studio.svg "Saleslift Studio")
-- ![Elanza](elanza.svg "Elanza")
-- ![Niteo](niteo.svg "Niteo")
-- ![Basebuilder](basebuilder.svg "Basebuilder")
-- ![District Court of Warsaw](district-court-of-warsaw.svg "District Court of Warsaw")
+I have over 15 years of experience in software development and training. Over those years I&nbsp;worked for many organizations, large and small.
+
+
+{% wrap_with(tag="ul", class="client-logos", inline=true) %}
+{% tile() %}![KPN](kpn.svg "KPN"){% end %}
+{% tile() %}![Citi Group](citi-group.svg "Citi Group"){% end %}
+{% tile() %}![Liberty Mutual](liberty-mutual.svg "Liberty Mutual"){% end %}
+{% tile() %}![IT Fundamentals](it-fundamentals.svg "IT Fundamentals"){% end %}
+{% tile() %}![Bright Boost](brightboost.svg "Bright Boost"){% end %}
+{% tile() %}![Saleslift](saleslift-studio.svg "Saleslift Studio"){% end %}
+{% tile() %}![Elanza](elanza.svg "Elanza"){% end %}
+{% tile() %}![Niteo](niteo.svg "Niteo"){% end %}
+{% tile() %}![Basebuilder](basebuilder.svg "Basebuilder"){% end %}
+{% tile() %}![District Court of Warsaw](district-court-of-warsaw.svg "District Court of Warsaw"){% end %}
={% end %}
=
=Here is what some of my clients have to say about me:
index 025781b..9066fdc 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -1,5 +1,10 @@
=@import "_picocss/pico.scss";
=
+html {
+    // Never show a horizontal scroll bar on the page
+    overflow-x: hidden;
+}
+
=// Simplify inline code in headers and links
=h1, h2, h3, h4, h5, h6, a {
=    code {
@@ -197,7 +202,7 @@ footer {
=}
=
=
-// Syntax highliting - see https://www.getzola.org/documentation/content/syntax-highlighting/
+// Syntax highlighting - see https://www.getzola.org/documentation/content/syntax-highlighting/
=
=.giallo-l {
=    display: inline-block;
@@ -214,16 +219,64 @@ footer {
=    opacity: 0.8;
=}
=
-.client-logos ul {
+// Bragging
+
+@property --step-count {
+    syntax: "<number>";
+    inherits: true;
+    initial-value: 0;
+}
+
+p {
+    hyphens: auto;
+}
+
+main {
+    container-type: inline-size;
+}
+
+ul.client-logos {
+
+    // Parameters to tweak
+    --tiles-count: 10; // TODO: This has to match number of tiles. Find a way to detect automatically.
=    --gutter: 1rem;
-    --tile-size: 10rem;
+    --tile-size: max(6rem, calc(100vw / (var(--tiles-count) - 1)));
+    --pace: 10s;
+
+    // Intermediate values
+    --step-length: calc(var(--gutter) + var(--tile-size));
+
+    @keyframes count-steps {
+        from {
+            --step-count: 0;
+        }
+        to {
+            --step-count: 10; // TODO: This must match --tiles-count, but using a variable here doesn't work. Why?
+        }
+    }
+
+    animation-name: count-steps;
+    animation-duration: calc(var(--pace) * var(--tiles-count));
+    animation-iteration-count: infinite;
+    animation-timing-function: linear;
+
+    margin: 3rem calc((100vw - 100cqw) / -2);
=
+    padding: 0;
=	display: flex;
-	overflow: auto;
+	overflow: hidden;
=    gap: var(--gutter);
-    height: content-size;
=
=    li {
+        transform: translate(calc(
+            rem(var(--step-count), 1.0)
+            * var(--step-length)
+            * -1
+        ));
+        order: rem(
+            calc(var(--tile-index) - var(--step-count) - var(--tiles-count)),
+            var(--tiles-count)
+        );
=        width: var(--tile-size);
=        height: var(--tile-size);
=        flex-shrink: 0;
new file mode 100644
index 0000000..aa97677
--- /dev/null
+++ b/templates/shortcodes/tile.html
@@ -0,0 +1,8 @@
+{%- if not inline -%}
+{%- set inline = true -%}
+{%- endif -%}
+
+
+<li style="--tile-index: {{ nth }}">
+{{ body | markdown(inline=inline) | safe -}}
+</li>

Update Nix dependencies

index 3c3a5a8..03cb250 100644
--- a/flake.lock
+++ b/flake.lock
@@ -20,11 +20,11 @@
=    },
=    "nixpkgs": {
=      "locked": {
-        "lastModified": 1771369470,
-        "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=",
+        "lastModified": 1775036866,
+        "narHash": "sha256-ZojAnPuCdy657PbTq5V0Y+AHKhZAIwSIT2cb8UgAz/U=",
=        "owner": "NixOS",
=        "repo": "nixpkgs",
-        "rev": "0182a361324364ae3f436a63005877674cf45efb",
+        "rev": "6201e203d09599479a3b3450ed24fa81537ebc4e",
=        "type": "github"
=      },
=      "original": {

Commits: 1

Refine market research page

index b9fb806..a251b55 100644
--- a/content/market-research/_index.md
+++ b/content/market-research/_index.md
@@ -2,9 +2,9 @@
=title: Tad Market Research
=---
=
-Hi! We are Tad and Fana, two IT professionals from Hilversum, the Netherlands. We want to start a new business. In order to understand the demand, we are conducting this market research. If you are in a position to fill this form, it would help us immensely.
+Hi 👋 We are Tad and Fana, two IT professionals from Hilversum, the Netherlands. We want to help businesses and organizations get more control over their digital tools and data. 
=
-Thank you :-)
+In order to understand the demand, we are conducting this market research. If you are in a position to do so, please fill this form. Thank you :-)
=
=# Data Sovereignty Market Research
=
index adcafca..7aadfe2 100644
--- a/content/market-research/form.html
+++ b/content/market-research/form.html
@@ -1,20 +1,4 @@
=<style type="text/css">
- /* form {
-
-    --range-border-color: linear-gradient(
-    90deg,
-    okcl,
-    rgba(87, 199, 133, 1) 50%,
-    rgba(237, 221, 83, 1) 100%
-    );
-    }
-
-    [type="range"] {
-    &::-moz-range-track, &::-webkit-slider-runnable-track {
-    background: var(--range-border-color);
-    }
-    } */
-
= label:has(input:not([type="checkbox"]):not([type="radio"])[required]),
= label:has(textarea[required]),
= .required {
@@ -42,39 +26,50 @@
=         color: var(--muted-color);
=     }
= }
+
+ [data-fold-container] {
+     [data-fold-target] {
+         height: 0;
+         overflow: hidden;
+     }
+
+     &:has([data-fold-toggle]:checked) [data-fold-target] {
+         height: unset;
+     }
+ }
+
+ label[role="button"]:has(input[type="radio"]) {
+     display: block;
+
+     @media (min-width: 992px) {
+         display: inline-block;
+     }
+
+     &:has(input:not(:checked)) {
+         background: none;
+         color: var(--primary);
+     }
+
+     input[type="radio"] {
+         display: none;
+     }
+ }
=</style>
=
=
=<form method="POST" action="https://use.formtomail.eu/submit/tad-market-research">
=
-    <label for="organization-name">
-        What is the name of your business / organization?
-        <input type="text" name="organization-name" id="organization-name" value="" required />
-    </label>
-    
-    <div class="grid">
-        <label for="respondent-name">
-            What is your name?
-            <input type="text" name="respondent-name" id="respondent-name" value="" required />
-        </label>
-
-        <label for="respondent-role">
-            What is your role?
-            <input type="text" name="respondent-role" id="respondent-role" value="" />
-        </label>
-    </div>
+    <fieldset data-fold-container>
+        <legend class="required">
+            Are you worried about the reliance of your organization on the big technology providers from USA?
+        </legend>
=
-    <label for="big-tech-concern">
-        Are you worried about the reliance of your organization on the big technology providers from USA?
-        <div class="grid">
-            <small>Not at all</small>
-            <small style="text-align: center">Somewhat</small>
-            <small style="text-align: end">A lot</small>
-        </div>
-        <input type="range" name="big-tech-concern" id="big-tech-concern" min=0 max=100 value=50 required />
-    </label>
+        <label role="button" ><input type="radio" name="big-tech-concern" value="Not at all" required data-fold-toggle/>Not at all</label>
+        <label role="button" ><input type="radio" name="big-tech-concern" value="Somewhat worried" required data-fold-toggle/>I'm somewhat worried</label>
+        <label role="button" ><input type="radio" name="big-tech-concern" value="I worry about it a lot" required data-fold-toggle/>I worry about it a lot</label>
+    </fieldset>
=
-    <fieldset>
+    <fieldset data-fold-container>
=        <legend class="optional">What are your main concerns?</legend>
=
=        <div class="grid">
@@ -101,21 +96,26 @@
=            <label><input type="checkbox" name="main-concerns" value="Customer support" />Customer support</label>
=            <label><input type="checkbox" name="main-concerns" value="Alignment with European digital sovereignty goals" />Alignment with European digital sovereignty goals</label>
=        </div>
+
+        <label><input type="checkbox" name="main-concerns" value="Something else" data-fold-toggle />Something else...</label>
+
+        <div data-fold-target>
+            <textarea name="other-concerns" id="other-concerns" rows="3" placeholder="I'm also concerned about..."></textarea>
+        </div>
=    </fieldset>    
=
-    <label for="other-concerns">
-        Anything else that concerns you?
-        <textarea name="other-concerns" id="other-concerns" rows="6" placeholder="I'm also concerned about..."></textarea>
-    </label>
=
-    <fieldset>
+    <fieldset data-fold-container>
=        <legend class="required">Have you taken steps to reduce this reliance?</legend>
=
-        <div class="grid">
-            <label><input type="radio" name="taken-steps" value="yes" required />Yes</label>
-            <label><input type="radio" name="taken-steps" value="yes" required />No</label>
-            <label><input type="radio" name="taken-steps" value="yes" required />Not yet</label>
-        </div>
+        <label role="button"><input type="radio" name="taken-steps" value="yes" required data-fold-toggle/>Yes, we did</label>
+        <label role="button"><input type="radio" name="taken-steps" value="no" required data-fold-toggle/>No, we won't</label>
+        <label role="button"><input type="radio" name="taken-steps" value="not yet" required data-fold-toggle/>Not yet</label>
+
+        <label for="steps-comment" data-fold-target>
+            Would you care to elaborate?
+            <textarea name="steps-comment" id="steps-comment" rows="6" placeholder="What's holding us back is..."></textarea>
+        </label>
=    </fieldset>
=
=
@@ -139,27 +139,38 @@
=        <label><input type="checkbox" name="want-help" value="Security and compliance monitoring"/>Security and compliance monitoring</label>
=    </fieldset>
=         
-    <label for="biggest-hurdles">
-        Briefly describe your biggest hurdle in moving away from USA providers:
-        <textarea name="biggest-hurdles" id="biggest-hurdles" rows="6" placeholder="What's holding us back is..."></textarea>
-    </label>
+    <div class="grid">
+        <label for="organization-name">
+            Your business / organization name
+            <input type="text" name="organization-name" id="organization-name" value="" required />
+        </label>
+        <label for="respondent-role">
+            What is your role?
+            <input type="text" name="respondent-role" id="respondent-role" value="" />
+        </label>
+    </div>
+    
+    <div class="grid">
+        <label for="respondent-name">
+            Your name?
+            <input type="text" name="respondent-name" id="respondent-name" value="" required />
+        </label>
=
-    <fieldset>
-        <legend class="optional">Can we contact you about this form?</legend>
-        <label><input type="checkbox" name="ok-to-contact" value="ok" />Yes, that's OK</label>
-    </fieldset>         
+        <label for="sender">
+            Your email address:
+            <input type="email" name="email" required/>
+        </label> 
+    </div>
=
-    <label for="sender">
-        Your email address:
-        <input type="email" name="email" required/>
-    </label> 
=         
-
-    <label for="preferred-contact-method">
-        What's the best way to contact you?
-        <textarea name="preferred-contact-method" id="preferred-contact-method" rows="3" placeholder="You can call me at +31 ... between ... and ..."></textarea>
-    </label> 
-
+    <fieldset data-fold-container>
+        <legend class="optional">Can we contact you about this form?</legend>
+        <label><input type="checkbox" name="ok-to-contact" value="ok" data-fold-toggle />Yes, that's OK</label>
+        <label for="preferred-contact-method" data-fold-target>
+            What's the best way to contact you?
+            <textarea name="preferred-contact-method" id="preferred-contact-method" rows="3" placeholder="Would you rather be called on a phone or meet in person? What times work for you? Any other comments?"></textarea>
+        </label> 
+    </fieldset>         
=
=    <fieldset>
=        <legend class="required">Data processing</legend>

Commits: 2

Add Emmet to the development shell

index 95fb37f..ede5332 100644
--- a/flake.nix
+++ b/flake.nix
@@ -28,6 +28,7 @@
=          packages = [
=            pkgs.jq
=            pkgs.miniserve
+            pkgs.emmet-ls
=          ];
=          project_name = project-name; # Expose as an environment variable for make
=        };

Draft a market research form

To be used with formtomail.eu by Jewiet.

new file mode 100644
index 0000000..b9fb806
--- /dev/null
+++ b/content/market-research/_index.md
@@ -0,0 +1,57 @@
+---
+title: Tad Market Research
+---
+
+Hi! We are Tad and Fana, two IT professionals from Hilversum, the Netherlands. We want to start a new business. In order to understand the demand, we are conducting this market research. If you are in a position to fill this form, it would help us immensely.
+
+Thank you :-)
+
+# Data Sovereignty Market Research
+
+{{ include(file="content/market-research/form.html") }}
+
+## Privacy Policy
+
+Privacy Policy for Tad Market Research
+
+1. Who Collects the Data
+
+   The data provided above or during subsequent communication is collected and processed by Tad Lispy, an entrepreneur registered in the Amsterdam chamber of commerce (KvK).
+
+2. What Data Are We Collecting
+
+   When you fill out our market research form, we collect:
+
+     * Contact Details: Name, Job Title, and Email Address.
+     * Business Details: Organization Name, Industry, and Company Size.
+     * Feedback: Your answers regarding technology concerns and service desirability.
+
+3. Why We Need Your Data 
+
+   We process your data to conduct market research and improve our services. This is based on our legitimate business interest and your explicit consent.
+
+   We use this data solely to analyze trends in the European market.
+
+   We will not sell, rent, or share your data with third parties.
+
+4. How Long We Keep Your Data
+
+   We retain your data until you request deletion. We will securely delete or anonymize your responses.
+
+5. Your Rights
+
+   You have the right to:
+
+     * Access the data we hold about you.
+     * Correct any inaccurate information.
+     * Withdraw the data processing consent at any time.
+
+   To exercise these rights, email us at <data@tad-lispy.com>
+
+6. Data Security
+
+   We take reasonable technical and organizational measures to protect your data against unauthorized access, loss, or destruction. Your data is stored on secure servers located within the European Economic Area (EEA).
+
+7. Changes to This Policy
+
+   We may update this policy occasionally. The latest version will always be posted on our website.
new file mode 100644
index 0000000..adcafca
--- /dev/null
+++ b/content/market-research/form.html
@@ -0,0 +1,173 @@
+<style type="text/css">
+ /* form {
+
+    --range-border-color: linear-gradient(
+    90deg,
+    okcl,
+    rgba(87, 199, 133, 1) 50%,
+    rgba(237, 221, 83, 1) 100%
+    );
+    }
+
+    [type="range"] {
+    &::-moz-range-track, &::-webkit-slider-runnable-track {
+    background: var(--range-border-color);
+    }
+    } */
+
+ label:has(input:not([type="checkbox"]):not([type="radio"])[required]),
+ label:has(textarea[required]),
+ .required {
+     width: 100%;
+     
+     &::before {
+         content: "required";
+         float: right;
+         font-size: 0.8em;
+         margin-top: 0.2em;
+         color: var(--muted-color);
+     }
+ }
+
+ label:has(input:not([type="checkbox"]):not([type="radio"]):not([required])),
+ label:has(textarea:not([required])),
+ .optional {
+     width: 100%;
+
+     &::before {
+         content: "optional";
+         float: right;
+         font-size: 0.8em;
+         margin-top: 0.2em;
+         color: var(--muted-color);
+     }
+ }
+</style>
+
+
+<form method="POST" action="https://use.formtomail.eu/submit/tad-market-research">
+
+    <label for="organization-name">
+        What is the name of your business / organization?
+        <input type="text" name="organization-name" id="organization-name" value="" required />
+    </label>
+    
+    <div class="grid">
+        <label for="respondent-name">
+            What is your name?
+            <input type="text" name="respondent-name" id="respondent-name" value="" required />
+        </label>
+
+        <label for="respondent-role">
+            What is your role?
+            <input type="text" name="respondent-role" id="respondent-role" value="" />
+        </label>
+    </div>
+
+    <label for="big-tech-concern">
+        Are you worried about the reliance of your organization on the big technology providers from USA?
+        <div class="grid">
+            <small>Not at all</small>
+            <small style="text-align: center">Somewhat</small>
+            <small style="text-align: end">A lot</small>
+        </div>
+        <input type="range" name="big-tech-concern" id="big-tech-concern" min=0 max=100 value=50 required />
+    </label>
+
+    <fieldset>
+        <legend class="optional">What are your main concerns?</legend>
+
+        <div class="grid">
+            <label><input type="checkbox" name="main-concerns" value="Business information security (industrial espionage)" />Business information security (industrial espionage)</label>
+            <label><input type="checkbox" name="main-concerns" value="General security" />General security</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="main-concerns" value="Quality of service" />Quality of service</label>
+            <label><input type="checkbox" name="main-concerns" value="Unpredictable prices" />Unpredictable prices</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="main-concerns" value="Compliance with European regulations (GDPR, etc.)" />Compliance with European regulations (GDPR, etc.)</label>
+            <label><input type="checkbox" name="main-concerns" value="Privacy" />Privacy</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="main-concerns" value="Vendor lock-in" />Vendor lock-in</label>
+            <label><input type="checkbox" name="main-concerns" value="Service availability risks" />Service availability risks</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="main-concerns" value="Customer support" />Customer support</label>
+            <label><input type="checkbox" name="main-concerns" value="Alignment with European digital sovereignty goals" />Alignment with European digital sovereignty goals</label>
+        </div>
+    </fieldset>    
+
+    <label for="other-concerns">
+        Anything else that concerns you?
+        <textarea name="other-concerns" id="other-concerns" rows="6" placeholder="I'm also concerned about..."></textarea>
+    </label>
+
+    <fieldset>
+        <legend class="required">Have you taken steps to reduce this reliance?</legend>
+
+        <div class="grid">
+            <label><input type="radio" name="taken-steps" value="yes" required />Yes</label>
+            <label><input type="radio" name="taken-steps" value="yes" required />No</label>
+            <label><input type="radio" name="taken-steps" value="yes" required />Not yet</label>
+        </div>
+    </fieldset>
+
+
+    <fieldset>
+        <legend>In which areas would your organization benefit the most from our help?</legend>
+        
+        <div class="grid">
+            <label><input type="checkbox" name="want-help" value="Staff training and education" />Staff training and education</label>
+            <label><input type="checkbox" name="want-help" value="Advice and consulting"/>Advice and consulting</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="want-help" value="Data migration"/>Data migration</label>
+            <label><input type="checkbox" name="want-help" value="Systems integration"/>Systems integration</label>
+        </div>
+
+        <div class="grid">
+            <label><input type="checkbox" name="want-help" value="Continuous IT support"/>Continuous IT support</label>
+            <label><input type="checkbox" name="want-help" value="Compliance & Legal Audits"/>Compliance & Legal Audits</label>
+        </div>
+        <label><input type="checkbox" name="want-help" value="Security and compliance monitoring"/>Security and compliance monitoring</label>
+    </fieldset>
+         
+    <label for="biggest-hurdles">
+        Briefly describe your biggest hurdle in moving away from USA providers:
+        <textarea name="biggest-hurdles" id="biggest-hurdles" rows="6" placeholder="What's holding us back is..."></textarea>
+    </label>
+
+    <fieldset>
+        <legend class="optional">Can we contact you about this form?</legend>
+        <label><input type="checkbox" name="ok-to-contact" value="ok" />Yes, that's OK</label>
+    </fieldset>         
+
+    <label for="sender">
+        Your email address:
+        <input type="email" name="email" required/>
+    </label> 
+         
+
+    <label for="preferred-contact-method">
+        What's the best way to contact you?
+        <textarea name="preferred-contact-method" id="preferred-contact-method" rows="3" placeholder="You can call me at +31 ... between ... and ..."></textarea>
+    </label> 
+
+
+    <fieldset>
+        <legend class="required">Data processing</legend>
+        <label>
+            <input type="checkbox" name="data-processing-consent" value="agreed" required />
+            I agree to the processing of the provided data for the purpose of this market research.<br>
+        </label>    
+    </fieldset>
+
+    <input type="submit" value="Send" />
+</form>
new file mode 100644
index 0000000..041db39
--- /dev/null
+++ b/content/market-research/thank-you.md
@@ -0,0 +1,6 @@
+---
+title: We got your form!
+---
+
+Thank you for submitting your response! It will be very helpful to us. Depending on your answers, we might contact you soon.
+
new file mode 100644
index 0000000..a4448d1
--- /dev/null
+++ b/templates/section.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+
+{% block variables %}
+{{ super() }}
+{% set page_class  = "section" %}
+{% set title = section.title | markdown(inline=true) | striptags %}
+{% set description = section.summary | default(value="by Tad Lispy.") | striptags%}
+{% endblock variables %}
+
+{% block content %}
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
+            <li><strong>{{ section.title | markdown(inline=true) | safe }}</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+
+    {{ section.content | safe }}
+
+</main>
+
+{% include "includes/footer.html" %}
+{% endblock content %}
new file mode 100644
index 0000000..7068e52
--- /dev/null
+++ b/templates/shortcodes/include.html
@@ -0,0 +1,2 @@
+{% set file = load_data(path=file) %}
+{{ file | safe }}

Commits: 6

Upgrade Zola, enable atom feed

There was a change to how code blocks syntax highliting is configured.

index d07db2f..c7e6fa4 100644
--- a/config.toml
+++ b/config.toml
@@ -1,3 +1,7 @@
+title = "Tad Website"
+description = "A personal website and blog of Tad Lispy."
+author = "Tad Lispy"
+
=# The URL the site will be built for
=base_url = "https://tad-lispy.com/"
=
@@ -7,10 +11,14 @@ compile_sass = true
=# Whether to build a search index to be used later on by a JavaScript library
=build_search_index = true
=
+generate_feeds = true
+feed_filenames = ["atom.xml"]
+
=[markdown]
-# Whether to do syntax highlighting
-# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
-highlight_code = true
+
+[markdown.highlighting]
+light_theme = "solarized-light"                                                                                     
+dark_theme = "solarized-dark"
=
=[link_checker]
=# Seems like some services (e.g. stackoverflow) are blocking connections from CI servers
index 587cbde..3c3a5a8 100644
--- a/flake.lock
+++ b/flake.lock
@@ -5,11 +5,11 @@
=        "systems": "systems"
=      },
=      "locked": {
-        "lastModified": 1705309234,
-        "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
+        "lastModified": 1731533236,
+        "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
=        "owner": "numtide",
=        "repo": "flake-utils",
-        "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
+        "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
=        "type": "github"
=      },
=      "original": {
@@ -20,11 +20,11 @@
=    },
=    "nixpkgs": {
=      "locked": {
-        "lastModified": 1707268954,
-        "narHash": "sha256-2en1kvde3cJVc3ZnTy8QeD2oKcseLFjYPLKhIGDanQ0=",
+        "lastModified": 1771369470,
+        "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=",
=        "owner": "NixOS",
=        "repo": "nixpkgs",
-        "rev": "f8e2ebd66d097614d51a56a755450d4ae1632df1",
+        "rev": "0182a361324364ae3f436a63005877674cf45efb",
=        "type": "github"
=      },
=      "original": {
index 54e6fef..bb2194b 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -195,3 +195,21 @@ footer {
=.dim {
=    color: var(--muted-color);
=}
+
+
+// Syntax highliting - see https://www.getzola.org/documentation/content/syntax-highlighting/
+
+.giallo-l {
+    display: inline-block;
+    min-height: 1lh;
+    width: 100%;
+}
+.giallo-ln {
+    display: inline-block;
+    user-select: none;
+    margin-right: 0.4em;
+    padding: 0.4em;
+    min-width: 3ch;
+    text-align: right;
+    opacity: 0.8;
+}
index ac95fd2..cbbde5c 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -25,7 +25,11 @@
=        <link rel="mask-icon" href="{{ get_url(path = '/safari-pinned-tab.svg') }}" color="#5bbad5">
=        <meta name="msapplication-TileColor" content="#da532c">
=        <meta name="theme-color" content="#ffffff">
-
+        
+        {% block rss %}
+        <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
+        {% endblock %}
+        
=        <script src="https://cdn.usefathom.com/script.js" data-site="ODXZZEEQ" defer></script>
=
=    </head>

Publish rss.xml along with atom.xml

index c7e6fa4..f203feb 100644
--- a/config.toml
+++ b/config.toml
@@ -12,7 +12,7 @@ compile_sass = true
=build_search_index = true
=
=generate_feeds = true
-feed_filenames = ["atom.xml"]
+feed_filenames = ["atom.xml", "rss.xml"]
=
=[markdown]
=

Do not fiddle with base URL in CI deployment

It was useful long time ago, when GitLab pages would be published under a prefix (like gitlab.io/tad-lispy/tad-lispy.com/ or something like that). Now GitLab allows to always publish to a root with randomly generated domain name, so it's not necesary, and it's messing with RSS feed by producing relative URLs where absolute are required.

index 5ec0fa6..0d40ef2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,8 +15,7 @@ pages:
=  stage: deploy
=  image: $CI_REGISTRY_IMAGE:build
=  script:
-    - base_url="/$(cut --delimiter='/' --fields=4- <<< $CI_PAGES_URL)"
-    - make base_url=${base_url}
+    - make
=
=  artifacts:
=    paths:

Do not fiddle with base URL in Makefile

Similar to previous commit.

index e1c45d0..27967cd 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,6 @@ all: test build
=.PHONY: all
=
=build: # Compile the website into the public/ directory
-build: base_url ?= ""
=build: public
=.PHONY: build
=
@@ -24,9 +23,8 @@ install:
=.PHONY: install
=
=
-public: base_url ?= ""
=public:
-	zola build --base-url "$(base_url)"
+	zola build
=	touch $@
=
=### DEVELOPMENT

Fix footnotes in the manifesto

I had to write them as HTML, because they are nested inside HTML elements. Apparently older versions of Zola would render them anyway, but it broke after the update.

index f203feb..1855ae9 100644
--- a/config.toml
+++ b/config.toml
@@ -15,6 +15,7 @@ generate_feeds = true
=feed_filenames = ["atom.xml", "rss.xml"]
=
=[markdown]
+bottom_footnotes = false
=
=[markdown.highlighting]
=light_theme = "solarized-light"
index 6b1443a..3c8c691 100644
--- a/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
+++ b/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
@@ -19,22 +19,22 @@ I care about
=    <span class="list-item"><strong>honesty</strong> and</span>
=    <span class="list-item"><strong>freedom</strong></span>
=</span>  
-<span class="dim">in this specific order</span>[^1].
+<span class="dim">in this specific order</span><sup class="footnote-reference"><a href="#1">1</a></sup>.
=
=I want to
=<span class="inline-list">
-  <span class="list-item"><strong>earn decent money</strong>[^2] while</span> 
-  <span class="list-item">doing <strong>useful</strong>[^3], <strong>positive</strong>[^4] work</span>
+  <span class="list-item"><strong>earn decent money</strong><sup class="footnote-reference"><a href="#2">2</a></sup> while</span>
+  <span class="list-item">doing <strong>useful</strong><sup class="footnote-reference"><a href="#3">3</a></sup>, <strong>positive</strong>[^4] work</span>
=</span>  
-with <strong>mutual support</strong>[^5]  
+with <strong>mutual support</strong><sup class="footnote-reference"><a href="#5">5</a></sup>
=of people
=that I 
=<span class="inline-list">
=  <span class="list-item"><strong>like</strong>,</span>
-  <span class="list-item"><strong>trust</strong> to rely on[^6]</span>
-  <span class="list-item">and <strong>respect</strong>[^7],</span>
+  <span class="list-item"><strong>trust</strong> to rely on<sup class="footnote-reference"><a href="#6">6</a></sup></span>
+  <span class="list-item">and <strong>respect</strong><sup class="footnote-reference"><a href="#7">7</a></sup>,</span>
=</span>  
-without having or being a ~~boss~~[^8].
+without having or being a ~~boss~~<sup class="footnote-reference"><a href="#8">8</a></sup>.
={% end %}
=
=[^1]: All those principles are important, but the order matters, because life is complicated and full of edge cases. Mostly fairness, honesty and freedom reinforce each other, but sometimes they clash and have to be negotiated. For example freedom of speech is very important, but it doesn't absolve spreading lies and misinformation. You are free to be wrong. To err is human. But it's only ok to say wrong things if you honestly believe what you say, and only if you are willing to change your mind. Willful ignorance is just lying to yourself. So in my eyes honesty trumps freedom. Honesty is a mean to discover truth (whatever it might be), and knowing truth should be a mean to foster fairness. For example it is not fair to tell young children about the horrors of war. Or if you are an atheist like me, it's not fair to tell a dying believer that there is no afterlife. If you are using truth to harm others, or even being honest, but in a disrespectful way, you are no friend of mine and I won't do business with you.

Fix a footnote in the manifesto, format the code

index 3c8c691..9abf1ce 100644
--- a/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
+++ b/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
@@ -23,16 +23,27 @@ I care about
=
=I want to
=<span class="inline-list">
-  <span class="list-item"><strong>earn decent money</strong><sup class="footnote-reference"><a href="#2">2</a></sup> while</span>
-  <span class="list-item">doing <strong>useful</strong><sup class="footnote-reference"><a href="#3">3</a></sup>, <strong>positive</strong>[^4] work</span>
+  <span class="list-item">
+    <strong>earn decent money</strong><sup class="footnote-reference"><a href="#2">2</a></sup> while
+  </span>
+  <span class="list-item">
+    doing
+    <strong>useful</strong><sup class="footnote-reference"><a href="#3">3</a></sup>,
+    <strong>positive</strong><sup class="footnote-reference"><a href="#4">4</a></sup>
+    work
+  </span>
=</span>  
=with <strong>mutual support</strong><sup class="footnote-reference"><a href="#5">5</a></sup>
=of people
=that I 
=<span class="inline-list">
=  <span class="list-item"><strong>like</strong>,</span>
-  <span class="list-item"><strong>trust</strong> to rely on<sup class="footnote-reference"><a href="#6">6</a></sup></span>
-  <span class="list-item">and <strong>respect</strong><sup class="footnote-reference"><a href="#7">7</a></sup>,</span>
+  <span class="list-item">
+    <strong>trust</strong> to rely on<sup class="footnote-reference"><a href="#6">6</a></sup>
+  </span>
+  <span class="list-item">
+    and <strong>respect</strong><sup class="footnote-reference"><a href="#7">7</a></sup>,
+  </span>
=</span>  
=without having or being a ~~boss~~<sup class="footnote-reference"><a href="#8">8</a></sup>.
={% end %}

Commits: 2

Create /works/ section

It will contain my past works, job experience etc. For now, I copied text from software.garden/portfolio.

index 1914810..7250407 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -7,10 +7,8 @@ extra:
=      label: Social Club
=    - href: "blog/"
=      label: Blog
-    - href: "https://gitlab.com/tad-lispy"
-      label: GitLab
-    - href: "https://github.com/tad-lispy"
-      label: GitHub
+    - href: "works/"
+      label: Works
=    - href: "https://stackoverflow.com/users/1151982/tad-lispy?tab=profile"
=      label: StackOverflow
=    - href: "https://chaos.social/@lazurski"
new file mode 100644
index 0000000..17c8e83
--- /dev/null
+++ b/content/works/_index.md
@@ -0,0 +1,88 @@
+---
+title: "Tad Works"
+sort_by: "date"
+template: "works.html"
+description: "Featured works of Tad Lispy"
+---
+
+Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
+
+# Lead Studio
+
+  - data engineering
+  - business process automation
+  - web extensions
+  - user experience
+  - internal tooling
+  - LinkedIn Sales Navigator
+  - Google Cloud
+  - Elm programming
+  - JavaScript programming
+
+In 2021, we promised our client, Saleslift Studio, to deliver a working software solution to improve prospecting performance within a fixed time and at a fixed price. In just 6 weeks (a single development cycle), we provided them with a useful solution - Lead Studio. Further incremental development enabled them to improve a number of key performance indicators. Thanks to their partnership with Software Garden, prospecting specialists at Saleslift Studio are now able to enrich leads 20⨉ faster than before.
+
+[Read our case study](https://software.garden/lead-studio.html)
+
+
+# Agile Plan Exporter
+
+  - agile software development
+  - Rust programming
+  - collaboration
+  - free / open source software
+  - markdown processing
+  - iCalendar 
+
+At Software Garden we attempted to create a work environment where we can be efficient and happy at the same time. Part of it was agile planning - a simple and collaborative process where everyone had a chance to catch up with all the latest developments and choose the priorities they will work on. To facilitate it, we created several tools, including this one. It exports our schedule from a Markdown document,  to iCalendar format. Markdown is a flexible and lightweight plain text format, ideal for taking notes while planning, while iCalendar is the industry standard for calendaring data. This enabled  every team member to synchronize their personal calendars with our shared plan! 
+
+The tool might still be useful for you. [Learn how you can use it too](https://gitlab.com/software-garden/markdown-to-icalendar-export).
+
+
+# Elm Springs
+
+  - Elm programming
+  - physics simulation
+  - animations
+  - free / open source software
+
+An Elm package implementing a rough model of a physical mass attached to a spring, as described in physics by Hooke's law. Good for making smooth and organic looking animations or modeling oscillating values (for example emotions). High physical accuracy is not a priority - performance and API simplicity is more important.
+
+[See the package](https://package.elm-lang.org/packages/tad-lispy/springs/latest/).
+
+
+# Ethical Software Garden
+
+  - collaboration
+  - digital ethics
+  - CMS
+  - GitLab API
+  - free / open source software
+  - GraphQL
+  
+
+After taking part in the Offsite Sustainability meetup hosted by [Railslove](https://railslove.com/) we realized that resources about digital ethics are very scattered. This website uses our GitLab GraphQL API and Elm Pages static site generator to produce a catalogue of articles, videos, websites etc. about digital ethics. The idea is to use GitLab issues, comments, reactions (up and down votes) and moderation to generate web content. The webpage is re-generated daily in a CI/CD pipeline for fast loading, but the content is also loaded live.
+
+[See the catalogue](https://ethical.software.garden/)
+
+
+# Elm Tree Workshop
+
+  - teaching
+  - Elm programming
+  - web development
+
+A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
+
+[Visit the website](https://elm-tree.software.garden/)
+
+
+# Word Snake
+
+  - game development
+  - web development
+  - education technology
+  - Elm programming
+
+Think fast - guess a password, collect letters and save the snake from a fire trap! In this simple word puzzle game you control a snake while guessing a password. Challenges are designed to let players learn various facts about the world or improve their arithmetic and logical thinking while playing. It's extra fun to play in a group on a phone or a tablet - one player controls the snake while others help to guess the password. It can be a nice family exercise that brings people together.
+
+[Play the game](https://word-snake.software.garden/ "Play Word Snake in your browser")
new file mode 100644
index 0000000..dcead87
--- /dev/null
+++ b/templates/works.html
@@ -0,0 +1,30 @@
+{% extends "base.html" %}
+
+{%- block variables -%}
+{#- These variables are used in base.html. The super call allows inheritance. -#}
+
+{{- super() -}}
+
+{%- set page_class  = "works-index" -%}
+{%- set description = section.description -%}
+{%- set title       = section.title ~ " - " ~ title -%}
+
+{%- endblock variables -%}
+
+{% block content %}
+
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{{ get_url(path='@/_index.md') }}">Tad Lispy</a></li>
+            <li><strong>Works</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+    {{ section.content | safe }}
+</main>
+
+{% include "includes/footer.html" %}
+{% endblock content %}

List some clients and testimonials on /works/

index 17c8e83..b6518bf 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -5,6 +5,42 @@ template: "works.html"
=description: "Featured works of Tad Lispy"
=---
=
+
+I have over 15 years of experience in software development and training. Over those years I worked for many organizations, including
+
+  - KPN
+  - Citi Group
+  - Liberty Mutual
+  - IT Fundamentals
+  - Bright Boost
+  - Saleslift
+  - Elanza
+  - Niteo
+  - Base builder
+  - District Court of Warsaw
+
+Here is what some of my clients have to say about me:
+
+> I've been working with Tad on a range of software development and security trainings. The labs were creative and fun. I can definitely recommend him and I'll be happy to work with him again.
+>
+> <cite>Maaike van Putten, (Virtual) Trainer and developer</cite>
+
+> In several weeks Tad and his team were able to understand our needs and deliver the first version of Lead Studio. Great development work!
+>
+> <cite>Davy Guijt, Founder at Saleslift Studio</cite>
+
+> We hired Tad because of his experience in teaching software development using Elm. Thanks to his coaching we were able to develop a working prototype of a new product in just two weeks and are now generally more confident in our code.
+> 
+> <cite>Neyts Zupan, Open Source geek & founder, ParetoSecurity.com</cite>
+
+> Tadeusz is hands down one of the best JavaScript developers I have had a chance to work with. He's a smart person and has very strong analytical skills.
+>
+> <cite>Wouter de Winter, CTO at Elanza</cite>
+
+> Tad understands technology well, listens carefully and communicates very clearly. Many times he helped us find pragmatic, simple and elegant solutions. We are glad to have him as a consultant.
+>
+> <cite>Neyts Zupan, Open Source geek & founder, Niteo</cite>
+
=Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
=
=# Lead Studio

Commits: 1

Ignore /drafts/ directory

I'll use it for my private drafts.

index 39ad8cf..61d741d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
=/result
=/public/
=/build-image
+/drafts/

Commits: 1

Seems like some services (e.g. stackoverflow) are blocking connections from CI servers.

index 5521642..d07db2f 100644
--- a/config.toml
+++ b/config.toml
@@ -12,5 +12,9 @@ build_search_index = true
=# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
=highlight_code = true
=
+[link_checker]
+# Seems like some services (e.g. stackoverflow) are blocking connections from CI servers
+external_level = "warn"
+
=[extra]
=# Put all your custom variables here

Commits: 1

Connect Fathom Analytics

index 06a616a..ac95fd2 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -26,6 +26,8 @@
=        <meta name="msapplication-TileColor" content="#da532c">
=        <meta name="theme-color" content="#ffffff">
=
+        <script src="https://cdn.usefathom.com/script.js" data-site="ODXZZEEQ" defer></script>
+
=    </head>
=    <body class="container">
=        {% block content %}