summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2018-10-29 14:28:41 +0000
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2018-10-29 14:28:41 +0000
commitbaf6b57823dd49565d7c39ca33d07949e97ccaf2 (patch)
tree8829cc49cbdb7c72152ea234558d592a0888e70d
parente97d2a7577cb7582dc1dc4606d4a089123ee9545 (diff)
parentb1fadaa525ff8d046ac766acd1275bf56dd15ae6 (diff)
downloadbuildstream-baf6b57823dd49565d7c39ca33d07949e97ccaf2.tar.gz
Merge branch 'tristan/architecture-docs' into 'master'
Tristan/architecture docs See merge request BuildStream/buildstream!907
-rw-r--r--MANIFEST.in2
-rw-r--r--doc/source/arch_cachekeys.rst (renamed from doc/source/additional_cachekeys.rst)0
-rw-r--r--doc/source/arch_data_model.rst157
-rw-r--r--doc/source/arch_dependency_model.rst71
-rw-r--r--doc/source/arch_overview.rst8
-rw-r--r--doc/source/arch_program_flow.rst11
-rw-r--r--doc/source/arch_sandboxing.rst (renamed from doc/source/additional_sandboxing.rst)0
-rw-r--r--doc/source/arch_scheduler.rst132
-rw-r--r--doc/source/conf.py2
-rw-r--r--doc/source/core_additional.rst2
-rw-r--r--doc/source/format_intro.rst3
-rw-r--r--doc/source/image-sources/arch-datamodel-context.odgbin0 -> 17591 bytes
-rw-r--r--doc/source/image-sources/arch-datamodel-element-composition.odgbin0 -> 17831 bytes
-rw-r--r--doc/source/image-sources/arch-datamodel-element.odgbin0 -> 14318 bytes
-rw-r--r--doc/source/image-sources/arch-datamodel-source-composition.odgbin0 -> 16877 bytes
-rw-r--r--doc/source/image-sources/arch-datamodel-source.odgbin0 -> 11040 bytes
-rw-r--r--doc/source/image-sources/arch-dependency-model-build.odgbin0 -> 14060 bytes
-rw-r--r--doc/source/image-sources/arch-dependency-model-runtime.odgbin0 -> 14123 bytes
-rw-r--r--doc/source/image-sources/arch-dependency-model.odgbin0 -> 13850 bytes
-rw-r--r--doc/source/image-sources/arch-overview.odgbin0 -> 20118 bytes
-rw-r--r--doc/source/image-sources/arch-program-flow.odgbin0 -> 17495 bytes
-rw-r--r--doc/source/image-sources/arch-scheduler-job.odgbin0 -> 15465 bytes
-rw-r--r--doc/source/image-sources/arch-scheduler-queue-ports.odgbin0 -> 16179 bytes
-rw-r--r--doc/source/image-sources/arch-scheduler-queues.odgbin0 -> 15591 bytes
-rw-r--r--doc/source/image-sources/arch-scheduler-run.odgbin0 -> 14172 bytes
-rw-r--r--doc/source/images/arch-datamodel-context.svg211
-rw-r--r--doc/source/images/arch-datamodel-element-composition.svg463
-rw-r--r--doc/source/images/arch-datamodel-element.svg183
-rw-r--r--doc/source/images/arch-datamodel-source-composition.svg255
-rw-r--r--doc/source/images/arch-datamodel-source.svg167
-rw-r--r--doc/source/images/arch-dependency-model-build.svg267
-rw-r--r--doc/source/images/arch-dependency-model-runtime.svg266
-rw-r--r--doc/source/images/arch-dependency-model.svg299
-rw-r--r--doc/source/images/arch-overview.svg2058
-rw-r--r--doc/source/images/arch-program-flow.svg1819
-rw-r--r--doc/source/images/arch-scheduler-job.svg750
-rw-r--r--doc/source/images/arch-scheduler-queue-ports.svg318
-rw-r--r--doc/source/images/arch-scheduler-queues.svg488
-rw-r--r--doc/source/images/arch-scheduler-run.svg437
-rw-r--r--doc/source/index.rst1
-rw-r--r--doc/source/main_architecture.rst17
41 files changed, 8384 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 5c001616a..41c09d74e 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -16,6 +16,8 @@ recursive-include doc/source *.rst
recursive-include doc/source *.py
recursive-include doc/source *.in
recursive-include doc/source *.html
+recursive-include doc/source *.odg
+recursive-include doc/source *.svg
recursive-include doc/examples *
# Tests
diff --git a/doc/source/additional_cachekeys.rst b/doc/source/arch_cachekeys.rst
index f0df796c5..f0df796c5 100644
--- a/doc/source/additional_cachekeys.rst
+++ b/doc/source/arch_cachekeys.rst
diff --git a/doc/source/arch_data_model.rst b/doc/source/arch_data_model.rst
new file mode 100644
index 000000000..467859a7d
--- /dev/null
+++ b/doc/source/arch_data_model.rst
@@ -0,0 +1,157 @@
+
+
+Data model
+==========
+This section details the data model on which the BuildStream core operates. This
+includes an overview of the project data model which is BuildStream's main input,
+the user preferences, and local state.
+
+
+Project
+-------
+The ``Project`` object is the main component of a given BuildStream *project*, and
+is responsible for loading and validating the :ref:`project.conf <projectconf>`, and
+providing this loaded *project data* in a convenient way to the BuildStream core.
+
+Conceptually, the *project* is a container for the :mod:`Elements <buildstream.element>`,
+which are declared within a user's project, and as such acts as a factory for instantiating
+elements at load time.
+
+
+Element
+-------
+:mod:`Elements <buildstream.element>` are the main processing unit in a pipeline. These
+are the loaded representation of the ``.bst`` files loaded from the :ref:`project's element path
+<project_element_path>`.
+
+The *Element* is an abstract base class which cannot do anything on its own, its
+concrete class is defined by *plugins* which are either included in the BuildStream
+:ref:`core set of plugins <plugins>` or loaded from external sources :ref:`defined by the project
+<project_plugins>`
+
+The responsibilities of an element include:
+
+* Loading the element's configuration from the core provided dictionary
+* Providing a unique key for any element specific configuration which might
+ effect the output produced by the element
+* Configuring the sandbox
+* Staging the data into the sandbox, which might include Sources and
+ the outputs of previous elements
+* Assembling the output *artifact*
+
+
+Element data structure
+~~~~~~~~~~~~~~~~~~~~~~
+The properties of an element are a composition of what the BuildStream core understands,
+the configurations exposed by the Element plugin, and free form data which allows
+annotations and configurations which can be read back by reverse dependencies during
+processing, as illustrated here:
+
+.. image:: images/arch-datamodel-element.svg
+ :align: center
+
+
+Element composition
+~~~~~~~~~~~~~~~~~~~
+The element is composed of configurations which are sourced from various entry
+points using the low level YAML utilities.
+
+This composition takes place after :ref:`includes <format_directives_include>` and
+:ref:`conditional <format_directives_conditional>` directives are processed, while
+:ref:`list composition <format_directives_list_prepend>` directives are processed
+as a result of this composition.
+
+Here is a diagram showing which sources take precedence in the composition process
+which results in the final element configuration being resolved:
+
+.. image:: images/arch-datamodel-element-composition.svg
+ :align: center
+
+Note that not all *BuildStream Core Data* is understood by the *Element*, but a great
+deal of configurations understood by the *Element* is also understood by the core and
+has default configurations built into BuildStream and configurable with the project
+configuration. These include values such as *variables*, *environment*, *sandbox*, etc.
+
+As shown above, composition is performed in two stages, as we only need to composite
+the data from the toplevel element declaration against the composition of previous
+stages every time we instantiate an element.
+
+
+Source
+------
+:mod:`Sources <buildstream.element>` are the abstract objects which are responsible
+for obtaining remote source code or data to import into the build environment, and
+ensuring that it is done in a bit-for-bit reproducible way without any contamination
+of the host or build environment.
+
+This is to say that:
+
+* User configuration on the host, or filesystem outside of BuildStream designated
+ directories, must never be modified as a side effect of running BuildStream.
+
+* When the Source uses host tools, host side configurations must never result in
+ deviations of what is staged to a build directory. The Source must behave exactly
+ the same way regardless of host side configurations.
+
+The responsibilities of a source include:
+
+* Loading the source's configuration from the core provided dictionary
+* Providing a unique key for any source specific configuration which might
+ effect the staged source
+* Implement discovery of new versions of the source upstream (referred to as *"tracking"*)
+* Staging the unpacked source to a given directory
+* Preparing workspaces
+
+
+Source data structure
+~~~~~~~~~~~~~~~~~~~~~
+Similar to the *Element*, the properties of a source are a composition of what
+the BuildStream core understands and the configurations exposed by the Source
+plugin:
+
+.. image:: images/arch-datamodel-source.svg
+ :align: center
+
+.. note::
+
+ In .bst files, the BuildStream core configurations and Source specific configurations
+ share the same dictionary.
+
+ Strictly speaking this is limiting, but provides a measure of convenience as .bst
+ files are a bit less wordy to express.
+
+
+Source composition
+~~~~~~~~~~~~~~~~~~
+Source composition is much simpler than Element composition, because defaults
+cannot be specified at the project level, excepting for Source type specific
+value overrides.
+
+.. image:: images/arch-datamodel-source-composition.svg
+ :align: center
+
+
+Context
+-------
+The Context object is a very centric part of the BuildStream data model, and is
+not a part of the Project data described above but rather is where we load and
+store all of the user preferences.
+
+User preferences are sourced from various locations, but usually have a default,
+an option in the user configuration file, and an option to override it on the
+command line.
+
+.. image:: images/arch-datamodel-context.svg
+ :align: center
+
+Asides from being a focal point for loading and storing all user configuration,
+the Context object also plays a central role in the logging framework.
+
+
+Workspaces
+----------
+The Workspaces object is yet another kind of state. Unlike the Context and
+the Project data model, the Workspaces object loads, saves and stores in
+memory the local state regarding a user's active and open workspaces.
+
+These are stored in the local state ``.bst/`` subdirectory of users projects.
diff --git a/doc/source/arch_dependency_model.rst b/doc/source/arch_dependency_model.rst
new file mode 100644
index 000000000..ff802660c
--- /dev/null
+++ b/doc/source/arch_dependency_model.rst
@@ -0,0 +1,71 @@
+
+
+Dependency model
+================
+Elements in the data model are related by their *dependencies*. In BuildStream, there
+are two types of relationship that an Element may have with a *dependency*,
+:ref:`build and runtime dependencies <format_dependencies>`. More often than not,
+an element will require its dependency both to *build* and also at *runtime*.
+
+Consider a simple build scenario where you want to build an application, which
+requires a service be present in order to function properly at *runtime*, a
+compiler that need only be present at *build time*, and a runtime environment
+or base system which must be required all the time:
+
+.. image:: images/arch-dependency-model.svg
+
+Note that in BuildStream we are only concerned with element level granularity
+in our dependency model, and there is no way to depend on only a part of an element's
+output *artifact*. Instead we can employ :mod:`compose <elements.compose>` and
+:mod:`filter <elements.filter>` elements in conjunction with :ref:`split rules <public_split_rules>`
+to achieve sub artifact granularity at build and deploy time.
+
+When developing BuildStream, it is important to understand the distinction
+between dependency types and element :class:`Scope <buildstream.types.Scope>`,
+which acts as a selector of which elements to consider in the dependency
+graph of a given element when performing recursive activities.
+
+
+Scope
+~~~~~
+
+* **Scope.ALL**
+
+ In the :func:`Scope.ALL <buildstream.types.Scope.ALL>` scope, all elements
+ are considered.
+
+ This is used in some cases to forcefully fetch, pull or build all dependencies
+ of a given element, even when not all of them are needed.
+
+ This scope simply includes all of the dependencies, including the element itself.
+
+* **Scope.RUN**
+
+ In the :func:`Scope.RUN <buildstream.types.Scope.RUN>` scope, only elements
+ which are required to run are considered, including the element itself.
+
+ This is used when for example, launching a ``bst shell`` environment
+ for the purpose of running, or in any case we need to consider which
+ elements are required to run.
+
+ .. image:: images/arch-dependency-model-runtime.svg
+ :align: center
+
+* **Scope.BUILD**
+
+ In the :func:`Scope.BUILD <buildstream.types.Scope.BUILD>` scope, only
+ elements which are required to build are considered, *excluding* the
+ element we intend to build.
+
+ .. image:: images/arch-dependency-model-build.svg
+ :align: center
+
+ Note that build type dependencies are not transient, which is why the
+ *Bootstrap* element is not selected when pulling in the *Compiler* to
+ build the *Application*.
+
+ Further, note that we still follow the *Compiler* dependency on the
+ *Base Runtime*, this is because when we depend on an element for the
+ purpose of *building*, we expect that element to *run* and as such
+ we include all of the *runtime dependencies* of *build dependencies*
+ when selecting the *Scope.BUILD* elements.
diff --git a/doc/source/arch_overview.rst b/doc/source/arch_overview.rst
new file mode 100644
index 000000000..f01dec42f
--- /dev/null
+++ b/doc/source/arch_overview.rst
@@ -0,0 +1,8 @@
+
+
+Overview of modules
+===================
+Below is a basic overview of the modules, what they are for, and generally
+what their stacking order is internally in BuildStream.
+
+.. image:: images/arch-overview.svg
diff --git a/doc/source/arch_program_flow.rst b/doc/source/arch_program_flow.rst
new file mode 100644
index 000000000..9198ee114
--- /dev/null
+++ b/doc/source/arch_program_flow.rst
@@ -0,0 +1,11 @@
+
+
+Overview of program flow
+========================
+Here is a little chart to show the approximate highlevel program flow of
+BuildStream. This is in no way a complete flow chart of BuildStream, but
+should provide some highlevel insight into how the program operates in
+general.
+
+.. image:: images/arch-program-flow.svg
+ :align: center
diff --git a/doc/source/additional_sandboxing.rst b/doc/source/arch_sandboxing.rst
index 531a3e5d5..531a3e5d5 100644
--- a/doc/source/additional_sandboxing.rst
+++ b/doc/source/arch_sandboxing.rst
diff --git a/doc/source/arch_scheduler.rst b/doc/source/arch_scheduler.rst
new file mode 100644
index 000000000..bc1a3efcd
--- /dev/null
+++ b/doc/source/arch_scheduler.rst
@@ -0,0 +1,132 @@
+
+
+Scheduler
+=========
+The *Scheduler* is what is responsible for running the main event loop and
+dispatching *Jobs* to complete tasks on behalf of *Queues*.
+
+
+Jobs
+~~~~
+The basic functionality of spawning tasks is implemented by the base Job
+class, which is derived in a few ways but for now we'll only talk about the
+ElementJob type since that is the most centric.
+
+The Job class has the following responsibilities:
+
+* Spawning the given job as a subprocess.
+
+* Offering an abstract method for subclasses to handle the outcome of
+ a job when it completes.
+
+* Forcefully terminating it's subprocess.
+
+* Suspending and resuming it's subprocess.
+
+* Declaring the types of resources it will require, and which resources
+ it will require exclusively.
+
+
+Below is a rough outline of the interactions between the main process
+and job specific child process:
+
+.. image:: images/arch-scheduler-job.svg
+ :align: center
+
+
+Resources
+~~~~~~~~~
+To understand how we manage load balancing in the scheduler it is important
+to understand *resources*.
+
+For the scheduler, *resources* are domains which a Job can request which represent
+physical resources, such as the CPU or some network bandwidth, or the local
+artifact cache.
+
+This is used by the Scheduler when consuming Jobs from Queues and deciding
+how many jobs can be run at a given time.
+
+
+Queues
+~~~~~~
+The various Queue implementations in the Scheduler can be combined such that
+parallelism is maximized. For example one can *Track* and *Build* inside the
+same session, in this way one does not need to wait for a tracking session to
+complete in order to start building.
+
+The input elements to the scheduler are expected to be sorted in depth first
+order whenever the order is important, again allowing maximum parallelism
+at build time.
+
+.. image:: images/arch-scheduler-queues.svg
+ :align: center
+
+The Queue implementations are:
+
+* **Track**
+
+ The tracking queue must always come first if it is used in the given session.
+ This is because the Source *"ref"*, and consequently the cache key of any elements
+ which have been requested for tracking, cannot be known until tracking is complete.
+
+* **Pull**
+
+ The pull queue tries to obtain a built artifact from a remote artifact server,
+ it should be placed in advance of the fetch queue if used, since we can safely
+ avoid fetching if fetching is not imerative, and we already have a cached
+ artifact.
+
+* **Fetch**
+
+ The fetch queue attempts to download source code to build the given element,
+ this activity is sometimes skipped if the artifact is already present, or
+ if the exact source code is already present.
+
+* **Build**
+
+ The build queue attempts to build the element if it's artifact is not locally
+ present.
+
+* **Push**
+
+ The push queue attempts to push the resulting artifact to a remote artifact
+ server.
+
+
+Queue internals
+~~~~~~~~~~~~~~~
+Internally, the queue has an input queue and an output queue.
+
+.. image:: images/arch-scheduler-queue-ports.svg
+ :align: center
+
+When elements are on the input queue they get queried for their *QueueStatus*
+in order to determine which elements should be processed or moved from the input
+queue to the output queue. When elements are on the output queue, they are ready
+to be consumed by the scheduler and moved on to the next queue; however each
+queue holds on to the result status of every element which passed through for later
+reference and reports to the user.
+
+
+Scheduler
+~~~~~~~~~
+The scheduler itself has the main responsibility of popping off jobs from
+the existing queues it was given, and running the jobs as long as elements
+remain to be processed.
+
+A huge simplification of this can be visualized as follows:
+
+.. image:: images/arch-scheduler-run.svg
+ :align: center
+
+This is implemented by iterating over the Queues given to the scheduler
+and processing any *"Ready"* elements so long as there are sufficient resource
+tokens available for the ready elements to run, and by moving the *"Done"*
+elements onto the subsequent queues in the list of queues.
+
+.. note::
+
+ When looking for *"Ready"* elements in the queues, we iterate over the
+ queue list in *reverse order*. This is important to allow elements to
+ get as far as they can in the queue list as fast as possible, and helps
+ to prevent resource starvation.
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 5aaaed280..269053675 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -160,7 +160,7 @@ html_theme = 'sphinx_rtd_theme'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['badges']
+html_static_path = ['badges', 'images']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
diff --git a/doc/source/core_additional.rst b/doc/source/core_additional.rst
index 08c445630..878745ba2 100644
--- a/doc/source/core_additional.rst
+++ b/doc/source/core_additional.rst
@@ -6,6 +6,4 @@ Additional writings
.. toctree::
:maxdepth: 2
- additional_cachekeys
- additional_sandboxing
additional_docker
diff --git a/doc/source/format_intro.rst b/doc/source/format_intro.rst
index 23c37aeae..86a3d336a 100644
--- a/doc/source/format_intro.rst
+++ b/doc/source/format_intro.rst
@@ -290,6 +290,9 @@ free form and not validated.
(=):
- cp src/program %{bindir}
+
+.. _format_directives_include:
+
(@) Include
~~~~~~~~~~~
Indicates that content should be loaded from files.
diff --git a/doc/source/image-sources/arch-datamodel-context.odg b/doc/source/image-sources/arch-datamodel-context.odg
new file mode 100644
index 000000000..db4d62137
--- /dev/null
+++ b/doc/source/image-sources/arch-datamodel-context.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-datamodel-element-composition.odg b/doc/source/image-sources/arch-datamodel-element-composition.odg
new file mode 100644
index 000000000..b1bcfbf13
--- /dev/null
+++ b/doc/source/image-sources/arch-datamodel-element-composition.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-datamodel-element.odg b/doc/source/image-sources/arch-datamodel-element.odg
new file mode 100644
index 000000000..f1300aada
--- /dev/null
+++ b/doc/source/image-sources/arch-datamodel-element.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-datamodel-source-composition.odg b/doc/source/image-sources/arch-datamodel-source-composition.odg
new file mode 100644
index 000000000..b61718550
--- /dev/null
+++ b/doc/source/image-sources/arch-datamodel-source-composition.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-datamodel-source.odg b/doc/source/image-sources/arch-datamodel-source.odg
new file mode 100644
index 000000000..ceb9610f6
--- /dev/null
+++ b/doc/source/image-sources/arch-datamodel-source.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-dependency-model-build.odg b/doc/source/image-sources/arch-dependency-model-build.odg
new file mode 100644
index 000000000..9a8fe69cb
--- /dev/null
+++ b/doc/source/image-sources/arch-dependency-model-build.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-dependency-model-runtime.odg b/doc/source/image-sources/arch-dependency-model-runtime.odg
new file mode 100644
index 000000000..b771f8269
--- /dev/null
+++ b/doc/source/image-sources/arch-dependency-model-runtime.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-dependency-model.odg b/doc/source/image-sources/arch-dependency-model.odg
new file mode 100644
index 000000000..0292db350
--- /dev/null
+++ b/doc/source/image-sources/arch-dependency-model.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-overview.odg b/doc/source/image-sources/arch-overview.odg
new file mode 100644
index 000000000..2f342987b
--- /dev/null
+++ b/doc/source/image-sources/arch-overview.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-program-flow.odg b/doc/source/image-sources/arch-program-flow.odg
new file mode 100644
index 000000000..9ad972572
--- /dev/null
+++ b/doc/source/image-sources/arch-program-flow.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-scheduler-job.odg b/doc/source/image-sources/arch-scheduler-job.odg
new file mode 100644
index 000000000..0171ad553
--- /dev/null
+++ b/doc/source/image-sources/arch-scheduler-job.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-scheduler-queue-ports.odg b/doc/source/image-sources/arch-scheduler-queue-ports.odg
new file mode 100644
index 000000000..1a13ed316
--- /dev/null
+++ b/doc/source/image-sources/arch-scheduler-queue-ports.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-scheduler-queues.odg b/doc/source/image-sources/arch-scheduler-queues.odg
new file mode 100644
index 000000000..792890edf
--- /dev/null
+++ b/doc/source/image-sources/arch-scheduler-queues.odg
Binary files differ
diff --git a/doc/source/image-sources/arch-scheduler-run.odg b/doc/source/image-sources/arch-scheduler-run.odg
new file mode 100644
index 000000000..4a596e413
--- /dev/null
+++ b/doc/source/image-sources/arch-scheduler-run.odg
Binary files differ
diff --git a/doc/source/images/arch-datamodel-context.svg b/doc/source/images/arch-datamodel-context.svg
new file mode 100644
index 000000000..b22fbf33e
--- /dev/null
+++ b/doc/source/images/arch-datamodel-context.svg
@@ -0,0 +1,211 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="152.4mm" height="127mm" viewBox="0 0 15240 12700" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="15240" height="12700"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="U" horiz-adv-x="1245" d="M 723,-20 C 635,-20 554,-9 481,12 408,33 345,65 292,110 239,154 197,211 168,280 138,349 123,432 123,528 L 123,1409 418,1409 418,551 C 418,492 425,441 440,398 455,355 476,319 503,292 530,264 563,244 602,231 641,218 684,211 731,211 779,211 823,218 864,232 904,245 939,266 968,295 997,324 1019,360 1035,404 1051,448 1059,500 1059,561 L 1059,1409 1354,1409 1354,543 C 1354,446 1338,363 1307,292 1276,221 1232,163 1176,117 1120,70 1054,36 977,14 900,-9 815,-20 723,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="L" horiz-adv-x="1060" d="M 137,0 L 137,1409 432,1409 432,228 1188,228 1188,0 137,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="835" d="M 283,1277 L 323,1484 604,1484 564,1277 283,1277 Z M -54,-425 C -87,-425 -118,-423 -147,-420 -176,-416 -200,-411 -220,-406 L -184,-218 C -175,-219 -165,-220 -155,-221 -143,-222 -134,-222 -126,-222 -103,-222 -84,-219 -68,-214 -52,-209 -38,-200 -27,-187 -16,-174 -6,-158 2,-137 9,-116 16,-91 22,-60 L 245,1082 526,1082 290,-128 C 281,-171 268,-211 251,-247 233,-283 210,-314 182,-341 154,-368 121,-388 82,-403 43,-418 -3,-425 -54,-425 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="Y" horiz-adv-x="1351" d="M 836,578 L 724,0 430,0 542,578 172,1409 464,1409 723,804 1197,1409 1520,1409 836,578 Z"/>
+ <glyph unicode="W" horiz-adv-x="1932" d="M 1441,0 L 1091,0 1064,812 C 1064,819 1064,835 1063,859 1062,882 1062,909 1061,939 1060,969 1060,1000 1060,1032 1059,1064 1059,1092 1059,1116 1044,1077 1030,1038 1016,1001 1010,985 1004,969 997,952 990,935 984,918 978,902 971,885 965,870 959,855 953,840 947,827 942,815 L 594,0 239,0 150,1409 430,1409 466,594 C 467,562 469,526 470,487 471,447 471,409 472,373 473,332 473,290 473,248 492,297 511,345 530,392 538,412 546,433 555,454 564,475 572,496 581,517 590,538 598,558 606,577 613,596 620,613 627,628 L 961,1409 1277,1409 1309,514 C 1310,486 1312,457 1313,426 1314,395 1315,367 1316,340 1317,309 1318,278 1319,248 1333,286 1348,325 1363,365 1376,399 1391,436 1407,477 1423,518 1439,557 1454,595 L 1788,1409 2079,1409 1441,0 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="M" horiz-adv-x="1694" d="M 1206,0 L 1378,884 C 1385,921 1393,958 1402,996 1411,1033 1419,1068 1426,1099 1435,1136 1443,1171 1452,1206 1428,1154 1405,1104 1383,1055 1374,1034 1364,1013 1354,991 1343,969 1333,948 1323,927 1313,906 1304,886 1295,867 1286,848 1277,831 1269,816 L 857,0 647,0 553,819 C 552,832 550,847 548,865 546,882 544,901 542,922 539,943 537,964 535,986 532,1008 530,1029 528,1050 523,1099 518,1151 513,1206 508,1165 504,1125 499,1086 497,1069 495,1052 493,1034 490,1016 488,998 486,981 483,964 481,947 478,931 475,915 473,900 470,887 L 298,0 36,0 310,1409 705,1409 793,621 C 796,600 798,575 801,544 804,513 806,482 809,452 812,417 815,382 818,345 835,382 851,417 867,451 880,480 895,510 910,541 925,571 937,596 947,616 L 1349,1409 1742,1409 1468,0 1206,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1444" y="1285" width="5234" height="10138"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2063,1311 C 1766,1311 1470,1607 1470,1904 L 1470,10802 C 1470,11099 1766,11396 2063,11396 L 6057,11396 C 6354,11396 6651,11099 6651,10802 L 6651,1904 C 6651,1607 6354,1311 6057,1311 L 2063,1311 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7066" y="1227" width="6965" height="10266"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="8313" y="1670"><tspan fill="rgb(0,153,0)" stroke="none">Command Line Arguments</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7316" y="2302"><tspan fill="rgb(102,102,102)" stroke="none">Arguments specified on the command </tspan></tspan><tspan class="TextPosition" x="7316" y="2696"><tspan fill="rgb(102,102,102)" stroke="none">line have the final say for any user </tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7316" y="3090"><tspan fill="rgb(102,102,102)" stroke="none">preference.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="8954" y="3878"><tspan fill="rgb(0,0,204)" stroke="none">User Configuration</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7316" y="4510"><tspan fill="rgb(102,102,102)" stroke="none">The user configuration file overrides </tspan></tspan><tspan class="TextPosition" x="7316" y="4904"><tspan fill="rgb(102,102,102)" stroke="none">any of the previous settings.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="8330" y="5692"><tspan fill="rgb(255,102,0)" stroke="none">Project Recommendations</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7452" y="6324"><tspan fill="rgb(102,102,102)" stroke="none">While we try to keep project data and </tspan></tspan><tspan class="TextPosition" x="7877" y="6718"><tspan fill="rgb(102,102,102)" stroke="none">user preferences as separate as </tspan></tspan><tspan class="TextPosition" x="8186" y="7112"><tspan fill="rgb(102,102,102)" stroke="none">possible, in some cases it is </tspan></tspan><tspan class="TextPosition" x="7447" y="7506"><tspan fill="rgb(102,102,102)" stroke="none">convenient for the project to suggest </tspan></tspan><tspan class="TextPosition" x="7445" y="7900"><tspan fill="rgb(102,102,102)" stroke="none">a value, such as which artifact server </tspan></tspan><tspan class="TextPosition" x="9981" y="8294"><tspan fill="rgb(102,102,102)" stroke="none">to use.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="8747" y="9082"><tspan fill="rgb(255,51,51)" stroke="none">Default Co</tspan><tspan fill="rgb(255,51,51)" stroke="none">nfiguration</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7549" y="9714"><tspan fill="rgb(102,102,102)" stroke="none">BuildStream ships an internal YAML </tspan></tspan><tspan class="TextPosition" x="7714" y="10108"><tspan fill="rgb(102,102,102)" stroke="none">file with the same structure as the </tspan></tspan><tspan class="TextPosition" x="7987" y="10502"><tspan fill="rgb(102,102,102)" stroke="none">user configuration file, this file </tspan></tspan><tspan class="TextPosition" x="8398" y="10896"><tspan fill="rgb(102,102,102)" stroke="none">specifies all of the default </tspan></tspan><tspan class="TextPosition" x="9276" y="11290"><tspan fill="rgb(102,102,102)" stroke="none">configurations.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2756" y="9487" width="2652" height="1324"/>
+ <path fill="rgb(204,153,153)" stroke="none" d="M 2993,9513 C 2887,9513 2782,9618 2782,9724 L 2782,10572 C 2782,10678 2887,10784 2993,10784 L 5169,10784 C 5274,10784 5380,10678 5380,10572 L 5380,9724 C 5380,9618 5274,9513 5169,9513 L 2993,9513 Z M 2782,9513 L 2782,9513 Z M 5381,10784 L 5381,10784 Z"/>
+ <path fill="none" stroke="rgb(153,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2993,9513 C 2887,9513 2782,9618 2782,9724 L 2782,10572 C 2782,10678 2887,10784 2993,10784 L 5169,10784 C 5274,10784 5380,10678 5380,10572 L 5380,9724 C 5380,9618 5274,9513 5169,9513 L 2993,9513 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2782" y="9513" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3603" y="10088"><tspan fill="rgb(0,0,0)" stroke="none">Default </tspan></tspan><tspan class="TextPosition" x="3152" y="10406"><tspan fill="rgb(0,0,0)" stroke="none">Configuration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2757" y="6888" width="2652" height="1324"/>
+ <path fill="rgb(204,153,102)" stroke="none" d="M 2994,6914 C 2888,6914 2783,7019 2783,7125 L 2783,7973 C 2783,8079 2888,8185 2994,8185 L 5170,8185 C 5275,8185 5381,8079 5381,7973 L 5381,7125 C 5381,7019 5275,6914 5170,6914 L 2994,6914 Z M 2783,6914 L 2783,6914 Z M 5382,8185 L 5382,8185 Z"/>
+ <path fill="none" stroke="rgb(128,25,0)" stroke-width="51" stroke-linejoin="round" d="M 2994,6914 C 2888,6914 2783,7019 2783,7125 L 2783,7973 C 2783,8079 2888,8185 2994,8185 L 5170,8185 C 5275,8185 5381,8079 5381,7973 L 5381,7125 C 5381,7019 5275,6914 5170,6914 L 2994,6914 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2783" y="6914" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3604" y="7489"><tspan fill="rgb(0,0,0)" stroke="none">Project </tspan></tspan><tspan class="TextPosition" x="3231" y="7807"><tspan fill="rgb(0,0,0)" stroke="none">Recommend</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2756" y="4311" width="2652" height="1324"/>
+ <path fill="rgb(153,153,204)" stroke="none" d="M 2993,4337 C 2887,4337 2782,4442 2782,4548 L 2782,5396 C 2782,5502 2887,5608 2993,5608 L 5169,5608 C 5274,5608 5380,5502 5380,5396 L 5380,4548 C 5380,4442 5274,4337 5169,4337 L 2993,4337 Z M 2782,4337 L 2782,4337 Z M 5381,5608 L 5381,5608 Z"/>
+ <path fill="none" stroke="rgb(0,0,153)" stroke-width="51" stroke-linejoin="round" d="M 2993,4337 C 2887,4337 2782,4442 2782,4548 L 2782,5396 C 2782,5502 2887,5608 2993,5608 L 5169,5608 C 5274,5608 5380,5502 5380,5396 L 5380,4548 C 5380,4442 5274,4337 5169,4337 L 2993,4337 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2784" y="4315" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3770" y="4890"><tspan fill="rgb(0,0,0)" stroke="none">User </tspan></tspan><tspan class="TextPosition" x="3154" y="5208"><tspan fill="rgb(0,0,0)" stroke="none">Configuration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2756" y="1823" width="2652" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 2993,1849 C 2887,1849 2782,1954 2782,2060 L 2782,2908 C 2782,3014 2887,3120 2993,3120 L 5169,3120 C 5274,3120 5380,3014 5380,2908 L 5380,2060 C 5380,1954 5274,1849 5169,1849 L 2993,1849 Z M 2782,1849 L 2782,1849 Z M 5381,3120 L 5381,3120 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 2993,1849 C 2887,1849 2782,1954 2782,2060 L 2782,2908 C 2782,3014 2887,3120 2993,3120 L 5169,3120 C 5274,3120 5380,3014 5380,2908 L 5380,2060 C 5380,1954 5274,1849 5169,1849 L 2993,1849 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2784" y="1827" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3057" y="2402"><tspan fill="rgb(0,0,0)" stroke="none">Command Line </tspan></tspan><tspan class="TextPosition" x="3342" y="2720"><tspan fill="rgb(0,0,0)" stroke="none">Arguments</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3853" y="8183" width="459" height="1357"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4081,9513 C 4081,8517 4082,9022 4082,8527"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 4081,8184 L 3853,8548 4310,8549 4081,8184 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3852" y="5607" width="459" height="1334"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4082,6914 C 4082,5954 4081,6451 4081,5950"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 4080,5607 L 3853,5972 4310,5971 4080,5607 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3852" y="3119" width="459" height="1245"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4081,4337 L 4081,3453"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 4080,3119 L 3853,3483 4310,3483 4080,3119 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-datamodel-element-composition.svg b/doc/source/images/arch-datamodel-element-composition.svg
new file mode 100644
index 000000000..985fe7213
--- /dev/null
+++ b/doc/source/images/arch-datamodel-element-composition.svg
@@ -0,0 +1,463 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="177.8mm" height="157.48mm" viewBox="0 0 17780 15748" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="17780" height="15748"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="O" horiz-adv-x="1430" d="M 1507,711 C 1507,601 1491,501 1458,411 1425,321 1378,244 1317,180 1256,116 1181,67 1093,32 1004,-3 904,-20 793,-20 675,-20 572,-2 484,35 395,71 321,122 262,187 203,252 158,329 129,418 99,507 84,605 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,571 408,510 425,449 451,396 486,352 521,308 564,274 615,249 666,224 726,212 793,212 865,212 927,225 979,250 1031,275 1074,309 1108,354 1141,398 1166,451 1182,512 1198,573 1206,639 1206,711 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="”" horiz-adv-x="848" d="M 985,1217 C 976,1172 966,1131 954,1094 942,1057 928,1023 913,992 897,961 880,932 862,906 843,880 823,855 801,831 L 617,831 C 641,855 664,880 685,906 706,932 726,959 743,986 760,1013 774,1040 786,1068 798,1095 807,1122 812,1149 L 685,1149 736,1409 1023,1409 985,1217 Z M 555,1217 C 546,1172 536,1131 524,1094 512,1057 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1217 Z"/>
+ <glyph unicode="“" horiz-adv-x="848" d="M 617,831 L 655,1026 C 664,1071 674,1111 687,1148 699,1185 713,1218 728,1249 743,1280 761,1308 780,1335 799,1361 819,1386 841,1409 L 1023,1409 C 1000,1386 978,1361 957,1335 936,1309 917,1282 900,1255 883,1228 868,1200 856,1173 844,1146 835,1119 830,1092 L 957,1092 906,831 617,831 Z M 189,831 L 227,1026 C 236,1071 246,1111 258,1148 270,1185 284,1218 299,1249 314,1280 331,1308 350,1335 369,1361 389,1386 410,1409 L 593,1409 C 570,1386 548,1361 527,1335 506,1309 487,1282 470,1255 453,1228 438,1200 426,1173 414,1146 405,1119 400,1092 L 527,1092 476,831 189,831 Z"/>
+ <glyph unicode="’" horiz-adv-x="411" d="M 555,1214 C 546,1169 536,1129 524,1093 512,1056 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1214 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="x" horiz-adv-x="1298" d="M 724,0 L 538,383 211,0 -90,0 418,562 139,1082 431,1082 604,735 900,1082 1208,1082 725,557 1019,0 724,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="835" d="M 283,1277 L 323,1484 604,1484 564,1277 283,1277 Z M -54,-425 C -87,-425 -118,-423 -147,-420 -176,-416 -200,-411 -220,-406 L -184,-218 C -175,-219 -165,-220 -155,-221 -143,-222 -134,-222 -126,-222 -103,-222 -84,-219 -68,-214 -52,-209 -38,-200 -27,-187 -16,-174 -6,-158 2,-137 9,-116 16,-91 22,-60 L 245,1082 526,1082 290,-128 C 281,-171 268,-211 251,-247 233,-283 210,-314 182,-341 154,-368 121,-388 82,-403 43,-418 -3,-425 -54,-425 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="P" horiz-adv-x="1337" d="M 850,1409 C 933,1409 1006,1399 1071,1380 1135,1361 1189,1333 1234,1296 1278,1259 1312,1215 1335,1163 1358,1111 1369,1052 1369,987 1369,911 1356,843 1329,782 1302,721 1263,670 1214,628 1165,585 1105,553 1036,530 967,507 890,496 805,496 L 428,496 330,0 36,0 309,1409 850,1409 Z M 471,723 L 760,723 C 863,723 941,742 993,781 1044,820 1070,883 1070,971 1070,1008 1064,1039 1052,1066 1040,1092 1023,1114 1001,1131 979,1148 953,1160 923,1168 892,1176 859,1180 822,1180 L 560,1180 471,723 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.LineShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6162" y="1152" width="65" height="13515"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6188,1178 L 6188,1278"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6188,1379 L 6188,1479"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6188,1580 L 6188,1680"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,1781 L 6189,1881"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,1982 L 6189,2082"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,2183 L 6189,2283"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,2384 L 6189,2484"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,2585 L 6189,2685"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6189,2786 L 6190,2886"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6190,2986 L 6190,3087"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6190,3187 L 6190,3288"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6190,3388 L 6190,3489"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6190,3589 L 6190,3690"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6190,3790 L 6190,3891"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,3991 L 6191,4092"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,4192 L 6191,4293"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,4393 L 6191,4494"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,4594 L 6191,4694"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,4795 L 6191,4895"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6191,4996 L 6191,5096"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,5197 L 6192,5297"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,5398 L 6192,5498"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,5599 L 6192,5699"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,5800 L 6192,5900"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,6001 L 6192,6101"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6192,6201 L 6193,6302"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6193,6402 L 6193,6503"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6193,6603 L 6193,6704"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6193,6804 L 6193,6905"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6193,7005 L 6193,7106"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6193,7206 L 6193,7307"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,7407 L 6194,7508"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,7608 L 6194,7709"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,7809 L 6194,7909"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,8010 L 6194,8110"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,8211 L 6194,8311"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6194,8412 L 6195,8512"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6195,8613 L 6195,8713"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6195,8814 L 6195,8914"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6195,9015 L 6195,9115"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6195,9216 L 6195,9316"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6195,9417 L 6195,9517"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,9617 L 6196,9718"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,9818 L 6196,9919"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,10019 L 6196,10120"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,10220 L 6196,10321"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,10421 L 6196,10522"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6196,10622 L 6197,10723"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,10823 L 6197,10924"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,11024 L 6197,11125"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,11225 L 6197,11325"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,11426 L 6197,11526"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,11627 L 6197,11727"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6197,11828 L 6198,11928"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6198,12029 L 6198,12129"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6198,12230 L 6198,12330"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6198,12431 L 6198,12531"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6198,12632 L 6198,12732"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6198,12833 L 6198,12933"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,13033 L 6199,13134"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,13234 L 6199,13335"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,13435 L 6199,13536"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,13636 L 6199,13737"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,13837 L 6199,13938"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6199,14038 L 6200,14139"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6200,14239 L 6200,14340"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6200,14440 L 6200,14541"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1127" y="1152" width="10358" height="13516"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2074,1178 C 1613,1178 1153,1638 1153,2099 L 1153,13719 C 1153,14180 1613,14641 2074,14641 L 10536,14641 C 10997,14641 11458,14180 11458,13719 L 11458,2099 C 11458,1638 10997,1178 10536,1178 L 2074,1178 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1170" y="1170" width="5027" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1770" y="1729"><tspan fill="rgb(255,0,0)" stroke="none">BuildStream Core Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2032" y="2123"><tspan fill="rgb(0,153,0)" stroke="none">Public Domain Data</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2356" y="12675" width="2652" height="1324"/>
+ <path fill="rgb(204,153,153)" stroke="none" d="M 2593,12701 C 2487,12701 2382,12806 2382,12912 L 2382,13760 C 2382,13866 2487,13972 2593,13972 L 4769,13972 C 4874,13972 4980,13866 4980,13760 L 4980,12912 C 4980,12806 4874,12701 4769,12701 L 2593,12701 Z M 2382,12701 L 2382,12701 Z M 4981,13972 L 4981,13972 Z"/>
+ <path fill="none" stroke="rgb(153,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2593,12701 C 2487,12701 2382,12806 2382,12912 L 2382,13760 C 2382,13866 2487,13972 2593,13972 L 4769,13972 C 4874,13972 4980,13866 4980,13760 L 4980,12912 C 4980,12806 4874,12701 4769,12701 L 2593,12701 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2382" y="12701" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2763" y="13435"><tspan fill="rgb(0,0,0)" stroke="none">Core Defaults</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2356" y="2576" width="2651" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 2593,2602 C 2487,2602 2382,2707 2382,2813 L 2382,3661 C 2382,3767 2487,3873 2593,3873 L 4768,3873 C 4874,3873 4980,3767 4980,3661 L 4980,2813 C 4980,2707 4874,2602 4768,2602 L 2593,2602 Z M 2382,2602 L 2382,2602 Z M 4980,3873 L 4980,3873 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 2593,2602 C 2487,2602 2382,2707 2382,2813 L 2382,3661 C 2382,3767 2487,3873 2593,3873 L 4768,3873 C 4874,3873 4980,3767 4980,3661 L 4980,2813 C 4980,2707 4874,2602 4768,2602 L 2593,2602 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2383" y="2602" width="2598" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3129" y="3177"><tspan fill="rgb(0,0,0)" stroke="none">Element </tspan></tspan><tspan class="TextPosition" x="2911" y="3495"><tspan fill="rgb(0,0,0)" stroke="none">Declaration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2357" y="10176" width="2652" height="1324"/>
+ <path fill="rgb(204,153,102)" stroke="none" d="M 2594,10202 C 2488,10202 2383,10307 2383,10413 L 2383,11261 C 2383,11367 2488,11473 2594,11473 L 4770,11473 C 4875,11473 4981,11367 4981,11261 L 4981,10413 C 4981,10307 4875,10202 4770,10202 L 2594,10202 Z M 2383,10202 L 2383,10202 Z M 4982,11473 L 4982,11473 Z"/>
+ <path fill="none" stroke="rgb(128,25,0)" stroke-width="51" stroke-linejoin="round" d="M 2594,10202 C 2488,10202 2383,10307 2383,10413 L 2383,11261 C 2383,11367 2488,11473 2594,11473 L 4770,11473 C 4875,11473 4981,11367 4981,11261 L 4981,10413 C 4981,10307 4875,10202 4770,10202 L 2594,10202 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2383" y="10202" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3204" y="10777"><tspan fill="rgb(0,0,0)" stroke="none">Project </tspan></tspan><tspan class="TextPosition" x="2753" y="11095"><tspan fill="rgb(0,0,0)" stroke="none">Configuration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2356" y="7699" width="2652" height="1324"/>
+ <path fill="rgb(153,153,204)" stroke="none" d="M 2593,7725 C 2487,7725 2382,7830 2382,7936 L 2382,8784 C 2382,8890 2487,8996 2593,8996 L 4769,8996 C 4874,8996 4980,8890 4980,8784 L 4980,7936 C 4980,7830 4874,7725 4769,7725 L 2593,7725 Z M 2382,7725 L 2382,7725 Z M 4981,8996 L 4981,8996 Z"/>
+ <path fill="none" stroke="rgb(0,0,153)" stroke-width="51" stroke-linejoin="round" d="M 2593,7725 C 2487,7725 2382,7830 2382,7936 L 2382,8784 C 2382,8890 2487,8996 2593,8996 L 4769,8996 C 4874,8996 4980,8890 4980,8784 L 4980,7936 C 4980,7830 4874,7725 4769,7725 L 2593,7725 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2384" y="7703" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3131" y="8278"><tspan fill="rgb(0,0,0)" stroke="none">Element </tspan></tspan><tspan class="TextPosition" x="3127" y="8596"><tspan fill="rgb(0,0,0)" stroke="none">Defaults</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2356" y="5111" width="2652" height="1324"/>
+ <path fill="rgb(204,204,153)" stroke="none" d="M 2593,5137 C 2487,5137 2382,5242 2382,5348 L 2382,6196 C 2382,6302 2487,6408 2593,6408 L 4769,6408 C 4874,6408 4980,6302 4980,6196 L 4980,5348 C 4980,5242 4874,5137 4769,5137 L 2593,5137 Z M 2382,5137 L 2382,5137 Z M 4981,6408 L 4981,6408 Z"/>
+ <path fill="none" stroke="rgb(102,51,0)" stroke-width="51" stroke-linejoin="round" d="M 2593,5137 C 2487,5137 2382,5242 2382,5348 L 2382,6196 C 2382,6302 2487,6408 2593,6408 L 4769,6408 C 4874,6408 4980,6302 4980,6196 L 4980,5348 C 4980,5242 4874,5137 4769,5137 L 2593,5137 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2384" y="5115" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3205" y="5690"><tspan fill="rgb(0,0,0)" stroke="none">Project </tspan></tspan><tspan class="TextPosition" x="3023" y="6008"><tspan fill="rgb(0,0,0)" stroke="none">Overrides</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3452" y="3872" width="459" height="1270"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3683,5115 C 3683,4184 3682,4646 3681,4214"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3680,3872 L 3453,4237 3910,4236 3680,3872 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3453" y="11471" width="459" height="1257"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3681,12701 C 3681,11780 3682,12235 3682,11813"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3681,11472 L 3453,11836 3910,11837 3681,11472 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3454" y="8972" width="459" height="1257"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3682,10202 C 3682,9281 3683,9736 3683,9314"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3682,8973 L 3454,9337 3911,9338 3682,8973 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3454" y="6384" width="459" height="1368"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3681,7725 C 3681,6701 3682,7208 3683,6728"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3682,6385 L 3454,6749 3911,6750 3682,6385 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6170" y="1170" width="5027" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6795" y="1729"><tspan fill="rgb(0,0,255)" stroke="none">Element Configuration </tspan></tspan><tspan class="TextPosition" x="8302" y="2123"><tspan fill="rgb(0,0,255)" stroke="none">Data</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7456" y="2577" width="2651" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 7693,2603 C 7587,2603 7482,2708 7482,2814 L 7482,3662 C 7482,3768 7587,3874 7693,3874 L 9868,3874 C 9974,3874 10080,3768 10080,3662 L 10080,2814 C 10080,2708 9974,2603 9868,2603 L 7693,2603 Z M 7482,2603 L 7482,2603 Z M 10080,3874 L 10080,3874 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 7693,2603 C 7587,2603 7482,2708 7482,2814 L 7482,3662 C 7482,3768 7587,3874 7693,3874 L 9868,3874 C 9974,3874 10080,3768 10080,3662 L 10080,2814 C 10080,2708 9974,2603 9868,2603 L 7693,2603 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7483" y="2603" width="2598" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="8229" y="3178"><tspan fill="rgb(0,0,0)" stroke="none">Element </tspan></tspan><tspan class="TextPosition" x="8011" y="3496"><tspan fill="rgb(0,0,0)" stroke="none">Declaration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7456" y="7700" width="2652" height="1324"/>
+ <path fill="rgb(153,153,204)" stroke="none" d="M 7693,7726 C 7587,7726 7482,7831 7482,7937 L 7482,8785 C 7482,8891 7587,8997 7693,8997 L 9869,8997 C 9974,8997 10080,8891 10080,8785 L 10080,7937 C 10080,7831 9974,7726 9869,7726 L 7693,7726 Z M 7482,7726 L 7482,7726 Z M 10081,8997 L 10081,8997 Z"/>
+ <path fill="none" stroke="rgb(0,0,153)" stroke-width="51" stroke-linejoin="round" d="M 7693,7726 C 7587,7726 7482,7831 7482,7937 L 7482,8785 C 7482,8891 7587,8997 7693,8997 L 9869,8997 C 9974,8997 10080,8891 10080,8785 L 10080,7937 C 10080,7831 9974,7726 9869,7726 L 7693,7726 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7484" y="7704" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="8231" y="8279"><tspan fill="rgb(0,0,0)" stroke="none">Element </tspan></tspan><tspan class="TextPosition" x="8227" y="8597"><tspan fill="rgb(0,0,0)" stroke="none">Defaults</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7456" y="5112" width="2652" height="1324"/>
+ <path fill="rgb(204,204,153)" stroke="none" d="M 7693,5138 C 7587,5138 7482,5243 7482,5349 L 7482,6197 C 7482,6303 7587,6409 7693,6409 L 9869,6409 C 9974,6409 10080,6303 10080,6197 L 10080,5349 C 10080,5243 9974,5138 9869,5138 L 7693,5138 Z M 7482,5138 L 7482,5138 Z M 10081,6409 L 10081,6409 Z"/>
+ <path fill="none" stroke="rgb(102,51,0)" stroke-width="51" stroke-linejoin="round" d="M 7693,5138 C 7587,5138 7482,5243 7482,5349 L 7482,6197 C 7482,6303 7587,6409 7693,6409 L 9869,6409 C 9974,6409 10080,6303 10080,6197 L 10080,5349 C 10080,5243 9974,5138 9869,5138 L 7693,5138 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7484" y="5116" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="8305" y="5691"><tspan fill="rgb(0,0,0)" stroke="none">Project </tspan></tspan><tspan class="TextPosition" x="8123" y="6009"><tspan fill="rgb(0,0,0)" stroke="none">Overrides</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8552" y="3873" width="459" height="1270"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8783,5116 C 8783,4185 8782,4647 8781,4215"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 8780,3873 L 8553,4238 9010,4237 8780,3873 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8554" y="6385" width="459" height="1368"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8781,7726 C 8781,6702 8782,7209 8783,6729"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 8782,6386 L 8554,6750 9011,6751 8782,6386 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6170" y="9044" width="5027" height="5589"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6795" y="10580"><tspan fill="rgb(102,102,102)" stroke="none">Element Configuration </tspan></tspan><tspan class="TextPosition" x="6552" y="10974"><tspan fill="rgb(102,102,102)" stroke="none">Data is composited in the </tspan></tspan><tspan class="TextPosition" x="6732" y="11368"><tspan fill="rgb(102,102,102)" stroke="none">same way as Core Data </tspan></tspan><tspan class="TextPosition" x="6711" y="11762"><tspan fill="rgb(102,102,102)" stroke="none">and Public Data, except </tspan></tspan><tspan class="TextPosition" x="6666" y="12156"><tspan fill="rgb(102,102,102)" stroke="none">that it is not understood </tspan></tspan><tspan class="TextPosition" x="7530" y="12550"><tspan fill="rgb(102,102,102)" stroke="none">by the project </tspan></tspan><tspan class="TextPosition" x="6514" y="12944"><tspan fill="rgb(102,102,102)" stroke="none">configuration so there are </tspan></tspan><tspan class="TextPosition" x="7695" y="13338"><tspan fill="rgb(102,102,102)" stroke="none">no defaults.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.LineShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1101" y="4584" width="15293" height="53"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1127,4610 L 1227,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1328,4610 L 1428,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1529,4610 L 1629,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1730,4610 L 1830,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1931,4610 L 2031,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2132,4610 L 2232,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2333,4610 L 2433,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2534,4610 L 2634,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2735,4610 L 2835,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2935,4610 L 3036,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3136,4610 L 3237,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3337,4610 L 3438,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3538,4610 L 3639,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3739,4610 L 3840,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3940,4610 L 4041,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4141,4610 L 4242,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4342,4610 L 4443,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4543,4610 L 4643,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4744,4610 L 4844,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4945,4610 L 5045,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5146,4610 L 5246,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5347,4610 L 5447,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5548,4610 L 5648,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5749,4610 L 5849,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5950,4610 L 6050,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6150,4610 L 6251,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6351,4610 L 6452,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6552,4610 L 6653,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6753,4610 L 6854,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6954,4610 L 7055,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7155,4610 L 7256,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7356,4610 L 7457,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7557,4610 L 7658,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7758,4610 L 7858,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7959,4610 L 8059,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8160,4610 L 8260,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8361,4610 L 8461,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8562,4610 L 8662,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8763,4610 L 8863,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8964,4610 L 9064,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9165,4610 L 9265,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9366,4610 L 9466,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9566,4610 L 9667,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9767,4610 L 9868,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9968,4610 L 10069,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10169,4610 L 10270,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10370,4610 L 10471,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10571,4610 L 10672,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10772,4610 L 10873,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10973,4610 L 11074,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11174,4610 L 11274,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11375,4610 L 11475,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11576,4610 L 11676,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11777,4610 L 11877,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11978,4610 L 12078,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12179,4610 L 12279,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12380,4610 L 12480,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12581,4610 L 12681,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12782,4610 L 12882,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12982,4610 L 13083,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13183,4610 L 13284,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13384,4610 L 13485,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13585,4610 L 13686,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13786,4610 L 13887,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13987,4610 L 14088,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14188,4610 L 14289,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14389,4610 L 14490,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14590,4610 L 14690,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14791,4610 L 14891,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14992,4610 L 15092,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15193,4610 L 15293,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15394,4610 L 15494,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15595,4610 L 15695,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15796,4610 L 15896,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15997,4610 L 16097,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16197,4610 L 16298,4610"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11530" y="4610" width="4711" height="4011"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12173" y="5357"><tspan fill="rgb(102,102,102)" stroke="none">Composited the first </tspan></tspan><tspan class="TextPosition" x="11910" y="5751"><tspan fill="rgb(102,102,102)" stroke="none">time that a Element of a </tspan></tspan><tspan class="TextPosition" x="12643" y="6145"><tspan fill="rgb(102,102,102)" stroke="none">given “kind” is </tspan></tspan><tspan class="TextPosition" x="12848" y="6539"><tspan fill="rgb(102,102,102)" stroke="none">instantiated.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12097" y="7327"><tspan fill="rgb(102,102,102)" stroke="none">This is cached on the </tspan></tspan><tspan class="TextPosition" x="12065" y="7721"><tspan fill="rgb(102,102,102)" stroke="none">given Element’s class </tspan></tspan><tspan class="TextPosition" x="12255" y="8115"><tspan fill="rgb(102,102,102)" stroke="none">data for later reuse.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id32">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11430" y="2011" width="4811" height="2560"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11901" y="2821"><tspan fill="rgb(102,102,102)" stroke="none">Composited every time </tspan></tspan><tspan class="TextPosition" x="11765" y="3215"><tspan fill="rgb(102,102,102)" stroke="none">against the cached class </tspan></tspan><tspan class="TextPosition" x="11755" y="3609"><tspan fill="rgb(102,102,102)" stroke="none">data below every time an </tspan></tspan><tspan class="TextPosition" x="11871" y="4003"><tspan fill="rgb(102,102,102)" stroke="none">Element is instantiated.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-datamodel-element.svg b/doc/source/images/arch-datamodel-element.svg
new file mode 100644
index 000000000..ab75414da
--- /dev/null
+++ b/doc/source/images/arch-datamodel-element.svg
@@ -0,0 +1,183 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="215.9mm" height="96.52mm" viewBox="0 0 21590 9652" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="21590" height="9652"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 1167,545 C 1167,463 1159,388 1143,319 1126,250 1101,190 1067,140 1033,89 990,50 938,22 885,-6 823,-20 752,-20 720,-20 688,-17 656,-10 624,-3 594,8 565,23 536,38 510,58 486,83 462,108 441,138 424,174 L 422,174 C 422,160 422,143 421,125 420,106 418,88 417,71 416,54 414,38 413,24 411,11 409,4 408,4 L 135,4 C 137,27 139,60 141,103 142,146 143,195 143,250 L 143,1484 424,1484 424,1070 C 424,1049 424,1028 424,1008 423,987 423,968 422,951 421,931 421,912 420,894 L 424,894 C 458,969 505,1022 564,1054 623,1086 692,1102 770,1102 839,1102 899,1088 949,1061 999,1033 1040,994 1073,945 1105,895 1129,836 1144,768 1159,700 1167,626 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 624,907 596,901 568,890 540,879 515,859 493,831 471,802 453,764 440,717 427,669 420,609 420,536 420,465 427,407 440,360 453,313 471,276 492,248 513,220 538,200 566,189 594,178 622,172 651,172 722,172 777,202 816,261 855,320 874,414 874,545 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="P" horiz-adv-x="1337" d="M 850,1409 C 933,1409 1006,1399 1071,1380 1135,1361 1189,1333 1234,1296 1278,1259 1312,1215 1335,1163 1358,1111 1369,1052 1369,987 1369,911 1356,843 1329,782 1302,721 1263,670 1214,628 1165,585 1105,553 1036,530 967,507 890,496 805,496 L 428,496 330,0 36,0 309,1409 850,1409 Z M 471,723 L 760,723 C 863,723 941,742 993,781 1044,820 1070,883 1070,971 1070,1008 1064,1039 1052,1066 1040,1092 1023,1114 1001,1131 979,1148 953,1160 923,1168 892,1176 859,1180 822,1180 L 560,1180 471,723 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_3" horiz-adv-x="2048">
+ <font-face font-family="Monaco embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="2051" descent="516"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="}" horiz-adv-x="993" d="M 633,679 C 615,688 589,711 557,746 524,781 500,817 484,855 468,893 460,936 460,985 460,1026 467,1078 480,1143 L 505,1257 C 518,1316 524,1359 524,1386 524,1414 513,1438 490,1458 467,1479 411,1489 324,1489 L 126,1489 126,1730 326,1730 C 521,1730 649,1696 710,1629 771,1561 801,1485 801,1401 801,1357 796,1312 784,1263 L 766,1184 749,1097 737,1045 C 733,1023 731,1001 731,981 731,931 748,888 782,852 815,817 879,799 972,799 L 1103,799 1103,559 972,559 C 880,559 817,541 783,506 748,471 731,427 731,374 731,353 733,333 737,314 L 749,260 766,173 784,94 C 796,45 801,-1 801,-43 801,-128 771,-204 710,-271 649,-338 521,-372 326,-372 L 126,-372 126,-132 324,-132 C 411,-132 467,-121 490,-101 513,-80 524,-56 524,-27 524,-1 518,42 505,101 L 480,215 C 467,279 460,332 460,373 460,421 468,464 484,502 500,540 524,577 557,612 589,647 615,669 633,679 Z"/>
+ <glyph unicode="{" horiz-adv-x="993" d="M 681,679 C 700,669 725,647 757,612 790,577 814,540 831,502 847,464 855,421 855,373 855,332 848,279 834,215 L 809,101 C 797,42 790,-1 790,-28 790,-56 802,-80 825,-101 848,-121 903,-132 991,-132 L 1188,-132 1188,-372 989,-372 C 793,-372 665,-338 605,-271 544,-203 514,-127 514,-42 514,0 519,46 530,94 L 548,173 565,260 577,313 C 581,335 583,356 583,377 583,427 566,470 533,506 499,541 436,559 343,559 L 211,559 211,799 343,799 C 435,799 498,817 532,852 566,887 583,931 583,984 583,1005 581,1025 577,1045 L 565,1097 548,1184 530,1263 C 519,1313 514,1358 514,1401 514,1485 544,1561 605,1629 665,1696 793,1730 989,1730 L 1188,1730 1188,1489 991,1489 C 903,1489 848,1479 825,1458 802,1438 790,1413 790,1385 790,1358 797,1316 809,1257 L 834,1143 C 848,1078 855,1026 855,985 855,936 847,893 831,855 814,817 790,781 757,746 725,711 700,688 681,679 Z"/>
+ <glyph unicode="y" horiz-adv-x="1271" d="M 562,86 L 25,1202 324,1202 705,426 1024,1202 1304,1202 846,105 C 752,-120 661,-272 572,-349 483,-427 368,-466 227,-466 167,-466 102,-458 32,-443 L 32,-186 C 116,-213 179,-226 222,-226 275,-226 322,-216 362,-196 402,-175 440,-138 476,-83 511,-28 537,19 552,60 L 562,86 Z"/>
+ <glyph unicode="u" horiz-adv-x="1006" d="M 1159,1202 L 1159,0 888,0 888,144 C 877,127 832,94 752,44 673,-6 592,-31 511,-31 437,-31 369,-11 307,29 246,69 203,120 179,184 155,248 143,365 143,536 L 143,1202 414,1202 414,513 C 414,410 419,344 427,316 435,288 450,266 470,250 490,233 512,225 534,225 589,225 651,254 720,310 788,367 845,436 888,519 L 888,1202 1159,1202 Z"/>
+ <glyph unicode="t" horiz-adv-x="1085" d="M 1174,59 C 1067,14 992,-12 950,-20 907,-27 867,-31 828,-31 743,-31 665,-14 594,19 522,52 468,102 431,168 394,234 375,332 375,462 L 375,869 96,869 96,1109 375,1109 375,1559 646,1559 646,1109 1143,1109 1143,869 646,869 646,465 C 646,382 655,326 672,296 689,266 712,244 741,230 770,216 806,209 848,209 930,209 1039,248 1174,325 L 1174,59 Z"/>
+ <glyph unicode="s" horiz-adv-x="1006" d="M 168,73 L 168,377 C 282,303 379,256 459,237 538,219 605,209 660,209 744,209 803,221 834,244 866,268 882,295 882,326 882,345 876,361 864,374 849,391 806,413 736,442 L 672,468 543,519 C 397,576 304,630 263,682 220,735 199,799 199,875 199,980 239,1066 319,1133 399,1200 524,1233 694,1233 817,1233 945,1212 1075,1170 L 1075,909 C 919,965 790,993 687,993 616,993 564,982 530,961 495,940 478,916 478,891 478,866 491,847 516,831 552,808 611,782 694,752 L 820,706 C 942,661 1028,612 1080,558 1134,500 1161,429 1161,344 1161,234 1120,144 1036,74 953,4 824,-31 651,-31 503,-31 342,4 168,73 Z"/>
+ <glyph unicode="r" horiz-adv-x="927" d="M 250,0 L 250,1202 521,1202 521,1063 C 530,1078 576,1110 657,1159 738,1209 829,1233 929,1233 1000,1233 1082,1219 1173,1191 L 1173,714 909,714 909,976 C 904,977 893,977 878,977 818,977 759,952 698,902 637,852 578,778 521,680 L 521,0 250,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 412,1060 C 421,1073 468,1105 553,1157 639,1208 719,1233 794,1233 899,1233 994,1189 1076,1099 1159,1010 1200,878 1200,703 1200,567 1174,445 1121,337 1069,229 998,143 908,80 819,16 709,-16 578,-16 542,-16 487,-12 413,-5 402,-3 398,2 399,11 L 412,-434 141,-434 141,1202 412,1202 412,1060 Z M 412,676 L 412,242 C 455,231 503,225 556,225 655,225 740,265 809,344 878,424 913,535 913,678 913,780 896,854 861,900 826,947 789,970 750,970 702,970 646,943 583,890 519,836 462,765 412,676 Z"/>
+ <glyph unicode="o" horiz-adv-x="1152" d="M 658,-31 C 485,-31 346,29 243,150 139,271 87,421 87,602 87,782 139,933 243,1053 346,1173 485,1233 658,1233 830,1233 968,1173 1072,1053 1175,933 1227,782 1227,602 1227,421 1175,271 1072,150 968,29 830,-31 658,-31 Z M 658,209 C 743,209 811,243 863,311 914,379 940,476 940,602 940,727 914,823 863,891 811,959 743,993 658,993 572,993 503,959 452,891 400,823 374,727 374,602 374,476 400,379 452,311 503,243 572,209 658,209 Z"/>
+ <glyph unicode="n" horiz-adv-x="1019" d="M 155,0 L 155,1202 426,1202 426,1065 C 430,1072 473,1102 555,1154 636,1207 719,1233 803,1233 877,1233 945,1213 1006,1174 1068,1134 1111,1082 1135,1019 1159,955 1171,838 1171,667 L 1171,0 900,0 900,690 C 900,793 896,858 887,886 879,915 865,937 844,953 824,969 802,977 780,977 725,977 663,949 594,892 525,835 469,765 426,683 L 426,0 155,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1178" d="M 71,0 L 71,1202 319,1202 317,1084 C 318,1090 344,1116 394,1163 445,1210 498,1233 555,1233 623,1233 677,1207 717,1156 757,1104 777,1034 777,947 L 735,887 C 731,968 746,1031 780,1077 813,1123 849,1161 888,1190 927,1219 973,1233 1026,1233 1087,1233 1138,1208 1180,1159 1222,1109 1242,1018 1242,887 L 1242,0 994,0 994,806 C 994,866 992,905 989,922 986,939 983,950 978,955 973,960 970,962 968,962 947,962 920,939 886,894 852,848 816,769 777,655 L 777,0 536,0 536,805 C 536,891 531,938 520,948 510,957 502,962 498,962 479,962 453,936 419,885 385,833 352,765 319,680 L 319,0 71,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="954" d="M 455,0 L 455,1458 121,1458 121,1699 726,1699 726,240 1075,240 1075,0 455,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1112" d="M 205,0 L 205,1699 476,1699 476,743 953,1202 1324,1202 742,641 1330,0 958,0 476,532 476,0 205,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="900" d="M 468,0 L 468,962 158,962 158,1202 739,1202 739,240 1050,240 1050,0 468,0 Z M 437,1563 C 437,1619 456,1661 494,1689 533,1717 569,1730 604,1730 639,1730 676,1717 714,1689 752,1661 771,1619 771,1563 771,1507 752,1465 714,1437 676,1410 639,1396 604,1396 569,1396 533,1410 494,1437 456,1465 437,1507 437,1563 Z"/>
+ <glyph unicode="h" horiz-adv-x="1019" d="M 155,0 L 155,1699 426,1699 426,1065 C 430,1072 473,1102 555,1154 636,1207 719,1233 803,1233 874,1233 940,1215 999,1178 1058,1141 1100,1096 1124,1043 1143,1004 1155,963 1162,920 1168,877 1171,793 1171,667 L 1171,0 900,0 900,690 C 900,793 896,858 887,886 879,915 865,937 844,953 824,969 802,977 780,977 725,977 663,949 594,892 525,835 469,765 426,683 L 426,0 155,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1059" d="M 901,141 C 893,129 847,97 760,46 674,-5 594,-31 520,-31 414,-31 320,14 237,103 155,192 114,325 114,500 114,636 140,757 193,865 245,973 316,1059 405,1123 494,1186 605,1218 736,1218 772,1218 827,1215 900,1207 911,1206 926,1204 946,1202 L 1173,1202 1173,370 C 1173,180 1171,63 1165,20 1160,-24 1152,-68 1140,-112 1110,-223 1044,-309 940,-371 837,-434 714,-465 572,-465 430,-465 278,-425 118,-345 L 118,-50 C 212,-114 296,-159 369,-185 442,-212 512,-225 579,-225 630,-225 679,-217 724,-201 769,-185 805,-162 831,-133 858,-105 876,-71 886,-31 896,9 901,65 901,136 L 901,141 Z M 901,526 L 901,961 C 860,972 813,977 760,977 658,977 573,937 504,857 436,778 401,667 401,525 401,423 419,349 453,303 488,256 525,232 564,232 611,232 667,259 731,313 795,366 852,437 901,526 Z"/>
+ <glyph unicode="f" horiz-adv-x="1099" d="M 415,0 L 415,869 167,869 167,1109 415,1109 415,1119 C 415,1272 433,1388 470,1465 506,1542 563,1606 639,1656 716,1705 816,1730 939,1730 1028,1730 1130,1719 1245,1696 L 1245,1425 C 1116,1468 1016,1489 946,1489 893,1489 847,1480 809,1461 771,1443 741,1412 719,1370 697,1327 686,1250 686,1139 L 686,1109 1129,1109 1129,869 686,869 686,0 415,0 Z"/>
+ <glyph unicode="e" horiz-adv-x="1086" d="M 1169,90 C 999,9 844,-32 705,-32 596,-32 498,-5 412,49 326,104 258,181 207,280 156,380 130,486 130,599 130,707 154,812 203,912 251,1013 320,1091 408,1148 496,1205 594,1233 703,1233 848,1233 965,1181 1053,1078 1141,974 1185,818 1185,611 L 1185,528 415,528 C 415,486 430,436 459,379 488,321 525,279 571,251 617,223 669,209 729,209 841,209 988,259 1169,359 L 1169,90 Z M 436,752 L 914,737 898,737 C 898,818 879,881 842,926 805,971 756,993 695,993 631,993 575,969 528,921 480,873 449,817 436,752 Z"/>
+ <glyph unicode="d" horiz-adv-x="1059" d="M 901,141 C 893,129 847,97 760,46 674,-5 594,-31 520,-31 414,-31 320,14 237,103 155,192 114,325 114,500 114,636 140,757 193,865 245,973 316,1059 405,1123 494,1186 605,1218 736,1218 772,1218 827,1215 900,1207 911,1206 916,1201 914,1192 L 901,1699 1173,1699 1173,0 901,0 901,141 Z M 901,526 L 901,961 C 860,972 813,977 760,977 658,977 573,937 504,857 436,778 401,667 401,525 401,423 419,349 453,303 488,256 525,232 564,232 611,232 667,259 731,313 795,366 852,437 901,526 Z"/>
+ <glyph unicode="c" horiz-adv-x="1019" d="M 1180,44 C 1032,-6 899,-31 782,-31 662,-31 555,-3 461,52 368,108 295,183 242,278 190,373 164,481 164,601 164,782 223,932 342,1053 461,1173 604,1233 772,1233 892,1233 1028,1208 1180,1156 L 1180,880 C 1016,955 885,993 789,993 728,993 671,978 619,949 566,919 525,872 495,808 466,744 451,677 451,608 451,516 479,429 536,348 592,266 680,225 800,225 838,225 876,228 913,233 950,239 1039,265 1180,313 L 1180,44 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 412,1060 C 421,1073 468,1105 553,1157 639,1208 719,1233 794,1233 899,1233 994,1189 1076,1099 1159,1010 1200,878 1200,703 1200,567 1174,445 1121,337 1069,229 998,143 908,80 819,16 709,-16 578,-16 542,-16 487,-12 413,-5 402,-3 387,-2 368,0 L 141,0 141,1699 412,1699 412,1060 Z M 412,676 L 412,242 C 455,231 503,225 556,225 655,225 740,265 809,344 878,424 913,535 913,678 913,780 896,854 861,900 826,947 789,970 750,970 702,970 646,943 583,890 519,836 462,765 412,676 Z"/>
+ <glyph unicode="a" horiz-adv-x="1112" d="M 900,159 C 885,135 835,97 748,46 662,-5 582,-31 508,-31 402,-31 308,14 225,103 143,192 102,325 102,500 102,636 128,757 181,865 233,973 304,1059 393,1123 482,1186 593,1218 724,1218 760,1218 815,1215 888,1207 899,1206 914,1204 934,1202 L 1161,1202 1161,371 C 1161,241 1181,117 1220,0 L 933,0 C 913,85 902,138 900,159 Z M 889,526 L 889,961 C 848,972 801,977 748,977 646,977 561,937 492,857 424,778 389,667 389,525 389,423 407,349 441,303 476,256 513,232 552,232 599,232 655,259 719,313 783,366 840,437 889,526 Z"/>
+ <glyph unicode="O" horiz-adv-x="1179" d="M 657,-47 C 465,-47 319,32 220,191 121,349 71,558 71,819 71,1078 121,1287 220,1446 319,1604 465,1683 657,1683 849,1683 995,1604 1094,1446 1193,1287 1242,1078 1242,819 1242,559 1193,349 1094,191 995,32 849,-47 657,-47 Z M 657,194 C 738,194 808,244 867,344 926,444 955,602 955,819 955,1035 926,1193 867,1293 808,1393 738,1443 657,1443 576,1443 506,1393 447,1293 388,1193 358,1035 358,819 358,602 388,444 447,344 506,244 576,194 657,194 Z"/>
+ <glyph unicode="&gt;" horiz-adv-x="1231" d="M 1295,586 L 71,-26 71,242 761,585 71,931 71,1198 1295,586 Z"/>
+ <glyph unicode="&lt;" horiz-adv-x="1232" d="M 18,586 L 1242,1198 1242,929 553,586 1242,240 1242,-26 18,586 Z"/>
+ <glyph unicode=":" horiz-adv-x="424" d="M 657,-47 C 600,-47 552,-27 511,13 471,54 451,102 451,159 451,216 471,265 512,304 553,344 601,364 657,364 712,364 760,344 801,304 842,265 862,216 862,159 862,102 842,54 802,13 761,-27 713,-47 657,-47 Z M 657,822 C 600,822 552,842 511,882 471,923 451,971 451,1028 451,1085 471,1134 512,1173 553,1213 601,1233 657,1233 712,1233 760,1213 801,1173 842,1134 862,1085 862,1028 862,971 842,923 802,882 761,842 713,822 657,822 Z"/>
+ <glyph unicode="/" horiz-adv-x="1311" d="M 283,-47 L 0,-47 1039,1683 1315,1683 283,-47 Z"/>
+ <glyph unicode="." horiz-adv-x="424" d="M 657,-47 C 600,-47 552,-27 511,13 471,54 451,102 451,159 451,216 471,265 512,304 553,344 601,364 657,364 712,364 760,344 801,304 842,265 862,216 862,159 862,102 842,54 802,13 761,-27 713,-47 657,-47 Z"/>
+ <glyph unicode="-" horiz-adv-x="887" d="M 227,551 L 227,791 1088,791 1088,551 227,551 Z"/>
+ <glyph unicode="," horiz-adv-x="478" d="M 424,-440 L 424,-234 C 486,-218 527,-200 547,-181 568,-162 584,-137 597,-106 610,-75 616,-51 616,-34 569,-34 527,-12 490,32 453,76 435,123 435,174 435,232 456,281 497,321 538,360 586,380 641,380 710,380 769,352 817,294 865,237 889,161 889,67 889,-13 872,-89 837,-159 802,-230 755,-291 694,-341 634,-392 544,-425 424,-440 Z"/>
+ <glyph unicode="+" horiz-adv-x="1179" d="M 1242,706 L 1242,465 777,465 777,0 536,0 536,465 71,465 71,706 536,706 536,1171 777,1171 777,706 1242,706 Z"/>
+ <glyph unicode="*" horiz-adv-x="1033" d="M 516,659 L 535,965 285,798 147,1039 417,1171 147,1305 286,1542 535,1376 516,1683 796,1683 773,1376 1027,1542 1167,1305 896,1171 1167,1039 1027,798 773,965 796,659 516,659 Z"/>
+ <glyph unicode=")" horiz-adv-x="979" d="M 157,1721 C 379,1721 557,1672 691,1573 824,1474 930,1342 1008,1177 1087,1011 1126,845 1126,679 1126,512 1087,346 1008,181 930,15 824,-117 691,-216 557,-315 379,-364 157,-364 L 157,-136 C 314,-121 439,-75 533,1 628,77 703,174 758,294 813,413 840,542 840,679 840,816 813,944 758,1064 703,1183 628,1281 534,1357 439,1433 314,1478 157,1493 L 157,1721 Z"/>
+ <glyph unicode="(" horiz-adv-x="980" d="M 1157,-364 C 935,-364 757,-315 624,-216 490,-117 384,15 306,181 227,346 188,512 188,679 188,845 227,1011 306,1177 384,1342 490,1474 624,1573 757,1672 935,1721 1157,1721 L 1157,1493 C 1001,1478 875,1433 781,1357 686,1281 612,1183 557,1064 503,944 475,816 475,679 475,542 503,413 557,294 612,174 686,77 781,1 875,-75 1001,-121 1157,-136 L 1157,-364 Z"/>
+ <glyph unicode="%" horiz-adv-x="1390" d="M 357,1637 C 467,1637 554,1597 616,1515 678,1434 709,1331 709,1207 709,1082 678,979 616,898 554,817 467,776 357,776 246,776 159,817 97,898 34,979 3,1082 3,1207 3,1331 34,1434 97,1515 159,1597 246,1637 357,1637 Z M 357,1427 C 321,1427 293,1407 273,1366 254,1325 244,1272 244,1207 244,1140 254,1087 273,1046 293,1006 321,985 357,985 392,985 420,1006 439,1046 459,1087 469,1141 469,1207 469,1272 459,1325 439,1366 420,1407 392,1427 357,1427 Z M 232,-47 L -34,-47 1082,1683 1349,1683 232,-47 Z M 955,861 C 1061,861 1146,822 1212,744 1278,665 1310,566 1310,447 1310,310 1276,202 1207,121 1138,40 1053,0 953,0 854,0 772,39 705,116 638,193 604,298 604,431 604,556 636,660 699,740 762,821 847,861 955,861 Z M 958,652 C 923,652 895,632 875,592 855,553 845,497 845,425 845,347 857,291 881,258 905,226 930,209 957,209 985,209 1011,227 1035,263 1058,299 1070,356 1070,435 1070,496 1060,548 1040,590 1021,631 993,652 958,652 Z"/>
+ <glyph unicode="$" horiz-adv-x="1032" d="M 580,-155 L 580,2 C 562,2 529,4 479,9 430,14 383,22 338,32 294,42 235,64 161,97 L 161,387 C 245,343 308,313 348,297 389,281 431,269 475,260 520,251 555,246 580,246 L 580,732 495,778 C 278,895 169,1039 169,1210 169,1302 206,1392 281,1478 355,1564 455,1612 580,1623 L 580,1792 805,1792 805,1626 C 859,1626 952,1609 1084,1576 L 1084,1313 995,1339 C 897,1366 834,1381 805,1384 L 805,911 896,860 C 1007,796 1084,731 1127,666 1171,601 1192,531 1192,457 1192,390 1176,326 1143,264 1110,203 1063,150 1003,106 942,62 876,34 805,22 L 805,-155 580,-155 Z M 580,1047 L 580,1379 C 555,1374 528,1357 499,1328 470,1300 455,1268 455,1233 455,1198 469,1162 495,1127 522,1092 550,1066 580,1047 Z M 805,595 L 805,275 C 831,285 855,304 875,334 896,365 906,399 906,437 906,472 896,503 875,530 854,557 831,578 805,595 Z"/>
+ <glyph unicode=" " horiz-adv-x="1310"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1408" y="1084" width="9926" height="7441"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2280,1110 C 1857,1110 1434,1533 1434,1956 L 1434,7651 C 1434,8074 1857,8498 2280,8498 L 10460,8498 C 10883,8498 11307,8074 11307,7651 L 11307,1956 C 11307,1533 10883,1110 10460,1110 L 2280,1110 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11487" y="1129" width="8537" height="7270"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="13842" y="1572"><tspan fill="rgb(255,51,51)" stroke="none">BuildStream Core Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11737" y="2204"><tspan fill="rgb(102,102,102)" stroke="none">Core data is understood by the BuildStream </tspan></tspan><tspan class="TextPosition" x="11737" y="2598"><tspan fill="rgb(102,102,102)" stroke="none">core. This includes the list of source </tspan></tspan><tspan class="TextPosition" x="11737" y="2992"><tspan fill="rgb(102,102,102)" stroke="none">declarations which are components of the </tspan></tspan><tspan class="TextPosition" x="11737" y="3386"><tspan fill="rgb(102,102,102)" stroke="none">Element.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="13437" y="4174"><tspan fill="rgb(0,0,204)" stroke="none">Element Configuration Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11737" y="4806"><tspan fill="rgb(102,102,102)" stroke="none">Element Configuration Data is defined by </tspan></tspan><tspan class="TextPosition" x="11737" y="5200"><tspan fill="rgb(102,102,102)" stroke="none">Element plugin classes. This data is internal to </tspan></tspan><tspan class="TextPosition" x="11737" y="5594"><tspan fill="rgb(102,102,102)" stroke="none">a given plugin.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="14104" y="6382"><tspan fill="rgb(0,153,0)" stroke="none">Public Domain Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11737" y="7014"><tspan fill="rgb(102,102,102)" stroke="none">Public Domain Data is free form and not </tspan></tspan><tspan class="TextPosition" x="11737" y="7408"><tspan fill="rgb(102,102,102)" stroke="none">validated, this provides a way to declare data </tspan></tspan><tspan class="TextPosition" x="11737" y="7802"><tspan fill="rgb(102,102,102)" stroke="none">that is intended to be read back and processed </tspan></tspan><tspan class="TextPosition" x="11737" y="8196"><tspan fill="rgb(102,102,102)" stroke="none">by reverse dependencies.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1400" y="1100" width="9907" height="7382"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="5528" y="1610"><tspan fill="rgb(102,102,102)" stroke="none">Element</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="2339"><tspan fill="rgb(255,51,51)" stroke="none">kind: autotools</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="2695"><tspan fill="rgb(255,51,51)" stroke="none">description: Optional description about foo</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="3051"><tspan fill="rgb(255,51,51)" stroke="none">depends:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="3407"><tspan fill="rgb(255,51,51)" stroke="none">- gtk+.bst</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="3763"><tspan fill="rgb(255,51,51)" stroke="none">- clutter.bst</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="4119"><tspan fill="rgb(255,51,51)" stroke="none">sources:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="4475"><tspan fill="rgb(255,51,51)" stroke="none">- &lt;source declarations here&gt;</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="5187"><tspan fill="rgb(0,0,204)" stroke="none">config:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="5543"><tspan fill="rgb(0,0,204)" stroke="none"> </tspan><tspan fill="rgb(0,0,204)" stroke="none">configure-commands:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="5899"><tspan fill="rgb(0,0,204)" stroke="none"> </tspan><tspan fill="rgb(0,0,204)" stroke="none">(&lt;):</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="6255"><tspan fill="rgb(0,0,204)" stroke="none"> </tspan><tspan fill="rgb(0,0,204)" stroke="none">- cp %{datadir}/automake-*/config.{sub,guess} .</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="6967"><tspan fill="rgb(0,153,0)" stroke="none">public:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="7323"><tspan fill="rgb(0,153,0)" stroke="none"> </tspan><tspan fill="rgb(0,153,0)" stroke="none">bst:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="7679"><tspan fill="rgb(0,153,0)" stroke="none"> </tspan><tspan fill="rgb(0,153,0)" stroke="none">integration-commands:</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1650" y="8035"><tspan fill="rgb(0,153,0)" stroke="none"> </tspan><tspan fill="rgb(0,153,0)" stroke="none">- update-flying-pony-cache -f ${datadir}/ponies</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-datamodel-source-composition.svg b/doc/source/images/arch-datamodel-source-composition.svg
new file mode 100644
index 000000000..60de23620
--- /dev/null
+++ b/doc/source/images/arch-datamodel-source-composition.svg
@@ -0,0 +1,255 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="127mm" height="109.22mm" viewBox="0 0 12700 10922" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="12700" height="10922"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="O" horiz-adv-x="1430" d="M 1507,711 C 1507,601 1491,501 1458,411 1425,321 1378,244 1317,180 1256,116 1181,67 1093,32 1004,-3 904,-20 793,-20 675,-20 572,-2 484,35 395,71 321,122 262,187 203,252 158,329 129,418 99,507 84,605 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,571 408,510 425,449 451,396 486,352 521,308 564,274 615,249 666,224 726,212 793,212 865,212 927,225 979,250 1031,275 1074,309 1108,354 1141,398 1166,451 1182,512 1198,573 1206,639 1206,711 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="”" horiz-adv-x="848" d="M 985,1217 C 976,1172 966,1131 954,1094 942,1057 928,1023 913,992 897,961 880,932 862,906 843,880 823,855 801,831 L 617,831 C 641,855 664,880 685,906 706,932 726,959 743,986 760,1013 774,1040 786,1068 798,1095 807,1122 812,1149 L 685,1149 736,1409 1023,1409 985,1217 Z M 555,1217 C 546,1172 536,1131 524,1094 512,1057 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1217 Z"/>
+ <glyph unicode="“" horiz-adv-x="848" d="M 617,831 L 655,1026 C 664,1071 674,1111 687,1148 699,1185 713,1218 728,1249 743,1280 761,1308 780,1335 799,1361 819,1386 841,1409 L 1023,1409 C 1000,1386 978,1361 957,1335 936,1309 917,1282 900,1255 883,1228 868,1200 856,1173 844,1146 835,1119 830,1092 L 957,1092 906,831 617,831 Z M 189,831 L 227,1026 C 236,1071 246,1111 258,1148 270,1185 284,1218 299,1249 314,1280 331,1308 350,1335 369,1361 389,1386 410,1409 L 593,1409 C 570,1386 548,1361 527,1335 506,1309 487,1282 470,1255 453,1228 438,1200 426,1173 414,1146 405,1119 400,1092 L 527,1092 476,831 189,831 Z"/>
+ <glyph unicode="’" horiz-adv-x="411" d="M 555,1214 C 546,1169 536,1129 524,1093 512,1056 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1214 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="N" horiz-adv-x="1496" d="M 884,0 L 510,1131 C 506,1102 502,1074 498,1046 495,1022 491,996 486,969 481,941 477,915 472,892 L 298,0 36,0 310,1409 660,1409 1037,268 C 1041,294 1045,321 1049,350 1052,375 1057,402 1062,433 1067,463 1072,493 1078,524 L 1252,1409 1514,1409 1240,0 884,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="583" d="M 36,0 L 309,1409 604,1409 330,0 36,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode=":" horiz-adv-x="503" d="M 235,752 L 290,1034 578,1034 523,752 235,752 Z M 89,0 L 144,281 432,281 377,0 89,0 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1426" y="1152" width="4981" height="8566"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 1892,1178 C 1672,1178 1452,1398 1452,1618 L 1452,9250 C 1452,9470 1672,9691 1892,9691 L 5939,9691 C 6159,9691 6380,9470 6380,9250 L 6380,1618 C 6380,1398 6159,1178 5939,1178 L 1892,1178 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1470" y="1170" width="5027" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2070" y="1729"><tspan fill="rgb(255,0,0)" stroke="none">BuildStream Core Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1754" y="2123"><tspan fill="rgb(0,0,255)" stroke="none">Source Configuration Data</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2656" y="2576" width="2651" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 2893,2602 C 2787,2602 2682,2707 2682,2813 L 2682,3661 C 2682,3767 2787,3873 2893,3873 L 5068,3873 C 5174,3873 5280,3767 5280,3661 L 5280,2813 C 5280,2707 5174,2602 5068,2602 L 2893,2602 Z M 2682,2602 L 2682,2602 Z M 5280,3873 L 5280,3873 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 2893,2602 C 2787,2602 2682,2707 2682,2813 L 2682,3661 C 2682,3767 2787,3873 2893,3873 L 5068,3873 C 5174,3873 5280,3767 5280,3661 L 5280,2813 C 5280,2707 5174,2602 5068,2602 L 2893,2602 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2683" y="2602" width="2598" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3501" y="3177"><tspan fill="rgb(0,0,0)" stroke="none">Source </tspan></tspan><tspan class="TextPosition" x="3211" y="3495"><tspan fill="rgb(0,0,0)" stroke="none">Declaration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2656" y="5111" width="2652" height="1324"/>
+ <path fill="rgb(204,204,153)" stroke="none" d="M 2893,5137 C 2787,5137 2682,5242 2682,5348 L 2682,6196 C 2682,6302 2787,6408 2893,6408 L 5069,6408 C 5174,6408 5280,6302 5280,6196 L 5280,5348 C 5280,5242 5174,5137 5069,5137 L 2893,5137 Z M 2682,5137 L 2682,5137 Z M 5281,6408 L 5281,6408 Z"/>
+ <path fill="none" stroke="rgb(102,51,0)" stroke-width="51" stroke-linejoin="round" d="M 2893,5137 C 2787,5137 2682,5242 2682,5348 L 2682,6196 C 2682,6302 2787,6408 2893,6408 L 5069,6408 C 5174,6408 5280,6302 5280,6196 L 5280,5348 C 5280,5242 5174,5137 5069,5137 L 2893,5137 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2684" y="5115" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3505" y="5690"><tspan fill="rgb(0,0,0)" stroke="none">Project </tspan></tspan><tspan class="TextPosition" x="3323" y="6008"><tspan fill="rgb(0,0,0)" stroke="none">Overrides</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3752" y="3872" width="459" height="1270"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3983,5115 C 3983,4184 3982,4646 3981,4214"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3980,3872 L 3753,4237 4210,4236 3980,3872 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.LineShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1401" y="4584" width="9857" height="53"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1427,4610 L 1527,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1628,4610 L 1728,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1829,4610 L 1929,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2030,4610 L 2130,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2231,4610 L 2331,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2432,4610 L 2532,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2633,4610 L 2733,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2834,4610 L 2934,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3035,4610 L 3135,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3235,4610 L 3336,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3436,4610 L 3537,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3637,4610 L 3738,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3838,4610 L 3939,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4039,4610 L 4140,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4240,4610 L 4341,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4441,4610 L 4542,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4642,4610 L 4743,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4843,4610 L 4943,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5044,4610 L 5144,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5245,4610 L 5345,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5446,4610 L 5546,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5647,4610 L 5747,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5848,4610 L 5948,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6049,4610 L 6149,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6250,4610 L 6350,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6450,4610 L 6551,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6651,4610 L 6752,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6852,4610 L 6953,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7053,4610 L 7154,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7254,4610 L 7355,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7455,4610 L 7556,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7656,4610 L 7757,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7857,4610 L 7958,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8058,4610 L 8158,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8259,4610 L 8359,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8460,4610 L 8560,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8661,4610 L 8761,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8862,4610 L 8962,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9063,4610 L 9163,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9264,4610 L 9364,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9465,4610 L 9565,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9666,4610 L 9766,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9866,4610 L 9967,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10067,4610 L 10168,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10268,4610 L 10369,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10469,4610 L 10570,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10670,4610 L 10771,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10871,4610 L 10972,4610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11072,4610 L 11173,4610"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6430" y="4610" width="4711" height="5081"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7073" y="5104"><tspan fill="rgb(102,102,102)" stroke="none">Composited the first </tspan></tspan><tspan class="TextPosition" x="6899" y="5498"><tspan fill="rgb(102,102,102)" stroke="none">time that a Source of a </tspan></tspan><tspan class="TextPosition" x="7543" y="5892"><tspan fill="rgb(102,102,102)" stroke="none">given “kind” is </tspan></tspan><tspan class="TextPosition" x="7748" y="6286"><tspan fill="rgb(102,102,102)" stroke="none">instantiated.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6997" y="7074"><tspan fill="rgb(102,102,102)" stroke="none">This is cached on the </tspan></tspan><tspan class="TextPosition" x="7054" y="7468"><tspan fill="rgb(102,102,102)" stroke="none">given Source’s class </tspan></tspan><tspan class="TextPosition" x="7155" y="7862"><tspan fill="rgb(102,102,102)" stroke="none">data for later reuse.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7162" y="8650"><tspan fill="rgb(102,102,102)" stroke="none">Note: In the case of </tspan></tspan><tspan class="TextPosition" x="7009" y="9044"><tspan fill="rgb(102,102,102)" stroke="none">Sources, defaults are </tspan></tspan><tspan class="TextPosition" x="7329" y="9438"><tspan fill="rgb(102,102,102)" stroke="none">provided in code.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6430" y="2011" width="4811" height="2560"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6901" y="2821"><tspan fill="rgb(102,102,102)" stroke="none">Composited every time </tspan></tspan><tspan class="TextPosition" x="6765" y="3215"><tspan fill="rgb(102,102,102)" stroke="none">against the cached class </tspan></tspan><tspan class="TextPosition" x="6755" y="3609"><tspan fill="rgb(102,102,102)" stroke="none">data below every time an </tspan></tspan><tspan class="TextPosition" x="6960" y="4003"><tspan fill="rgb(102,102,102)" stroke="none">Source is instantiated.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2656" y="7512" width="2652" height="1324"/>
+ <path fill="rgb(153,153,204)" stroke="none" d="M 2893,7538 C 2787,7538 2682,7643 2682,7749 L 2682,8597 C 2682,8703 2787,8809 2893,8809 L 5069,8809 C 5174,8809 5280,8703 5280,8597 L 5280,7749 C 5280,7643 5174,7538 5069,7538 L 2893,7538 Z M 2682,7538 L 2682,7538 Z M 5281,8809 L 5281,8809 Z"/>
+ <path fill="none" stroke="rgb(0,0,153)" stroke-width="51" stroke-linejoin="round" d="M 2893,7538 C 2787,7538 2682,7643 2682,7749 L 2682,8597 C 2682,8703 2787,8809 2893,8809 L 5069,8809 C 5174,8809 5280,8703 5280,8597 L 5280,7749 C 5280,7643 5174,7538 5069,7538 L 2893,7538 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2684" y="7516" width="2599" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3503" y="8091"><tspan fill="rgb(0,0,0)" stroke="none">Source </tspan></tspan><tspan class="TextPosition" x="3427" y="8409"><tspan fill="rgb(0,0,0)" stroke="none">Defaults</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3752" y="6407" width="459" height="1136"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3983,7516 C 3983,6705 3982,7104 3981,6746"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 3980,6407 L 3753,6772 4210,6771 3980,6407 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-datamodel-source.svg b/doc/source/images/arch-datamodel-source.svg
new file mode 100644
index 000000000..55e303311
--- /dev/null
+++ b/doc/source/images/arch-datamodel-source.svg
@@ -0,0 +1,167 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="215.9mm" height="59.69mm" viewBox="0 0 21590 5969" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="21590" height="5969"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_3" horiz-adv-x="2048">
+ <font-face font-family="Monaco embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="2051" descent="516"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1271" d="M 562,86 L 25,1202 324,1202 705,426 1024,1202 1304,1202 846,105 C 752,-120 661,-272 572,-349 483,-427 368,-466 227,-466 167,-466 102,-458 32,-443 L 32,-186 C 116,-213 179,-226 222,-226 275,-226 322,-216 362,-196 402,-175 440,-138 476,-83 511,-28 537,19 552,60 L 562,86 Z"/>
+ <glyph unicode="u" horiz-adv-x="1006" d="M 1159,1202 L 1159,0 888,0 888,144 C 877,127 832,94 752,44 673,-6 592,-31 511,-31 437,-31 369,-11 307,29 246,69 203,120 179,184 155,248 143,365 143,536 L 143,1202 414,1202 414,513 C 414,410 419,344 427,316 435,288 450,266 470,250 490,233 512,225 534,225 589,225 651,254 720,310 788,367 845,436 888,519 L 888,1202 1159,1202 Z"/>
+ <glyph unicode="t" horiz-adv-x="1085" d="M 1174,59 C 1067,14 992,-12 950,-20 907,-27 867,-31 828,-31 743,-31 665,-14 594,19 522,52 468,102 431,168 394,234 375,332 375,462 L 375,869 96,869 96,1109 375,1109 375,1559 646,1559 646,1109 1143,1109 1143,869 646,869 646,465 C 646,382 655,326 672,296 689,266 712,244 741,230 770,216 806,209 848,209 930,209 1039,248 1174,325 L 1174,59 Z"/>
+ <glyph unicode="s" horiz-adv-x="1006" d="M 168,73 L 168,377 C 282,303 379,256 459,237 538,219 605,209 660,209 744,209 803,221 834,244 866,268 882,295 882,326 882,345 876,361 864,374 849,391 806,413 736,442 L 672,468 543,519 C 397,576 304,630 263,682 220,735 199,799 199,875 199,980 239,1066 319,1133 399,1200 524,1233 694,1233 817,1233 945,1212 1075,1170 L 1075,909 C 919,965 790,993 687,993 616,993 564,982 530,961 495,940 478,916 478,891 478,866 491,847 516,831 552,808 611,782 694,752 L 820,706 C 942,661 1028,612 1080,558 1134,500 1161,429 1161,344 1161,234 1120,144 1036,74 953,4 824,-31 651,-31 503,-31 342,4 168,73 Z"/>
+ <glyph unicode="r" horiz-adv-x="927" d="M 250,0 L 250,1202 521,1202 521,1063 C 530,1078 576,1110 657,1159 738,1209 829,1233 929,1233 1000,1233 1082,1219 1173,1191 L 1173,714 909,714 909,976 C 904,977 893,977 878,977 818,977 759,952 698,902 637,852 578,778 521,680 L 521,0 250,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 412,1060 C 421,1073 468,1105 553,1157 639,1208 719,1233 794,1233 899,1233 994,1189 1076,1099 1159,1010 1200,878 1200,703 1200,567 1174,445 1121,337 1069,229 998,143 908,80 819,16 709,-16 578,-16 542,-16 487,-12 413,-5 402,-3 398,2 399,11 L 412,-434 141,-434 141,1202 412,1202 412,1060 Z M 412,676 L 412,242 C 455,231 503,225 556,225 655,225 740,265 809,344 878,424 913,535 913,678 913,780 896,854 861,900 826,947 789,970 750,970 702,970 646,943 583,890 519,836 462,765 412,676 Z"/>
+ <glyph unicode="o" horiz-adv-x="1152" d="M 658,-31 C 485,-31 346,29 243,150 139,271 87,421 87,602 87,782 139,933 243,1053 346,1173 485,1233 658,1233 830,1233 968,1173 1072,1053 1175,933 1227,782 1227,602 1227,421 1175,271 1072,150 968,29 830,-31 658,-31 Z M 658,209 C 743,209 811,243 863,311 914,379 940,476 940,602 940,727 914,823 863,891 811,959 743,993 658,993 572,993 503,959 452,891 400,823 374,727 374,602 374,476 400,379 452,311 503,243 572,209 658,209 Z"/>
+ <glyph unicode="n" horiz-adv-x="1019" d="M 155,0 L 155,1202 426,1202 426,1065 C 430,1072 473,1102 555,1154 636,1207 719,1233 803,1233 877,1233 945,1213 1006,1174 1068,1134 1111,1082 1135,1019 1159,955 1171,838 1171,667 L 1171,0 900,0 900,690 C 900,793 896,858 887,886 879,915 865,937 844,953 824,969 802,977 780,977 725,977 663,949 594,892 525,835 469,765 426,683 L 426,0 155,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1178" d="M 71,0 L 71,1202 319,1202 317,1084 C 318,1090 344,1116 394,1163 445,1210 498,1233 555,1233 623,1233 677,1207 717,1156 757,1104 777,1034 777,947 L 735,887 C 731,968 746,1031 780,1077 813,1123 849,1161 888,1190 927,1219 973,1233 1026,1233 1087,1233 1138,1208 1180,1159 1222,1109 1242,1018 1242,887 L 1242,0 994,0 994,806 C 994,866 992,905 989,922 986,939 983,950 978,955 973,960 970,962 968,962 947,962 920,939 886,894 852,848 816,769 777,655 L 777,0 536,0 536,805 C 536,891 531,938 520,948 510,957 502,962 498,962 479,962 453,936 419,885 385,833 352,765 319,680 L 319,0 71,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1112" d="M 205,0 L 205,1699 476,1699 476,743 953,1202 1324,1202 742,641 1330,0 958,0 476,532 476,0 205,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="900" d="M 468,0 L 468,962 158,962 158,1202 739,1202 739,240 1050,240 1050,0 468,0 Z M 437,1563 C 437,1619 456,1661 494,1689 533,1717 569,1730 604,1730 639,1730 676,1717 714,1689 752,1661 771,1619 771,1563 771,1507 752,1465 714,1437 676,1410 639,1396 604,1396 569,1396 533,1410 494,1437 456,1465 437,1507 437,1563 Z"/>
+ <glyph unicode="g" horiz-adv-x="1059" d="M 901,141 C 893,129 847,97 760,46 674,-5 594,-31 520,-31 414,-31 320,14 237,103 155,192 114,325 114,500 114,636 140,757 193,865 245,973 316,1059 405,1123 494,1186 605,1218 736,1218 772,1218 827,1215 900,1207 911,1206 926,1204 946,1202 L 1173,1202 1173,370 C 1173,180 1171,63 1165,20 1160,-24 1152,-68 1140,-112 1110,-223 1044,-309 940,-371 837,-434 714,-465 572,-465 430,-465 278,-425 118,-345 L 118,-50 C 212,-114 296,-159 369,-185 442,-212 512,-225 579,-225 630,-225 679,-217 724,-201 769,-185 805,-162 831,-133 858,-105 876,-71 886,-31 896,9 901,65 901,136 L 901,141 Z M 901,526 L 901,961 C 860,972 813,977 760,977 658,977 573,937 504,857 436,778 401,667 401,525 401,423 419,349 453,303 488,256 525,232 564,232 611,232 667,259 731,313 795,366 852,437 901,526 Z"/>
+ <glyph unicode="f" horiz-adv-x="1099" d="M 415,0 L 415,869 167,869 167,1109 415,1109 415,1119 C 415,1272 433,1388 470,1465 506,1542 563,1606 639,1656 716,1705 816,1730 939,1730 1028,1730 1130,1719 1245,1696 L 1245,1425 C 1116,1468 1016,1489 946,1489 893,1489 847,1480 809,1461 771,1443 741,1412 719,1370 697,1327 686,1250 686,1139 L 686,1109 1129,1109 1129,869 686,869 686,0 415,0 Z"/>
+ <glyph unicode="e" horiz-adv-x="1086" d="M 1169,90 C 999,9 844,-32 705,-32 596,-32 498,-5 412,49 326,104 258,181 207,280 156,380 130,486 130,599 130,707 154,812 203,912 251,1013 320,1091 408,1148 496,1205 594,1233 703,1233 848,1233 965,1181 1053,1078 1141,974 1185,818 1185,611 L 1185,528 415,528 C 415,486 430,436 459,379 488,321 525,279 571,251 617,223 669,209 729,209 841,209 988,259 1169,359 L 1169,90 Z M 436,752 L 914,737 898,737 C 898,818 879,881 842,926 805,971 756,993 695,993 631,993 575,969 528,921 480,873 449,817 436,752 Z"/>
+ <glyph unicode="d" horiz-adv-x="1059" d="M 901,141 C 893,129 847,97 760,46 674,-5 594,-31 520,-31 414,-31 320,14 237,103 155,192 114,325 114,500 114,636 140,757 193,865 245,973 316,1059 405,1123 494,1186 605,1218 736,1218 772,1218 827,1215 900,1207 911,1206 916,1201 914,1192 L 901,1699 1173,1699 1173,0 901,0 901,141 Z M 901,526 L 901,961 C 860,972 813,977 760,977 658,977 573,937 504,857 436,778 401,667 401,525 401,423 419,349 453,303 488,256 525,232 564,232 611,232 667,259 731,313 795,366 852,437 901,526 Z"/>
+ <glyph unicode="c" horiz-adv-x="1019" d="M 1180,44 C 1032,-6 899,-31 782,-31 662,-31 555,-3 461,52 368,108 295,183 242,278 190,373 164,481 164,601 164,782 223,932 342,1053 461,1173 604,1233 772,1233 892,1233 1028,1208 1180,1156 L 1180,880 C 1016,955 885,993 789,993 728,993 671,978 619,949 566,919 525,872 495,808 466,744 451,677 451,608 451,516 479,429 536,348 592,266 680,225 800,225 838,225 876,228 913,233 950,239 1039,265 1180,313 L 1180,44 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 412,1060 C 421,1073 468,1105 553,1157 639,1208 719,1233 794,1233 899,1233 994,1189 1076,1099 1159,1010 1200,878 1200,703 1200,567 1174,445 1121,337 1069,229 998,143 908,80 819,16 709,-16 578,-16 542,-16 487,-12 413,-5 402,-3 387,-2 368,0 L 141,0 141,1699 412,1699 412,1060 Z M 412,676 L 412,242 C 455,231 503,225 556,225 655,225 740,265 809,344 878,424 913,535 913,678 913,780 896,854 861,900 826,947 789,970 750,970 702,970 646,943 583,890 519,836 462,765 412,676 Z"/>
+ <glyph unicode="a" horiz-adv-x="1112" d="M 900,159 C 885,135 835,97 748,46 662,-5 582,-31 508,-31 402,-31 308,14 225,103 143,192 102,325 102,500 102,636 128,757 181,865 233,973 304,1059 393,1123 482,1186 593,1218 724,1218 760,1218 815,1215 888,1207 899,1206 914,1204 934,1202 L 1161,1202 1161,371 C 1161,241 1181,117 1220,0 L 933,0 C 913,85 902,138 900,159 Z M 889,526 L 889,961 C 848,972 801,977 748,977 646,977 561,937 492,857 424,778 389,667 389,525 389,423 407,349 441,303 476,256 513,232 552,232 599,232 655,259 719,313 783,366 840,437 889,526 Z"/>
+ <glyph unicode=":" horiz-adv-x="424" d="M 657,-47 C 600,-47 552,-27 511,13 471,54 451,102 451,159 451,216 471,265 512,304 553,344 601,364 657,364 712,364 760,344 801,304 842,265 862,216 862,159 862,102 842,54 802,13 761,-27 713,-47 657,-47 Z M 657,822 C 600,822 552,842 511,882 471,923 451,971 451,1028 451,1085 471,1134 512,1173 553,1213 601,1233 657,1233 712,1233 760,1213 801,1173 842,1134 862,1085 862,1028 862,971 842,923 802,882 761,842 713,822 657,822 Z"/>
+ <glyph unicode="9" horiz-adv-x="1152" d="M 966,827 C 947,761 899,704 822,655 745,606 659,582 566,582 478,582 394,603 315,646 236,689 175,749 134,827 92,904 71,993 71,1094 71,1251 122,1389 224,1506 326,1624 461,1683 628,1683 825,1683 972,1602 1068,1440 1163,1278 1211,1076 1211,835 1211,566 1151,352 1030,193 908,33 743,-47 535,-47 426,-47 310,-28 187,11 L 187,297 C 332,228 451,194 543,194 665,194 761,253 831,370 901,487 936,639 936,827 L 966,827 Z M 614,1443 C 571,1443 528,1430 485,1405 441,1379 407,1339 381,1285 355,1230 342,1170 342,1103 342,1019 363,951 405,900 446,848 506,822 583,822 664,822 730,853 783,914 836,976 862,1051 862,1141 862,1231 836,1304 785,1360 734,1415 677,1443 614,1443 Z"/>
+ <glyph unicode="8" horiz-adv-x="1060" d="M 450,880 L 443,870 C 392,906 341,959 292,1030 243,1101 218,1180 218,1267 218,1383 263,1481 353,1562 443,1643 556,1683 693,1683 775,1683 851,1668 919,1637 987,1607 1040,1561 1078,1499 1115,1438 1134,1372 1134,1300 1134,1251 1126,1203 1109,1158 1092,1113 1067,1068 1035,1025 1002,982 953,933 888,880 L 930,846 C 1033,763 1102,689 1139,626 1177,562 1195,490 1195,411 1195,287 1151,180 1061,89 971,-2 839,-47 665,-47 490,-47 358,-4 268,81 178,166 133,271 133,398 133,583 239,743 450,880 Z M 692,1028 C 764,1082 810,1131 831,1173 852,1215 862,1253 862,1288 862,1325 844,1361 809,1394 774,1427 727,1443 669,1443 607,1443 560,1425 529,1389 498,1354 482,1317 482,1280 482,1243 496,1207 525,1171 553,1135 602,1092 671,1043 L 692,1028 Z M 641,727 C 494,613 420,505 420,401 420,344 445,295 494,255 543,215 602,194 671,194 733,194 789,214 837,252 885,291 909,338 909,393 909,448 877,508 812,573 747,637 701,680 675,700 L 641,727 Z"/>
+ <glyph unicode="7" horiz-adv-x="1099" d="M 319,0 L 319,182 C 319,295 332,391 358,469 384,547 429,632 492,725 555,817 606,889 644,938 L 806,1153 864,1227 C 905,1284 934,1330 948,1365 L 164,1365 164,1637 1234,1637 1234,1471 C 1234,1415 1224,1364 1202,1318 1180,1272 1119,1179 1018,1040 994,1007 971,974 947,942 L 843,796 C 778,703 729,630 699,576 668,522 645,467 629,410 614,353 606,277 606,182 L 606,0 319,0 Z"/>
+ <glyph unicode="6" horiz-adv-x="1139" d="M 347,811 C 366,876 415,933 492,982 569,1031 654,1055 748,1055 836,1055 919,1034 998,991 1078,948 1138,887 1180,810 1221,733 1242,644 1242,544 1242,386 1191,248 1089,130 987,12 853,-47 686,-47 488,-47 341,34 246,196 150,358 102,560 102,802 102,1070 163,1284 284,1444 405,1603 570,1683 779,1683 888,1683 1004,1664 1126,1626 L 1126,1339 C 981,1408 862,1443 771,1443 648,1443 552,1384 482,1267 412,1150 377,998 377,811 L 347,811 Z M 700,193 C 742,193 785,206 828,232 872,257 907,297 932,352 958,407 971,467 971,534 971,618 950,686 909,738 867,789 808,815 731,815 650,815 583,784 530,723 478,662 451,586 451,496 451,405 477,332 528,277 579,221 636,193 700,193 Z"/>
+ <glyph unicode="5" horiz-adv-x="1046" d="M 188,807 L 188,1637 1142,1637 1142,1373 459,1373 449,1068 449,1078 C 682,1078 863,1028 993,927 1123,827 1188,691 1188,519 1188,411 1162,314 1109,227 1056,141 982,74 887,26 792,-23 690,-47 584,-47 479,-47 337,-19 157,37 L 157,343 C 253,291 334,256 401,237 467,219 528,209 584,209 636,209 687,222 737,247 787,272 826,309 853,357 880,405 894,454 894,504 894,586 856,658 779,717 703,777 561,807 352,807 L 188,807 Z"/>
+ <glyph unicode="4" horiz-adv-x="1218" d="M 707,0 L 707,434 48,434 48,646 727,1637 979,1637 979,675 1266,675 1266,434 979,434 979,0 707,0 Z M 707,675 L 707,1174 369,675 707,675 Z"/>
+ <glyph unicode="3" horiz-adv-x="1046" d="M 145,42 L 145,336 C 333,241 479,193 585,193 676,193 751,220 809,275 868,329 897,399 897,485 897,570 865,640 800,694 735,749 620,776 454,776 L 308,776 308,1016 494,1016 C 612,1016 696,1041 745,1091 795,1141 820,1196 820,1256 820,1308 801,1352 762,1389 723,1425 660,1443 574,1443 470,1443 338,1403 176,1324 L 176,1599 C 326,1655 456,1683 567,1683 767,1683 908,1642 988,1559 1067,1476 1107,1381 1107,1275 1107,1196 1086,1122 1044,1053 1002,984 959,939 916,919 941,912 979,887 1029,844 1080,801 1119,751 1145,692 1171,634 1184,569 1184,498 1184,339 1126,209 1010,107 893,4 744,-47 563,-47 512,-47 455,-43 394,-35 333,-28 250,-2 145,42 Z"/>
+ <glyph unicode="2" horiz-adv-x="1046" d="M 1173,0 L 149,0 149,214 C 149,263 159,315 178,369 198,424 234,484 287,549 339,615 395,677 452,736 L 558,843 C 579,865 625,915 696,994 766,1072 812,1130 832,1168 853,1206 863,1243 863,1277 863,1328 841,1369 798,1399 754,1428 704,1443 646,1443 610,1443 570,1439 525,1431 481,1422 441,1413 408,1402 374,1390 298,1358 180,1304 L 180,1563 C 284,1612 379,1644 467,1660 554,1676 626,1683 684,1683 770,1683 850,1669 925,1640 999,1611 1056,1565 1093,1502 1131,1439 1149,1372 1149,1302 1149,1224 1127,1146 1082,1068 1036,989 954,891 834,773 L 720,660 624,566 C 565,507 519,451 484,398 450,345 432,298 430,256 L 1173,256 1173,0 Z"/>
+ <glyph unicode="1" horiz-adv-x="1020" d="M 568,240 L 568,1307 C 557,1298 524,1277 469,1245 414,1212 321,1172 188,1125 L 188,1382 C 347,1449 482,1534 594,1637 L 839,1637 839,240 1212,240 1212,0 188,0 188,240 568,240 Z"/>
+ <glyph unicode="0" horiz-adv-x="1179" d="M 657,1683 C 849,1683 995,1604 1094,1446 1193,1287 1242,1078 1242,819 1242,559 1193,349 1094,191 995,32 849,-47 657,-47 465,-47 319,32 220,191 121,349 71,558 71,819 71,1078 121,1287 220,1446 319,1604 465,1683 657,1683 Z M 372,595 L 841,1329 C 819,1369 792,1398 759,1416 726,1434 692,1443 657,1443 563,1443 490,1387 438,1274 385,1161 358,1013 358,830 358,787 360,742 362,693 365,645 368,612 372,595 Z M 942,1038 L 475,296 C 491,268 515,244 546,224 577,203 611,193 649,193 756,193 834,258 883,388 932,518 956,667 956,835 956,937 951,1005 942,1038 Z"/>
+ <glyph unicode="/" horiz-adv-x="1311" d="M 283,-47 L 0,-47 1039,1683 1315,1683 283,-47 Z"/>
+ <glyph unicode="." horiz-adv-x="424" d="M 657,-47 C 600,-47 552,-27 511,13 471,54 451,102 451,159 451,216 471,265 512,304 553,344 601,364 657,364 712,364 760,344 801,304 842,265 862,216 862,159 862,102 842,54 802,13 761,-27 713,-47 657,-47 Z"/>
+ <glyph unicode=" " horiz-adv-x="1310"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1804" y="1080" width="9168" height="3766"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2255,1106 C 2042,1106 1830,1318 1830,1531 L 1830,4393 C 1830,4606 2042,4819 2255,4819 L 10519,4819 C 10732,4819 10945,4606 10945,4393 L 10945,1531 C 10945,1318 10732,1106 10519,1106 L 2255,1106 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11387" y="1070" width="8410" height="3741"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="13678" y="1513"><tspan fill="rgb(255,51,51)" stroke="none">BuildStream Core Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11637" y="2145"><tspan fill="rgb(102,102,102)" stroke="none">Core data understood by BuildStream.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700" text-decoration="underline"><tspan class="TextPosition" x="13363" y="2933"><tspan fill="rgb(0,0,204)" stroke="none">Source Configuration Data</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11637" y="3565"><tspan fill="rgb(102,102,102)" stroke="none">Source Configuration Data is defined by </tspan></tspan><tspan class="TextPosition" x="11637" y="3959"><tspan fill="rgb(102,102,102)" stroke="none">Source plugin classes.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1800" y="1100" width="9115" height="3710"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="5638" y="1610"><tspan fill="rgb(102,102,102)" stroke="none">Source</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2050" y="2339"><tspan fill="rgb(255,51,51)" stroke="none">kind: git</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2050" y="2695"><tspan fill="rgb(255,51,51)" stroke="none">directory: sub/dir</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2050" y="3407"><tspan fill="rgb(0,0,204)" stroke="none">uri: upstream:foo.git</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2050" y="3763"><tspan fill="rgb(0,0,204)" stroke="none">track: master</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Monaco, monospace" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2050" y="4119"><tspan fill="rgb(0,0,204)" stroke="none">ref: bbf775301a08b9a578ef7f647bc35fe13e816241</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-dependency-model-build.svg b/doc/source/images/arch-dependency-model-build.svg
new file mode 100644
index 000000000..67bc5b4d2
--- /dev/null
+++ b/doc/source/images/arch-dependency-model-build.svg
@@ -0,0 +1,267 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="165.1mm" height="101.6mm" viewBox="0 0 16510 10160" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="16510" height="10160"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="X" horiz-adv-x="1562" d="M 220,1409 L 529,1409 753,938 1155,1409 1468,1409 868,732 1235,0 928,0 675,532 220,0 -94,0 558,736 220,1409 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="M" horiz-adv-x="1694" d="M 1206,0 L 1378,884 C 1385,921 1393,958 1402,996 1411,1033 1419,1068 1426,1099 1435,1136 1443,1171 1452,1206 1428,1154 1405,1104 1383,1055 1374,1034 1364,1013 1354,991 1343,969 1333,948 1323,927 1313,906 1304,886 1295,867 1286,848 1277,831 1269,816 L 857,0 647,0 553,819 C 552,832 550,847 548,865 546,882 544,901 542,922 539,943 537,964 535,986 532,1008 530,1029 528,1050 523,1099 518,1151 513,1206 508,1165 504,1125 499,1086 497,1069 495,1052 493,1034 490,1016 488,998 486,981 483,964 481,947 478,931 475,915 473,900 470,887 L 298,0 36,0 310,1409 705,1409 793,621 C 796,600 798,575 801,544 804,513 806,482 809,452 812,417 815,382 818,345 835,382 851,417 867,451 880,480 895,510 910,541 925,571 937,596 947,616 L 1349,1409 1742,1409 1468,0 1206,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1482" d="M 956,0 L 1074,604 448,604 330,0 36,0 309,1409 604,1409 495,848 1121,848 1230,1409 1514,1409 1240,0 956,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1012" y="1041" width="4923" height="2027"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1879" y="1978"><tspan fill="rgb(102,102,102)" stroke="none">Build scope for the </tspan></tspan><tspan class="TextPosition" x="1801" y="2372"><tspan fill="rgb(102,102,102)" stroke="none">Application element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6932" y="2216" width="2848" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 7169,2242 C 7063,2242 6958,2347 6958,2453 L 6958,3301 C 6958,3407 7063,3513 7169,3513 L 9541,3513 C 9647,3513 9753,3407 9753,3301 L 9753,2453 C 9753,2347 9647,2242 9541,2242 L 7169,2242 Z M 6958,2242 L 6958,2242 Z M 9753,3513 L 9753,3513 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7169,2242 C 7063,2242 6958,2347 6958,2453 L 6958,3301 C 6958,3407 7063,3513 7169,3513 L 9541,3513 C 9647,3513 9753,3407 9753,3301 L 9753,2453 C 9753,2347 9647,2242 9541,2242 L 7169,2242 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6958" y="2242" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7589" y="2976"><tspan fill="rgb(178,178,178)" stroke="none">Application</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3929" y="4717" width="2975" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 4166,4743 C 4060,4743 3955,4848 3955,4954 L 3955,5802 C 3955,5908 4060,6014 4166,6014 L 6665,6014 C 6771,6014 6877,5908 6877,5802 L 6877,4954 C 6877,4848 6771,4743 6665,4743 L 4166,4743 Z M 3955,4743 L 3955,4743 Z M 6877,6014 L 6877,6014 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4166,4743 C 4060,4743 3955,4848 3955,4954 L 3955,5802 C 3955,5908 4060,6014 4166,6014 L 6665,6014 C 6771,6014 6877,5908 6877,5802 L 6877,4954 C 6877,4848 6771,4743 6665,4743 L 4166,4743 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3956" y="4743" width="2922" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4913" y="5159"><tspan fill="rgb(178,178,178)" stroke="none">Service</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="4638" y="5477"><tspan fill="rgb(178,178,178)" stroke="none">Required at </tspan></tspan><tspan class="TextPosition" x="4896" y="5795"><tspan fill="rgb(178,178,178)" stroke="none">runtime</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9707" y="4718" width="3102" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 9944,4744 C 9838,4744 9733,4849 9733,4955 L 9733,5803 C 9733,5909 9838,6015 9944,6015 L 12570,6015 C 12675,6015 12781,5909 12781,5803 L 12781,4955 C 12781,4849 12675,4744 12570,4744 L 9944,4744 Z M 9733,4744 L 9733,4744 Z M 12782,6015 L 12782,6015 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9944,4744 C 9838,4744 9733,4849 9733,4955 L 9733,5803 C 9733,5909 9838,6015 9944,6015 L 12570,6015 C 12675,6015 12781,5909 12781,5803 L 12781,4955 C 12781,4849 12675,4744 12570,4744 L 9944,4744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9733" y="4744" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10641" y="5160"><tspan fill="rgb(0,0,0)" stroke="none">Compiler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="10099" y="5478"><tspan fill="rgb(102,102,102)" stroke="none">Required at build </tspan></tspan><tspan class="TextPosition" x="10965" y="5796"><tspan fill="rgb(102,102,102)" stroke="none">time</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6932" y="7319" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7169,7345 C 7063,7345 6958,7450 6958,7556 L 6958,8404 C 6958,8510 7063,8616 7169,8616 L 9541,8616 C 9647,8616 9753,8510 9753,8404 L 9753,7556 C 9753,7450 9647,7345 9541,7345 L 7169,7345 Z M 6958,7345 L 6958,7345 Z M 9753,8616 L 9753,8616 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7169,7345 C 7063,7345 6958,7450 6958,7556 L 6958,8404 C 6958,8510 7063,8616 7169,8616 L 9541,8616 C 9647,8616 9753,8510 9753,8404 L 9753,7556 C 9753,7450 9647,7345 9541,7345 L 7169,7345 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6958" y="7345" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7411" y="7761"><tspan fill="rgb(0,0,0)" stroke="none">Base Runtime</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7382" y="8079"><tspan fill="rgb(102,102,102)" stroke="none">Required at all </tspan></tspan><tspan class="TextPosition" x="7985" y="8397"><tspan fill="rgb(102,102,102)" stroke="none">times</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5203" y="2851" width="1782" height="1894"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6958,2877 C 5930,2877 5516,3388 5429,4411"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 5417,4743 L 5660,4389 5204,4369 5417,4743 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9726" y="2851" width="1745" height="1894"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9752,2877 C 10756,2877 11159,3388 11244,4412"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 11258,4744 L 11470,4370 11013,4390 11258,4744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8126" y="3486" width="459" height="3860"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 8355,3512 L 8355,7011"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 8356,7345 L 8584,6981 8127,6981 8356,7345 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5390" y="5987" width="1570" height="2191"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5416,6013 C 5416,7325 5820,7822 6627,7954"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 6958,7979 L 6614,7721 6575,8177 6958,7979 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6851" y="5150" width="2884" height="459"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6877,5378 C 8999,5378 7733,5379 9376,5379"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 9733,5378 L 9369,5150 9369,5607 9733,5378 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1486" y="7320" width="3197" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 1723,7346 C 1617,7346 1512,7451 1512,7557 L 1512,8405 C 1512,8511 1617,8617 1723,8617 L 4444,8617 C 4550,8617 4656,8511 4656,8405 L 4656,7557 C 4656,7451 4550,7346 4444,7346 L 1723,7346 Z M 1512,7346 L 1512,7346 Z M 4656,8617 L 4656,8617 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1723,7346 C 1617,7346 1512,7451 1512,7557 L 1512,8405 C 1512,8511 1617,8617 1723,8617 L 4444,8617 C 4550,8617 4656,8511 4656,8405 L 4656,7557 C 4656,7451 4550,7346 4444,7346 L 1723,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1513" y="7346" width="3144" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1887" y="7762"><tspan fill="rgb(178,178,178)" stroke="none">Service Definition</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1933" y="8080"><tspan fill="rgb(178,178,178)" stroke="none">XML files needed </tspan></tspan><tspan class="TextPosition" x="1777" y="8398"><tspan fill="rgb(178,178,178)" stroke="none">to build the Service</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2863" y="5352" width="1120" height="1996"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3956,5378 C 3374,5378 3138,5923 3091,7012"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 3085,7346 L 3321,6987 2864,6976 3085,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12333" y="7320" width="2848" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 12570,7346 C 12464,7346 12359,7451 12359,7557 L 12359,8405 C 12359,8511 12464,8617 12570,8617 L 14942,8617 C 15048,8617 15154,8511 15154,8405 L 15154,7557 C 15154,7451 15048,7346 14942,7346 L 12570,7346 Z M 12359,7346 L 12359,7346 Z M 15154,8617 L 15154,8617 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12570,7346 C 12464,7346 12359,7451 12359,7557 L 12359,8405 C 12359,8511 12464,8617 12570,8617 L 14942,8617 C 15048,8617 15154,8511 15154,8405 L 15154,7557 C 15154,7451 15048,7346 14942,7346 L 12570,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12359" y="7346" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="13089" y="7762"><tspan fill="rgb(178,178,178)" stroke="none">Bootstrap</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12931" y="8080"><tspan fill="rgb(178,178,178)" stroke="none">Self Hosting </tspan></tspan><tspan class="TextPosition" x="13142" y="8398"><tspan fill="rgb(178,178,178)" stroke="none">Compiler</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9751" y="7751" width="2635" height="459"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12359,7981 C 10405,7981 11547,7980 10105,7980"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 9752,7981 L 10116,8209 10116,7752 9752,7981 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12755" y="5353" width="1222" height="1994"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12781,5379 C 13431,5379 13696,5923 13748,7013"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 13757,7346 L 13975,6976 13518,6987 13757,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9752" y="5988" width="1532" height="2189"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 11257,6014 C 11257,7325 10866,7818 10083,7953"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 9752,7981 L 10135,8175 10095,7720 9752,7981 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-dependency-model-runtime.svg b/doc/source/images/arch-dependency-model-runtime.svg
new file mode 100644
index 000000000..dc758c844
--- /dev/null
+++ b/doc/source/images/arch-dependency-model-runtime.svg
@@ -0,0 +1,266 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="165.1mm" height="101.6mm" viewBox="0 0 16510 10160" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="16510" height="10160"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="X" horiz-adv-x="1562" d="M 220,1409 L 529,1409 753,938 1155,1409 1468,1409 868,732 1235,0 928,0 675,532 220,0 -94,0 558,736 220,1409 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="M" horiz-adv-x="1694" d="M 1206,0 L 1378,884 C 1385,921 1393,958 1402,996 1411,1033 1419,1068 1426,1099 1435,1136 1443,1171 1452,1206 1428,1154 1405,1104 1383,1055 1374,1034 1364,1013 1354,991 1343,969 1333,948 1323,927 1313,906 1304,886 1295,867 1286,848 1277,831 1269,816 L 857,0 647,0 553,819 C 552,832 550,847 548,865 546,882 544,901 542,922 539,943 537,964 535,986 532,1008 530,1029 528,1050 523,1099 518,1151 513,1206 508,1165 504,1125 499,1086 497,1069 495,1052 493,1034 490,1016 488,998 486,981 483,964 481,947 478,931 475,915 473,900 470,887 L 298,0 36,0 310,1409 705,1409 793,621 C 796,600 798,575 801,544 804,513 806,482 809,452 812,417 815,382 818,345 835,382 851,417 867,451 880,480 895,510 910,541 925,571 937,596 947,616 L 1349,1409 1742,1409 1468,0 1206,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1482" d="M 956,0 L 1074,604 448,604 330,0 36,0 309,1409 604,1409 495,848 1121,848 1230,1409 1514,1409 1240,0 956,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1012" y="1041" width="4923" height="2027"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1615" y="1978"><tspan fill="rgb(102,102,102)" stroke="none">Runtime scope for the </tspan></tspan><tspan class="TextPosition" x="1801" y="2372"><tspan fill="rgb(102,102,102)" stroke="none">Application element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6932" y="2216" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7169,2242 C 7063,2242 6958,2347 6958,2453 L 6958,3301 C 6958,3407 7063,3513 7169,3513 L 9541,3513 C 9647,3513 9753,3407 9753,3301 L 9753,2453 C 9753,2347 9647,2242 9541,2242 L 7169,2242 Z M 6958,2242 L 6958,2242 Z M 9753,3513 L 9753,3513 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7169,2242 C 7063,2242 6958,2347 6958,2453 L 6958,3301 C 6958,3407 7063,3513 7169,3513 L 9541,3513 C 9647,3513 9753,3407 9753,3301 L 9753,2453 C 9753,2347 9647,2242 9541,2242 L 7169,2242 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6958" y="2242" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7589" y="2976"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3929" y="4717" width="2975" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 4166,4743 C 4060,4743 3955,4848 3955,4954 L 3955,5802 C 3955,5908 4060,6014 4166,6014 L 6665,6014 C 6771,6014 6877,5908 6877,5802 L 6877,4954 C 6877,4848 6771,4743 6665,4743 L 4166,4743 Z M 3955,4743 L 3955,4743 Z M 6877,6014 L 6877,6014 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4166,4743 C 4060,4743 3955,4848 3955,4954 L 3955,5802 C 3955,5908 4060,6014 4166,6014 L 6665,6014 C 6771,6014 6877,5908 6877,5802 L 6877,4954 C 6877,4848 6771,4743 6665,4743 L 4166,4743 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3956" y="4743" width="2922" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4913" y="5159"><tspan fill="rgb(0,0,0)" stroke="none">Service</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="4638" y="5477"><tspan fill="rgb(102,102,102)" stroke="none">Required at </tspan></tspan><tspan class="TextPosition" x="4896" y="5795"><tspan fill="rgb(102,102,102)" stroke="none">runtime</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9707" y="4718" width="3102" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 9944,4744 C 9838,4744 9733,4849 9733,4955 L 9733,5803 C 9733,5909 9838,6015 9944,6015 L 12570,6015 C 12675,6015 12781,5909 12781,5803 L 12781,4955 C 12781,4849 12675,4744 12570,4744 L 9944,4744 Z M 9733,4744 L 9733,4744 Z M 12782,6015 L 12782,6015 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9944,4744 C 9838,4744 9733,4849 9733,4955 L 9733,5803 C 9733,5909 9838,6015 9944,6015 L 12570,6015 C 12675,6015 12781,5909 12781,5803 L 12781,4955 C 12781,4849 12675,4744 12570,4744 L 9944,4744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9733" y="4744" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10641" y="5160"><tspan fill="rgb(178,178,178)" stroke="none">Compiler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="10099" y="5478"><tspan fill="rgb(178,178,178)" stroke="none">Required at build </tspan></tspan><tspan class="TextPosition" x="10965" y="5796"><tspan fill="rgb(178,178,178)" stroke="none">time</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6932" y="7319" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7169,7345 C 7063,7345 6958,7450 6958,7556 L 6958,8404 C 6958,8510 7063,8616 7169,8616 L 9541,8616 C 9647,8616 9753,8510 9753,8404 L 9753,7556 C 9753,7450 9647,7345 9541,7345 L 7169,7345 Z M 6958,7345 L 6958,7345 Z M 9753,8616 L 9753,8616 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7169,7345 C 7063,7345 6958,7450 6958,7556 L 6958,8404 C 6958,8510 7063,8616 7169,8616 L 9541,8616 C 9647,8616 9753,8510 9753,8404 L 9753,7556 C 9753,7450 9647,7345 9541,7345 L 7169,7345 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6958" y="7345" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7411" y="7761"><tspan fill="rgb(0,0,0)" stroke="none">Base Runtime</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7382" y="8079"><tspan fill="rgb(102,102,102)" stroke="none">Required at all </tspan></tspan><tspan class="TextPosition" x="7985" y="8397"><tspan fill="rgb(102,102,102)" stroke="none">times</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5203" y="2851" width="1782" height="1894"/>
+ <path fill="none" stroke="rgb(0,0,204)" stroke-width="51" stroke-linejoin="round" d="M 6958,2877 C 5930,2877 5516,3388 5429,4411"/>
+ <path fill="rgb(0,0,204)" stroke="none" d="M 5417,4743 L 5660,4389 5204,4369 5417,4743 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9726" y="2851" width="1745" height="1894"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9752,2877 C 10756,2877 11159,3388 11244,4412"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 11258,4744 L 11470,4370 11013,4390 11258,4744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8126" y="3486" width="459" height="3860"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 8355,3512 L 8355,7011"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 8356,7345 L 8584,6981 8127,6981 8356,7345 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5390" y="5987" width="1570" height="2191"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 5416,6013 C 5416,7325 5820,7822 6627,7954"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 6958,7979 L 6614,7721 6575,8177 6958,7979 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9752" y="5988" width="1532" height="2189"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11257,6014 C 11257,7325 10866,7818 10083,7953"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 9752,7981 L 10135,8175 10095,7720 9752,7981 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6851" y="5150" width="2884" height="459"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6877,5378 C 8999,5378 7733,5379 9376,5379"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 9733,5378 L 9369,5150 9369,5607 9733,5378 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1486" y="7320" width="3197" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 1723,7346 C 1617,7346 1512,7451 1512,7557 L 1512,8405 C 1512,8511 1617,8617 1723,8617 L 4444,8617 C 4550,8617 4656,8511 4656,8405 L 4656,7557 C 4656,7451 4550,7346 4444,7346 L 1723,7346 Z M 1512,7346 L 1512,7346 Z M 4656,8617 L 4656,8617 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 1723,7346 C 1617,7346 1512,7451 1512,7557 L 1512,8405 C 1512,8511 1617,8617 1723,8617 L 4444,8617 C 4550,8617 4656,8511 4656,8405 L 4656,7557 C 4656,7451 4550,7346 4444,7346 L 1723,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1513" y="7346" width="3144" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1887" y="7762"><tspan fill="rgb(178,178,178)" stroke="none">Service Definition</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1933" y="8080"><tspan fill="rgb(178,178,178)" stroke="none">XML files needed </tspan></tspan><tspan class="TextPosition" x="1777" y="8398"><tspan fill="rgb(178,178,178)" stroke="none">to build the Service</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2863" y="5352" width="1120" height="1996"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3956,5378 C 3374,5378 3138,5923 3091,7012"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 3085,7346 L 3321,6987 2864,6976 3085,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12333" y="7320" width="2848" height="1324"/>
+ <path fill="rgb(221,221,221)" stroke="none" d="M 12570,7346 C 12464,7346 12359,7451 12359,7557 L 12359,8405 C 12359,8511 12464,8617 12570,8617 L 14942,8617 C 15048,8617 15154,8511 15154,8405 L 15154,7557 C 15154,7451 15048,7346 14942,7346 L 12570,7346 Z M 12359,7346 L 12359,7346 Z M 15154,8617 L 15154,8617 Z"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12570,7346 C 12464,7346 12359,7451 12359,7557 L 12359,8405 C 12359,8511 12464,8617 12570,8617 L 14942,8617 C 15048,8617 15154,8511 15154,8405 L 15154,7557 C 15154,7451 15048,7346 14942,7346 L 12570,7346 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12359" y="7346" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="13089" y="7762"><tspan fill="rgb(178,178,178)" stroke="none">Bootstrap</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12931" y="8080"><tspan fill="rgb(178,178,178)" stroke="none">Self Hosting </tspan></tspan><tspan class="TextPosition" x="13142" y="8398"><tspan fill="rgb(178,178,178)" stroke="none">Compiler</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9751" y="7751" width="2635" height="459"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12359,7981 C 10405,7981 11547,7980 10105,7980"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 9752,7981 L 10116,8209 10116,7752 9752,7981 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12755" y="5353" width="1222" height="1994"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12781,5379 C 13431,5379 13696,5923 13748,7013"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 13757,7346 L 13975,6976 13518,6987 13757,7346 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-dependency-model.svg b/doc/source/images/arch-dependency-model.svg
new file mode 100644
index 000000000..3c755b023
--- /dev/null
+++ b/doc/source/images/arch-dependency-model.svg
@@ -0,0 +1,299 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="215.9mm" height="101.6mm" viewBox="0 0 21590 10160" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="21590" height="10160"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="L" horiz-adv-x="1060" d="M 137,0 L 137,1409 432,1409 432,228 1188,228 1188,0 137,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1258" d="M 1393,715 C 1393,598 1375,495 1340,406 1305,317 1256,242 1195,182 1134,122 1061,77 978,46 894,15 804,0 707,0 L 137,0 137,1409 647,1409 C 756,1409 857,1395 948,1368 1039,1341 1118,1299 1184,1242 1250,1185 1301,1113 1338,1026 1375,939 1393,835 1393,715 Z M 1096,715 C 1096,797 1085,867 1063,926 1040,985 1009,1033 969,1071 929,1108 881,1136 826,1154 770,1172 708,1181 641,1181 L 432,1181 432,228 682,228 C 741,228 796,238 847,259 897,280 941,311 978,352 1015,393 1044,443 1065,504 1086,565 1096,635 1096,715 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="X" horiz-adv-x="1562" d="M 220,1409 L 529,1409 753,938 1155,1409 1468,1409 868,732 1235,0 928,0 675,532 220,0 -94,0 558,736 220,1409 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="M" horiz-adv-x="1694" d="M 1206,0 L 1378,884 C 1385,921 1393,958 1402,996 1411,1033 1419,1068 1426,1099 1435,1136 1443,1171 1452,1206 1428,1154 1405,1104 1383,1055 1374,1034 1364,1013 1354,991 1343,969 1333,948 1323,927 1313,906 1304,886 1295,867 1286,848 1277,831 1269,816 L 857,0 647,0 553,819 C 552,832 550,847 548,865 546,882 544,901 542,922 539,943 537,964 535,986 532,1008 530,1029 528,1050 523,1099 518,1151 513,1206 508,1165 504,1125 499,1086 497,1069 495,1052 493,1034 490,1016 488,998 486,981 483,964 481,947 478,931 475,915 473,900 470,887 L 298,0 36,0 310,1409 705,1409 793,621 C 796,600 798,575 801,544 804,513 806,482 809,452 812,417 815,382 818,345 835,382 851,417 867,451 880,480 895,510 910,541 925,571 937,596 947,616 L 1349,1409 1742,1409 1468,0 1206,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1482" d="M 956,0 L 1074,604 448,604 330,0 36,0 309,1409 604,1409 495,848 1121,848 1230,1409 1514,1409 1240,0 956,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ <glyph unicode="&amp;" horiz-adv-x="1297" d="M 49,354 C 49,412 60,464 81,511 102,558 132,600 170,637 208,674 253,707 305,736 357,765 414,790 475,811 471,824 467,838 463,855 459,872 455,890 452,910 449,929 446,950 444,972 441,993 440,1015 440,1037 440,1092 449,1142 468,1189 487,1235 514,1275 550,1309 586,1343 631,1370 684,1389 737,1408 799,1417 868,1417 918,1417 964,1412 1005,1401 1046,1390 1082,1374 1112,1353 1141,1331 1164,1304 1180,1272 1196,1240 1204,1203 1204,1160 1204,1103 1191,1054 1166,1011 1141,968 1107,929 1064,896 1021,862 971,832 914,805 857,778 798,752 736,727 746,699 756,671 767,644 778,617 790,590 804,563 817,536 833,508 850,481 867,453 886,424 908,395 957,447 1000,503 1038,564 1075,624 1110,689 1142,760 L 1329,677 C 1313,640 1295,603 1274,566 1253,529 1231,492 1208,457 1184,421 1159,387 1133,354 1106,321 1079,290 1051,261 1078,238 1107,222 1138,212 1169,202 1201,197 1235,197 1255,197 1275,198 1294,201 1313,204 1330,208 1346,213 L 1307,10 C 1285,3 1264,-3 1243,-7 1222,-10 1197,-12 1168,-12 1107,-12 1052,-2 1002,18 952,38 906,67 863,105 842,89 820,73 797,58 774,43 747,29 717,18 686,7 651,-2 610,-10 569,-16 520,-20 464,-20 330,-20 227,12 156,77 85,141 49,233 49,354 Z M 493,170 C 516,170 538,172 560,177 582,181 603,187 623,195 643,202 662,211 679,220 696,229 712,239 725,249 702,279 681,311 661,344 641,377 623,410 606,443 589,476 573,508 560,540 547,572 535,602 525,631 498,619 472,605 445,590 418,575 395,556 374,535 353,514 337,489 324,460 311,431 304,398 304,360 304,331 309,305 318,282 327,258 340,238 357,222 373,205 393,193 416,184 439,175 465,170 493,170 Z M 667,1041 C 667,1012 669,986 672,963 675,940 680,917 687,896 729,912 768,928 804,943 840,958 871,975 897,994 923,1013 943,1034 958,1058 973,1082 980,1110 980,1142 980,1176 969,1202 947,1220 924,1238 894,1247 855,1247 829,1247 805,1243 782,1234 759,1225 739,1213 722,1196 705,1179 691,1157 682,1131 672,1105 667,1075 667,1041 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6832" y="1615" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7069,1641 C 6963,1641 6858,1746 6858,1852 L 6858,2700 C 6858,2806 6963,2912 7069,2912 L 9441,2912 C 9547,2912 9653,2806 9653,2700 L 9653,1852 C 9653,1746 9547,1641 9441,1641 L 7069,1641 Z M 6858,1641 L 6858,1641 Z M 9653,2912 L 9653,2912 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7069,1641 C 6963,1641 6858,1746 6858,1852 L 6858,2700 C 6858,2806 6963,2912 7069,2912 L 9441,2912 C 9547,2912 9653,2806 9653,2700 L 9653,1852 C 9653,1746 9547,1641 9441,1641 L 7069,1641 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6858" y="1641" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7489" y="2375"><tspan fill="rgb(0,0,0)" stroke="none">Application</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3829" y="4116" width="2975" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 4066,4142 C 3960,4142 3855,4247 3855,4353 L 3855,5201 C 3855,5307 3960,5413 4066,5413 L 6565,5413 C 6671,5413 6777,5307 6777,5201 L 6777,4353 C 6777,4247 6671,4142 6565,4142 L 4066,4142 Z M 3855,4142 L 3855,4142 Z M 6777,5413 L 6777,5413 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4066,4142 C 3960,4142 3855,4247 3855,4353 L 3855,5201 C 3855,5307 3960,5413 4066,5413 L 6565,5413 C 6671,5413 6777,5307 6777,5201 L 6777,4353 C 6777,4247 6671,4142 6565,4142 L 4066,4142 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3856" y="4142" width="2922" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4813" y="4558"><tspan fill="rgb(0,0,0)" stroke="none">Service</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="4538" y="4876"><tspan fill="rgb(102,102,102)" stroke="none">Required at </tspan></tspan><tspan class="TextPosition" x="4796" y="5194"><tspan fill="rgb(102,102,102)" stroke="none">runtime</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9607" y="4117" width="3102" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 9844,4143 C 9738,4143 9633,4248 9633,4354 L 9633,5202 C 9633,5308 9738,5414 9844,5414 L 12470,5414 C 12575,5414 12681,5308 12681,5202 L 12681,4354 C 12681,4248 12575,4143 12470,4143 L 9844,4143 Z M 9633,4143 L 9633,4143 Z M 12682,5414 L 12682,5414 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9844,4143 C 9738,4143 9633,4248 9633,4354 L 9633,5202 C 9633,5308 9738,5414 9844,5414 L 12470,5414 C 12575,5414 12681,5308 12681,5202 L 12681,4354 C 12681,4248 12575,4143 12470,4143 L 9844,4143 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9633" y="4143" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10541" y="4559"><tspan fill="rgb(0,0,0)" stroke="none">Compiler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="9999" y="4877"><tspan fill="rgb(102,102,102)" stroke="none">Required at build </tspan></tspan><tspan class="TextPosition" x="10865" y="5195"><tspan fill="rgb(102,102,102)" stroke="none">time</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6832" y="6718" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7069,6744 C 6963,6744 6858,6849 6858,6955 L 6858,7803 C 6858,7909 6963,8015 7069,8015 L 9441,8015 C 9547,8015 9653,7909 9653,7803 L 9653,6955 C 9653,6849 9547,6744 9441,6744 L 7069,6744 Z M 6858,6744 L 6858,6744 Z M 9653,8015 L 9653,8015 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7069,6744 C 6963,6744 6858,6849 6858,6955 L 6858,7803 C 6858,7909 6963,8015 7069,8015 L 9441,8015 C 9547,8015 9653,7909 9653,7803 L 9653,6955 C 9653,6849 9547,6744 9441,6744 L 7069,6744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6858" y="6744" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7311" y="7160"><tspan fill="rgb(0,0,0)" stroke="none">Base Runtime</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7282" y="7478"><tspan fill="rgb(102,102,102)" stroke="none">Required at all </tspan></tspan><tspan class="TextPosition" x="7885" y="7796"><tspan fill="rgb(102,102,102)" stroke="none">times</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5103" y="2250" width="1782" height="1894"/>
+ <path fill="none" stroke="rgb(0,0,204)" stroke-width="51" stroke-linejoin="round" d="M 6858,2276 C 5830,2276 5416,2787 5329,3810"/>
+ <path fill="rgb(0,0,204)" stroke="none" d="M 5317,4142 L 5560,3788 5104,3768 5317,4142 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9626" y="2250" width="1745" height="1894"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 9652,2276 C 10656,2276 11059,2787 11144,3811"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 11158,4143 L 11370,3769 10913,3789 11158,4143 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8026" y="2885" width="459" height="3860"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 8255,2911 L 8255,6410"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 8256,6744 L 8484,6380 8027,6380 8256,6744 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5290" y="5386" width="1570" height="2191"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 5316,5412 C 5316,6724 5720,7221 6527,7353"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 6858,7378 L 6514,7120 6475,7576 6858,7378 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9652" y="5387" width="1532" height="2189"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 11157,5413 C 11157,6724 10766,7217 9983,7352"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 9652,7380 L 10035,7574 9995,7119 9652,7380 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="17117" y="6612" width="1641" height="459"/>
+ <path fill="none" stroke="rgb(102,0,204)" stroke-width="51" stroke-linejoin="round" d="M 17143,6840 C 18353,6840 17704,6841 18417,6841"/>
+ <path fill="rgb(102,0,204)" stroke="none" d="M 18756,6840 L 18392,6612 18392,7069 18756,6840 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15625" y="1609" width="4626" height="6404"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 16085,1635 C 15868,1635 15651,1852 15651,2069 L 15651,7551 C 15651,7768 15868,7986 16085,7986 L 19789,7986 C 20006,7986 20224,7768 20224,7551 L 20224,2069 C 20224,1852 20006,1635 19789,1635 L 16085,1635 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15664" y="1644" width="4560" height="6342"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="700"><tspan class="TextPosition" x="17317" y="2087"><tspan fill="rgb(0,0,0)" stroke="none">Legend</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="16710" y="3133"><tspan fill="rgb(204,0,0)" stroke="none">Build Dependency</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="16496" y="4723"><tspan fill="rgb(0,0,204)" stroke="none">Runtime Dependency</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="15960" y="6313"><tspan fill="rgb(102,0,204)" stroke="none">Build &amp; Runtime Dependency</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="17108" y="5013" width="1641" height="459"/>
+ <path fill="none" stroke="rgb(0,0,204)" stroke-width="51" stroke-linejoin="round" d="M 17134,5241 C 18343,5241 17694,5242 18408,5242"/>
+ <path fill="rgb(0,0,204)" stroke="none" d="M 18747,5241 L 18383,5013 18383,5470 18747,5241 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="17108" y="3413" width="1641" height="459"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 17134,3641 C 18343,3641 17694,3642 18408,3642"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 18747,3641 L 18383,3413 18383,3870 18747,3641 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6751" y="4549" width="2884" height="459"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 6777,4777 C 8899,4777 7633,4778 9276,4778"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 9633,4777 L 9269,4549 9269,5006 9633,4777 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1386" y="6719" width="3197" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 1623,6745 C 1517,6745 1412,6850 1412,6956 L 1412,7804 C 1412,7910 1517,8016 1623,8016 L 4344,8016 C 4450,8016 4556,7910 4556,7804 L 4556,6956 C 4556,6850 4450,6745 4344,6745 L 1623,6745 Z M 1412,6745 L 1412,6745 Z M 4556,8016 L 4556,8016 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 1623,6745 C 1517,6745 1412,6850 1412,6956 L 1412,7804 C 1412,7910 1517,8016 1623,8016 L 4344,8016 C 4450,8016 4556,7910 4556,7804 L 4556,6956 C 4556,6850 4450,6745 4344,6745 L 1623,6745 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1413" y="6745" width="3144" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1787" y="7161"><tspan fill="rgb(0,0,0)" stroke="none">Service Definition</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1833" y="7479"><tspan fill="rgb(102,102,102)" stroke="none">XML files needed </tspan></tspan><tspan class="TextPosition" x="1677" y="7797"><tspan fill="rgb(102,102,102)" stroke="none">to build the Service</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2763" y="4751" width="1120" height="1996"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 3856,4777 C 3274,4777 3038,5322 2991,6411"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 2985,6745 L 3221,6386 2764,6375 2985,6745 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12233" y="6719" width="2848" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 12470,6745 C 12364,6745 12259,6850 12259,6956 L 12259,7804 C 12259,7910 12364,8016 12470,8016 L 14842,8016 C 14948,8016 15054,7910 15054,7804 L 15054,6956 C 15054,6850 14948,6745 14842,6745 L 12470,6745 Z M 12259,6745 L 12259,6745 Z M 15054,8016 L 15054,8016 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 12470,6745 C 12364,6745 12259,6850 12259,6956 L 12259,7804 C 12259,7910 12364,8016 12470,8016 L 14842,8016 C 14948,8016 15054,7910 15054,7804 L 15054,6956 C 15054,6850 14948,6745 14842,6745 L 12470,6745 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12259" y="6745" width="2795" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12989" y="7161"><tspan fill="rgb(0,0,0)" stroke="none">Bootstrap</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12831" y="7479"><tspan fill="rgb(102,102,102)" stroke="none">Self Hosting </tspan></tspan><tspan class="TextPosition" x="13042" y="7797"><tspan fill="rgb(102,102,102)" stroke="none">Compiler</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9651" y="7150" width="2635" height="459"/>
+ <path fill="none" stroke="rgb(0,0,204)" stroke-width="51" stroke-linejoin="round" d="M 12259,7380 C 10305,7380 11447,7379 10005,7379"/>
+ <path fill="rgb(0,0,204)" stroke="none" d="M 9652,7380 L 10016,7608 10016,7151 9652,7380 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12655" y="4752" width="1222" height="1994"/>
+ <path fill="none" stroke="rgb(204,0,0)" stroke-width="51" stroke-linejoin="round" d="M 12681,4778 C 13331,4778 13596,5322 13648,6412"/>
+ <path fill="rgb(204,0,0)" stroke="none" d="M 13657,6745 L 13875,6375 13418,6386 13657,6745 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-overview.svg b/doc/source/images/arch-overview.svg
new file mode 100644
index 000000000..69c837465
--- /dev/null
+++ b/doc/source/images/arch-overview.svg
@@ -0,0 +1,2058 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="215.9mm" height="457.2mm" viewBox="0 0 21590 45720" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="21590" height="45720"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1046" d="M 604,1 C 579,-64 553,-123 527,-175 500,-227 471,-272 438,-309 405,-346 369,-374 329,-394 289,-413 243,-423 191,-423 168,-423 147,-423 128,-423 109,-423 88,-420 67,-414 L 67,-279 C 80,-282 94,-284 110,-284 126,-284 140,-284 151,-284 204,-284 253,-264 298,-225 343,-186 383,-124 417,-38 L 434,5 5,1082 197,1082 425,484 C 432,466 440,442 451,412 461,382 471,352 482,322 492,292 501,265 509,241 517,217 522,202 523,196 525,203 530,218 538,240 545,261 554,285 564,312 573,339 583,366 593,393 603,420 611,444 618,464 L 830,1082 1020,1082 604,1 Z"/>
+ <glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 792,698 C 787,716 781,738 776,765 770,792 764,818 759,843 752,872 746,903 740,934 734,904 728,874 721,845 716,820 710,793 704,766 697,739 691,715 686,694 L 508,0 300,0 -3,1082 175,1082 358,347 C 363,332 367,313 372,291 377,268 381,246 386,225 391,200 396,175 401,149 406,174 412,199 418,223 423,244 429,265 434,286 439,307 444,325 448,339 L 644,1082 837,1082 1026,339 C 1031,322 1036,302 1041,280 1046,258 1051,237 1056,218 1061,195 1067,172 1072,149 1077,174 1083,199 1088,223 1093,244 1098,265 1103,288 1108,310 1112,330 1117,347 L 1308,1082 1484,1082 1174,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="888" d="M 314,1082 L 314,396 C 314,343 318,299 326,264 333,229 346,200 363,179 380,157 403,142 432,133 460,124 495,119 537,119 580,119 618,127 653,142 687,157 716,178 741,207 765,235 784,270 797,312 810,353 817,401 817,455 L 817,1082 997,1082 997,228 C 997,205 997,181 998,156 998,131 998,107 999,85 1000,62 1000,43 1001,27 1002,11 1002,3 1003,3 L 833,3 C 832,6 832,15 831,30 830,44 830,61 829,79 828,98 827,117 826,136 825,156 825,172 825,185 L 822,185 C 805,154 786,125 765,100 744,75 720,53 693,36 666,18 634,4 599,-6 564,-15 523,-20 476,-20 416,-20 364,-13 321,2 278,17 242,39 214,70 186,101 166,140 153,188 140,236 133,294 133,361 L 133,1082 314,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 527,1 499,-5 471,-10 442,-14 409,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 467,127 484,128 501,131 517,134 535,137 554,141 L 554,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="888" d="M 950,299 C 950,248 940,203 921,164 901,124 872,91 835,64 798,37 752,16 698,2 643,-13 581,-20 511,-20 448,-20 392,-15 342,-6 291,4 247,20 209,41 171,62 139,91 114,126 88,161 69,203 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 550,117 585,120 618,125 650,130 678,140 701,153 724,166 743,183 756,205 769,226 775,253 775,285 775,318 767,345 752,366 737,387 715,404 688,418 661,432 628,444 589,455 550,465 507,476 460,489 417,500 374,513 331,527 288,541 250,560 216,583 181,606 153,634 132,668 111,702 100,745 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 763,842 752,866 736,885 720,904 701,919 678,931 655,942 630,951 602,956 573,961 544,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,785 282,761 297,742 311,723 331,707 357,694 382,681 413,669 449,660 485,650 525,640 568,629 597,622 626,614 656,606 686,597 715,587 744,576 772,564 799,550 824,535 849,519 870,500 889,478 908,456 923,430 934,401 945,372 950,338 950,299 Z"/>
+ <glyph unicode="r" horiz-adv-x="517" d="M 142,0 L 142,830 C 142,853 142,876 142,900 141,923 141,946 140,968 139,990 139,1011 138,1030 137,1049 137,1067 136,1082 L 306,1082 C 307,1067 308,1049 309,1030 310,1010 311,990 312,969 313,948 313,929 314,910 314,891 314,874 314,861 L 318,861 C 331,902 344,938 359,969 373,999 390,1024 409,1044 428,1063 451,1078 478,1088 505,1097 537,1102 575,1102 590,1102 604,1101 617,1099 630,1096 641,1094 648,1092 L 648,927 C 636,930 622,933 606,935 590,936 572,937 552,937 511,937 476,928 447,909 418,890 394,865 376,832 357,799 344,759 335,714 326,668 322,618 322,564 L 322,0 142,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="927" d="M 1053,546 C 1053,464 1046,388 1033,319 1020,250 998,190 967,140 936,90 895,51 844,23 793,-6 730,-20 655,-20 578,-20 510,-5 452,24 394,53 350,101 319,168 L 314,168 C 315,167 315,161 316,150 316,139 316,126 317,110 317,94 317,76 318,57 318,37 318,17 318,-2 L 318,-425 138,-425 138,864 C 138,891 138,916 138,940 137,964 137,986 136,1005 135,1025 135,1042 134,1056 133,1070 133,1077 132,1077 L 306,1077 C 307,1075 308,1068 309,1057 310,1045 311,1031 312,1014 313,998 314,980 315,961 316,943 316,925 316,908 L 320,908 C 337,943 356,972 377,997 398,1021 423,1041 450,1057 477,1072 508,1084 542,1091 575,1098 613,1101 655,1101 730,1101 793,1088 844,1061 895,1034 936,997 967,949 998,900 1020,842 1033,774 1046,705 1053,629 1053,546 Z M 864,542 C 864,609 860,668 852,720 844,772 830,816 811,852 791,888 765,915 732,934 699,953 658,962 609,962 569,962 531,956 496,945 461,934 430,912 404,880 377,848 356,804 341,748 326,691 318,618 318,528 318,451 324,387 337,334 350,281 368,238 393,205 417,172 447,149 483,135 519,120 560,113 607,113 657,113 699,123 732,142 765,161 791,189 811,226 830,263 844,308 852,361 860,414 864,474 864,542 Z"/>
+ <glyph unicode="o" horiz-adv-x="953" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z"/>
+ <glyph unicode="m" horiz-adv-x="1443" d="M 768,0 L 768,686 C 768,739 765,783 758,818 751,853 740,882 725,904 709,925 688,941 663,950 638,959 607,963 570,963 532,963 498,956 467,941 436,926 410,904 389,876 367,847 350,812 339,771 327,729 321,681 321,627 L 321,0 142,0 142,853 C 142,876 142,900 142,925 141,950 141,974 140,996 139,1019 139,1038 138,1054 137,1070 137,1078 136,1078 L 306,1078 C 307,1075 307,1066 308,1052 309,1037 310,1021 311,1002 312,984 312,965 313,945 314,926 314,910 314,897 L 317,897 C 333,928 350,957 369,982 388,1007 410,1029 435,1047 460,1064 488,1078 521,1088 553,1097 590,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 946,928 964,957 984,982 1004,1007 1027,1029 1054,1047 1081,1064 1111,1078 1144,1088 1177,1097 1215,1102 1258,1102 1313,1102 1360,1095 1400,1080 1439,1065 1472,1043 1497,1012 1522,981 1541,942 1553,894 1565,845 1571,788 1571,721 L 1571,0 1393,0 1393,686 C 1393,739 1390,783 1383,818 1376,853 1365,882 1350,904 1334,925 1313,941 1288,950 1263,959 1232,963 1195,963 1157,963 1123,956 1092,942 1061,927 1035,906 1014,878 992,850 975,815 964,773 952,731 946,682 946,627 L 946,0 768,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 486,-425 431,-419 383,-406 335,-393 294,-375 260,-352 226,-328 198,-300 177,-267 156,-234 140,-198 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 594,-288 631,-282 664,-271 697,-260 726,-241 749,-217 772,-191 790,-159 803,-119 816,-79 822,-30 822,27 L 822,201 820,201 C 807,174 790,148 771,123 751,98 727,75 699,56 670,37 637,21 600,10 563,-2 520,-8 472,-8 403,-8 345,4 296,27 247,50 207,84 176,130 145,176 122,233 108,302 93,370 86,449 86,539 86,626 93,704 108,773 122,842 145,901 178,950 210,998 252,1035 304,1061 355,1086 418,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,914 825,933 826,953 827,974 828,994 829,1012 830,1031 831,1046 832,1060 833,1073 835,1080 836,1080 L 1007,1080 C 1006,1074 1006,1064 1005,1050 1004,1035 1004,1018 1003,998 1002,978 1002,956 1002,932 1001,907 1001,882 1001,856 L 1001,30 C 1001,-121 964,-234 890,-311 815,-387 701,-425 548,-425 Z M 822,541 C 822,616 814,681 798,735 781,788 760,832 733,866 706,900 676,925 642,941 607,957 572,965 536,965 490,965 451,957 418,941 385,925 357,900 336,866 314,831 298,787 288,734 277,680 272,616 272,541 272,463 277,398 288,345 298,292 314,249 335,216 356,183 383,160 416,146 449,132 488,125 533,125 569,125 604,133 639,148 673,163 704,188 731,221 758,254 780,297 797,350 814,403 822,466 822,541 Z"/>
+ <glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1243 185,1280 192,1314 199,1347 213,1377 233,1402 252,1427 279,1446 313,1461 347,1475 391,1482 445,1482 466,1482 489,1481 512,1479 535,1477 555,1474 572,1470 L 572,1333 C 561,1335 548,1337 533,1339 518,1340 504,1341 492,1341 465,1341 444,1337 427,1330 410,1323 396,1312 387,1299 377,1285 370,1268 367,1248 363,1228 361,1205 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+ <glyph unicode="e" horiz-adv-x="953" d="M 276,503 C 276,446 282,394 294,347 305,299 323,258 348,224 372,189 403,163 441,144 479,125 525,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 1008,206 992,176 972,146 951,115 924,88 890,64 856,39 814,19 763,4 712,-12 650,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,649 100,735 125,806 150,876 185,933 229,977 273,1021 324,1053 383,1073 442,1092 504,1102 571,1102 662,1102 738,1087 799,1058 860,1029 909,988 946,937 983,885 1009,824 1025,754 1040,684 1048,608 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 538,969 507,964 474,955 441,945 410,928 382,903 354,878 330,845 311,803 292,760 281,706 278,641 L 862,641 Z"/>
+ <glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 C 823,921 823,931 823,946 822,960 822,975 822,991 821,1006 821,1021 821,1035 821,1049 821,1059 821,1065 L 821,1484 1001,1484 1001,219 C 1001,193 1001,168 1002,143 1002,119 1002,97 1003,77 1004,57 1004,40 1005,26 1006,11 1006,4 1007,4 L 835,4 C 834,11 833,20 832,32 831,44 830,58 829,73 828,89 827,105 826,123 825,140 825,157 825,174 L 821,174 Z M 275,542 C 275,467 280,403 289,350 298,297 313,253 334,219 355,184 381,159 413,143 445,127 484,119 530,119 577,119 619,127 656,142 692,157 722,182 747,217 771,251 789,296 802,351 815,406 821,474 821,554 821,631 815,696 802,749 789,802 771,844 746,877 721,910 691,933 656,948 620,962 579,969 532,969 488,969 450,961 418,946 386,931 359,906 338,872 317,838 301,794 291,740 280,685 275,619 275,542 Z"/>
+ <glyph unicode="c" horiz-adv-x="874" d="M 275,546 C 275,484 280,427 289,375 298,323 313,278 334,241 355,203 384,174 419,153 454,132 497,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 964,283 951,239 931,197 911,155 884,118 850,86 815,54 773,28 724,9 675,-10 618,-20 553,-20 468,-20 396,-6 337,23 278,52 230,91 193,142 156,192 129,251 112,320 95,388 87,462 87,542 87,615 93,679 105,735 117,790 134,839 156,881 177,922 203,957 232,986 261,1014 293,1037 328,1054 362,1071 398,1083 436,1091 474,1098 512,1102 551,1102 612,1102 666,1094 713,1077 760,1060 801,1038 836,1009 870,980 898,945 919,906 940,867 955,824 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 495,961 452,953 418,936 383,919 355,893 334,859 313,824 298,781 289,729 280,677 275,616 275,546 Z"/>
+ <glyph unicode="a" horiz-adv-x="1046" d="M 414,-20 C 305,-20 224,9 169,66 114,124 87,203 87,303 87,375 101,434 128,480 155,526 190,562 234,588 277,614 327,632 383,642 439,652 496,657 554,657 L 797,657 797,717 C 797,762 792,800 783,832 774,863 759,889 740,908 721,928 697,942 668,951 639,960 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,125 606,146 649,167 684,194 713,226 741,259 762,294 776,332 790,371 797,408 797,443 L 797,531 600,531 C 556,531 514,528 475,522 435,517 400,506 370,489 340,472 316,449 299,418 281,388 272,349 272,300 272,241 288,195 320,163 351,131 396,115 455,115 Z"/>
+ <glyph unicode="." horiz-adv-x="200" d="M 187,0 L 187,219 382,219 382,0 187,0 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1271" d="M 501,0 C 464,-63 429,-121 395,-173 361,-225 325,-270 288,-307 251,-344 210,-373 167,-394 123,-415 73,-425 16,-425 -6,-425 -28,-424 -52,-422 -74,-419 -96,-416 -116,-411 L -85,-277 C -74,-279 -61,-281 -47,-283 -32,-284 -19,-285 -8,-285 55,-285 111,-264 160,-221 208,-178 255,-116 302,-35 L 329,12 112,1082 295,1082 407,484 C 411,463 415,438 420,410 425,382 429,354 433,327 437,299 441,273 444,250 447,226 448,208 449,196 456,211 464,229 475,250 486,271 498,293 511,317 524,340 537,365 551,390 564,415 577,439 590,462 L 928,1082 1127,1082 501,0 Z"/>
+ <glyph unicode="x" horiz-adv-x="1191" d="M 706,0 L 497,444 117,0 -82,0 410,556 146,1082 335,1082 528,661 878,1082 1084,1082 615,558 896,0 706,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1482" d="M 1068,0 L 859,0 822,698 C 821,711 821,731 820,757 819,783 819,809 818,836 817,867 817,900 816,934 804,904 792,874 780,845 769,820 758,793 747,766 735,739 724,715 715,694 L 402,0 194,0 102,1082 280,1082 320,347 C 321,339 321,326 322,308 323,289 323,270 324,250 325,229 325,210 326,191 327,172 327,158 327,149 337,173 347,197 357,220 366,240 375,261 384,283 393,305 401,324 408,339 L 749,1082 942,1082 986,339 C 988,303 990,268 991,235 992,202 992,173 992,149 1002,173 1012,197 1023,220 1032,240 1042,261 1052,284 1061,307 1070,328 1079,347 L 1413,1082 1589,1082 1068,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1046" d="M 507,0 L 294,0 112,1082 299,1082 400,378 C 402,363 404,346 407,325 409,304 411,282 413,259 415,236 417,215 419,194 420,173 422,155 423,141 430,155 439,173 449,194 459,215 470,236 481,258 492,280 503,302 514,323 525,344 534,361 542,376 L 926,1082 1122,1082 507,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1006" d="M 415,1082 L 289,437 C 284,411 279,385 276,358 273,331 271,307 271,287 271,234 285,193 313,164 341,135 387,120 450,120 493,120 533,129 571,146 608,163 642,187 673,218 704,249 730,286 752,330 773,373 789,422 800,476 L 918,1082 1098,1082 932,228 C 927,205 923,181 919,156 914,131 910,107 907,85 903,62 900,43 898,27 895,11 894,3 893,3 L 723,3 C 723,6 724,15 726,30 728,44 731,61 734,79 737,98 740,117 743,136 746,156 748,172 751,185 L 748,185 C 725,154 702,125 678,100 654,75 628,53 599,36 570,18 538,4 503,-5 468,-14 428,-19 383,-19 284,-19 210,5 161,54 111,103 86,173 86,265 86,289 88,316 93,346 97,376 102,404 107,429 L 234,1082 415,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="557" d="M 448,4 C 423,-2 396,-7 367,-13 338,-17 307,-20 275,-20 218,-20 174,-3 142,31 109,65 93,110 93,166 93,187 95,210 98,235 101,259 105,279 108,296 L 234,951 109,951 135,1082 262,1082 367,1324 487,1324 440,1082 640,1082 614,951 414,951 289,306 C 286,293 284,276 281,257 278,238 277,222 277,211 277,183 284,161 298,146 312,131 335,123 367,123 384,123 401,124 416,127 431,129 448,132 467,137 L 448,4 Z"/>
+ <glyph unicode="s" horiz-adv-x="980" d="M 907,317 C 907,260 896,211 873,169 850,126 818,91 777,63 735,35 684,14 625,1 566,-13 499,-20 425,-20 363,-20 309,-15 262,-4 215,7 175,22 142,43 108,63 80,88 58,119 35,149 18,184 5,223 L 152,279 C 162,252 175,229 191,208 206,187 226,169 249,155 272,140 299,129 331,122 362,115 399,111 441,111 484,111 523,115 559,122 594,129 625,140 651,155 676,170 696,190 711,214 725,238 732,267 732,301 732,328 726,351 713,370 700,389 683,405 660,420 637,434 609,447 576,460 543,472 506,484 465,497 422,511 381,526 342,543 303,560 268,580 239,603 209,626 185,654 168,686 150,717 141,754 141,797 141,852 153,898 177,937 200,975 232,1006 273,1030 313,1054 360,1072 414,1083 467,1094 524,1099 584,1099 639,1099 689,1094 734,1085 779,1076 819,1061 853,1041 887,1020 915,994 937,962 959,929 974,890 982,844 L 819,819 C 804,872 777,910 736,933 695,956 641,968 572,968 537,968 504,965 473,960 442,955 414,946 391,934 368,922 349,906 336,887 322,868 315,844 315,817 315,790 321,767 334,749 347,730 365,714 388,700 411,686 438,674 471,663 503,652 539,640 579,627 617,615 656,601 695,585 734,569 769,549 800,526 831,502 857,473 877,440 897,406 907,365 907,317 Z"/>
+ <glyph unicode="r" horiz-adv-x="715" d="M 718,938 C 707,941 693,944 678,947 662,950 645,951 628,951 585,951 547,939 513,914 479,889 449,858 424,820 398,782 377,740 360,695 343,649 331,605 324,564 L 214,0 34,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 237,1067 239,1082 L 409,1082 C 407,1067 405,1050 402,1030 399,1010 395,990 392,969 389,948 386,929 383,910 380,891 377,874 374,861 L 378,861 C 399,902 419,938 440,969 460,999 481,1024 503,1044 525,1063 549,1078 574,1088 599,1097 626,1102 656,1102 663,1102 671,1102 680,1101 689,1100 698,1098 707,1097 716,1096 724,1094 732,1093 740,1091 746,1089 751,1088 L 718,938 Z"/>
+ <glyph unicode="p" horiz-adv-x="1139" d="M 554,-20 C 472,-20 405,-3 354,32 302,67 265,115 244,178 L 239,178 C 239,177 238,170 237,159 236,147 234,132 231,115 228,98 225,79 222,58 218,37 214,17 210,-2 L 128,-425 -51,-425 198,864 C 203,891 208,916 212,940 216,964 220,986 223,1005 226,1025 228,1042 230,1056 231,1070 232,1077 233,1077 L 400,1077 C 400,1072 400,1063 399,1052 398,1040 397,1027 396,1013 394,998 392,983 390,967 388,950 386,935 383,921 L 387,921 C 411,952 436,979 461,1002 486,1025 512,1044 541,1059 569,1074 599,1085 632,1092 665,1099 701,1102 741,1102 794,1102 842,1094 883,1077 924,1060 959,1037 987,1006 1015,975 1036,938 1051,895 1066,851 1073,802 1073,748 1073,715 1072,678 1069,639 1066,599 1060,558 1052,516 1034,421 1010,340 981,273 952,205 916,149 875,106 834,63 786,31 733,11 680,-10 620,-20 554,-20 Z M 689,963 C 646,963 606,957 568,944 529,931 494,910 461,879 428,848 400,806 375,753 350,700 329,634 314,554 301,489 295,430 295,377 295,334 301,297 312,264 323,231 340,203 361,181 382,158 407,141 437,130 466,119 499,113 535,113 576,113 614,119 647,132 680,144 711,165 738,196 765,226 788,267 809,318 830,369 847,433 862,510 877,591 885,659 885,716 885,798 869,860 838,901 807,942 757,963 689,963 Z"/>
+ <glyph unicode="o" horiz-adv-x="1007" d="M 1074,683 C 1074,648 1072,614 1068,579 1064,544 1057,506 1048,467 1028,379 1000,304 965,242 929,180 887,130 839,91 791,52 738,24 679,7 620,-11 558,-20 491,-20 427,-20 369,-10 317,10 265,29 221,58 184,96 147,133 118,179 98,234 77,288 67,350 67,419 68,450 70,483 73,516 76,549 81,584 89,620 108,704 135,776 169,837 203,897 243,947 290,986 337,1025 390,1054 449,1073 508,1092 572,1101 642,1101 713,1101 775,1092 829,1073 882,1054 927,1027 964,991 1000,955 1027,911 1046,860 1065,808 1074,749 1074,683 Z M 888,683 C 888,734 882,778 871,814 860,850 843,880 822,903 800,926 774,942 743,953 712,964 678,969 640,969 605,969 569,965 534,957 498,948 464,931 432,906 399,881 370,845 343,798 316,751 294,689 276,612 267,575 261,541 258,508 254,475 252,444 252,416 252,361 258,315 271,276 284,237 301,206 324,182 346,158 372,141 403,130 433,119 466,113 502,113 538,113 574,117 609,125 644,133 677,150 708,176 739,201 768,238 795,285 821,332 843,395 861,473 870,513 877,550 881,583 884,616 887,650 888,683 Z"/>
+ <glyph unicode="n" horiz-adv-x="1006" d="M 717,0 L 843,645 C 848,671 853,698 856,725 859,752 861,775 861,795 861,848 847,889 819,918 791,947 745,962 682,962 639,962 599,954 562,937 524,920 490,896 459,865 428,834 402,796 381,753 359,709 343,660 332,606 L 214,0 34,0 200,853 C 205,876 209,900 214,925 218,950 222,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 409,1078 C 409,1075 408,1066 406,1052 404,1037 402,1021 399,1002 396,984 393,965 390,945 387,926 384,910 381,897 L 384,897 C 407,928 430,957 454,982 478,1007 505,1029 534,1047 563,1064 595,1078 630,1087 665,1096 704,1101 749,1101 848,1101 922,1077 972,1028 1021,979 1046,909 1046,817 1046,793 1044,766 1040,736 1035,706 1030,678 1025,653 L 898,0 717,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 660,0 L 784,634 C 787,647 790,662 793,678 796,694 798,710 801,726 803,742 805,757 807,772 808,786 809,798 809,808 809,858 796,896 771,923 746,949 704,962 647,962 609,962 573,954 539,937 504,920 473,896 446,865 419,834 395,796 375,752 355,707 340,658 331,604 L 213,0 34,0 200,853 C 205,876 209,900 214,925 218,950 222,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 409,1078 C 409,1075 408,1066 406,1052 404,1037 402,1021 399,1002 396,984 393,965 390,945 387,926 384,910 381,897 L 384,897 C 404,928 425,957 446,982 467,1007 491,1029 516,1047 541,1064 570,1078 601,1087 632,1096 667,1101 706,1101 787,1101 851,1081 898,1042 945,1002 974,944 983,869 1004,902 1026,933 1049,961 1072,989 1097,1014 1125,1035 1152,1056 1183,1072 1217,1084 1250,1095 1288,1101 1331,1101 1421,1101 1490,1077 1539,1028 1587,979 1611,909 1611,817 1611,793 1609,766 1605,736 1600,706 1595,678 1590,653 L 1463,0 1285,0 1409,634 C 1412,647 1415,662 1418,678 1421,694 1423,710 1426,726 1428,742 1430,757 1432,772 1433,786 1434,798 1434,808 1434,858 1421,896 1396,923 1371,949 1329,962 1272,962 1234,962 1198,954 1164,937 1129,920 1098,897 1071,866 1044,835 1020,798 1000,754 980,710 965,661 956,607 L 838,0 660,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="477" d="M 33,0 L 321,1484 501,1484 212,0 33,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1085" d="M 721,0 L 453,502 285,378 213,0 34,0 322,1484 502,1484 323,567 527,757 888,1082 1110,1082 580,617 916,0 721,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="742" d="M 289,1312 L 322,1484 502,1484 469,1312 289,1312 Z M -100,-425 C -123,-425 -145,-423 -169,-421 -191,-417 -212,-414 -229,-411 L -206,-275 C -197,-276 -185,-278 -168,-280 -151,-282 -136,-283 -123,-283 -84,-283 -54,-269 -34,-241 -14,-213 2,-168 13,-107 L 244,1082 424,1082 187,-134 C 179,-175 169,-214 156,-249 143,-284 125,-315 103,-341 81,-367 54,-387 21,-403 -12,-417 -53,-425 -100,-425 Z"/>
+ <glyph unicode="i" horiz-adv-x="477" d="M 287,1312 L 321,1484 501,1484 467,1312 287,1312 Z M 33,0 L 243,1082 423,1082 212,0 33,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1006" d="M 383,897 C 406,928 429,957 453,982 477,1007 504,1029 533,1047 562,1064 594,1078 629,1087 664,1096 703,1101 748,1101 847,1101 921,1077 971,1028 1020,979 1045,909 1045,817 1045,793 1043,766 1039,736 1034,706 1029,678 1024,653 L 897,0 716,0 842,645 C 847,671 852,698 855,725 858,752 860,775 860,795 860,848 846,889 818,918 790,947 744,962 681,962 638,962 598,954 561,937 523,920 489,896 458,865 427,834 401,796 380,753 358,709 342,660 331,606 L 213,0 34,0 322,1484 502,1484 427,1098 C 423,1076 419,1054 414,1032 409,1010 404,990 399,972 394,953 390,937 387,924 384,911 381,902 380,897 L 383,897 Z"/>
+ <glyph unicode="g" horiz-adv-x="1139" d="M 397,-425 C 335,-425 281,-419 235,-407 189,-394 150,-377 119,-355 87,-333 62,-306 44,-276 25,-244 12,-210 4,-173 L 167,-131 C 178,-182 204,-220 243,-248 282,-274 334,-288 401,-288 449,-288 491,-282 528,-270 565,-257 596,-238 623,-213 649,-188 671,-155 689,-116 706,-76 720,-28 731,27 734,44 738,63 742,83 746,103 750,122 753,139 757,160 761,180 765,201 L 763,201 C 744,174 725,148 704,123 683,98 658,75 631,56 604,37 572,21 536,10 500,-2 458,-8 410,-8 357,-8 310,1 268,20 226,38 190,63 161,96 132,128 109,167 94,212 78,257 70,306 70,359 70,392 72,426 76,463 79,499 85,538 93,580 126,754 183,884 263,971 342,1058 451,1101 588,1101 626,1101 662,1097 696,1088 730,1079 761,1065 788,1048 815,1030 838,1008 858,983 877,958 891,929 900,897 L 902,897 C 905,914 910,933 915,953 920,974 924,994 929,1012 934,1031 938,1046 942,1060 946,1073 949,1080 950,1080 L 1121,1080 C 1120,1074 1117,1064 1114,1050 1111,1035 1107,1018 1102,998 1097,978 1093,956 1088,932 1083,907 1077,882 1072,856 L 911,30 C 897,-41 878,-105 853,-161 828,-217 796,-265 755,-304 714,-343 665,-373 607,-394 548,-415 478,-425 397,-425 Z M 259,373 C 259,292 277,231 312,189 347,146 398,125 466,125 502,125 539,133 576,148 613,163 648,188 681,221 714,254 743,297 770,350 796,403 816,466 831,541 836,569 840,598 843,628 846,657 847,683 847,704 847,749 841,788 829,821 817,854 800,881 779,903 757,925 731,941 702,952 673,963 641,968 607,968 566,968 528,962 495,950 461,937 431,916 404,887 377,857 354,817 334,768 314,718 297,655 282,580 275,541 269,503 265,467 261,431 259,400 259,373 Z"/>
+ <glyph unicode="f" horiz-adv-x="676" d="M 434,951 L 249,0 69,0 254,951 102,951 128,1082 280,1082 303,1204 C 311,1243 321,1280 334,1314 347,1348 365,1378 389,1403 412,1428 443,1448 480,1463 517,1477 565,1484 622,1484 643,1484 665,1483 688,1481 710,1479 729,1476 746,1472 L 720,1335 C 714,1336 707,1337 700,1338 692,1339 684,1340 675,1341 666,1342 658,1342 650,1342 642,1342 635,1342 629,1342 604,1342 583,1338 566,1331 549,1324 535,1313 524,1299 513,1285 504,1268 497,1248 490,1228 484,1205 479,1179 L 460,1082 671,1082 645,951 434,951 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 256,503 C 253,484 251,466 250,447 249,428 248,409 247,390 247,301 269,233 314,186 358,139 425,115 514,115 551,115 585,120 616,130 647,139 675,152 700,169 725,185 747,204 766,226 785,247 800,270 813,294 L 951,231 C 934,201 914,171 890,142 866,112 836,85 801,61 765,37 722,18 672,3 622,-12 562,-20 493,-20 426,-20 367,-10 314,9 261,28 217,55 181,92 144,128 117,172 98,225 79,278 69,338 69,405 69,510 83,606 112,692 140,778 179,851 230,912 280,973 339,1020 408,1053 476,1086 550,1102 630,1102 703,1102 767,1092 821,1073 875,1054 920,1027 956,992 992,957 1019,916 1037,868 1054,819 1063,766 1063,708 1063,694 1063,679 1062,662 1061,645 1059,628 1057,610 1055,592 1053,574 1050,556 1047,537 1043,520 1039,503 L 256,503 Z M 880,641 C 881,654 882,667 883,679 884,690 884,702 884,713 884,757 878,795 866,828 854,860 837,887 815,908 793,929 767,944 736,954 705,964 671,969 634,969 602,969 568,964 533,955 498,945 464,928 432,903 399,878 370,845 343,803 316,760 295,706 280,641 L 880,641 Z"/>
+ <glyph unicode="d" horiz-adv-x="1139" d="M 401,-21 C 348,-21 300,-13 259,4 218,21 183,44 155,75 127,106 106,143 91,187 76,230 69,279 69,333 69,363 71,399 74,440 77,481 82,523 90,565 108,660 132,741 161,809 190,876 226,932 267,975 308,1018 356,1050 409,1071 462,1091 522,1101 588,1101 670,1101 737,1084 789,1049 840,1014 877,966 898,903 L 903,903 C 904,910 906,921 909,936 912,951 915,968 918,985 921,1002 923,1018 926,1033 929,1048 930,1059 931,1065 L 1013,1484 1193,1484 948,219 C 943,193 938,168 934,143 929,119 925,97 922,77 919,57 916,40 914,26 912,11 911,4 910,4 L 738,4 C 738,17 740,38 744,66 747,95 752,126 759,160 L 754,160 C 730,129 706,102 681,79 656,56 629,38 601,23 573,8 543,-3 510,-11 477,-17 441,-21 401,-21 Z M 453,118 C 496,118 536,124 575,137 613,150 648,172 681,203 714,234 743,275 768,328 793,381 813,447 828,527 841,592 847,651 847,704 847,747 841,785 830,818 819,851 803,878 782,901 761,923 735,940 706,951 676,962 643,968 607,968 566,968 529,962 496,950 462,937 432,916 405,886 378,855 354,815 334,764 313,713 295,648 280,571 265,490 257,422 257,365 257,283 273,221 304,180 335,139 385,118 453,118 Z"/>
+ <glyph unicode="c" horiz-adv-x="940" d="M 469,122 C 506,122 540,128 570,139 600,150 627,165 650,185 673,205 694,229 712,258 730,286 745,317 758,352 L 914,303 C 895,253 873,208 846,169 819,129 787,95 750,67 713,39 670,18 623,3 576,-12 523,-20 465,-20 396,-20 337,-10 287,11 236,32 195,61 163,98 130,135 106,178 91,229 75,280 67,335 67,395 67,422 68,451 71,482 73,513 77,544 83,574 98,648 117,712 140,767 163,822 188,869 217,908 245,947 276,979 309,1004 342,1029 376,1049 411,1064 446,1078 481,1088 518,1094 554,1099 590,1102 625,1102 684,1102 737,1094 782,1079 827,1064 865,1042 896,1014 927,986 952,953 970,914 987,875 998,831 1001,784 L 824,759 C 822,789 816,816 807,841 798,866 785,887 768,905 751,922 730,936 705,946 680,956 652,961 619,961 573,961 532,954 495,941 458,928 426,906 397,876 368,846 343,807 322,759 301,710 284,651 270,581 264,549 259,515 256,480 253,445 251,414 251,389 251,304 268,239 303,192 337,145 392,122 469,122 Z"/>
+ <glyph unicode="b" horiz-adv-x="1047" d="M 744,1102 C 797,1102 845,1094 886,1077 927,1060 962,1037 990,1006 1018,975 1039,938 1054,895 1069,851 1076,802 1076,748 1076,715 1075,678 1072,639 1069,599 1063,558 1055,516 1037,421 1013,340 984,273 955,205 919,149 878,106 837,63 789,31 736,11 683,-10 623,-20 557,-20 475,-20 408,-3 357,32 306,67 269,115 248,178 L 245,178 C 242,160 238,142 233,122 228,102 224,83 220,66 215,48 212,33 209,21 206,8 203,2 202,2 L 29,2 C 31,8 34,18 37,32 40,47 44,64 49,84 53,104 58,126 63,150 68,174 73,199 78,225 L 323,1484 503,1484 420,1061 C 417,1042 413,1023 409,1006 404,989 400,974 397,961 393,946 389,933 386,921 L 390,921 C 414,952 439,979 464,1002 489,1025 515,1044 544,1059 572,1074 602,1085 635,1092 668,1099 704,1102 744,1102 Z M 692,963 C 649,963 609,957 571,944 532,931 497,910 464,879 431,848 403,806 378,753 353,700 332,634 317,554 304,489 298,430 298,377 298,334 304,297 315,264 326,231 343,203 364,181 385,158 410,141 440,130 469,119 502,113 538,113 579,113 617,119 650,132 683,144 714,165 741,196 768,226 791,267 812,318 833,369 850,433 865,510 880,591 888,659 888,716 888,798 872,860 841,901 810,942 760,963 692,963 Z"/>
+ <glyph unicode="a" horiz-adv-x="1033" d="M 1055,6 C 1036,1 1015,-2 993,-6 970,-8 948,-10 927,-10 865,-10 820,3 792,29 763,54 749,92 749,143 749,153 750,164 751,176 752,187 753,198 754,207 L 748,207 C 725,172 701,140 676,112 651,84 623,60 593,41 562,21 528,6 491,-5 454,-15 410,-20 361,-20 309,-20 264,-12 225,5 186,22 153,44 126,72 99,100 79,131 66,168 53,204 46,241 46,279 46,333 54,380 70,419 85,459 107,493 134,521 161,549 192,572 229,589 265,607 304,621 345,631 386,641 428,648 472,652 516,656 559,658 601,658 L 833,658 840,694 C 843,711 846,727 849,743 851,758 852,772 852,786 852,847 834,892 799,921 764,950 715,965 652,965 619,965 589,963 561,958 532,953 507,944 485,931 462,918 443,900 426,878 409,855 395,827 384,793 L 206,822 C 219,863 236,901 258,936 280,970 309,999 345,1024 381,1049 425,1068 477,1082 528,1095 590,1102 662,1102 721,1102 774,1095 820,1080 866,1065 905,1045 936,1019 967,993 991,962 1008,926 1024,890 1032,850 1032,807 1032,786 1030,762 1027,733 1023,704 1018,676 1013,650 L 939,272 C 936,257 933,242 931,227 929,212 928,197 928,184 928,159 935,141 948,129 961,117 981,111 1009,111 1019,111 1029,112 1040,113 1050,114 1060,116 1069,118 L 1055,6 Z M 809,530 L 610,530 C 583,530 556,530 527,530 498,530 470,527 443,520 415,514 389,505 364,495 339,484 317,469 298,451 279,432 265,410 254,383 243,357 237,325 237,288 237,266 241,245 248,225 255,204 265,186 280,170 295,154 313,141 335,132 356,122 382,117 411,117 469,117 520,127 563,147 606,166 643,191 674,220 705,248 729,280 747,314 764,347 776,379 782,407 L 809,530 Z"/>
+ <glyph unicode="Y" horiz-adv-x="1298" d="M 785,584 L 672,0 482,0 597,584 213,1409 409,1409 715,735 1275,1409 1489,1409 785,584 Z"/>
+ <glyph unicode="U" horiz-adv-x="1350" d="M 654,-20 C 585,-20 520,-11 459,7 398,25 344,53 299,90 254,127 218,174 192,231 166,288 153,354 153,431 153,445 154,461 155,480 156,498 158,516 161,535 163,554 165,572 168,590 171,607 173,622 176,635 L 326,1409 517,1409 355,566 C 350,542 346,517 343,492 340,466 338,443 338,423 338,374 346,331 363,295 380,259 403,229 432,206 461,182 496,164 537,153 578,141 622,135 670,135 728,135 782,142 832,157 881,172 926,195 966,227 1005,259 1039,301 1068,353 1096,404 1117,467 1131,541 L 1299,1409 1489,1409 1319,530 C 1300,436 1272,355 1234,286 1195,217 1148,159 1091,114 1034,69 969,35 896,13 823,-9 742,-20 654,-20 Z"/>
+ <glyph unicode="T" horiz-adv-x="1192" d="M 858,1253 L 614,0 424,0 668,1253 184,1253 214,1409 1372,1409 1342,1253 858,1253 Z"/>
+ <glyph unicode="S" horiz-adv-x="1284" d="M 616,-20 C 529,-20 454,-12 389,4 324,19 268,42 223,73 178,103 142,140 115,185 88,229 69,280 58,338 L 235,375 C 244,334 257,298 276,267 295,236 320,211 351,191 382,170 421,155 467,145 513,135 567,130 630,130 695,130 754,135 806,144 858,153 902,168 939,189 975,210 1003,237 1022,271 1041,304 1051,346 1051,396 1051,430 1045,459 1034,483 1023,507 1003,529 975,548 947,567 909,585 862,602 814,619 754,637 682,657 623,673 568,691 517,711 465,730 420,755 381,784 342,813 312,848 289,889 266,930 255,981 255,1041 255,1111 271,1171 303,1220 334,1269 377,1309 430,1340 483,1371 543,1394 612,1409 680,1423 751,1430 824,1430 905,1430 975,1423 1036,1408 1096,1393 1147,1373 1190,1347 1232,1320 1266,1289 1291,1252 1316,1215 1334,1175 1344,1132 L 1171,1081 C 1161,1113 1147,1142 1129,1167 1111,1192 1088,1214 1060,1232 1032,1249 999,1263 960,1272 921,1281 875,1286 823,1286 754,1286 695,1280 648,1269 600,1257 561,1241 532,1220 502,1199 480,1174 467,1145 454,1116 447,1084 447,1050 447,1014 454,984 468,961 481,937 502,917 530,900 558,883 594,868 637,855 680,841 730,826 789,810 847,794 904,776 959,757 1014,738 1062,713 1105,684 1148,654 1182,617 1208,573 1233,529 1246,474 1246,408 1246,271 1194,165 1091,91 988,17 829,-20 616,-20 Z"/>
+ <glyph unicode="P" horiz-adv-x="1284" d="M 852,1409 C 929,1409 999,1400 1061,1382 1122,1364 1175,1338 1218,1305 1261,1272 1295,1231 1318,1183 1341,1134 1353,1080 1353,1020 1353,947 1340,881 1314,823 1287,764 1250,715 1201,675 1152,634 1092,603 1022,582 951,560 872,549 784,549 L 360,549 254,0 63,0 336,1409 852,1409 Z M 390,700 L 777,700 C 905,700 1001,726 1064,778 1127,830 1159,908 1159,1011 1159,1054 1152,1091 1137,1122 1122,1153 1100,1178 1073,1198 1046,1218 1013,1233 975,1242 936,1251 894,1256 847,1256 L 498,1256 390,700 Z"/>
+ <glyph unicode="M" horiz-adv-x="1655" d="M 1261,0 L 1441,928 C 1448,962 1455,997 1462,1032 1469,1067 1476,1100 1483,1129 1490,1163 1498,1196 1506,1228 1489,1193 1472,1159 1455,1125 1440,1096 1425,1065 1408,1033 1391,1001 1376,973 1361,948 L 813,0 689,0 504,948 C 500,968 496,994 491,1026 486,1057 482,1088 478,1118 473,1153 468,1190 463,1228 458,1191 452,1154 446,1117 441,1086 435,1053 430,1019 424,985 418,955 413,928 L 233,0 63,0 336,1409 572,1409 761,432 C 763,422 766,406 770,384 773,361 777,338 780,315 784,288 788,259 793,227 807,256 820,284 833,311 844,334 856,358 868,382 879,405 889,425 897,440 L 1450,1409 1706,1409 1433,0 1261,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="927" d="M 63,0 L 336,1409 527,1409 284,156 996,156 966,0 63,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="478" d="M 81,0 L 355,1409 546,1409 272,0 81,0 Z"/>
+ <glyph unicode="F" horiz-adv-x="1284" d="M 497,1253 L 395,729 1191,729 1160,571 364,571 254,0 63,0 336,1409 1347,1409 1317,1253 497,1253 Z"/>
+ <glyph unicode="E" horiz-adv-x="1311" d="M 63,0 L 336,1409 1385,1409 1355,1253 497,1253 409,801 1207,801 1177,647 379,647 284,156 1183,156 1153,0 63,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1377" d="M 1358,337 C 1325,288 1289,242 1248,199 1207,156 1161,118 1109,86 1056,53 997,28 930,9 863,-10 786,-20 700,-20 601,-20 515,-5 442,26 368,57 307,99 258,152 209,205 173,267 149,339 125,410 113,487 113,569 113,652 122,730 140,805 158,880 184,949 217,1013 250,1076 291,1134 339,1186 387,1237 441,1281 502,1317 562,1353 628,1381 699,1401 770,1420 846,1430 926,1430 1012,1430 1087,1420 1152,1401 1217,1381 1272,1355 1318,1323 1364,1291 1401,1254 1429,1213 1457,1172 1477,1129 1490,1085 L 1310,1030 C 1300,1061 1285,1092 1264,1121 1243,1150 1217,1176 1185,1199 1152,1222 1114,1240 1070,1254 1025,1267 974,1274 916,1274 819,1274 732,1256 656,1221 580,1185 516,1136 463,1073 410,1010 370,935 343,849 316,762 302,668 302,566 302,503 311,446 328,393 345,340 371,295 406,257 440,218 483,188 534,167 585,146 645,135 713,135 773,135 828,143 878,160 928,176 974,198 1016,225 1057,252 1095,283 1128,318 1161,353 1190,389 1215,426 L 1358,337 Z"/>
+ <glyph unicode="B" horiz-adv-x="1231" d="M 336,1409 L 846,1409 C 915,1409 978,1402 1033,1387 1088,1372 1136,1351 1175,1324 1214,1296 1244,1262 1265,1222 1286,1182 1296,1137 1296,1087 1296,990 1267,913 1210,857 1153,800 1068,762 957,743 1004,735 1046,722 1083,704 1119,685 1149,663 1174,636 1198,609 1216,579 1229,546 1241,513 1247,477 1247,439 1247,384 1239,334 1224,291 1209,248 1187,210 1160,177 1133,144 1101,117 1064,95 1027,72 986,54 943,40 899,26 853,16 805,10 756,3 707,0 658,0 L 63,0 336,1409 Z M 411,810 L 742,810 C 863,810 952,832 1010,875 1068,918 1097,983 1097,1068 1097,1131 1074,1179 1029,1210 983,1241 916,1256 829,1256 L 498,1256 411,810 Z M 283,153 L 651,153 C 703,153 754,157 803,165 852,173 895,188 932,209 969,230 999,260 1022,297 1045,334 1056,383 1056,442 1056,513 1030,568 977,605 924,642 847,661 748,661 L 382,661 283,153 Z"/>
+ <glyph unicode="A" horiz-adv-x="1364" d="M 1061,0 L 986,412 347,412 107,0 -101,0 747,1409 964,1409 1256,0 1061,0 Z M 871,1034 C 866,1061 861,1088 856,1114 851,1140 846,1164 843,1186 840,1207 837,1225 835,1240 832,1254 831,1262 830,1265 829,1262 824,1254 817,1239 809,1224 799,1206 787,1185 775,1163 762,1139 747,1113 732,1086 717,1060 701,1033 L 431,561 958,561 871,1034 Z"/>
+ <glyph unicode="." horiz-adv-x="240" d="M 80,0 L 123,219 318,219 275,0 80,0 Z"/>
+ <glyph unicode="," horiz-adv-x="292" d="M 299,51 C 292,16 285,-16 276,-46 267,-74 256,-101 245,-127 234,-151 221,-175 207,-197 193,-219 177,-241 160,-262 L 37,-262 C 75,-219 107,-175 132,-131 157,-87 173,-43 182,0 L 94,0 136,219 331,219 299,51 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_3" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1126" d="M 584,241 L 834,1082 1128,1082 700,-57 C 646,-188 590,-281 532,-336 469,-395 386,-425 283,-425 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 173,-220 202,-220 230,-220 255,-217 276,-211 297,-205 317,-195 334,-181 368,-153 399,-105 426,-37 L 444,11 16,1082 313,1082 584,241 Z"/>
+ <glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="q" horiz-adv-x="1046" d="M 84,540 C 84,622 92,698 109,767 126,836 151,895 186,945 220,994 263,1033 316,1061 368,1089 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 829,922 830,939 831,957 832,976 833,994 835,1011 836,1029 838,1044 840,1058 841,1071 843,1078 844,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,830 L 1108,-425 829,-425 829,25 C 829,44 829,62 830,80 831,98 831,115 832,130 833,147 833,164 834,180 L 832,180 C 799,110 753,59 692,28 631,-4 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 Z M 831,546 C 831,618 824,677 811,724 798,771 780,808 759,836 738,863 713,883 686,894 658,905 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,823 417,793 402,755 392,708 382,661 377,605 377,540 377,295 451,172 600,172 628,172 656,178 684,190 711,202 736,222 758,251 780,280 798,318 811,366 824,414 831,474 831,546 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1006" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="979" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 833,1102 889,1091 934,1070 979,1049 1015,1019 1044,982 1072,945 1092,901 1105,850 1118,799 1124,745 1124,686 L 1124,0 844,0 844,606 C 844,648 841,687 834,722 827,757 816,787 801,812 786,837 766,856 741,870 716,884 686,891 651,891 617,891 586,884 559,869 531,854 507,832 487,805 467,777 452,744 441,706 430,667 424,625 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1058 424,1036 423,1015 422,993 422,973 421,954 420,935 419,917 418,902 417,887 417,875 416,866 L 420,866 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 1167,545 C 1167,463 1159,388 1143,319 1126,250 1101,190 1067,140 1033,89 990,50 938,22 885,-6 823,-20 752,-20 720,-20 688,-17 656,-10 624,-3 594,8 565,23 536,38 510,58 486,83 462,108 441,138 424,174 L 422,174 C 422,160 422,143 421,125 420,106 418,88 417,71 416,54 414,38 413,24 411,11 409,4 408,4 L 135,4 C 137,27 139,60 141,103 142,146 143,195 143,250 L 143,1484 424,1484 424,1070 C 424,1049 424,1028 424,1008 423,987 423,968 422,951 421,931 421,912 420,894 L 424,894 C 458,969 505,1022 564,1054 623,1086 692,1102 770,1102 839,1102 899,1088 949,1061 999,1033 1040,994 1073,945 1105,895 1129,836 1144,768 1159,700 1167,626 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 624,907 596,901 568,890 540,879 515,859 493,831 471,802 453,764 440,717 427,669 420,609 420,536 420,465 427,407 440,360 453,313 471,276 492,248 513,220 538,200 566,189 594,178 622,172 651,172 722,172 777,202 816,261 855,320 874,414 874,545 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="Y" horiz-adv-x="1324" d="M 831,578 L 831,0 537,0 537,578 35,1409 344,1409 682,813 1024,1409 1333,1409 831,578 Z"/>
+ <glyph unicode="W" horiz-adv-x="1985" d="M 1567,0 L 1217,0 1026,815 C 1020,840 1014,869 1007,903 1000,937 993,970 987,1002 980,1039 973,1077 967,1116 960,1077 952,1038 945,1001 942,985 938,969 935,952 932,935 928,918 925,902 921,885 918,870 915,855 912,840 908,827 905,815 L 715,0 365,0 2,1409 301,1409 477,625 C 487,582 496,540 505,499 514,458 522,421 529,388 537,350 544,314 551,279 561,328 571,376 580,423 584,443 588,464 593,485 598,506 602,527 607,548 611,569 615,589 620,608 624,627 628,644 631,659 L 805,1409 1135,1409 1313,659 C 1317,643 1321,625 1325,606 1329,586 1333,566 1337,545 1341,524 1345,503 1349,482 1353,461 1357,440 1360,420 1368,373 1376,326 1384,279 1392,316 1400,355 1409,395 1416,429 1425,466 1434,507 1443,548 1453,587 1462,625 L 1632,1409 1931,1409 1567,0 Z"/>
+ <glyph unicode="V" horiz-adv-x="1364" d="M 834,0 L 535,0 14,1409 322,1409 612,504 C 621,474 630,443 639,412 648,381 656,352 663,326 671,295 679,266 686,238 693,265 700,294 707,324 714,349 722,378 731,410 740,441 749,473 758,504 L 1047,1409 1352,1409 834,0 Z"/>
+ <glyph unicode="U" horiz-adv-x="1245" d="M 723,-20 C 635,-20 554,-9 481,12 408,33 345,65 292,110 239,154 197,211 168,280 138,349 123,432 123,528 L 123,1409 418,1409 418,551 C 418,492 425,441 440,398 455,355 476,319 503,292 530,264 563,244 602,231 641,218 684,211 731,211 779,211 823,218 864,232 904,245 939,266 968,295 997,324 1019,360 1035,404 1051,448 1059,500 1059,561 L 1059,1409 1354,1409 1354,543 C 1354,446 1338,363 1307,292 1276,221 1232,163 1176,117 1120,70 1054,36 977,14 900,-9 815,-20 723,-20 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="Q" horiz-adv-x="1430" d="M 1507,711 C 1507,617 1495,531 1472,452 1448,373 1414,303 1369,242 1324,181 1269,130 1204,90 1139,49 1066,21 983,4 996,-35 1012,-66 1030,-91 1048,-115 1068,-134 1091,-148 1114,-161 1138,-170 1165,-176 1192,-180 1220,-183 1251,-183 1270,-183 1290,-182 1310,-181 1330,-179 1350,-176 1370,-173 L 1368,-375 C 1332,-383 1294,-390 1255,-395 1216,-400 1173,-403 1126,-403 1063,-403 1007,-393 960,-375 913,-355 872,-329 837,-295 802,-260 772,-219 748,-171 723,-122 702,-69 684,-10 584,-1 497,24 422,63 347,102 284,154 234,217 184,280 147,354 122,438 97,522 84,613 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,570 408,509 425,448 451,395 486,351 521,307 564,273 615,248 666,223 726,211 793,211 865,211 927,224 979,249 1031,274 1074,308 1108,353 1141,397 1166,450 1182,511 1198,572 1206,639 1206,711 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="O" horiz-adv-x="1430" d="M 1507,711 C 1507,601 1491,501 1458,411 1425,321 1378,244 1317,180 1256,116 1181,67 1093,32 1004,-3 904,-20 793,-20 675,-20 572,-2 484,35 395,71 321,122 262,187 203,252 158,329 129,418 99,507 84,605 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,571 408,510 425,449 451,396 486,352 521,308 564,274 615,249 666,224 726,212 793,212 865,212 927,225 979,250 1031,275 1074,309 1108,354 1141,398 1166,451 1182,512 1198,573 1206,639 1206,711 Z"/>
+ <glyph unicode="M" horiz-adv-x="1443" d="M 1307,0 L 1307,854 C 1307,888 1308,923 1309,959 1310,995 1311,1028 1312,1058 1314,1093 1316,1128 1317,1161 1303,1108 1290,1058 1277,1011 1272,991 1266,970 1260,949 1254,928 1248,907 1243,887 1237,867 1231,848 1226,831 1221,814 1216,799 1212,786 L 958,0 748,0 494,786 C 490,799 486,814 481,831 476,848 470,867 465,887 459,907 453,928 447,949 441,970 435,991 429,1011 416,1058 402,1108 387,1161 389,1122 391,1084 393,1047 394,1015 396,981 397,946 398,911 399,880 399,854 L 399,0 137,0 137,1409 532,1409 784,621 C 791,600 798,575 806,545 813,515 821,486 828,458 836,425 845,391 854,356 863,391 872,424 881,456 885,470 889,484 893,499 897,514 901,528 905,542 909,556 913,569 917,582 921,595 925,606 928,616 L 1176,1409 1569,1409 1569,0 1307,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1060" d="M 137,0 L 137,1409 432,1409 432,228 1188,228 1188,0 137,0 Z"/>
+ <glyph unicode="J" horiz-adv-x="967" d="M 524,-20 C 453,-20 390,-13 335,2 280,17 232,40 191,72 150,104 117,146 91,197 64,248 44,309 31,382 L 324,425 C 331,386 340,353 352,326 364,299 379,277 396,260 413,243 432,230 454,223 476,215 500,211 526,211 585,211 629,231 660,270 690,309 705,366 705,439 L 705,1178 424,1178 424,1409 999,1409 999,446 C 999,375 989,310 968,253 947,195 917,146 877,106 836,65 787,34 728,13 669,-9 601,-20 524,-20 Z"/>
+ <glyph unicode="I" horiz-adv-x="292" d="M 137,0 L 137,1409 432,1409 432,0 137,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1218" d="M 1046,0 L 1046,604 432,604 432,0 137,0 137,1409 432,1409 432,848 1046,848 1046,1409 1341,1409 1341,0 1046,0 Z"/>
+ <glyph unicode="F" horiz-adv-x="1046" d="M 432,1181 L 432,745 1153,745 1153,517 432,517 432,0 137,0 137,1409 1176,1409 1176,1181 432,1181 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode="/" horiz-adv-x="557" d="M 20,-41 L 311,1484 549,1484 263,-41 20,-41 Z"/>
+ <glyph unicode="." horiz-adv-x="292" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
+ <glyph unicode="," horiz-adv-x="292" d="M 432,66 C 432,21 430,-19 425,-56 420,-93 412,-126 403,-158 394,-188 382,-217 369,-243 356,-269 341,-294 324,-317 L 139,-317 C 158,-294 176,-269 192,-243 208,-217 222,-190 234,-163 246,-136 255,-108 262,-81 269,-54 272,-27 272,0 L 143,0 143,305 432,305 432,66 Z"/>
+ <glyph unicode=")" horiz-adv-x="583" d="M 2,-425 C 55,-347 101,-270 139,-196 177,-120 208,-44 233,33 257,110 275,190 286,272 297,353 303,439 303,530 303,620 297,706 286,788 275,869 257,949 233,1026 208,1103 177,1180 139,1255 101,1330 55,1407 2,1484 L 283,1484 C 334,1410 379,1337 416,1264 453,1191 484,1116 509,1039 533,962 551,882 563,799 574,716 580,626 580,531 580,436 574,347 563,264 551,180 533,99 509,22 484,-55 453,-131 416,-204 379,-277 334,-351 283,-425 L 2,-425 Z"/>
+ <glyph unicode="(" horiz-adv-x="583" d="M 399,-425 C 348,-351 303,-277 266,-204 229,-131 198,-55 174,22 149,99 131,180 120,264 108,347 102,436 102,531 102,626 108,716 120,799 131,882 149,962 174,1039 198,1116 229,1191 266,1264 303,1337 348,1410 399,1484 L 680,1484 C 627,1407 581,1330 543,1255 505,1180 474,1103 450,1026 425,949 407,869 396,788 385,706 379,620 379,530 379,439 385,353 396,272 407,190 425,110 450,33 474,-44 505,-120 543,-196 581,-270 627,-347 680,-425 L 399,-425 Z"/>
+ <glyph unicode="&amp;" horiz-adv-x="1324" d="M 90,385 C 90,438 99,485 116,528 133,571 156,609 186,644 216,679 252,710 293,738 334,765 379,790 428,813 407,856 389,903 375,952 361,1001 354,1048 354,1092 354,1136 361,1178 374,1217 387,1256 409,1291 439,1321 469,1350 508,1374 556,1391 604,1408 662,1417 731,1417 785,1417 834,1411 879,1398 923,1385 961,1365 993,1340 1025,1315 1050,1284 1068,1247 1085,1210 1094,1168 1094,1120 1094,1071 1083,1028 1061,991 1039,953 1010,919 974,889 937,858 895,831 848,806 801,781 752,756 702,733 736,673 773,615 814,560 855,504 899,450 946,397 983,454 1015,512 1040,572 1065,631 1087,694 1104,760 L 1313,690 C 1290,612 1263,539 1232,470 1201,401 1163,335 1120,270 1150,245 1180,226 1210,215 1240,203 1269,197 1298,197 1319,197 1340,198 1360,201 1379,204 1398,208 1415,213 L 1415,10 C 1378,-5 1335,-12 1284,-12 1250,-12 1217,-9 1186,-2 1155,5 1125,14 1097,25 1069,36 1043,48 1019,63 995,78 973,93 954,109 932,92 908,76 881,61 854,45 824,31 793,19 761,7 727,-2 691,-10 654,-16 616,-20 575,-20 491,-20 418,-10 357,11 296,32 245,60 206,96 167,132 138,175 119,224 100,273 90,327 90,385 Z M 870,1118 C 870,1156 857,1187 832,1211 807,1235 772,1247 729,1247 678,1247 639,1233 612,1204 585,1175 571,1137 571,1090 571,1058 576,1025 587,992 597,959 610,927 625,897 659,912 691,927 721,942 751,957 777,973 799,991 821,1008 838,1027 851,1048 864,1069 870,1092 870,1118 Z M 788,246 C 737,303 688,363 642,426 596,489 554,554 516,623 461,597 418,565 389,527 359,489 344,443 344,389 344,358 349,330 360,303 370,276 385,253 405,234 425,214 450,198 481,187 511,176 546,170 586,170 629,170 669,178 704,194 739,210 767,227 788,246 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_4" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="”" horiz-adv-x="848" d="M 985,1217 C 976,1172 966,1131 954,1094 942,1057 928,1023 913,992 897,961 880,932 862,906 843,880 823,855 801,831 L 617,831 C 641,855 664,880 685,906 706,932 726,959 743,986 760,1013 774,1040 786,1068 798,1095 807,1122 812,1149 L 685,1149 736,1409 1023,1409 985,1217 Z M 555,1217 C 546,1172 536,1131 524,1094 512,1057 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1217 Z"/>
+ <glyph unicode="“" horiz-adv-x="848" d="M 617,831 L 655,1026 C 664,1071 674,1111 687,1148 699,1185 713,1218 728,1249 743,1280 761,1308 780,1335 799,1361 819,1386 841,1409 L 1023,1409 C 1000,1386 978,1361 957,1335 936,1309 917,1282 900,1255 883,1228 868,1200 856,1173 844,1146 835,1119 830,1092 L 957,1092 906,831 617,831 Z M 189,831 L 227,1026 C 236,1071 246,1111 258,1148 270,1185 284,1218 299,1249 314,1280 331,1308 350,1335 369,1361 389,1386 410,1409 L 593,1409 C 570,1386 548,1361 527,1335 506,1309 487,1282 470,1255 453,1228 438,1200 426,1173 414,1146 405,1119 400,1092 L 527,1092 476,831 189,831 Z"/>
+ <glyph unicode="z" horiz-adv-x="1073" d="M -35,0 L 3,199 656,879 176,879 216,1082 1025,1082 986,881 336,205 903,205 863,0 -35,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="x" horiz-adv-x="1298" d="M 724,0 L 538,383 211,0 -90,0 418,562 139,1082 431,1082 604,735 900,1082 1208,1082 725,557 1019,0 724,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="835" d="M 283,1277 L 323,1484 604,1484 564,1277 283,1277 Z M -54,-425 C -87,-425 -118,-423 -147,-420 -176,-416 -200,-411 -220,-406 L -184,-218 C -175,-219 -165,-220 -155,-221 -143,-222 -134,-222 -126,-222 -103,-222 -84,-219 -68,-214 -52,-209 -38,-200 -27,-187 -16,-174 -6,-158 2,-137 9,-116 16,-91 22,-60 L 245,1082 526,1082 290,-128 C 281,-171 268,-211 251,-247 233,-283 210,-314 182,-341 154,-368 121,-388 82,-403 43,-418 -3,-425 -54,-425 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="Y" horiz-adv-x="1351" d="M 836,578 L 724,0 430,0 542,578 172,1409 464,1409 723,804 1197,1409 1520,1409 836,578 Z"/>
+ <glyph unicode="X" horiz-adv-x="1562" d="M 220,1409 L 529,1409 753,938 1155,1409 1468,1409 868,732 1235,0 928,0 675,532 220,0 -94,0 558,736 220,1409 Z"/>
+ <glyph unicode="V" horiz-adv-x="1337" d="M 737,0 L 398,0 171,1409 476,1409 590,504 C 593,474 596,443 599,412 602,381 604,352 606,326 609,295 611,266 612,238 624,265 637,294 650,324 661,349 675,378 690,410 705,441 720,473 736,504 L 1201,1409 1509,1409 737,0 Z"/>
+ <glyph unicode="U" horiz-adv-x="1417" d="M 688,211 C 741,211 787,217 828,228 869,239 904,258 935,284 965,310 990,344 1010,386 1030,428 1046,480 1058,541 L 1226,1409 1521,1409 1350,530 C 1331,435 1304,354 1267,285 1230,216 1184,159 1129,114 1073,69 1007,35 932,13 856,-9 769,-20 672,-20 586,-20 509,-10 440,10 371,29 313,58 266,96 219,134 182,181 157,238 132,294 119,358 119,431 119,445 120,461 121,480 122,498 124,516 127,535 129,554 131,572 134,590 137,607 139,622 142,635 L 290,1409 585,1409 432,599 C 427,576 423,549 420,518 416,486 414,456 414,427 414,391 421,360 434,333 447,306 466,283 491,265 515,247 544,234 578,225 611,216 648,211 688,211 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="P" horiz-adv-x="1337" d="M 850,1409 C 933,1409 1006,1399 1071,1380 1135,1361 1189,1333 1234,1296 1278,1259 1312,1215 1335,1163 1358,1111 1369,1052 1369,987 1369,911 1356,843 1329,782 1302,721 1263,670 1214,628 1165,585 1105,553 1036,530 967,507 890,496 805,496 L 428,496 330,0 36,0 309,1409 850,1409 Z M 471,723 L 760,723 C 863,723 941,742 993,781 1044,820 1070,883 1070,971 1070,1008 1064,1039 1052,1066 1040,1092 1023,1114 1001,1131 979,1148 953,1160 923,1168 892,1176 859,1180 822,1180 L 560,1180 471,723 Z"/>
+ <glyph unicode="N" horiz-adv-x="1496" d="M 884,0 L 510,1131 C 506,1102 502,1074 498,1046 495,1022 491,996 486,969 481,941 477,915 472,892 L 298,0 36,0 310,1409 660,1409 1037,268 C 1041,294 1045,321 1049,350 1052,375 1057,402 1062,433 1067,463 1072,493 1078,524 L 1252,1409 1514,1409 1240,0 884,0 Z"/>
+ <glyph unicode="M" horiz-adv-x="1694" d="M 1206,0 L 1378,884 C 1385,921 1393,958 1402,996 1411,1033 1419,1068 1426,1099 1435,1136 1443,1171 1452,1206 1428,1154 1405,1104 1383,1055 1374,1034 1364,1013 1354,991 1343,969 1333,948 1323,927 1313,906 1304,886 1295,867 1286,848 1277,831 1269,816 L 857,0 647,0 553,819 C 552,832 550,847 548,865 546,882 544,901 542,922 539,943 537,964 535,986 532,1008 530,1029 528,1050 523,1099 518,1151 513,1206 508,1165 504,1125 499,1086 497,1069 495,1052 493,1034 490,1016 488,998 486,981 483,964 481,947 478,931 475,915 473,900 470,887 L 298,0 36,0 310,1409 705,1409 793,621 C 796,600 798,575 801,544 804,513 806,482 809,452 812,417 815,382 818,345 835,382 851,417 867,451 880,480 895,510 910,541 925,571 937,596 947,616 L 1349,1409 1742,1409 1468,0 1206,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="583" d="M 36,0 L 309,1409 604,1409 330,0 36,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1482" d="M 956,0 L 1074,604 448,604 330,0 36,0 309,1409 604,1409 495,848 1121,848 1230,1409 1514,1409 1240,0 956,0 Z"/>
+ <glyph unicode="F" horiz-adv-x="1257" d="M 560,1181 L 475,745 1143,745 1099,517 431,517 330,0 36,0 309,1409 1295,1409 1251,1181 560,1181 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=")" horiz-adv-x="808" d="M -180,-425 C -8,-257 123,-71 212,133 301,337 345,562 345,809 345,862 342,917 336,976 329,1034 320,1093 307,1152 294,1211 279,1268 260,1325 241,1382 220,1435 196,1484 L 461,1484 C 511,1385 550,1277 579,1160 608,1043 622,921 622,793 622,671 611,553 590,440 568,327 535,219 492,116 448,13 394,-84 329,-175 264,-266 188,-349 101,-425 L -180,-425 Z"/>
+ <glyph unicode="(" horiz-adv-x="808" d="M 874,1484 C 702,1320 572,1139 483,940 394,741 350,521 350,280 350,150 362,26 386,-92 410,-210 447,-321 497,-425 L 222,-425 C 173,-321 137,-208 112,-87 87,34 74,162 74,296 74,415 85,530 107,641 128,752 161,857 204,958 247,1058 302,1152 367,1241 432,1329 507,1410 593,1484 L 874,1484 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59 id60 id61 id62 id63 id64 id65 id66 id67 id68 id69 id70 id71 id72 id73 id74 id75 id76 id77 id78 id79 id80 id81 id82 id83 id84 id85 id86 id87 id88"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1482" y="1544" width="18088" height="7674"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2778,1570 C 2745,1570 2711,1572 2678,1575"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2578,1590 C 2546,1597 2513,1605 2481,1615"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2386,1647 C 2355,1660 2324,1673 2294,1688"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2205,1735 C 2176,1752 2148,1770 2120,1789"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2039,1848 C 2012,1869 1987,1890 1962,1913"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1889,1983 C 1866,2007 1843,2032 1822,2057"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1759,2136 C 1739,2163 1720,2191 1702,2219"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1651,2306 C 1635,2335 1621,2365 1607,2396"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1570,2489 C 1559,2521 1549,2553 1541,2586"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1520,2684 C 1515,2717 1512,2751 1510,2784"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,2884 L 1508,2985"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,3085 L 1508,3186"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,3286 L 1508,3387"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,3487 L 1508,3588"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,3688 L 1508,3789"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,3889 L 1508,3990"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,4090 L 1508,4190"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,4291 L 1508,4391"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,4492 L 1508,4592"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,4693 L 1508,4793"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,4894 L 1508,4994"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,5095 L 1508,5195"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,5296 L 1508,5396"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,5497 L 1508,5597"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,5698 L 1508,5798"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,5898 L 1508,5999"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,6099 L 1508,6200"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,6300 L 1508,6401"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,6501 L 1508,6602"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,6702 L 1508,6803"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,6903 L 1508,7004"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,7104 L 1508,7205"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,7305 L 1508,7406"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,7506 L 1508,7606"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,7707 L 1508,7807"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1508,7908 L 1508,7920 C 1508,7949 1509,7979 1512,8008"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1526,8108 C 1532,8141 1540,8173 1549,8205"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1581,8301 C 1593,8332 1606,8363 1620,8393"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1667,8483 C 1683,8512 1701,8540 1720,8568"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1778,8650 C 1799,8676 1820,8702 1843,8727"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1912,8800 C 1936,8824 1960,8847 1986,8869"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2064,8932 C 2091,8952 2118,8971 2146,8990"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2232,9041 C 2262,9058 2292,9073 2322,9087"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2415,9125 C 2447,9136 2479,9146 2511,9155"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2609,9176 C 2643,9182 2676,9186 2709,9189"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2810,9191 L 2910,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3011,9191 L 3111,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3211,9191 L 3312,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3412,9191 L 3513,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3613,9191 L 3714,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3814,9191 L 3915,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4015,9191 L 4116,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4216,9191 L 4317,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4417,9191 L 4518,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4618,9191 L 4719,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4819,9191 L 4919,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5020,9191 L 5120,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5221,9191 L 5321,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5422,9191 L 5522,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5623,9191 L 5723,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5824,9191 L 5924,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6025,9191 L 6125,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6226,9191 L 6326,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6427,9191 L 6527,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6627,9191 L 6728,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6828,9191 L 6929,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7029,9191 L 7130,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7230,9191 L 7331,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7431,9191 L 7532,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7632,9191 L 7733,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7833,9191 L 7934,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8034,9191 L 8135,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8235,9191 L 8335,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8436,9191 L 8536,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8637,9191 L 8737,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8838,9191 L 8938,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9039,9191 L 9139,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9240,9191 L 9340,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9441,9191 L 9541,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9642,9191 L 9742,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9842,9191 L 9943,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10043,9191 L 10144,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10244,9191 L 10345,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10445,9191 L 10546,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10646,9191 L 10747,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10847,9191 L 10948,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11048,9191 L 11149,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11249,9191 L 11350,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11450,9191 L 11550,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11651,9191 L 11751,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11852,9191 L 11952,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12053,9191 L 12153,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12254,9191 L 12354,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12455,9191 L 12555,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12656,9191 L 12756,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12857,9191 L 12957,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13058,9191 L 13158,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13258,9191 L 13359,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13459,9191 L 13560,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13660,9191 L 13761,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13861,9191 L 13962,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14062,9191 L 14163,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14263,9191 L 14364,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14464,9191 L 14565,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14665,9191 L 14766,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14866,9191 L 14966,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15067,9191 L 15167,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15268,9191 L 15368,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15469,9191 L 15569,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15670,9191 L 15770,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15871,9191 L 15971,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16072,9191 L 16172,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16273,9191 L 16373,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16474,9191 L 16574,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16674,9191 L 16775,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16875,9191 L 16976,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17076,9191 L 17177,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17277,9191 L 17378,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17478,9191 L 17579,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17679,9191 L 17780,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17880,9191 L 17981,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18081,9191 L 18182,9191"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18282,9191 C 18315,9191 18349,9188 18382,9185"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18481,9169 C 18514,9162 18546,9153 18579,9143"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18674,9110 C 18704,9097 18735,9084 18765,9069"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18854,9021 C 18882,9004 18911,8986 18938,8967"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19019,8907 C 19045,8886 19071,8864 19096,8841"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19168,8771 C 19191,8747 19213,8722 19235,8696"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19297,8617 C 19317,8590 19336,8562 19353,8534"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19404,8447 C 19419,8417 19434,8387 19447,8356"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19484,8262 C 19495,8231 19504,8198 19512,8166"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19532,8067 C 19537,8034 19540,8001 19542,7967"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,7867 L 19543,7767"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,7666 L 19543,7566"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,7465 L 19543,7365"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,7264 L 19543,7164"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,7063 L 19543,6963"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,6862 L 19543,6762"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,6661 L 19543,6561"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,6460 L 19543,6360"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,6259 L 19543,6159"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,6059 L 19543,5958"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,5858 L 19543,5757"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,5657 L 19543,5556"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,5456 L 19543,5355"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,5255 L 19543,5154"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,5054 L 19543,4953"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,4853 L 19543,4752"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,4652 L 19543,4551"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,4451 L 19543,4351"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,4250 L 19543,4150"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,4049 L 19543,3949"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,3848 L 19543,3748"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,3647 L 19543,3547"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,3446 L 19543,3346"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,3245 L 19543,3145"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,3044 L 19543,2944"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,2843 L 19543,2840 C 19543,2808 19541,2775 19538,2743"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19523,2644 C 19517,2611 19509,2579 19499,2546"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19467,2451 C 19455,2420 19441,2389 19427,2359"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19379,2270 C 19363,2241 19345,2213 19326,2185"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19267,2103 C 19246,2077 19225,2051 19202,2026"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19132,1954 C 19108,1930 19084,1908 19058,1886"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18979,1823 C 18952,1803 18925,1784 18897,1766"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18810,1715 C 18780,1699 18750,1684 18720,1671"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18627,1633 C 18595,1622 18563,1612 18530,1604"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18432,1583 C 18399,1578 18366,1574 18332,1572"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18232,1570 L 18131,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18031,1570 L 17930,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17830,1570 L 17729,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17629,1570 L 17528,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17428,1570 L 17328,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17227,1570 L 17127,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17026,1570 L 16926,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16825,1570 L 16725,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16624,1570 L 16524,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16423,1570 L 16323,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16222,1570 L 16122,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16021,1570 L 15921,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15820,1570 L 15720,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15620,1570 L 15519,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15419,1570 L 15318,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15218,1570 L 15117,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15017,1570 L 14916,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14816,1570 L 14715,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14615,1570 L 14514,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14414,1570 L 14313,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14213,1570 L 14113,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14012,1570 L 13912,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13811,1570 L 13711,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13610,1570 L 13510,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13409,1570 L 13309,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13208,1570 L 13108,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13007,1570 L 12907,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12806,1570 L 12706,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12605,1570 L 12505,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12405,1570 L 12304,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12204,1570 L 12103,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12003,1570 L 11902,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11802,1570 L 11701,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11601,1570 L 11500,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11400,1570 L 11299,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11199,1570 L 11098,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10998,1570 L 10897,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10797,1570 L 10697,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10596,1570 L 10496,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10395,1570 L 10295,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10194,1570 L 10094,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9993,1570 L 9893,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9792,1570 L 9692,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9591,1570 L 9491,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9390,1570 L 9290,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9189,1570 L 9089,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8989,1570 L 8888,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8788,1570 L 8687,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8587,1570 L 8486,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8386,1570 L 8285,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8185,1570 L 8084,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7984,1570 L 7883,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7783,1570 L 7682,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7582,1570 L 7481,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7381,1570 L 7281,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7180,1570 L 7080,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6979,1570 L 6879,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6778,1570 L 6678,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6577,1570 L 6477,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6376,1570 L 6276,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6175,1570 L 6075,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5974,1570 L 5874,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5773,1570 L 5673,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5573,1570 L 5472,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5372,1570 L 5271,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5171,1570 L 5070,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4970,1570 L 4869,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4769,1570 L 4668,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4568,1570 L 4467,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4367,1570 L 4266,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4166,1570 L 4066,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3965,1570 L 3865,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3764,1570 L 3664,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3563,1570 L 3463,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3362,1570 L 3262,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3161,1570 L 3061,1570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2960,1570 L 2860,1570"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7985" y="1570" width="4700" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="9484" y="2080"><tspan fill="rgb(153,153,153)" stroke="none">Frontend</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2224" y="2814" width="6404" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2461,2840 C 2355,2840 2250,2945 2250,3051 L 2250,3899 C 2250,4005 2355,4111 2461,4111 L 8389,4111 C 8495,4111 8601,4005 8601,3899 L 8601,3051 C 8601,2945 8495,2840 8389,2840 L 2461,2840 Z M 2250,2840 L 2250,2840 Z M 8601,4111 L 8601,4111 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2461,2840 C 2355,2840 2250,2945 2250,3051 L 2250,3899 C 2250,4005 2355,4111 2461,4111 L 8389,4111 C 8495,4111 8601,4005 8601,3899 L 8601,3051 C 8601,2945 8495,2840 8389,2840 L 2461,2840 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2250" y="2840" width="6351" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3804" y="3256"><tspan fill="rgb(0,0,0)" stroke="none">Main Entry Point (cli.py)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="3016" y="3892"><tspan fill="rgb(102,102,102)" stroke="none">Implements command line interface</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9854" y="2814" width="8944" height="5173"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 10733,2840 C 10306,2840 9880,3266 9880,3693 L 9880,7106 C 9880,7533 10306,7960 10733,7960 L 17917,7960 C 18344,7960 18771,7533 18771,7106 L 18771,3693 C 18771,3266 18344,2840 17917,2840 L 10733,2840 Z M 9880,2840 L 9880,2840 Z M 18771,7960 L 18771,7960 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 10733,2840 C 10306,2840 9880,3266 9880,3693 L 9880,7106 C 9880,7533 10306,7960 10733,7960 L 17917,7960 C 18344,7960 18771,7533 18771,7106 L 18771,3693 C 18771,3266 18344,2840 17917,2840 L 10733,2840 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9880" y="2841" width="8891" height="1310"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12412" y="3277"><tspan fill="rgb(0,0,0)" stroke="none">Main Application State (App)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="10132" y="3913"><tspan fill="rgb(102,102,102)" stroke="none">Initializes the “Stream”, handles logging and user interactions</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8574" y="3449" width="1308" height="2057"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8600,3475 C 9540,3475 9041,4930 9572,5310"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 9880,5399 L 9605,5070 9463,5504 9880,5399 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10554" y="4174" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 10791,4200 C 10685,4200 10580,4305 10580,4411 L 10580,5259 C 10580,5365 10685,5471 10791,5471 L 13417,5471 C 13522,5471 13628,5365 13628,5259 L 13628,4411 C 13628,4305 13522,4200 13417,4200 L 10791,4200 Z M 10580,4200 L 10580,4200 Z M 13629,5471 L 13629,5471 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 10791,4200 C 10685,4200 10580,4305 10580,4411 L 10580,5259 C 10580,5365 10685,5471 10791,5471 L 13417,5471 C 13522,5471 13628,5365 13628,5259 L 13628,4411 C 13628,4305 13522,4200 13417,4200 L 10791,4200 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10580" y="4200" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="11624" y="4775"><tspan fill="rgb(0,0,0)" stroke="none">Logger</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="11509" y="5093"><tspan fill="rgb(0,0,0)" stroke="none">widget.py</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14955" y="4175" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 15192,4201 C 15086,4201 14981,4306 14981,4412 L 14981,5260 C 14981,5366 15086,5472 15192,5472 L 17818,5472 C 17923,5472 18029,5366 18029,5260 L 18029,4412 C 18029,4306 17923,4201 17818,4201 L 15192,4201 Z M 14981,4201 L 14981,4201 Z M 18030,5472 L 18030,5472 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 15192,4201 C 15086,4201 14981,4306 14981,4412 L 14981,5260 C 14981,5366 15086,5472 15192,5472 L 17818,5472 C 17923,5472 18029,5366 18029,5260 L 18029,4412 C 18029,4306 17923,4201 17818,4201 L 15192,4201 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14981" y="4201" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15798" y="4776"><tspan fill="rgb(0,0,0)" stroke="none">Status Bar</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="15936" y="5094"><tspan fill="rgb(0,0,0)" stroke="none">status.py</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10556" y="5976" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 10793,6002 C 10687,6002 10582,6107 10582,6213 L 10582,7061 C 10582,7167 10687,7273 10793,7273 L 13419,7273 C 13524,7273 13630,7167 13630,7061 L 13630,6213 C 13630,6107 13524,6002 13419,6002 L 10793,6002 Z M 10582,6002 L 10582,6002 Z M 13631,7273 L 13631,7273 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 10793,6002 C 10687,6002 10582,6107 10582,6213 L 10582,7061 C 10582,7167 10687,7273 10793,7273 L 13419,7273 C 13524,7273 13630,7167 13630,7061 L 13630,6213 C 13630,6107 13524,6002 13419,6002 L 10793,6002 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10582" y="6002" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="11247" y="6577"><tspan fill="rgb(0,0,0)" stroke="none">Completions</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="11340" y="6895"><tspan fill="rgb(0,0,0)" stroke="none">complete.py</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14956" y="5976" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 15193,6002 C 15087,6002 14982,6107 14982,6213 L 14982,7061 C 14982,7167 15087,7273 15193,7273 L 17819,7273 C 17924,7273 18030,7167 18030,7061 L 18030,6213 C 18030,6107 17924,6002 17819,6002 L 15193,6002 Z M 14982,6002 L 14982,6002 Z M 18031,7273 L 18031,7273 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 15193,6002 C 15087,6002 14982,6107 14982,6213 L 14982,7061 C 14982,7167 15087,7273 15193,7273 L 17819,7273 C 17924,7273 18030,7167 18030,7061 L 18030,6213 C 18030,6107 17924,6002 17819,6002 L 15193,6002 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14982" y="6002" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15583" y="6577"><tspan fill="rgb(0,0,0)" stroke="none">Color profiles</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="15933" y="6895"><tspan fill="rgb(0,0,0)" stroke="none">profile.py</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1481" y="10544" width="12881" height="5723"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2452,10570 C 2419,10570 2385,10572 2352,10577"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2253,10597 C 2221,10605 2189,10616 2158,10628"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2066,10670 C 2037,10685 2008,10702 1980,10721"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1898,10780 C 1872,10800 1846,10822 1822,10846"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1752,10918 C 1730,10943 1709,10970 1690,10997"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1634,11081 C 1617,11110 1601,11139 1587,11170"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1550,11263 C 1539,11295 1530,11327 1523,11360"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,11459 C 1508,11478 1507,11496 1507,11515 L 1507,11560"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,11660 L 1507,11761"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,11861 L 1507,11962"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,12062 L 1507,12163"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,12263 L 1507,12363"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,12464 L 1507,12564"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,12665 L 1507,12765"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,12866 L 1507,12966"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,13067 L 1507,13167"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,13268 L 1507,13368"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,13469 L 1507,13569"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,13670 L 1507,13770"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,13870 L 1507,13971"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,14071 L 1507,14172"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,14272 L 1507,14373"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,14473 L 1507,14574"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,14674 L 1507,14775"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,14875 L 1507,14976"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,15076 L 1507,15177"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1507,15277 L 1507,15295 C 1507,15322 1509,15350 1512,15377"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1529,15476 C 1537,15509 1547,15541 1559,15572"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1599,15664 C 1614,15694 1630,15724 1648,15752"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1706,15835 C 1726,15861 1748,15887 1771,15912"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1842,15983 C 1867,16005 1893,16026 1919,16047"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2003,16103 C 2031,16121 2061,16137 2091,16152"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2183,16191 C 2215,16203 2247,16212 2280,16220"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2379,16236 C 2403,16239 2428,16240 2452,16240 L 2479,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2579,16240 L 2680,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2780,16240 L 2881,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2981,16240 L 3082,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3182,16240 L 3283,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3383,16240 L 3484,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3584,16240 L 3685,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3785,16240 L 3886,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3986,16240 L 4086,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4187,16240 L 4287,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4388,16240 L 4488,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4589,16240 L 4689,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4790,16240 L 4890,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4991,16240 L 5091,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5192,16240 L 5292,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5393,16240 L 5493,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5594,16240 L 5694,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5794,16240 L 5895,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5995,16240 L 6096,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6196,16240 L 6297,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6397,16240 L 6498,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6598,16240 L 6699,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6799,16240 L 6900,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7000,16240 L 7101,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7201,16240 L 7302,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7402,16240 L 7502,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7603,16240 L 7703,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7804,16240 L 7904,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8005,16240 L 8105,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8206,16240 L 8306,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8407,16240 L 8507,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8608,16240 L 8708,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8809,16240 L 8909,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9010,16240 L 9110,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9210,16240 L 9311,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9411,16240 L 9512,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9612,16240 L 9713,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9813,16240 L 9914,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10014,16240 L 10115,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10215,16240 L 10316,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10416,16240 L 10517,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10617,16240 L 10718,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10818,16240 L 10918,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11019,16240 L 11119,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11220,16240 L 11320,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11421,16240 L 11521,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11622,16240 L 11722,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11823,16240 L 11923,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12024,16240 L 12124,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12225,16240 L 12325,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12425,16240 L 12526,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12626,16240 L 12727,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12827,16240 L 12928,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13028,16240 L 13129,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13229,16240 L 13330,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13430,16239 C 13464,16237 13497,16233 13530,16227"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13627,16202 C 13659,16192 13690,16180 13721,16166"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13811,16120 C 13840,16104 13868,16086 13895,16066"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13975,16004 C 14000,15983 14025,15960 14048,15936"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14115,15861 C 14137,15835 14157,15808 14175,15780"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14227,15694 C 14243,15664 14258,15634 14271,15603"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14304,15508 C 14313,15476 14321,15443 14326,15410"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,15310 C 14335,15305 14335,15300 14335,15295 L 14335,15210"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,15109 L 14335,15009"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,14908 L 14335,14808"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,14707 L 14335,14607"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,14506 L 14335,14406"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,14305 L 14335,14205"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,14105 L 14335,14004"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,13904 L 14335,13803"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,13703 L 14335,13602"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,13502 L 14335,13401"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,13301 L 14335,13200"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,13100 L 14335,12999"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,12899 L 14335,12798"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,12698 L 14335,12597"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,12497 L 14335,12397"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,12296 L 14335,12196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,12095 L 14335,11995"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,11894 L 14335,11794"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,11693 L 14335,11593"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14335,11492 C 14334,11459 14330,11426 14325,11392"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14302,11295 C 14293,11263 14281,11231 14268,11200"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14224,11109 C 14208,11080 14190,11052 14171,11024"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14111,10943 C 14089,10918 14067,10893 14043,10869"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13969,10801 C 13944,10779 13917,10759 13890,10739"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13805,10686 C 13775,10669 13745,10654 13714,10641"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13620,10606 C 13588,10596 13556,10588 13523,10582"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13423,10571 C 13412,10570 13401,10570 13390,10570 L 13322,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13222,10570 L 13121,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13021,10570 L 12921,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12820,10570 L 12720,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12619,10570 L 12519,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12418,10570 L 12318,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12217,10570 L 12117,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12016,10570 L 11916,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11815,10570 L 11715,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11614,10570 L 11514,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11414,10570 L 11313,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11213,10570 L 11112,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11012,10570 L 10911,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10811,10570 L 10710,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10610,10570 L 10509,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10409,10570 L 10308,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10208,10570 L 10107,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10007,10570 L 9906,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9806,10570 L 9706,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9605,10570 L 9505,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9404,10570 L 9304,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9203,10570 L 9103,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9002,10570 L 8902,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8801,10570 L 8701,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8600,10570 L 8500,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8399,10570 L 8299,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8198,10570 L 8098,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7998,10570 L 7897,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7797,10570 L 7696,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7596,10570 L 7495,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7395,10570 L 7294,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7194,10570 L 7093,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6993,10570 L 6892,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6792,10570 L 6691,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6591,10570 L 6490,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6390,10570 L 6290,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6189,10570 L 6089,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5988,10570 L 5888,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5787,10570 L 5687,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5586,10570 L 5486,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5385,10570 L 5285,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5184,10570 L 5084,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4983,10570 L 4883,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4782,10570 L 4682,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4582,10570 L 4481,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4381,10570 L 4280,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4180,10570 L 4079,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3979,10570 L 3878,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3778,10570 L 3677,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3577,10570 L 3476,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3376,10570 L 3275,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3175,10570 L 3074,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2974,10570 L 2874,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2773,10570 L 2673,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2572,10570 L 2472,10570"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2183" y="10571" width="11558" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="5513" y="11081"><tspan fill="rgb(153,153,153)" stroke="none">Core, Frontend facing API</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6744" y="13615" width="3282" height="1997"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7093,13641 C 6931,13641 6770,13803 6770,13965 L 6770,15261 C 6770,15423 6931,15585 7093,15585 L 9674,15585 C 9836,15585 9998,15423 9998,15261 L 9998,13965 C 9998,13803 9836,13641 9674,13641 L 7093,13641 Z M 6770,13641 L 6770,13641 Z M 9999,15585 L 9999,15585 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7093,13641 C 6931,13641 6770,13803 6770,13965 L 6770,15261 C 6770,15423 6931,15585 7093,15585 L 9674,15585 C 9836,15585 9998,15423 9998,15261 L 9998,13965 C 9998,13803 9836,13641 9674,13641 L 7093,13641 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6770" y="13695" width="3229" height="1779"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7859" y="14078"><tspan fill="rgb(0,0,0)" stroke="none">Context</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7085" y="14714"><tspan fill="rgb(102,102,102)" stroke="none">User configuration, </tspan></tspan><tspan class="TextPosition" x="7394" y="15032"><tspan fill="rgb(102,102,102)" stroke="none">CLI arguments</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6734" y="11215" width="6994" height="1997"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7084,11241 C 6922,11241 6760,11403 6760,11565 L 6760,12861 C 6760,13023 6922,13185 7084,13185 L 13376,13185 C 13538,13185 13700,13023 13700,12861 L 13700,11565 C 13700,11403 13538,11241 13376,11241 L 7084,11241 Z M 6760,11241 L 6760,11241 Z M 13701,13185 L 13701,13185 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7084,11241 C 6922,11241 6760,11403 6760,11565 L 6760,12861 C 6760,13023 6922,13185 7084,13185 L 13376,13185 C 13538,13185 13700,13023 13700,12861 L 13700,11565 C 13700,11403 13538,11241 13376,11241 L 7084,11241 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2224" y="11215" width="3883" height="1997"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2574,11241 C 2412,11241 2250,11403 2250,11565 L 2250,12861 C 2250,13023 2412,13185 2574,13185 L 5756,13185 C 5918,13185 6080,13023 6080,12861 L 6080,11565 C 6080,11403 5918,11241 5756,11241 L 2574,11241 Z M 2250,11241 L 2250,11241 Z M 6080,13185 L 6080,13185 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2574,11241 C 2412,11241 2250,11403 2250,11565 L 2250,12861 C 2250,13023 2412,13185 2574,13185 L 5756,13185 C 5918,13185 6080,13023 6080,12861 L 6080,11565 C 6080,11403 5918,11241 5756,11241 L 2574,11241 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2419" y="11367" width="3516" height="1652"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3698" y="11815"><tspan fill="rgb(0,0,0)" stroke="none">Project</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2822" y="12451"><tspan fill="rgb(102,102,102)" stroke="none">Loaded project.conf </tspan></tspan><tspan class="TextPosition" x="3271" y="12769"><tspan fill="rgb(102,102,102)" stroke="none">configuration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6991" y="11340" width="6479" height="1679"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9750" y="11801"><tspan fill="rgb(0,0,0)" stroke="none">Stream</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7244" y="12437"><tspan fill="rgb(102,102,102)" stroke="none">Loading of the project, implementation of all </tspan></tspan><tspan class="TextPosition" x="7627" y="12755"><tspan fill="rgb(102,102,102)" stroke="none">main user facing commands in the CLI</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5852" y="9101" width="459" height="1472"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6082,9127 C 6082,10258 6081,9703 6081,10228"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 6082,10571 L 6310,10207 5853,10206 6082,10571 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1483" y="17484" width="18088" height="11484"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2455,17510 L 2394,17510 C 2361,17510 2327,17513 2294,17517"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2196,17538 C 2164,17548 2132,17559 2101,17572"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2010,17616 C 1981,17632 1953,17650 1925,17669"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1846,17731 C 1820,17752 1796,17775 1772,17800"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1706,17875 C 1685,17902 1666,17929 1647,17957"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1597,18044 C 1582,18074 1569,18105 1557,18136"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1528,18233 C 1521,18265 1515,18298 1512,18332"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,18432 L 1509,18533"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,18633 L 1509,18733"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,18834 L 1509,18934"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,19035 L 1509,19135"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,19236 L 1509,19336"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,19437 L 1509,19537"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,19638 L 1509,19738"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,19839 L 1509,19939"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,20040 L 1509,20140"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,20241 L 1509,20341"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,20441 L 1509,20542"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,20642 L 1509,20743"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,20843 L 1509,20944"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,21044 L 1509,21145"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,21245 L 1509,21346"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,21446 L 1509,21547"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,21647 L 1509,21748"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,21848 L 1509,21948"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,22049 L 1509,22149"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,22250 L 1509,22350"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,22451 L 1509,22551"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,22652 L 1509,22752"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,22853 L 1509,22953"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,23054 L 1509,23154"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,23255 L 1509,23355"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,23456 L 1509,23556"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,23656 L 1509,23757"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,23857 L 1509,23958"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,24058 L 1509,24159"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,24259 L 1509,24360"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,24460 L 1509,24561"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,24661 L 1509,24762"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,24862 L 1509,24963"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,25063 L 1509,25164"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,25264 L 1509,25364"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,25465 L 1509,25565"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,25666 L 1509,25766"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,25867 L 1509,25967"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,26068 L 1509,26168"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,26269 L 1509,26369"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,26470 L 1509,26570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,26671 L 1509,26771"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,26872 L 1509,26972"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,27072 L 1509,27173"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,27273 L 1509,27374"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,27474 L 1509,27575"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,27675 L 1509,27776"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,27876 L 1509,27977"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1509,28077 C 1510,28111 1514,28144 1520,28177"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1544,28275 C 1554,28306 1566,28338 1579,28368"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1626,28458 C 1642,28487 1661,28515 1681,28542"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1744,28620 C 1766,28645 1790,28669 1814,28692"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1891,28757 C 1918,28777 1946,28796 1974,28814"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2063,28862 C 2093,28876 2124,28889 2155,28900"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2252,28926 C 2285,28933 2319,28938 2352,28940"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2452,28941 L 2553,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2653,28941 L 2754,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2854,28941 L 2955,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3055,28941 L 3156,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3256,28941 L 3357,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3457,28941 L 3558,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3658,28941 L 3759,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3859,28941 L 3959,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4060,28941 L 4160,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4261,28941 L 4361,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4462,28941 L 4562,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4663,28941 L 4763,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4864,28941 L 4964,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5065,28941 L 5165,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5266,28941 L 5366,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5467,28941 L 5567,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5667,28941 L 5768,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5868,28941 L 5969,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6069,28941 L 6170,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6270,28941 L 6371,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6471,28941 L 6572,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6672,28941 L 6773,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6873,28941 L 6974,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7074,28941 L 7175,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7275,28941 L 7375,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7476,28941 L 7576,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7677,28941 L 7777,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7878,28941 L 7978,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8079,28941 L 8179,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8280,28941 L 8380,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8481,28941 L 8581,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8682,28941 L 8782,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8883,28941 L 8983,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9083,28941 L 9184,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9284,28941 L 9385,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9485,28941 L 9586,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9686,28941 L 9787,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9887,28941 L 9988,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10088,28941 L 10189,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10289,28941 L 10390,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10490,28941 L 10590,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10691,28941 L 10791,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10892,28941 L 10992,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11093,28941 L 11193,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11294,28941 L 11394,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11495,28941 L 11595,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11696,28941 L 11796,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11897,28941 L 11997,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12098,28941 L 12198,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12298,28941 L 12399,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12499,28941 L 12600,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12700,28941 L 12801,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12901,28941 L 13002,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13102,28941 L 13203,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13303,28941 L 13404,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13504,28941 L 13605,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13705,28941 L 13806,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13906,28941 L 14006,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14107,28941 L 14207,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14308,28941 L 14408,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14509,28941 L 14609,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14710,28941 L 14810,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14911,28941 L 15011,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15112,28941 L 15212,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15313,28941 L 15413,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15514,28941 L 15614,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15714,28941 L 15815,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15915,28941 L 16016,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16116,28941 L 16217,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16317,28941 L 16418,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16518,28941 L 16619,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16719,28941 L 16820,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16920,28941 L 17021,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17121,28941 L 17222,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17322,28941 L 17422,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17523,28941 L 17623,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17724,28941 L 17824,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17925,28941 L 18025,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18126,28941 L 18226,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18327,28941 L 18427,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18528,28941 L 18628,28941"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18728,28937 C 18762,28934 18795,28928 18827,28920"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18924,28890 C 18955,28879 18985,28865 19015,28849"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19102,28799 C 19130,28781 19157,28761 19183,28740"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19259,28673 C 19283,28649 19305,28625 19327,28599"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19388,28519 C 19407,28492 19425,28463 19441,28434"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19484,28343 C 19497,28312 19508,28280 19517,28248"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19538,28150 C 19542,28119 19544,28087 19544,28056 L 19544,28049"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,27949 L 19544,27849"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,27748 L 19544,27648"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,27547 L 19544,27447"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,27346 L 19544,27246"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,27145 L 19544,27045"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,26944 L 19544,26844"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,26743 L 19544,26643"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,26542 L 19544,26442"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,26341 L 19544,26241"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,26141 L 19544,26040"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,25940 L 19544,25839"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,25739 L 19544,25638"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,25538 L 19544,25437"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,25337 L 19544,25236"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,25136 L 19544,25035"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,24935 L 19544,24834"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,24734 L 19544,24633"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,24533 L 19544,24433"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,24332 L 19544,24232"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,24131 L 19544,24031"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,23930 L 19544,23830"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,23729 L 19544,23629"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,23528 L 19544,23428"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,23327 L 19544,23227"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,23126 L 19544,23026"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,22925 L 19544,22825"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,22725 L 19544,22624"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,22524 L 19544,22423"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,22323 L 19544,22222"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,22122 L 19544,22021"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,21921 L 19544,21820"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,21720 L 19544,21619"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,21519 L 19544,21418"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,21318 L 19544,21217"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,21117 L 19544,21017"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,20916 L 19544,20816"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,20715 L 19544,20615"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,20514 L 19544,20414"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,20313 L 19544,20213"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,20112 L 19544,20012"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,19911 L 19544,19811"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,19710 L 19544,19610"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,19509 L 19544,19409"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,19309 L 19544,19208"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,19108 L 19544,19007"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,18907 L 19544,18806"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,18706 L 19544,18605"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,18505 L 19544,18404"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19538,18304 C 19534,18271 19527,18238 19518,18206"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19486,18110 C 19473,18080 19459,18049 19443,18020"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19390,17934 C 19371,17906 19351,17880 19329,17854"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19261,17780 C 19237,17756 19212,17734 19186,17713"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19105,17654 C 19076,17635 19047,17618 19018,17603"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18926,17562 C 18895,17550 18863,17539 18830,17531"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18731,17514 C 18707,17511 18683,17510 18659,17510 L 18631,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18531,17510 L 18430,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18330,17510 L 18229,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18129,17510 L 18028,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17928,17510 L 17827,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17727,17510 L 17626,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17526,17510 L 17425,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17325,17510 L 17224,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17124,17510 L 17024,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16923,17510 L 16823,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16722,17510 L 16622,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16521,17510 L 16421,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16320,17510 L 16220,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16119,17510 L 16019,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15918,17510 L 15818,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15717,17510 L 15617,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15516,17510 L 15416,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15316,17510 L 15215,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15115,17510 L 15014,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14914,17510 L 14813,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14713,17510 L 14612,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14512,17510 L 14411,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14311,17510 L 14210,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14110,17510 L 14009,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13909,17510 L 13809,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13708,17510 L 13608,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13507,17510 L 13407,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13306,17510 L 13206,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13105,17510 L 13005,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12904,17510 L 12804,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12703,17510 L 12603,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12502,17510 L 12402,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12301,17510 L 12201,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12101,17510 L 12000,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11900,17510 L 11799,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11699,17510 L 11598,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11498,17510 L 11397,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11297,17510 L 11196,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11096,17510 L 10995,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10895,17510 L 10794,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10694,17510 L 10593,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10493,17510 L 10393,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10292,17510 L 10192,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10091,17510 L 9991,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9890,17510 L 9790,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9689,17510 L 9589,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9488,17510 L 9388,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9287,17510 L 9187,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9086,17510 L 8986,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8885,17510 L 8785,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8685,17510 L 8584,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8484,17510 L 8383,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8283,17510 L 8182,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8082,17510 L 7981,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7881,17510 L 7780,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7680,17510 L 7579,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7479,17510 L 7378,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7278,17510 L 7177,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7077,17510 L 6977,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6876,17510 L 6776,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6675,17510 L 6575,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6474,17510 L 6374,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6273,17510 L 6173,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6072,17510 L 5972,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5871,17510 L 5771,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5670,17510 L 5570,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5469,17510 L 5369,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5269,17510 L 5168,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5068,17510 L 4967,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4867,17510 L 4766,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4666,17510 L 4565,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4465,17510 L 4364,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4264,17510 L 4163,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4063,17510 L 3962,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3862,17510 L 3762,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3661,17510 L 3561,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3460,17510 L 3360,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3259,17510 L 3159,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3058,17510 L 2958,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2857,17510 L 2757,17510"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2656,17510 L 2556,17510"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4583" y="16213" width="459" height="1298"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4811,16239 C 4811,17193 4812,16718 4812,17168"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 4813,17510 L 5040,17145 4583,17146 4813,17510 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4684" y="17572" width="11558" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="9129" y="18082"><tspan fill="rgb(153,153,153)" stroke="none">Core Internals</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2225" y="22594" width="3247" height="2564"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2669,22620 C 2460,22620 2251,22829 2251,23038 L 2251,24712 C 2251,24921 2460,25131 2669,25131 L 5026,25131 C 5235,25131 5445,24921 5445,24712 L 5445,23038 C 5445,22829 5235,22620 5026,22620 L 2669,22620 Z M 2251,22620 L 2251,22620 Z M 5445,25131 L 5445,25131 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2669,22620 C 2460,22620 2251,22829 2251,23038 L 2251,24712 C 2251,24921 2460,25131 2669,25131 L 5026,25131 C 5235,25131 5445,24921 5445,24712 L 5445,23038 C 5445,22829 5235,22620 5026,22620 L 2669,22620 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2297" y="22590" width="3149" height="2541"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3296" y="23323"><tspan fill="rgb(0,0,0)" stroke="none">Platform</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2908" y="23959"><tspan fill="rgb(102,102,102)" stroke="none">Abstract class </tspan></tspan><tspan class="TextPosition" x="2618" y="24277"><tspan fill="rgb(102,102,102)" stroke="none">providing platform </tspan></tspan><tspan class="TextPosition" x="2705" y="24595"><tspan fill="rgb(102,102,102)" stroke="none">specific routines.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id32">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2286" y="4671" width="6335" height="4520"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="2909" y="5770"><tspan fill="rgb(102,102,102)" stroke="none">The Frontend implements the </tspan></tspan><tspan class="TextPosition" x="2909" y="6202"><tspan fill="rgb(102,102,102)" stroke="none">main command line interface, </tspan></tspan><tspan class="TextPosition" x="2611" y="6634"><tspan fill="rgb(102,102,102)" stroke="none">status bar, master log formatting, </tspan></tspan><tspan class="TextPosition" x="3004" y="7066"><tspan fill="rgb(102,102,102)" stroke="none">and any interactivity with the </tspan></tspan><tspan class="TextPosition" x="2833" y="7498"><tspan fill="rgb(102,102,102)" stroke="none">user. This is cleanly separated </tspan></tspan><tspan class="TextPosition" x="3188" y="7930"><tspan fill="rgb(102,102,102)" stroke="none">from the core BuildStream </tspan></tspan><tspan class="TextPosition" x="4471" y="8362"><tspan fill="rgb(102,102,102)" stroke="none">application.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id33">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11125" y="23495" width="7739" height="4498"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 11891,23521 C 11521,23521 11151,23891 11151,24261 L 11151,27225 C 11151,27595 11521,27966 11891,27966 L 18096,27966 C 18466,27966 18837,27595 18837,27225 L 18837,24261 C 18837,23891 18466,23521 18096,23521 L 11891,23521 Z M 11151,23521 L 11151,23521 Z M 18837,27966 L 18837,27966 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 11891,23521 C 11521,23521 11151,23891 11151,24261 L 11151,27225 C 11151,27595 11521,27966 11891,27966 L 18096,27966 C 18466,27966 18837,27595 18837,27225 L 18837,24261 C 18837,23891 18466,23521 18096,23521 L 11891,23521 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id34">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11633" y="23576" width="6605" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14249" y="23960"><tspan fill="rgb(0,0,0)" stroke="none">Scheduler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12201" y="24278"><tspan fill="rgb(0,0,0)" stroke="none">(Scheduling of element processing jobs)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12160" y="24914"><tspan fill="rgb(102,102,102)" stroke="none">The Scheduler is in charge of processing </tspan></tspan><tspan class="TextPosition" x="13327" y="25232"><tspan fill="rgb(102,102,102)" stroke="none">elements in job queues.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id35">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11655" y="26075" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 11892,26101 C 11786,26101 11681,26206 11681,26312 L 11681,27160 C 11681,27266 11786,27372 11892,27372 L 14518,27372 C 14623,27372 14729,27266 14729,27160 L 14729,26312 C 14729,26206 14623,26101 14518,26101 L 11892,26101 Z M 11681,26101 L 11681,26101 Z M 14730,27372 L 14730,27372 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 11892,26101 C 11786,26101 11681,26206 11681,26312 L 11681,27160 C 11681,27266 11786,27372 11892,27372 L 14518,27372 C 14623,27372 14729,27266 14729,27160 L 14729,26312 C 14729,26206 14623,26101 14518,26101 L 11892,26101 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id36">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11681" y="26101" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12953" y="26676"><tspan fill="rgb(0,0,0)" stroke="none">Job</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12147" y="26994"><tspan fill="rgb(0,0,0)" stroke="none">(Abstract tasks)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id37">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15256" y="26076" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 15493,26102 C 15387,26102 15282,26207 15282,26313 L 15282,27161 C 15282,27267 15387,27373 15493,27373 L 18119,27373 C 18224,27373 18330,27267 18330,27161 L 18330,26313 C 18330,26207 18224,26102 18119,26102 L 15493,26102 Z M 15282,26102 L 15282,26102 Z M 18331,27373 L 18331,27373 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 15493,26102 C 15387,26102 15282,26207 15282,26313 L 15282,27161 C 15282,27267 15387,27373 15493,27373 L 18119,27373 C 18224,27373 18330,27267 18330,27161 L 18330,26313 C 18330,26207 18224,26102 18119,26102 L 15493,26102 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id38">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15282" y="26102" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="16366" y="26518"><tspan fill="rgb(0,0,0)" stroke="none">Queue</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15943" y="26836"><tspan fill="rgb(0,0,0)" stroke="none">(Abstract job </tspan></tspan><tspan class="TextPosition" x="16264" y="27154"><tspan fill="rgb(0,0,0)" stroke="none">queues)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id39">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11125" y="18396" width="7739" height="4498"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 11891,18422 C 11521,18422 11151,18792 11151,19162 L 11151,22126 C 11151,22496 11521,22867 11891,22867 L 18096,22867 C 18466,22867 18837,22496 18837,22126 L 18837,19162 C 18837,18792 18466,18422 18096,18422 L 11891,18422 Z M 11151,18422 L 11151,18422 Z M 18837,22867 L 18837,22867 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 11891,18422 C 11521,18422 11151,18792 11151,19162 L 11151,22126 C 11151,22496 11521,22867 11891,22867 L 18096,22867 C 18466,22867 18837,22496 18837,22126 L 18837,19162 C 18837,18792 18466,18422 18096,18422 L 11891,18422 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id40">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11633" y="18489" width="6605" height="2478"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14463" y="18873"><tspan fill="rgb(0,0,0)" stroke="none">Loader</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12802" y="19191"><tspan fill="rgb(0,0,0)" stroke="none">(Load the elements in a project)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11930" y="19827"><tspan fill="rgb(102,102,102)" stroke="none">The loader loads elements and sources from </tspan></tspan><tspan class="TextPosition" x="11938" y="20145"><tspan fill="rgb(102,102,102)" stroke="none">the project directory, transforming them into </tspan></tspan><tspan class="TextPosition" x="12387" y="20463"><tspan fill="rgb(102,102,102)" stroke="none">data structures ready for Element and </tspan></tspan><tspan class="TextPosition" x="13572" y="20781"><tspan fill="rgb(102,102,102)" stroke="none">Source instantiation</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id41">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11655" y="20976" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 11892,21002 C 11786,21002 11681,21107 11681,21213 L 11681,22061 C 11681,22167 11786,22273 11892,22273 L 14518,22273 C 14623,22273 14729,22167 14729,22061 L 14729,21213 C 14729,21107 14623,21002 14518,21002 L 11892,21002 Z M 11681,21002 L 11681,21002 Z M 14730,22273 L 14730,22273 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 11892,21002 C 11786,21002 11681,21107 11681,21213 L 11681,22061 C 11681,22167 11786,22273 11892,22273 L 14518,22273 C 14623,22273 14729,22167 14729,22061 L 14729,21213 C 14729,21107 14623,21002 14518,21002 L 11892,21002 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id42">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11681" y="21002" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12314" y="21418"><tspan fill="rgb(0,0,0)" stroke="none">LoadElement</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12316" y="21736"><tspan fill="rgb(0,0,0)" stroke="none">(Intermediate </tspan></tspan><tspan class="TextPosition" x="12623" y="22054"><tspan fill="rgb(0,0,0)" stroke="none">element)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id43">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15256" y="20977" width="3102" height="1324"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 15493,21003 C 15387,21003 15282,21108 15282,21214 L 15282,22062 C 15282,22168 15387,22274 15493,22274 L 18119,22274 C 18224,22274 18330,22168 18330,22062 L 18330,21214 C 18330,21108 18224,21003 18119,21003 L 15493,21003 Z M 15282,21003 L 15282,21003 Z M 18331,22274 L 18331,22274 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 15493,21003 C 15387,21003 15282,21108 15282,21214 L 15282,22062 C 15282,22168 15387,22274 15493,22274 L 18119,22274 C 18224,22274 18330,22168 18330,22062 L 18330,21214 C 18330,21108 18224,21003 18119,21003 L 15493,21003 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id44">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15282" y="21003" width="3049" height="1271"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15788" y="21419"><tspan fill="rgb(0,0,0)" stroke="none">MetaElement &amp; </tspan></tspan><tspan class="TextPosition" x="16002" y="21737"><tspan fill="rgb(0,0,0)" stroke="none">MetaSource</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15761" y="22055"><tspan fill="rgb(0,0,0)" stroke="none">(Loader output)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id45">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1524" y="13192" width="4557" height="2922"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="1940" y="13708"><tspan fill="rgb(102,102,102)" stroke="none">The Frontend creates </tspan></tspan><tspan class="TextPosition" x="2092" y="14140"><tspan fill="rgb(102,102,102)" stroke="none">the toplevel Project, </tspan></tspan><tspan class="TextPosition" x="2014" y="14572"><tspan fill="rgb(102,102,102)" stroke="none">Context and Stream, </tspan></tspan><tspan class="TextPosition" x="1834" y="15004"><tspan fill="rgb(102,102,102)" stroke="none">and receives Elements </tspan></tspan><tspan class="TextPosition" x="1830" y="15436"><tspan fill="rgb(102,102,102)" stroke="none">and Sources by way of </tspan></tspan><tspan class="TextPosition" x="2113" y="15868"><tspan fill="rgb(102,102,102)" stroke="none">loading the Stream.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id46">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1524" y="18700" width="9129" height="3891"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="2613" y="20348"><tspan fill="rgb(102,102,102)" stroke="none">These represent the main active internal </tspan></tspan><tspan class="TextPosition" x="1992" y="20780"><tspan fill="rgb(102,102,102)" stroke="none">components which sit below the frontend facing </tspan></tspan><tspan class="TextPosition" x="1885" y="21212"><tspan fill="rgb(102,102,102)" stroke="none">business logic in terms of module stacking order.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id47">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1484" y="30185" width="18086" height="7038"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2674,30211 C 2641,30211 2607,30213 2574,30217"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2475,30233 C 2442,30240 2410,30249 2378,30259"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2283,30295 C 2253,30308 2222,30322 2193,30338"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2106,30388 C 2077,30406 2050,30425 2023,30446"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1945,30509 C 1919,30531 1895,30554 1871,30577"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1803,30651 C 1781,30677 1760,30703 1740,30730"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1683,30813 C 1666,30842 1649,30871 1633,30900"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1591,30991 C 1578,31022 1566,31054 1556,31086"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1531,31183 C 1524,31216 1518,31249 1515,31282"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,31382 L 1510,31483"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,31583 L 1510,31684"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,31784 L 1510,31885"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,31985 L 1510,32086"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,32186 L 1510,32287"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,32387 L 1510,32488"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,32588 L 1510,32689"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,32789 L 1510,32890"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,32990 L 1510,33090"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,33191 L 1510,33291"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,33392 L 1510,33492"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,33593 L 1510,33693"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,33794 L 1510,33894"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,33995 L 1510,34095"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,34196 L 1510,34296"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,34397 L 1510,34497"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,34597 L 1510,34698"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,34798 L 1510,34899"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,34999 L 1510,35100"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,35200 L 1510,35301"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,35401 L 1510,35502"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,35602 L 1510,35703"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,35803 L 1510,35904"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1510,36004 L 1510,36031 C 1510,36055 1511,36080 1513,36104"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1527,36204 C 1533,36237 1541,36269 1550,36302"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1583,36397 C 1596,36428 1609,36458 1624,36488"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1673,36576 C 1690,36605 1709,36633 1728,36660"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1790,36740 C 1811,36766 1834,36791 1857,36815"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1930,36885 C 1955,36907 1980,36929 2007,36949"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2089,37007 C 2117,37026 2146,37043 2175,37059"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2265,37104 C 2296,37118 2327,37130 2358,37141"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2455,37169 C 2488,37177 2521,37183 2554,37188"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2654,37196 C 2661,37196 2667,37196 2674,37196 L 2754,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2855,37196 L 2955,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3056,37196 L 3156,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3257,37196 L 3357,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3458,37196 L 3558,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3659,37196 L 3759,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3859,37196 L 3960,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4060,37196 L 4161,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4261,37196 L 4362,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4462,37196 L 4563,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4663,37196 L 4764,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4864,37196 L 4965,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5065,37196 L 5166,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5266,37196 L 5367,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5467,37196 L 5567,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5668,37196 L 5768,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5869,37196 L 5969,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6070,37196 L 6170,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6271,37196 L 6371,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6472,37196 L 6572,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6673,37196 L 6773,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6874,37196 L 6974,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7075,37196 L 7175,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7275,37196 L 7376,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7476,37196 L 7577,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7677,37196 L 7778,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7878,37196 L 7979,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8079,37196 L 8180,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8280,37196 L 8381,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8481,37196 L 8582,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8682,37196 L 8783,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8883,37196 L 8983,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9084,37196 L 9184,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9285,37196 L 9385,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9486,37196 L 9586,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9687,37196 L 9787,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9888,37196 L 9988,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10089,37196 L 10189,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10290,37196 L 10390,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10491,37196 L 10591,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10691,37196 L 10792,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10892,37196 L 10993,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11093,37196 L 11194,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11294,37196 L 11395,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11495,37196 L 11596,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11696,37196 L 11797,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11897,37196 L 11998,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12098,37196 L 12198,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12299,37196 L 12399,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12500,37196 L 12600,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12701,37196 L 12801,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12902,37196 L 13002,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13103,37196 L 13203,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13304,37196 L 13404,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13505,37196 L 13605,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13706,37196 L 13806,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13906,37196 L 14007,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14107,37196 L 14208,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14308,37196 L 14409,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14509,37196 L 14610,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14710,37196 L 14811,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14911,37196 L 15012,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15112,37196 L 15213,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15313,37196 L 15414,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15514,37196 L 15614,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15715,37196 L 15815,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15916,37196 L 16016,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16117,37196 L 16217,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16318,37196 L 16418,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16519,37196 L 16619,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16720,37196 L 16820,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16921,37196 L 17021,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17122,37196 L 17222,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17322,37196 L 17423,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17523,37196 L 17624,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17724,37196 L 17825,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17925,37196 L 18026,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18126,37196 L 18227,37196"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18327,37196 L 18378,37196 C 18395,37196 18411,37196 18428,37195"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18528,37183 C 18560,37178 18593,37171 18626,37162"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18722,37131 C 18753,37119 18783,37106 18814,37092"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18903,37045 C 18932,37028 18960,37010 18988,36991"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19068,36931 C 19094,36910 19120,36888 19144,36865"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19215,36794 C 19238,36769 19260,36744 19281,36718"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19341,36637 C 19360,36609 19378,36581 19394,36552"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19441,36462 C 19455,36432 19468,36401 19480,36370"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19510,36274 C 19519,36241 19526,36209 19531,36176"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19542,36076 C 19543,36061 19543,36046 19543,36031 L 19543,35975"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,35875 L 19543,35774"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,35674 L 19543,35573"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,35473 L 19543,35372"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,35272 L 19543,35171"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,35071 L 19543,34971"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,34870 L 19543,34770"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,34669 L 19543,34569"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,34468 L 19543,34368"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,34267 L 19543,34167"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,34066 L 19543,33966"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,33865 L 19543,33765"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,33664 L 19543,33564"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,33464 L 19543,33363"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,33263 L 19543,33162"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,33062 L 19543,32961"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,32861 L 19543,32760"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,32660 L 19543,32559"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,32459 L 19543,32358"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,32258 L 19543,32157"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,32057 L 19543,31956"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,31856 L 19543,31756"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,31655 L 19543,31555"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,31454 L 19543,31375 C 19543,31368 19543,31361 19543,31354"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19535,31254 C 19530,31220 19524,31188 19516,31155"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19488,31058 C 19477,31027 19465,30996 19451,30965"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19406,30875 C 19390,30846 19372,30817 19354,30789"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19295,30707 C 19275,30680 19253,30655 19231,30630"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19161,30557 C 19137,30534 19112,30512 19086,30490"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19006,30429 C 18979,30409 18951,30391 18922,30373"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18834,30325 C 18804,30310 18774,30296 18743,30284"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18647,30251 C 18615,30242 18583,30234 18550,30227"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18450,30214 C 18426,30212 18402,30211 18378,30211 L 18350,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18249,30211 L 18149,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18048,30211 L 17948,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17848,30211 L 17747,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17647,30211 L 17546,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17446,30211 L 17345,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17245,30211 L 17144,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17044,30211 L 16943,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16843,30211 L 16742,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16642,30211 L 16541,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16441,30211 L 16340,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16240,30211 L 16140,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16039,30211 L 15939,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15838,30211 L 15738,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15637,30211 L 15537,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15436,30211 L 15336,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15235,30211 L 15135,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15034,30211 L 14934,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14833,30211 L 14733,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14632,30211 L 14532,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14432,30211 L 14331,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14231,30211 L 14130,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14030,30211 L 13929,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13829,30211 L 13728,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13628,30211 L 13527,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13427,30211 L 13326,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13226,30211 L 13125,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13025,30211 L 12924,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12824,30211 L 12724,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12623,30211 L 12523,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12422,30211 L 12322,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12221,30211 L 12121,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12020,30211 L 11920,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11819,30211 L 11719,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11618,30211 L 11518,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11417,30211 L 11317,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11216,30211 L 11116,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11016,30211 L 10915,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10815,30211 L 10714,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10614,30211 L 10513,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10413,30211 L 10312,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10212,30211 L 10111,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10011,30211 L 9910,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9810,30211 L 9709,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9609,30211 L 9508,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9408,30211 L 9308,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9207,30211 L 9107,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9006,30211 L 8906,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8805,30211 L 8705,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8604,30211 L 8504,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8403,30211 L 8303,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8202,30211 L 8102,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8001,30211 L 7901,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7801,30211 L 7700,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7600,30211 L 7499,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7399,30211 L 7298,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7198,30211 L 7097,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6997,30211 L 6896,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6796,30211 L 6695,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6595,30211 L 6494,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6394,30211 L 6293,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6193,30211 L 6093,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5992,30211 L 5892,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5791,30211 L 5691,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5590,30211 L 5490,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5389,30211 L 5289,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5188,30211 L 5088,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4987,30211 L 4887,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4786,30211 L 4686,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4585,30211 L 4485,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4385,30211 L 4284,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4184,30211 L 4083,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3983,30211 L 3882,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3782,30211 L 3681,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3581,30211 L 3480,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3380,30211 L 3279,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3179,30211 L 3078,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2978,30211 L 2877,30211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2777,30211 L 2677,30211"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id48">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7956" y="31317" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8305,31343 C 8143,31343 7982,31504 7982,31666 L 7982,32962 C 7982,33124 8143,33286 8305,33286 L 12737,33286 C 12899,33286 13061,33124 13061,32962 L 13061,31666 C 13061,31504 12899,31343 12737,31343 L 8305,31343 Z M 7982,31343 L 7982,31343 Z M 13061,33286 L 13061,33286 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8305,31343 C 8143,31343 7982,31504 7982,31666 L 7982,32962 C 7982,33124 8143,33286 8305,33286 L 12737,33286 C 12899,33286 13061,33124 13061,32962 L 13061,31666 C 13061,31504 12899,31343 12737,31343 L 8305,31343 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id49">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7943" y="31412" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9966" y="31795"><tspan fill="rgb(0,0,0)" stroke="none">Options</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="8669" y="32431"><tspan fill="rgb(102,102,102)" stroke="none">Loads and resolves project </tspan></tspan><tspan class="TextPosition" x="8918" y="32749"><tspan fill="rgb(102,102,102)" stroke="none">options, and processes </tspan></tspan><tspan class="TextPosition" x="8961" y="33067"><tspan fill="rgb(102,102,102)" stroke="none">conditional statements</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id50">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2270" y="31318" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2619,31344 C 2457,31344 2296,31505 2296,31667 L 2296,32963 C 2296,33125 2457,33287 2619,33287 L 7051,33287 C 7213,33287 7375,33125 7375,32963 L 7375,31667 C 7375,31505 7213,31344 7051,31344 L 2619,31344 Z M 2296,31344 L 2296,31344 Z M 7375,33287 L 7375,33287 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2619,31344 C 2457,31344 2296,31505 2296,31667 L 2296,32963 C 2296,33125 2457,33287 2619,33287 L 7051,33287 C 7213,33287 7375,33125 7375,32963 L 7375,31667 C 7375,31505 7213,31344 7051,31344 L 2619,31344 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id51">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2257" y="31413" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4193" y="31796"><tspan fill="rgb(0,0,0)" stroke="none">Variables</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2515" y="32432"><tspan fill="rgb(102,102,102)" stroke="none">Resolves a collection of variables, </tspan></tspan><tspan class="TextPosition" x="2767" y="32750"><tspan fill="rgb(102,102,102)" stroke="none">and performs substitutions on </tspan></tspan><tspan class="TextPosition" x="2934" y="33068"><tspan fill="rgb(102,102,102)" stroke="none">strings containing variables</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id52">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13584" y="31319" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13933,31345 C 13771,31345 13610,31506 13610,31668 L 13610,32964 C 13610,33126 13771,33288 13933,33288 L 18365,33288 C 18527,33288 18689,33126 18689,32964 L 18689,31668 C 18689,31506 18527,31345 18365,31345 L 13933,31345 Z M 13610,31345 L 13610,31345 Z M 18689,33288 L 18689,33288 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13933,31345 C 13771,31345 13610,31506 13610,31668 L 13610,32964 C 13610,33126 13771,33288 13933,33288 L 18365,33288 C 18527,33288 18689,33126 18689,32964 L 18689,31668 C 18689,31506 18527,31345 18365,31345 L 13933,31345 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id53">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13571" y="31414" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15554" y="31797"><tspan fill="rgb(0,0,0)" stroke="none">Includes</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="14102" y="32433"><tspan fill="rgb(102,102,102)" stroke="none">Processes include statements </tspan></tspan><tspan class="TextPosition" x="14161" y="32751"><tspan fill="rgb(102,102,102)" stroke="none">and composites the resulting </tspan></tspan><tspan class="TextPosition" x="15334" y="33069"><tspan fill="rgb(102,102,102)" stroke="none">dictionaries</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id54">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4685" y="30273" width="11558" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="8383" y="30783"><tspan fill="rgb(153,153,153)" stroke="none">YAML Parsing Utilities</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id55">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5996" y="34520" width="9002" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 6345,34546 C 6183,34546 6022,34707 6022,34869 L 6022,36165 C 6022,36327 6183,36489 6345,36489 L 14647,36489 C 14808,36489 14970,36327 14970,36165 L 14970,34869 C 14970,34707 14808,34546 14647,34546 L 6345,34546 Z M 6022,34546 L 6022,34546 Z M 14971,36489 L 14971,36489 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6345,34546 C 6183,34546 6022,34707 6022,34869 L 6022,36165 C 6022,36327 6183,36489 6345,36489 L 14647,36489 C 14808,36489 14970,36327 14970,36165 L 14970,34869 C 14970,34707 14808,34546 14647,34546 L 6345,34546 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id56">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6080" y="34615" width="8891" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10144" y="34998"><tspan fill="rgb(0,0,0)" stroke="none">YAML</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="6501" y="35634"><tspan fill="rgb(102,102,102)" stroke="none">Low level utilities for parsing YAML, storing the provenance </tspan></tspan><tspan class="TextPosition" x="7058" y="35952"><tspan fill="rgb(102,102,102)" stroke="none">of loaded values for error reporting, composition of </tspan></tspan><tspan class="TextPosition" x="7589" y="36270"><tspan fill="rgb(102,102,102)" stroke="none">dictionaries and validation of loaded values</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id57">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10267" y="33227" width="459" height="1321"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 10501,33253 C 10501,34204 10497,33715 10496,34203"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 10497,34546 L 10725,34182 10268,34181 10497,34546 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="10410" y="34120"><tspan fill="rgb(0,0,0)" stroke="none"> </tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id58">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4789" y="33228" width="1293" height="2481"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4815,33254 C 4815,34775 5127,35308 5751,35491"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 6080,35534 L 5753,35255 5686,35707 6080,35534 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="5359" y="34615"><tspan fill="rgb(0,0,0)" stroke="none"> </tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id59">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14970" y="33229" width="1186" height="2468"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 16129,33255 C 16129,34775 15852,35285 15297,35482"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 14970,35536 L 15369,35696 15288,35246 14970,35536 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="15461" y="34616"><tspan fill="rgb(0,0,0)" stroke="none"> </tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id60">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10297" y="28914" width="459" height="1298"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10526,28940 L 10526,29877"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 10527,30211 L 10755,29847 10298,29847 10527,30211 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id61">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1485" y="38386" width="18086" height="5822"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2521,38412 L 2472,38412 C 2439,38412 2405,38414 2372,38419"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2273,38438 C 2241,38447 2209,38457 2178,38470"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2086,38511 C 2056,38526 2027,38543 1999,38561"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1917,38619 C 1890,38639 1865,38661 1840,38684"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1770,38756 C 1747,38781 1726,38807 1706,38833"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1649,38917 C 1631,38945 1615,38975 1601,39005"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1561,39097 C 1550,39129 1540,39161 1533,39194"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1515,39293 C 1512,39319 1511,39346 1511,39373 L 1511,39393"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,39493 L 1511,39594"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,39694 L 1511,39795"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,39895 L 1511,39996"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,40096 L 1511,40197"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,40297 L 1511,40398"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,40498 L 1511,40599"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,40699 L 1511,40800"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,40900 L 1511,41000"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,41101 L 1511,41201"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,41302 L 1511,41402"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,41503 L 1511,41603"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,41704 L 1511,41804"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,41905 L 1511,42005"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,42106 L 1511,42206"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,42307 L 1511,42407"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,42507 L 1511,42608"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,42708 L 1511,42809"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,42909 L 1511,43010"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1511,43110 L 1511,43211"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1517,43311 C 1521,43344 1527,43377 1535,43410"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1566,43506 C 1577,43537 1591,43568 1606,43598"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1655,43685 C 1673,43714 1692,43741 1713,43768"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1777,43845 C 1800,43870 1824,43893 1848,43916"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 1925,43981 C 1952,44001 1980,44020 2008,44038"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2096,44087 C 2126,44102 2157,44116 2188,44127"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2284,44157 C 2317,44165 2350,44172 2383,44176"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2483,44181 L 2584,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2684,44181 L 2784,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2885,44181 L 2985,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3086,44181 L 3186,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3287,44181 L 3387,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3488,44181 L 3588,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3689,44181 L 3789,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3890,44181 L 3990,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4091,44181 L 4191,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4292,44181 L 4392,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4492,44181 L 4593,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4693,44181 L 4794,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4894,44181 L 4995,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5095,44181 L 5196,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5296,44181 L 5397,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5497,44181 L 5598,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5698,44181 L 5799,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5899,44181 L 5999,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6100,44181 L 6200,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6301,44181 L 6401,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6502,44181 L 6602,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6703,44181 L 6803,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6904,44181 L 7004,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7105,44181 L 7205,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7306,44181 L 7406,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7507,44181 L 7607,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7707,44181 L 7808,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7908,44181 L 8009,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8109,44181 L 8210,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8310,44181 L 8411,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8511,44181 L 8612,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8712,44181 L 8813,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8913,44181 L 9014,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9114,44181 L 9215,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9315,44181 L 9415,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9516,44181 L 9616,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9717,44181 L 9817,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9918,44181 L 10018,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10119,44181 L 10219,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10320,44181 L 10420,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10521,44181 L 10621,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10722,44181 L 10822,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10923,44181 L 11023,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11123,44181 L 11224,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11324,44181 L 11425,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11525,44181 L 11626,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11726,44181 L 11827,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11927,44181 L 12028,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12128,44181 L 12229,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12329,44181 L 12430,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12530,44181 L 12631,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12731,44181 L 12831,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12932,44181 L 13032,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13133,44181 L 13233,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13334,44181 L 13434,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13535,44181 L 13635,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13736,44181 L 13836,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13937,44181 L 14037,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14138,44181 L 14238,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14339,44181 L 14439,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14539,44181 L 14640,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14740,44181 L 14841,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14941,44181 L 15042,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15142,44181 L 15243,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15343,44181 L 15444,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15544,44181 L 15645,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15745,44181 L 15846,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15946,44181 L 16046,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16147,44181 L 16247,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16348,44181 L 16448,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16549,44181 L 16649,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16750,44181 L 16850,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16951,44181 L 17051,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17152,44181 L 17252,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17353,44181 L 17453,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17554,44181 L 17654,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17754,44181 L 17855,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17955,44181 L 18056,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18156,44181 L 18257,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18357,44181 L 18458,44181"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18558,44181 L 18582,44181 C 18608,44181 18633,44180 18659,44177"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18758,44160 C 18790,44153 18822,44143 18854,44132"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18947,44093 C 18977,44078 19006,44062 19035,44045"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19118,43988 C 19145,43968 19171,43947 19196,43925"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19268,43855 C 19291,43830 19313,43805 19334,43778"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19392,43696 C 19411,43668 19428,43639 19443,43610"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19485,43518 C 19497,43487 19508,43455 19516,43423"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19536,43324 C 19541,43291 19544,43258 19544,43224"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,43124 L 19544,43023"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,42923 L 19544,42822"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,42722 L 19544,42621"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,42521 L 19544,42420"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,42320 L 19544,42219"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,42119 L 19544,42019"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,41918 L 19544,41818"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,41717 L 19544,41617"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,41516 L 19544,41416"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,41315 L 19544,41215"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,41114 L 19544,41014"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,40913 L 19544,40813"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,40712 L 19544,40612"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,40511 L 19544,40411"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,40311 L 19544,40210"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,40110 L 19544,40009"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,39909 L 19544,39808"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,39708 L 19544,39607"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19544,39507 L 19544,39406"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19541,39306 C 19538,39273 19533,39240 19525,39207"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19498,39110 C 19487,39079 19474,39047 19460,39017"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19413,38928 C 19395,38900 19377,38872 19357,38844"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19294,38766 C 19272,38741 19249,38717 19224,38693"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19149,38627 C 19122,38606 19095,38587 19067,38568"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18981,38517 C 18951,38501 18920,38487 18889,38475"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18794,38442 C 18762,38433 18729,38426 18696,38421"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18596,38412 C 18591,38412 18587,38412 18582,38412 L 18496,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18395,38412 L 18295,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18194,38412 L 18094,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17993,38412 L 17893,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17792,38412 L 17692,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17591,38412 L 17491,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17390,38412 L 17290,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17189,38412 L 17089,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16989,38412 L 16888,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16788,38412 L 16687,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16587,38412 L 16486,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16386,38412 L 16285,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16185,38412 L 16084,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15984,38412 L 15883,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15783,38412 L 15682,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15582,38412 L 15481,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15381,38412 L 15281,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15180,38412 L 15080,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14979,38412 L 14879,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14778,38412 L 14678,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14577,38412 L 14477,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14376,38412 L 14276,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 14175,38412 L 14075,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13974,38412 L 13874,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13773,38412 L 13673,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13573,38412 L 13472,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13372,38412 L 13271,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 13171,38412 L 13070,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12970,38412 L 12869,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12769,38412 L 12668,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12568,38412 L 12467,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12367,38412 L 12266,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 12166,38412 L 12066,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11965,38412 L 11865,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11764,38412 L 11664,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11563,38412 L 11463,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11362,38412 L 11262,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 11161,38412 L 11061,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10960,38412 L 10860,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10759,38412 L 10659,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10558,38412 L 10458,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10358,38412 L 10257,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 10157,38412 L 10056,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9956,38412 L 9855,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9755,38412 L 9654,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9554,38412 L 9453,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9353,38412 L 9252,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 9152,38412 L 9051,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8951,38412 L 8850,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8750,38412 L 8650,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8549,38412 L 8449,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8348,38412 L 8248,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 8147,38412 L 8047,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7946,38412 L 7846,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7745,38412 L 7645,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7544,38412 L 7444,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7343,38412 L 7243,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 7142,38412 L 7042,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6942,38412 L 6841,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6741,38412 L 6640,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6540,38412 L 6439,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6339,38412 L 6238,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 6138,38412 L 6037,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5937,38412 L 5836,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5736,38412 L 5635,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5535,38412 L 5434,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5334,38412 L 5234,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 5133,38412 L 5033,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4932,38412 L 4832,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4731,38412 L 4631,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4530,38412 L 4430,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4329,38412 L 4229,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 4128,38412 L 4028,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3927,38412 L 3827,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3726,38412 L 3626,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3526,38412 L 3425,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3325,38412 L 3224,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 3124,38412 L 3023,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2923,38412 L 2822,38412"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 2722,38412 L 2621,38412"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id62">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2198" y="39220" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2547,39246 C 2385,39246 2224,39407 2224,39569 L 2224,40865 C 2224,41027 2385,41189 2547,41189 L 6979,41189 C 7141,41189 7303,41027 7303,40865 L 7303,39569 C 7303,39407 7141,39246 6979,39246 L 2547,39246 Z M 2224,39246 L 2224,39246 Z M 7303,41189 L 7303,41189 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2547,39246 C 2385,39246 2224,39407 2224,39569 L 2224,40865 C 2224,41027 2385,41189 2547,41189 L 6979,41189 C 7141,41189 7303,41027 7303,40865 L 7303,39569 C 7303,39407 7141,39246 6979,39246 L 2547,39246 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id63">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2185" y="39315" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4246" y="39698"><tspan fill="rgb(0,0,0)" stroke="none">utils.py</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2640" y="40334"><tspan fill="rgb(102,102,102)" stroke="none">Various miscellaneous utilities, </tspan></tspan><tspan class="TextPosition" x="2729" y="40652"><tspan fill="rgb(102,102,102)" stroke="none">includes the directory staging </tspan></tspan><tspan class="TextPosition" x="4011" y="40970"><tspan fill="rgb(102,102,102)" stroke="none">mechanics</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id64">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8012" y="39221" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8361,39247 C 8199,39247 8038,39408 8038,39570 L 8038,40866 C 8038,41028 8199,41190 8361,41190 L 12793,41190 C 12955,41190 13117,41028 13117,40866 L 13117,39570 C 13117,39408 12955,39247 12793,39247 L 8361,39247 Z M 8038,39247 L 8038,39247 Z M 13117,41190 L 13117,41190 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8361,39247 C 8199,39247 8038,39408 8038,39570 L 8038,40866 C 8038,41028 8199,41190 8361,41190 L 12793,41190 C 12955,41190 13117,41028 13117,40866 L 13117,39570 C 13117,39408 12955,39247 12793,39247 L 8361,39247 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id65">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7999" y="39316" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9863" y="39699"><tspan fill="rgb(0,0,0)" stroke="none">signals.py</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="8276" y="40335"><tspan fill="rgb(102,102,102)" stroke="none">Utilities and context managers for </tspan></tspan><tspan class="TextPosition" x="8282" y="40653"><tspan fill="rgb(102,102,102)" stroke="none">dealing with UNIX signal handling</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id66">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2212" y="39221" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2561,39247 C 2399,39247 2238,39408 2238,39570 L 2238,40866 C 2238,41028 2399,41190 2561,41190 L 6993,41190 C 7155,41190 7317,41028 7317,40866 L 7317,39570 C 7317,39408 7155,39247 6993,39247 L 2561,39247 Z M 2238,39247 L 2238,39247 Z M 7317,41190 L 7317,41190 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2561,39247 C 2399,39247 2238,39408 2238,39570 L 2238,40866 C 2238,41028 2399,41190 2561,41190 L 6993,41190 C 7155,41190 7317,41028 7317,40866 L 7317,39570 C 7317,39408 7155,39247 6993,39247 L 2561,39247 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id67">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2199" y="39316" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4260" y="39699"><tspan fill="rgb(0,0,0)" stroke="none">utils.py</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2654" y="40335"><tspan fill="rgb(102,102,102)" stroke="none">Various miscellaneous utilities, </tspan></tspan><tspan class="TextPosition" x="2743" y="40653"><tspan fill="rgb(102,102,102)" stroke="none">includes the directory staging </tspan></tspan><tspan class="TextPosition" x="4025" y="40971"><tspan fill="rgb(102,102,102)" stroke="none">mechanics</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id68">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2226" y="41722" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2575,41748 C 2413,41748 2252,41909 2252,42071 L 2252,43367 C 2252,43529 2413,43691 2575,43691 L 7007,43691 C 7169,43691 7331,43529 7331,43367 L 7331,42071 C 7331,41909 7169,41748 7007,41748 L 2575,41748 Z M 2252,41748 L 2252,41748 Z M 7331,43691 L 7331,43691 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2575,41748 C 2413,41748 2252,41909 2252,42071 L 2252,43367 C 2252,43529 2413,43691 2575,43691 L 7007,43691 C 7169,43691 7331,43529 7331,43367 L 7331,42071 C 7331,41909 7169,41748 7007,41748 L 2575,41748 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id69">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2213" y="41817" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3940" y="42200"><tspan fill="rgb(0,0,0)" stroke="none">Workspaces</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2530" y="42836"><tspan fill="rgb(102,102,102)" stroke="none">Helper object for (de)serialization </tspan></tspan><tspan class="TextPosition" x="2670" y="43154"><tspan fill="rgb(102,102,102)" stroke="none">of the workspace configuration</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id70">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4686" y="38474" width="11558" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="8293" y="38984"><tspan fill="rgb(153,153,153)" stroke="none">Low Level Subsystems</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id71">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10445" y="13615" width="3282" height="1997"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 10794,13641 C 10632,13641 10471,13803 10471,13965 L 10471,15261 C 10471,15423 10632,15585 10794,15585 L 13375,15585 C 13537,15585 13699,15423 13699,15261 L 13699,13965 C 13699,13803 13537,13641 13375,13641 L 10794,13641 Z M 10471,13641 L 10471,13641 Z M 13700,15585 L 13700,15585 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 10794,13641 C 10632,13641 10471,13803 10471,13965 L 10471,15261 C 10471,15423 10632,15585 10794,15585 L 13375,15585 C 13537,15585 13699,15423 13699,15261 L 13699,13965 C 13699,13803 13537,13641 13375,13641 L 10794,13641 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id72">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10471" y="13695" width="3229" height="1779"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10932" y="14078"><tspan fill="rgb(0,0,0)" stroke="none">Element, Source, </tspan></tspan><tspan class="TextPosition" x="11357" y="14396"><tspan fill="rgb(0,0,0)" stroke="none">and Plugin</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="11334" y="15032"><tspan fill="rgb(102,102,102)" stroke="none">Data Model</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id73">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14982" y="10544" width="4588" height="5723"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15763,10570 C 15730,10570 15696,10573 15663,10579"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15566,10603 C 15534,10613 15503,10626 15473,10641"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15385,10691 C 15357,10709 15330,10729 15304,10751"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15231,10819 C 15207,10843 15186,10869 15165,10895"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15109,10979 C 15092,11008 15077,11038 15063,11068"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15030,11163 C 15021,11196 15015,11229 15011,11262"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,11362 L 15008,11463"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,11563 L 15008,11664"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,11764 L 15008,11865"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,11965 L 15008,12066"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,12166 L 15008,12266"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,12367 L 15008,12467"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,12568 L 15008,12668"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,12769 L 15008,12869"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,12970 L 15008,13070"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,13171 L 15008,13271"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,13372 L 15008,13472"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,13573 L 15008,13673"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,13774 L 15008,13874"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,13974 L 15008,14075"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,14175 L 15008,14276"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,14376 L 15008,14477"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,14577 L 15008,14678"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,14778 L 15008,14879"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,14979 L 15008,15080"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,15180 L 15008,15281"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15008,15381 L 15008,15482"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15016,15582 C 15022,15614 15030,15647 15040,15679"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15078,15772 C 15092,15802 15109,15831 15127,15860"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15187,15941 C 15208,15967 15231,15991 15255,16015"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15331,16081 C 15358,16101 15386,16120 15414,16137"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15504,16183 C 15535,16197 15566,16208 15598,16217"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15697,16236 C 15719,16239 15741,16240 15763,16240 L 15797,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15898,16240 L 15998,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16099,16240 L 16199,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16299,16240 L 16400,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16500,16240 L 16601,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16701,16240 L 16802,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16902,16240 L 17003,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17103,16240 L 17204,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17304,16240 L 17405,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17505,16240 L 17606,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17706,16240 L 17807,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17907,16240 L 18007,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18108,16240 L 18208,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18309,16240 L 18409,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18510,16240 L 18610,16240"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18711,16240 L 18787,16240 C 18795,16240 18803,16240 18811,16239"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18911,16227 C 18943,16220 18976,16211 19007,16199"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19099,16158 C 19129,16142 19157,16125 19185,16106"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19264,16044 C 19289,16022 19313,15998 19336,15973"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19399,15895 C 19419,15868 19437,15840 19453,15810"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19496,15719 C 19509,15688 19519,15656 19526,15624"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19542,15524 C 19543,15511 19543,15497 19543,15484 L 19543,15424"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,15323 L 19543,15223"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,15122 L 19543,15022"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,14922 L 19543,14821"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,14721 L 19543,14620"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,14520 L 19543,14419"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,14319 L 19543,14218"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,14118 L 19543,14017"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,13917 L 19543,13816"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,13716 L 19543,13615"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,13515 L 19543,13414"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,13314 L 19543,13214"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,13113 L 19543,13013"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,12912 L 19543,12812"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,12711 L 19543,12611"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,12510 L 19543,12410"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,12309 L 19543,12209"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,12108 L 19543,12008"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,11907 L 19543,11807"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,11706 L 19543,11606"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,11506 L 19543,11405"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19543,11305 C 19541,11271 19537,11238 19531,11205"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19503,11108 C 19492,11077 19478,11046 19463,11016"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19411,10930 C 19392,10903 19371,10876 19349,10851"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19279,10779 C 19254,10756 19228,10735 19201,10715"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 19116,10661 C 19087,10645 19056,10630 19025,10618"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18930,10587 C 18897,10579 18864,10574 18830,10572"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18730,10570 L 18630,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18529,10570 L 18429,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18328,10570 L 18228,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 18127,10570 L 18027,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17926,10570 L 17826,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17725,10570 L 17625,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17524,10570 L 17424,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17323,10570 L 17223,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17123,10570 L 17022,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16922,10570 L 16821,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16721,10570 L 16620,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16520,10570 L 16419,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16319,10570 L 16218,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 16118,10570 L 16017,10570"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 15917,10570 L 15816,10570"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id74">
+ <rect class="BoundingBox" stroke="none" fill="none" x="17279" y="16213" width="459" height="1299"/>
+ <path fill="none" stroke="rgb(204,204,204)" stroke-width="51" stroke-linejoin="round" d="M 17509,16239 C 17509,17193 17508,16718 17508,17168"/>
+ <path fill="rgb(204,204,204)" stroke="none" d="M 17509,17510 L 17737,17146 17280,17145 17509,17510 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id75">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14970" y="10572" width="4572" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="16136" y="11082"><tspan fill="rgb(153,153,153)" stroke="none">CAS Server</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id76">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15645" y="11215" width="3282" height="1997"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 15994,11241 C 15832,11241 15671,11403 15671,11565 L 15671,12861 C 15671,13023 15832,13185 15994,13185 L 18575,13185 C 18737,13185 18899,13023 18899,12861 L 18899,11565 C 18899,11403 18737,11241 18575,11241 L 15994,11241 Z M 15671,11241 L 15671,11241 Z M 18900,13185 L 18900,13185 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15994,11241 C 15832,11241 15671,11403 15671,11565 L 15671,12861 C 15671,13023 15832,13185 15994,13185 L 18575,13185 C 18737,13185 18899,13023 18899,12861 L 18899,11565 C 18899,11403 18737,11241 18575,11241 L 15994,11241 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id77">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15671" y="11295" width="3229" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="16587" y="11678"><tspan fill="rgb(0,0,0)" stroke="none">CasServer</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="16752" y="12314"><tspan fill="rgb(102,102,102)" stroke="none">Content </tspan></tspan><tspan class="TextPosition" x="16439" y="12632"><tspan fill="rgb(102,102,102)" stroke="none">Addressable </tspan></tspan><tspan class="TextPosition" x="16278" y="12950"><tspan fill="rgb(102,102,102)" stroke="none">Storage Server</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id78">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15024" y="13393" width="4557" height="2635"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="15476" y="13981"><tspan fill="rgb(102,102,102)" stroke="none">The CAS Server only </tspan></tspan><tspan class="TextPosition" x="15459" y="14413"><tspan fill="rgb(102,102,102)" stroke="none">needs to interact with </tspan></tspan><tspan class="TextPosition" x="15700" y="14845"><tspan fill="rgb(102,102,102)" stroke="none">Core Internals and </tspan></tspan><tspan class="TextPosition" x="15742" y="15277"><tspan fill="rgb(102,102,102)" stroke="none">lower levels of the </tspan></tspan><tspan class="TextPosition" x="16792" y="15709"><tspan fill="rgb(102,102,102)" stroke="none">stack.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id79">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13740" y="39223" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14089,39249 C 13927,39249 13766,39410 13766,39572 L 13766,40868 C 13766,41030 13927,41192 14089,41192 L 18521,41192 C 18683,41192 18845,41030 18845,40868 L 18845,39572 C 18845,39410 18683,39249 18521,39249 L 14089,39249 Z M 13766,39249 L 13766,39249 Z M 18845,41192 L 18845,41192 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14089,39249 C 13927,39249 13766,39410 13766,39572 L 13766,40868 C 13766,41030 13927,41192 14089,41192 L 18521,41192 C 18683,41192 18845,41030 18845,40868 L 18845,39572 C 18845,39410 18683,39249 18521,39249 L 14089,39249 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id80">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13727" y="39318" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15604" y="39701"><tspan fill="rgb(0,0,0)" stroke="none">CasCache</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="14305" y="40337"><tspan fill="rgb(102,102,102)" stroke="none">Content Addressable Storage </tspan></tspan><tspan class="TextPosition" x="14370" y="40655"><tspan fill="rgb(102,102,102)" stroke="none">implementation, used by the </tspan></tspan><tspan class="TextPosition" x="14281" y="40973"><tspan fill="rgb(102,102,102)" stroke="none">artifact cache and CAS server</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id81">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13754" y="41724" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14103,41750 C 13941,41750 13780,41911 13780,42073 L 13780,43369 C 13780,43531 13941,43693 14103,43693 L 18535,43693 C 18697,43693 18859,43531 18859,43369 L 18859,42073 C 18859,41911 18697,41750 18535,41750 L 14103,41750 Z M 13780,41750 L 13780,41750 Z M 18859,43693 L 18859,43693 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14103,41750 C 13941,41750 13780,41911 13780,42073 L 13780,43369 C 13780,43531 13941,43693 14103,43693 L 18535,43693 C 18697,43693 18859,43531 18859,43369 L 18859,42073 C 18859,41911 18697,41750 18535,41750 L 14103,41750 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id82">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13741" y="41819" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14856" y="42202"><tspan fill="rgb(0,0,0)" stroke="none">FUSE / SafeHardlinks</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="13993" y="42838"><tspan fill="rgb(102,102,102)" stroke="none">The Fuse layer implements a copy </tspan></tspan><tspan class="TextPosition" x="14158" y="43156"><tspan fill="rgb(102,102,102)" stroke="none">on write hardlink experience for </tspan></tspan><tspan class="TextPosition" x="14283" y="43474"><tspan fill="rgb(102,102,102)" stroke="none">the Sandbox implementations</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id83">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8068" y="41725" width="5132" height="1996"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8417,41751 C 8255,41751 8094,41912 8094,42074 L 8094,43370 C 8094,43532 8255,43694 8417,43694 L 12849,43694 C 13011,43694 13173,43532 13173,43370 L 13173,42074 C 13173,41912 13011,41751 12849,41751 L 8417,41751 Z M 8094,41751 L 8094,41751 Z M 13173,43694 L 13173,43694 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8417,41751 C 8255,41751 8094,41912 8094,42074 L 8094,43370 C 8094,43532 8255,43694 8417,43694 L 12849,43694 C 13011,43694 13173,43532 13173,43370 L 13173,42074 C 13173,41912 13011,41751 12849,41751 L 8417,41751 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id84">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8055" y="41820" width="5118" height="1842"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="8440" y="42203"><tspan fill="rgb(0,0,0)" stroke="none">SourceFactory / ElementFactory</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="8357" y="42839"><tspan fill="rgb(102,102,102)" stroke="none">Low level factory for instantiating </tspan></tspan><tspan class="TextPosition" x="8374" y="43157"><tspan fill="rgb(102,102,102)" stroke="none">Source and Element plugins, one </tspan></tspan><tspan class="TextPosition" x="8605" y="43475"><tspan fill="rgb(102,102,102)" stroke="none">plugin namespace per project</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id85">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6725" y="22608" width="3247" height="2564"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 7169,22634 C 6960,22634 6751,22843 6751,23052 L 6751,24726 C 6751,24935 6960,25145 7169,25145 L 9526,25145 C 9735,25145 9945,24935 9945,24726 L 9945,23052 C 9945,22843 9735,22634 9526,22634 L 7169,22634 Z M 6751,22634 L 6751,22634 Z M 9945,25145 L 9945,25145 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7169,22634 C 6960,22634 6751,22843 6751,23052 L 6751,24726 C 6751,24935 6960,25145 7169,25145 L 9526,25145 C 9735,25145 9945,24935 9945,24726 L 9945,23052 C 9945,22843 9735,22634 9526,22634 L 7169,22634 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id86">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6797" y="22604" width="3149" height="2541"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7461" y="23496"><tspan fill="rgb(0,0,0)" stroke="none">ArtifactCache</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7311" y="24132"><tspan fill="rgb(102,102,102)" stroke="none">Artifact Storage </tspan></tspan><tspan class="TextPosition" x="7878" y="24450"><tspan fill="rgb(102,102,102)" stroke="none">Module</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id87">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2225" y="25722" width="3247" height="2564"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2669,25748 C 2460,25748 2251,25957 2251,26166 L 2251,27840 C 2251,28049 2460,28259 2669,28259 L 5026,28259 C 5235,28259 5445,28049 5445,27840 L 5445,26166 C 5445,25957 5235,25748 5026,25748 L 2669,25748 Z M 2251,25748 L 2251,25748 Z M 5445,28259 L 5445,28259 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2669,25748 C 2460,25748 2251,25957 2251,26166 L 2251,27840 C 2251,28049 2460,28259 2669,28259 L 5026,28259 C 5235,28259 5445,28049 5445,27840 L 5445,26166 C 5445,25957 5235,25748 5026,25748 L 2669,25748 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id88">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2297" y="25718" width="3149" height="2541"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3272" y="26292"><tspan fill="rgb(0,0,0)" stroke="none">Sandbox</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2656" y="26928"><tspan fill="rgb(102,102,102)" stroke="none">Abstract Class for </tspan></tspan><tspan class="TextPosition" x="2553" y="27246"><tspan fill="rgb(102,102,102)" stroke="none">running commands </tspan></tspan><tspan class="TextPosition" x="2919" y="27564"><tspan fill="rgb(102,102,102)" stroke="none">in the isolated </tspan></tspan><tspan class="TextPosition" x="2641" y="27882"><tspan fill="rgb(102,102,102)" stroke="none">build environment</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-program-flow.svg b/doc/source/images/arch-program-flow.svg
new file mode 100644
index 000000000..ba196a90d
--- /dev/null
+++ b/doc/source/images/arch-program-flow.svg
@@ -0,0 +1,1819 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="381mm" height="304.8mm" viewBox="0 0 38100 30480" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="38100" height="30480"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="z" horiz-adv-x="914" d="M 68,0 L 68,199 608,879 109,879 109,1082 918,1082 918,881 381,205 967,205 967,0 68,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1126" d="M 584,241 L 834,1082 1128,1082 700,-57 C 646,-188 590,-281 532,-336 469,-395 386,-425 283,-425 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 173,-220 202,-220 230,-220 255,-217 276,-211 297,-205 317,-195 334,-181 368,-153 399,-105 426,-37 L 444,11 16,1082 313,1082 584,241 Z"/>
+ <glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1615" d="M 436,255 L 645,1082 946,1082 1153,255 1337,1082 1597,1082 1313,0 1016,0 797,882 571,0 274,0 -6,1082 258,1082 436,255 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="979" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 833,1102 889,1091 934,1070 979,1049 1015,1019 1044,982 1072,945 1092,901 1105,850 1118,799 1124,745 1124,686 L 1124,0 844,0 844,606 C 844,648 841,687 834,722 827,757 816,787 801,812 786,837 766,856 741,870 716,884 686,891 651,891 617,891 586,884 559,869 531,854 507,832 487,805 467,777 452,744 441,706 430,667 424,625 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1058 424,1036 423,1015 422,993 422,973 421,954 420,935 419,917 418,902 417,887 417,875 416,866 L 420,866 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="U" horiz-adv-x="1245" d="M 723,-20 C 635,-20 554,-9 481,12 408,33 345,65 292,110 239,154 197,211 168,280 138,349 123,432 123,528 L 123,1409 418,1409 418,551 C 418,492 425,441 440,398 455,355 476,319 503,292 530,264 563,244 602,231 641,218 684,211 731,211 779,211 823,218 864,232 904,245 939,266 968,295 997,324 1019,360 1035,404 1051,448 1059,500 1059,561 L 1059,1409 1354,1409 1354,543 C 1354,446 1338,363 1307,292 1276,221 1232,163 1176,117 1120,70 1054,36 977,14 900,-9 815,-20 723,-20 Z"/>
+ <glyph unicode="T" horiz-adv-x="1205" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="Q" horiz-adv-x="1430" d="M 1507,711 C 1507,617 1495,531 1472,452 1448,373 1414,303 1369,242 1324,181 1269,130 1204,90 1139,49 1066,21 983,4 996,-35 1012,-66 1030,-91 1048,-115 1068,-134 1091,-148 1114,-161 1138,-170 1165,-176 1192,-180 1220,-183 1251,-183 1270,-183 1290,-182 1310,-181 1330,-179 1350,-176 1370,-173 L 1368,-375 C 1332,-383 1294,-390 1255,-395 1216,-400 1173,-403 1126,-403 1063,-403 1007,-393 960,-375 913,-355 872,-329 837,-295 802,-260 772,-219 748,-171 723,-122 702,-69 684,-10 584,-1 497,24 422,63 347,102 284,154 234,217 184,280 147,354 122,438 97,522 84,613 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,570 408,509 425,448 451,395 486,351 521,307 564,273 615,248 666,223 726,211 793,211 865,211 927,224 979,249 1031,274 1074,308 1108,353 1141,397 1166,450 1182,511 1198,572 1206,639 1206,711 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="L" horiz-adv-x="1060" d="M 137,0 L 137,1409 432,1409 432,228 1188,228 1188,0 137,0 Z"/>
+ <glyph unicode="K" horiz-adv-x="1351" d="M 1112,0 L 606,647 432,514 432,0 137,0 137,1409 432,1409 432,770 1067,1409 1411,1409 809,813 1460,0 1112,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="292" d="M 137,0 L 137,1409 432,1409 432,0 137,0 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="A" horiz-adv-x="1390" d="M 1133,0 L 1008,360 471,360 346,0 51,0 565,1409 913,1409 1425,0 1133,0 Z M 803,987 C 795,1010 787,1034 780,1058 772,1081 765,1103 760,1123 754,1142 749,1158 746,1171 742,1184 740,1191 739,1192 738,1190 736,1183 733,1170 730,1157 725,1141 720,1122 714,1103 707,1081 700,1058 692,1034 684,1010 676,987 L 537,582 942,582 803,987 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="z" horiz-adv-x="1073" d="M -35,0 L 3,199 656,879 176,879 216,1082 1025,1082 986,881 336,205 903,205 863,0 -35,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="x" horiz-adv-x="1298" d="M 724,0 L 538,383 211,0 -90,0 418,562 139,1082 431,1082 604,735 900,1082 1208,1082 725,557 1019,0 724,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="P" horiz-adv-x="1337" d="M 850,1409 C 933,1409 1006,1399 1071,1380 1135,1361 1189,1333 1234,1296 1278,1259 1312,1215 1335,1163 1358,1111 1369,1052 1369,987 1369,911 1356,843 1329,782 1302,721 1263,670 1214,628 1165,585 1105,553 1036,530 967,507 890,496 805,496 L 428,496 330,0 36,0 309,1409 850,1409 Z M 471,723 L 760,723 C 863,723 941,742 993,781 1044,820 1070,883 1070,971 1070,1008 1064,1039 1052,1066 1040,1092 1023,1114 1001,1131 979,1148 953,1160 923,1168 892,1176 859,1180 822,1180 L 560,1180 471,723 Z"/>
+ <glyph unicode="N" horiz-adv-x="1496" d="M 884,0 L 510,1131 C 506,1102 502,1074 498,1046 495,1022 491,996 486,969 481,941 477,915 472,892 L 298,0 36,0 310,1409 660,1409 1037,268 C 1041,294 1045,321 1049,350 1052,375 1057,402 1062,433 1067,463 1072,493 1078,524 L 1252,1409 1514,1409 1240,0 884,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="583" d="M 36,0 L 309,1409 604,1409 330,0 36,0 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1403" d="M 401,573 C 401,517 408,467 422,422 436,377 457,339 485,308 512,277 547,253 588,236 629,219 676,211 731,211 783,211 830,218 873,232 916,246 954,265 989,289 1023,313 1053,341 1080,372 1106,403 1129,435 1149,469 L 1376,352 C 1347,301 1313,253 1273,208 1233,163 1186,123 1132,90 1078,56 1016,29 947,10 878,-10 799,-20 711,-20 606,-20 516,-5 439,26 362,57 298,99 248,152 198,205 161,267 137,339 112,410 100,487 100,569 100,652 109,730 126,805 143,880 169,949 202,1013 235,1076 275,1134 323,1186 371,1237 426,1281 487,1317 548,1353 616,1381 690,1401 763,1420 842,1430 927,1430 1018,1430 1097,1419 1164,1398 1230,1377 1286,1348 1332,1312 1378,1276 1415,1234 1442,1187 1469,1140 1490,1090 1503,1038 L 1229,967 C 1221,996 1209,1025 1193,1053 1176,1080 1155,1105 1130,1127 1105,1148 1074,1166 1039,1179 1004,1192 963,1198 918,1198 834,1198 760,1183 696,1153 631,1122 577,1080 534,1025 490,970 457,904 435,827 412,750 401,666 401,573 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59 id60 id61 id62 id63 id64 id65 id66 id67 id68 id69 id70 id71 id72 id73 id74 id75 id76 id77 id78 id79 id80 id81 id82 id83 id84 id85 id86 id87 id88"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3555" y="2105" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3735,2131 C 3658,2131 3581,2208 3581,2285 L 3581,2904 C 3581,2981 3658,3058 3735,3058 L 7237,3058 C 7314,3058 7392,2981 7392,2904 L 7392,2285 C 7392,2208 7314,2131 7237,2131 L 3735,2131 Z M 3581,2131 L 3581,2131 Z M 7392,3059 L 7392,3059 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3735,2131 C 3658,2131 3581,2208 3581,2285 L 3581,2904 C 3581,2981 3658,3058 3735,3058 L 7237,3058 C 7314,3058 7392,2981 7392,2904 L 7392,2285 C 7392,2208 7314,2131 7237,2131 L 3735,2131 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3581" y="2158" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4034" y="2681"><tspan fill="rgb(0,0,0)" stroke="none">Parse Command Line</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5252" y="3033" width="459" height="1400"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5486,3059 C 5486,4482 5482,4016 5480,4096"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 5478,4431 L 5709,4069 5252,4064 5478,4431 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4356" y="7905" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 4536,7931 C 4459,7931 4382,8008 4382,8085 L 4382,8704 C 4382,8781 4459,8858 4536,8858 L 8038,8858 C 8115,8858 8193,8781 8193,8704 L 8193,8085 C 8193,8008 8115,7931 8038,7931 L 4536,7931 Z M 4382,7931 L 4382,7931 Z M 8193,8859 L 8193,8859 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4536,7931 C 4459,7931 4382,8008 4382,8085 L 4382,8704 C 4382,8781 4459,8858 4536,8858 L 8038,8858 C 8115,8858 8193,8781 8193,8704 L 8193,8085 C 8193,8008 8115,7931 8038,7931 L 4536,7931 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4382" y="7958" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5383" y="8481"><tspan fill="rgb(0,0,0)" stroke="none">Load Context</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2244" y="4402" width="31804" height="22279"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3307,4428 C 3274,4428 3240,4430 3207,4434"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3108,4453 C 3076,4460 3043,4470 3012,4482"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2919,4520 C 2889,4535 2859,4550 2830,4568"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2746,4623 C 2719,4642 2692,4663 2667,4685"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2593,4753 C 2569,4777 2546,4801 2525,4827"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2463,4906 C 2444,4934 2425,4962 2408,4991"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2361,5080 C 2347,5110 2334,5141 2323,5172"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2294,5269 C 2286,5301 2280,5334 2276,5368"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,5468 L 2270,5568"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,5669 L 2270,5769"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,5870 L 2270,5970"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,6071 L 2270,6171"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,6272 L 2270,6372"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,6473 L 2270,6573"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,6673 L 2270,6774"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,6874 L 2270,6975"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,7075 L 2270,7176"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,7276 L 2270,7377"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,7477 L 2270,7578"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,7678 L 2270,7779"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,7879 L 2270,7980"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,8080 L 2270,8180"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,8281 L 2270,8381"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,8482 L 2270,8582"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,8683 L 2270,8783"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,8884 L 2270,8984"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,9085 L 2270,9185"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,9286 L 2270,9386"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,9487 L 2270,9587"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,9688 L 2270,9788"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,9888 L 2270,9989"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,10089 L 2270,10190"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,10290 L 2270,10391"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,10491 L 2270,10592"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,10692 L 2270,10793"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,10893 L 2270,10994"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,11094 L 2270,11195"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,11295 L 2270,11396"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,11496 L 2270,11596"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,11697 L 2270,11797"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,11898 L 2270,11998"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,12099 L 2270,12199"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,12300 L 2270,12400"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,12501 L 2270,12601"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,12702 L 2270,12802"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,12903 L 2270,13003"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,13104 L 2270,13204"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,13304 L 2270,13405"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,13505 L 2270,13606"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,13706 L 2270,13807"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,13907 L 2270,14008"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,14108 L 2270,14209"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,14309 L 2270,14410"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,14510 L 2270,14611"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,14711 L 2270,14812"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,14912 L 2270,15012"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,15113 L 2270,15213"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,15314 L 2270,15414"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,15515 L 2270,15615"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,15716 L 2270,15816"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,15917 L 2270,16017"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,16118 L 2270,16218"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,16319 L 2270,16419"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,16520 L 2270,16620"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,16720 L 2270,16821"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,16921 L 2270,17022"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,17122 L 2270,17223"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,17323 L 2270,17424"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,17524 L 2270,17625"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,17725 L 2270,17826"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,17926 L 2270,18027"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,18127 L 2270,18227"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,18328 L 2270,18428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,18529 L 2270,18629"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,18730 L 2270,18830"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,18931 L 2270,19031"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,19132 L 2270,19232"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,19333 L 2270,19433"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,19534 L 2270,19634"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,19735 L 2270,19835"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,19935 L 2270,20036"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,20136 L 2270,20237"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,20337 L 2270,20438"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,20538 L 2270,20639"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,20739 L 2270,20840"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,20940 L 2270,21041"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,21141 L 2270,21242"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,21342 L 2270,21443"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,21543 L 2270,21643"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,21744 L 2270,21844"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,21945 L 2270,22045"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,22146 L 2270,22246"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,22347 L 2270,22447"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,22548 L 2270,22648"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,22749 L 2270,22849"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,22950 L 2270,23050"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,23151 L 2270,23251"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,23351 L 2270,23452"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,23552 L 2270,23653"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,23753 L 2270,23854"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,23954 L 2270,24055"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,24155 L 2270,24256"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,24356 L 2270,24457"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,24557 L 2270,24658"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,24758 L 2270,24859"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,24959 L 2270,25059"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,25160 L 2270,25260"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,25361 L 2270,25461"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,25562 L 2270,25616 C 2270,25631 2270,25647 2271,25662"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2283,25762 C 2289,25795 2297,25827 2307,25860"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2340,25954 C 2353,25985 2367,26016 2383,26045"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2434,26132 C 2452,26160 2472,26188 2492,26214"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2557,26291 C 2580,26316 2603,26340 2628,26362"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2704,26428 C 2731,26449 2758,26468 2786,26487"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2872,26538 C 2902,26554 2932,26568 2963,26581"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3058,26616 C 3090,26625 3122,26633 3155,26640"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3255,26652 C 3272,26653 3290,26654 3307,26654 L 3355,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3456,26654 L 3556,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3657,26654 L 3757,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3858,26654 L 3958,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4059,26654 L 4159,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4260,26654 L 4360,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4461,26654 L 4561,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4662,26654 L 4762,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4862,26654 L 4963,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5063,26654 L 5164,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5264,26654 L 5365,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5465,26654 L 5566,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5666,26654 L 5767,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5867,26654 L 5968,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6068,26654 L 6169,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6269,26654 L 6370,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6470,26654 L 6570,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6671,26654 L 6771,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6872,26654 L 6972,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7073,26654 L 7173,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7274,26654 L 7374,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7475,26654 L 7575,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7676,26654 L 7776,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7877,26654 L 7977,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8078,26654 L 8178,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8278,26654 L 8379,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8479,26654 L 8580,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8680,26654 L 8781,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8881,26654 L 8982,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9082,26654 L 9183,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9283,26654 L 9384,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9484,26654 L 9585,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9685,26654 L 9785,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9886,26654 L 9986,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10087,26654 L 10187,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10288,26654 L 10388,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10489,26654 L 10589,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10690,26654 L 10790,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10891,26654 L 10991,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11092,26654 L 11192,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11293,26654 L 11393,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11493,26654 L 11594,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11694,26654 L 11795,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11895,26654 L 11996,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12096,26654 L 12197,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12297,26654 L 12398,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12498,26654 L 12599,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12699,26654 L 12800,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12900,26654 L 13001,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13101,26654 L 13201,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13302,26654 L 13402,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13503,26654 L 13603,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13704,26654 L 13804,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13905,26654 L 14005,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14106,26654 L 14206,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14307,26654 L 14407,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14508,26654 L 14608,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14709,26654 L 14809,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14909,26654 L 15010,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15110,26654 L 15211,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15311,26654 L 15412,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15512,26654 L 15613,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15713,26654 L 15814,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15914,26654 L 16015,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16115,26654 L 16216,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16316,26654 L 16417,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16517,26654 L 16617,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16718,26654 L 16818,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16919,26654 L 17019,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17120,26654 L 17220,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17321,26654 L 17421,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17522,26654 L 17622,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17723,26654 L 17823,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17924,26654 L 18024,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18125,26654 L 18225,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18325,26654 L 18426,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18526,26654 L 18627,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18727,26654 L 18828,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18928,26654 L 19029,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19129,26654 L 19230,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19330,26654 L 19431,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19531,26654 L 19632,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19732,26654 L 19832,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19933,26654 L 20033,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20134,26654 L 20234,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20335,26654 L 20435,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20536,26654 L 20636,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20737,26654 L 20837,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20938,26654 L 21038,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21139,26654 L 21239,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21340,26654 L 21440,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21540,26654 L 21641,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21741,26654 L 21842,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21942,26654 L 22043,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22143,26654 L 22244,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22344,26654 L 22445,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22545,26654 L 22646,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22746,26654 L 22847,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22947,26654 L 23048,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23148,26654 L 23248,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23349,26654 L 23449,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23550,26654 L 23650,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23751,26654 L 23851,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23952,26654 L 24052,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24153,26654 L 24253,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24354,26654 L 24454,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24555,26654 L 24655,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24756,26654 L 24856,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24956,26654 L 25057,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25157,26654 L 25258,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25358,26654 L 25459,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25559,26654 L 25660,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25760,26654 L 25861,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25961,26654 L 26062,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26162,26654 L 26263,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26363,26654 L 26464,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26564,26654 L 26664,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26765,26654 L 26865,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26966,26654 L 27066,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27167,26654 L 27267,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27368,26654 L 27468,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27569,26654 L 27669,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27770,26654 L 27870,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27971,26654 L 28071,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28172,26654 L 28272,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28372,26654 L 28473,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28573,26654 L 28674,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28774,26654 L 28875,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28975,26654 L 29076,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29176,26654 L 29277,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29377,26654 L 29478,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29578,26654 L 29679,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29779,26654 L 29879,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29980,26654 L 30080,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30181,26654 L 30281,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30382,26654 L 30482,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30583,26654 L 30683,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30784,26654 L 30884,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30985,26654 L 31085,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31186,26654 L 31286,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31387,26654 L 31487,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31587,26654 L 31688,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31788,26654 L 31889,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31989,26654 L 32090,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32190,26654 L 32291,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32391,26654 L 32492,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32592,26654 L 32693,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32793,26654 L 32894,26654"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32994,26654 C 33027,26653 33061,26651 33094,26646"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33193,26627 C 33225,26618 33257,26608 33289,26596"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33381,26557 C 33411,26542 33440,26526 33469,26508"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33553,26452 C 33580,26433 33606,26412 33631,26390"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33705,26321 C 33728,26297 33751,26272 33772,26246"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33833,26166 C 33852,26138 33870,26110 33887,26081"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33933,25992 C 33947,25961 33960,25930 33971,25899"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33998,25802 C 34006,25769 34012,25736 34015,25703"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,25603 L 34020,25502"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,25402 L 34020,25301"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,25201 L 34020,25100"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,25000 L 34020,24899"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,24799 L 34020,24698"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,24598 L 34020,24497"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,24397 L 34020,24296"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,24196 L 34020,24096"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,23995 L 34020,23895"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,23794 L 34020,23694"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,23593 L 34020,23493"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,23392 L 34020,23292"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,23191 L 34020,23091"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,22990 L 34020,22890"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,22789 L 34020,22689"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,22588 L 34020,22488"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,22388 L 34020,22287"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,22187 L 34020,22086"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,21986 L 34020,21885"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,21785 L 34020,21684"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,21584 L 34020,21483"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,21383 L 34020,21282"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,21182 L 34020,21081"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,20981 L 34020,20881"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,20780 L 34020,20680"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,20579 L 34020,20479"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,20378 L 34020,20278"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,20177 L 34020,20077"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,19976 L 34020,19876"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,19775 L 34020,19675"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,19574 L 34020,19474"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,19373 L 34020,19273"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,19173 L 34020,19072"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,18972 L 34020,18871"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,18771 L 34020,18670"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,18570 L 34020,18469"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,18369 L 34020,18268"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,18168 L 34020,18067"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,17967 L 34020,17866"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,17766 L 34020,17665"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,17565 L 34020,17465"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,17364 L 34020,17264"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,17163 L 34020,17063"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,16962 L 34020,16862"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,16761 L 34020,16661"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,16560 L 34020,16460"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,16359 L 34020,16259"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,16158 L 34020,16058"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,15957 L 34020,15857"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,15757 L 34020,15656"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,15556 L 34020,15455"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,15355 L 34020,15254"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,15154 L 34020,15053"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,14953 L 34020,14852"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,14752 L 34020,14651"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,14551 L 34020,14450"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,14350 L 34020,14249"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,14149 L 34020,14049"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,13948 L 34020,13848"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,13747 L 34020,13647"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,13546 L 34020,13446"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,13345 L 34020,13245"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,13144 L 34020,13044"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,12943 L 34020,12843"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,12742 L 34020,12642"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,12541 L 34020,12441"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,12341 L 34020,12240"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,12140 L 34020,12039"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,11939 L 34020,11838"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,11738 L 34020,11637"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,11537 L 34020,11436"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,11336 L 34020,11235"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,11135 L 34020,11034"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,10934 L 34020,10834"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,10733 L 34020,10633"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,10532 L 34020,10432"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,10331 L 34020,10231"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,10130 L 34020,10030"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,9929 L 34020,9829"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,9728 L 34020,9628"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,9527 L 34020,9427"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,9326 L 34020,9226"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,9126 L 34020,9025"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,8925 L 34020,8824"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,8724 L 34020,8623"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,8523 L 34020,8422"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,8322 L 34020,8221"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,8121 L 34020,8020"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,7920 L 34020,7819"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,7719 L 34020,7618"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,7518 L 34020,7418"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,7317 L 34020,7217"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,7116 L 34020,7016"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,6915 L 34020,6815"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,6714 L 34020,6614"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,6513 L 34020,6413"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,6312 L 34020,6212"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,6111 L 34020,6011"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,5910 L 34020,5810"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,5710 L 34020,5609"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34020,5509 L 34020,5465 C 34020,5446 34019,5427 34018,5408"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 34005,5308 C 33998,5276 33990,5243 33980,5211"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33945,5117 C 33932,5086 33918,5056 33902,5026"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33850,4940 C 33831,4912 33812,4885 33791,4859"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33725,4782 C 33702,4758 33678,4734 33654,4712"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33577,4647 C 33550,4627 33522,4607 33494,4589"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33407,4539 C 33377,4523 33347,4509 33316,4496"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33221,4463 C 33189,4454 33156,4446 33123,4440"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 33024,4429 C 33010,4428 32997,4428 32983,4428 L 32923,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32823,4428 L 32722,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32622,4428 L 32521,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32421,4428 L 32320,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32220,4428 L 32119,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 32019,4428 L 31918,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31818,4428 L 31717,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31617,4428 L 31517,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31416,4428 L 31316,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31215,4428 L 31115,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 31014,4428 L 30914,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30813,4428 L 30713,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30612,4428 L 30512,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30411,4428 L 30311,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30210,4428 L 30110,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 30009,4428 L 29909,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29809,4428 L 29708,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29608,4428 L 29507,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29407,4428 L 29306,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29206,4428 L 29105,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 29005,4428 L 28904,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28804,4428 L 28703,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28603,4428 L 28502,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28402,4428 L 28301,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28201,4428 L 28101,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 28000,4428 L 27900,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27799,4428 L 27699,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27598,4428 L 27498,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27397,4428 L 27297,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 27196,4428 L 27096,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26995,4428 L 26895,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26794,4428 L 26694,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26594,4428 L 26493,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26393,4428 L 26292,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 26192,4428 L 26091,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25991,4428 L 25890,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25790,4428 L 25689,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25589,4428 L 25488,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25388,4428 L 25287,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 25187,4428 L 25086,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24986,4428 L 24886,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24785,4428 L 24685,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24584,4428 L 24484,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24383,4428 L 24283,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 24182,4428 L 24082,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23981,4428 L 23881,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23780,4428 L 23680,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23579,4428 L 23479,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23378,4428 L 23278,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 23178,4428 L 23077,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22977,4428 L 22876,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22776,4428 L 22675,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22575,4428 L 22474,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22374,4428 L 22273,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 22173,4428 L 22072,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21972,4428 L 21871,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21771,4428 L 21670,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21570,4428 L 21470,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21369,4428 L 21269,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 21168,4428 L 21068,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20967,4428 L 20867,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20766,4428 L 20666,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20565,4428 L 20465,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20364,4428 L 20264,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 20163,4428 L 20063,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19962,4428 L 19862,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19762,4428 L 19661,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19561,4428 L 19460,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19360,4428 L 19259,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 19159,4428 L 19058,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18958,4428 L 18857,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18757,4428 L 18656,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18556,4428 L 18455,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18355,4428 L 18254,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18154,4428 L 18054,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17953,4428 L 17853,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17752,4428 L 17652,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17551,4428 L 17451,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17350,4428 L 17250,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17149,4428 L 17049,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16948,4428 L 16848,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16747,4428 L 16647,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16547,4428 L 16446,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16346,4428 L 16245,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16145,4428 L 16044,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15944,4428 L 15843,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15743,4428 L 15642,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15542,4428 L 15441,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15341,4428 L 15240,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15140,4428 L 15039,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14939,4428 L 14839,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14738,4428 L 14638,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14537,4428 L 14437,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14336,4428 L 14236,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14135,4428 L 14035,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13934,4428 L 13834,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13733,4428 L 13633,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13532,4428 L 13432,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13331,4428 L 13231,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13131,4428 L 13030,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12930,4428 L 12829,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12729,4428 L 12628,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12528,4428 L 12427,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12327,4428 L 12226,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12126,4428 L 12025,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11925,4428 L 11824,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11724,4428 L 11623,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11523,4428 L 11423,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11322,4428 L 11222,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11121,4428 L 11021,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10920,4428 L 10820,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10719,4428 L 10619,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10518,4428 L 10418,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10317,4428 L 10217,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10116,4428 L 10016,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9915,4428 L 9815,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9715,4428 L 9614,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9514,4428 L 9413,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9313,4428 L 9212,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9112,4428 L 9011,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8911,4428 L 8810,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8710,4428 L 8609,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8509,4428 L 8408,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8308,4428 L 8207,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8107,4428 L 8007,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7906,4428 L 7806,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7705,4428 L 7605,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7504,4428 L 7404,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7303,4428 L 7203,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7102,4428 L 7002,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6901,4428 L 6801,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6700,4428 L 6600,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6500,4428 L 6399,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6299,4428 L 6198,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6098,4428 L 5997,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5897,4428 L 5796,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5696,4428 L 5595,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5495,4428 L 5394,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5294,4428 L 5193,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5093,4428 L 4992,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4892,4428 L 4792,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4691,4428 L 4591,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4490,4428 L 4390,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4289,4428 L 4189,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4088,4428 L 3988,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3887,4428 L 3787,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3686,4428 L 3586,4428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3485,4428 L 3385,4428"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15097" y="4847" width="7585" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="16296" y="5357"><tspan fill="rgb(102,102,102)" stroke="none">Enter Application Context</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6055" y="4423" width="459" height="2111"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6288,4449 C 6288,6012 6285,5128 6284,6189"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 6285,6532 L 6513,6168 6056,6167 6285,6532 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9257" y="7905" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 9437,7931 C 9360,7931 9283,8008 9283,8085 L 9283,8704 C 9283,8781 9360,8858 9437,8858 L 12939,8858 C 13016,8858 13094,8781 13094,8704 L 13094,8085 C 13094,8008 13016,7931 12939,7931 L 9437,7931 Z M 9283,7931 L 9283,7931 Z M 13094,8859 L 13094,8859 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9437,7931 C 9360,7931 9283,8008 9283,8085 L 9283,8704 C 9283,8781 9360,8858 9437,8858 L 12939,8858 C 13016,8858 13094,8781 13094,8704 L 13094,8085 C 13094,8008 13016,7931 12939,7931 L 9437,7931 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9283" y="7958" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10234" y="8481"><tspan fill="rgb(0,0,0)" stroke="none">Load Platform</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8166" y="8165" width="1119" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8192,8382 C 8991,8382 8601,8391 8945,8394"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 9283,8394 L 8919,8165 8918,8622 9283,8394 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14258" y="7905" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14438,7931 C 14361,7931 14284,8008 14284,8085 L 14284,8704 C 14284,8781 14361,8858 14438,8858 L 17940,8858 C 18017,8858 18095,8781 18095,8704 L 18095,8085 C 18095,8008 18017,7931 17940,7931 L 14438,7931 Z M 14284,7931 L 14284,7931 Z M 18095,8859 L 18095,8859 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14438,7931 C 14361,7931 14284,8008 14284,8085 L 14284,8704 C 14284,8781 14361,8858 14438,8858 L 17940,8858 C 18017,8858 18095,8781 18095,8704 L 18095,8085 C 18095,8008 18017,7931 17940,7931 L 14438,7931 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14284" y="7958" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14663" y="8481"><tspan fill="rgb(0,0,0)" stroke="none">ArtifactCache Preflight</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13067" y="8153" width="1218" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13093,8382 L 13950,8382"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 14284,8381 L 13920,8154 13920,8611 14284,8381 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14259" y="9705" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14439,9731 C 14362,9731 14285,9808 14285,9885 L 14285,10504 C 14285,10581 14362,10658 14439,10658 L 17941,10658 C 18018,10658 18096,10581 18096,10504 L 18096,9885 C 18096,9808 18018,9731 17941,9731 L 14439,9731 Z M 14285,9731 L 14285,9731 Z M 18096,10659 L 18096,10659 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14439,9731 C 14362,9731 14285,9808 14285,9885 L 14285,10504 C 14285,10581 14362,10658 14439,10658 L 17941,10658 C 18018,10658 18096,10581 18096,10504 L 18096,9885 C 18096,9808 18018,9731 17941,9731 L 14439,9731 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14289" y="9761" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15030" y="10284"><tspan fill="rgb(0,0,0)" stroke="none">Initialize Logging</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15964" y="8833" width="459" height="929"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 16189,8859 C 16189,9555 16192,9265 16193,9424"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 16195,9761 L 16421,9396 15964,9397 16195,9761 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="29191" y="2436" width="2582" height="2020"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 31746,4429 C 31746,3246 31007,2738 29528,2663"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 29192,2656 L 29550,2893 29562,2436 29192,2656 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="25356" y="2144" width="3864" height="1054"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 25548,2170 C 25465,2170 25382,2253 25382,2336 L 25382,3004 C 25382,3087 25465,3171 25548,3171 L 29026,3171 C 29109,3171 29193,3087 29193,3004 L 29193,2336 C 29193,2253 29109,2170 29026,2170 L 25548,2170 Z M 25382,2170 L 25382,2170 Z M 29193,3171 L 29193,3171 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 25548,2170 C 25465,2170 25382,2253 25382,2336 L 25382,3004 C 25382,3087 25465,3171 25548,3171 L 29026,3171 C 29109,3171 29193,3087 29193,3004 L 29193,2336 C 29193,2253 29109,2170 29026,2170 L 25548,2170 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="25382" y="2198" width="3811" height="916"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="26333" y="2755"><tspan fill="rgb(0,0,0)" stroke="none">Exit with error</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9360" y="9705" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 9540,9731 C 9463,9731 9386,9808 9386,9885 L 9386,10504 C 9386,10581 9463,10658 9540,10658 L 13042,10658 C 13119,10658 13197,10581 13197,10504 L 13197,9885 C 13197,9808 13119,9731 13042,9731 L 9540,9731 Z M 9386,9731 L 9386,9731 Z M 13197,10659 L 13197,10659 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9540,9731 C 9463,9731 9386,9808 9386,9885 L 9386,10504 C 9386,10581 9463,10658 9540,10658 L 13042,10658 C 13119,10658 13197,10581 13197,10504 L 13197,9885 C 13197,9808 13119,9731 13042,9731 L 9540,9731 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9386" y="9758" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9831" y="10281"><tspan fill="rgb(0,0,0)" stroke="none">Load Toplevel Project</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13195" y="9953" width="1121" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14289,10185 C 13470,10185 13858,10183 13533,10182"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 13196,10183 L 13560,10411 13561,9954 13196,10183 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4361" y="9705" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 4541,9731 C 4464,9731 4387,9808 4387,9885 L 4387,10504 C 4387,10581 4464,10658 4541,10658 L 8043,10658 C 8120,10658 8198,10581 8198,10504 L 8198,9885 C 8198,9808 8120,9731 8043,9731 L 4541,9731 Z M 4387,9731 L 4387,9731 Z M 8198,10659 L 8198,10659 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4541,9731 C 4464,9731 4387,9808 4387,9885 L 4387,10504 C 4387,10581 4464,10658 4541,10658 L 8043,10658 C 8120,10658 8198,10581 8198,10504 L 8198,9885 C 8198,9808 8120,9731 8043,9731 L 4541,9731 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4387" y="9758" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5209" y="10281"><tspan fill="rgb(0,0,0)" stroke="none">Initialize Stream</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8197" y="9953" width="1216" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9386,10182 L 8531,10182"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 8197,10183 L 8561,10411 8561,9954 8197,10183 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3386" y="6515" width="15675" height="5046"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3897,6541 C 3864,6541 3830,6546 3798,6554"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3704,6590 C 3674,6605 3646,6623 3619,6644"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3545,6712 C 3522,6737 3502,6763 3484,6792"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3439,6881 C 3427,6913 3419,6946 3415,6979"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,7079 L 3412,7180"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,7280 L 3412,7381"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,7481 L 3412,7581"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,7682 L 3412,7782"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,7883 L 3412,7983"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,8084 L 3412,8184"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,8285 L 3412,8385"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,8486 L 3412,8586"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,8687 L 3412,8787"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,8888 L 3412,8988"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,9089 L 3412,9189"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,9289 L 3412,9390"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,9490 L 3412,9591"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,9691 L 3412,9792"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,9892 L 3412,9993"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,10093 L 3412,10194"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,10294 L 3412,10395"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,10495 L 3412,10596"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,10696 L 3412,10797"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,10897 L 3412,10997"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3415,11098 C 3420,11131 3428,11163 3440,11195"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3485,11285 C 3503,11313 3524,11340 3546,11364"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3621,11432 C 3647,11453 3676,11471 3706,11486"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3800,11521 C 3832,11530 3864,11534 3897,11534 L 3899,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3999,11534 L 4100,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4200,11534 L 4301,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4401,11534 L 4502,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4602,11534 L 4703,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4803,11534 L 4904,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5004,11534 L 5105,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5205,11534 L 5306,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5406,11534 L 5506,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5607,11534 L 5707,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5808,11534 L 5908,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6009,11534 L 6109,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6210,11534 L 6310,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6411,11534 L 6511,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6612,11534 L 6712,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6813,11534 L 6913,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7013,11534 L 7114,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7214,11534 L 7315,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7415,11534 L 7516,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7616,11534 L 7717,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7817,11534 L 7918,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8018,11534 L 8119,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8219,11534 L 8320,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8420,11534 L 8521,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8621,11534 L 8721,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8822,11534 L 8922,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9023,11534 L 9123,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9224,11534 L 9324,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9425,11534 L 9525,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9626,11534 L 9726,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9827,11534 L 9927,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10028,11534 L 10128,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10229,11534 L 10329,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10429,11534 L 10530,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10630,11534 L 10731,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10831,11534 L 10932,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11032,11534 L 11133,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11233,11534 L 11334,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11434,11534 L 11535,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11635,11534 L 11736,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11836,11534 L 11937,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12037,11534 L 12137,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12238,11534 L 12338,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12439,11534 L 12539,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12640,11534 L 12740,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12841,11534 L 12941,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13042,11534 L 13142,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13243,11534 L 13343,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13444,11534 L 13544,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13645,11534 L 13745,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13845,11534 L 13946,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14046,11534 L 14147,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14247,11534 L 14348,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14448,11534 L 14549,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14649,11534 L 14750,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14850,11534 L 14951,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15051,11534 L 15152,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15252,11534 L 15353,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15453,11534 L 15553,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15654,11534 L 15754,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15855,11534 L 15955,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16056,11534 L 16156,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16257,11534 L 16357,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16458,11534 L 16558,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16659,11534 L 16759,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16860,11534 L 16960,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17060,11534 L 17161,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17261,11534 L 17362,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17462,11534 L 17563,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17663,11534 L 17764,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17864,11534 L 17965,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18065,11534 L 18166,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18266,11534 L 18367,11534"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18467,11534 L 18548,11534 C 18555,11534 18561,11534 18568,11533"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18666,11516 C 18698,11506 18729,11492 18759,11476"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18841,11419 C 18867,11398 18891,11374 18913,11349"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18971,11267 C 18988,11237 19002,11207 19013,11175"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19033,11077 C 19034,11067 19034,11058 19034,11048 L 19034,10977"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,10876 L 19034,10776"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,10675 L 19034,10575"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,10474 L 19034,10374"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,10273 L 19034,10173"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,10072 L 19034,9972"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,9871 L 19034,9771"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,9671 L 19034,9570"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,9470 L 19034,9369"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,9269 L 19034,9168"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,9068 L 19034,8967"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,8867 L 19034,8766"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,8666 L 19034,8565"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,8465 L 19034,8364"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,8264 L 19034,8164"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,8063 L 19034,7963"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,7862 L 19034,7762"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,7661 L 19034,7561"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,7460 L 19034,7360"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,7259 L 19034,7159"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,7058 L 19034,7026 C 19034,7003 19032,6981 19028,6958"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18999,6862 C 18986,6832 18969,6802 18950,6774"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18886,6697 C 18863,6673 18837,6651 18810,6631"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18723,6581 C 18692,6567 18660,6556 18628,6549"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18528,6541 L 18427,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18327,6541 L 18226,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18126,6541 L 18026,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17925,6541 L 17825,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17724,6541 L 17624,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17523,6541 L 17423,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17322,6541 L 17222,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17121,6541 L 17021,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16920,6541 L 16820,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16719,6541 L 16619,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16518,6541 L 16418,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16318,6541 L 16217,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16117,6541 L 16016,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15916,6541 L 15815,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15715,6541 L 15614,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15514,6541 L 15413,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15313,6541 L 15212,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15112,6541 L 15011,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14911,6541 L 14810,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14710,6541 L 14610,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14509,6541 L 14409,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14308,6541 L 14208,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14107,6541 L 14007,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13906,6541 L 13806,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13705,6541 L 13605,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13504,6541 L 13404,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13303,6541 L 13203,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13102,6541 L 13002,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12902,6541 L 12801,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12701,6541 L 12600,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12500,6541 L 12399,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12299,6541 L 12198,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12098,6541 L 11997,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11897,6541 L 11796,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11696,6541 L 11595,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11495,6541 L 11395,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11294,6541 L 11194,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11093,6541 L 10993,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10892,6541 L 10792,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10691,6541 L 10591,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10490,6541 L 10390,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10289,6541 L 10189,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10088,6541 L 9988,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9887,6541 L 9787,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9687,6541 L 9586,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9486,6541 L 9385,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9285,6541 L 9184,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9084,6541 L 8983,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8883,6541 L 8782,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8682,6541 L 8581,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8481,6541 L 8380,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8280,6541 L 8179,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8079,6541 L 7979,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7878,6541 L 7778,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7677,6541 L 7577,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7476,6541 L 7376,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7275,6541 L 7175,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7074,6541 L 6974,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6873,6541 L 6773,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6672,6541 L 6572,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6471,6541 L 6371,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6271,6541 L 6170,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6070,6541 L 5969,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5869,6541 L 5768,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5668,6541 L 5567,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5467,6541 L 5366,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5266,6541 L 5165,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5065,6541 L 4964,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4864,6541 L 4763,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4663,6541 L 4563,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4462,6541 L 4362,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4261,6541 L 4161,6541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4060,6541 L 3960,6541"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6853" y="6511" width="459" height="1400"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7086,6537 C 7086,7566 7083,7039 7082,7566"/>
+ <path fill="rgb(178,178,178)" stroke="none" d="M 7083,7909 L 7311,7545 6854,7544 7083,7909 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7386" y="6572" width="7585" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="9136" y="7082"><tspan fill="rgb(102,102,102)" stroke="none">Initialize Application</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id32">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3386" y="14115" width="15675" height="9899"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4368,14141 C 4335,14141 4301,14143 4268,14148"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4169,14168 C 4137,14176 4105,14187 4074,14199"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3982,14240 C 3953,14256 3923,14272 3895,14291"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3813,14349 C 3787,14370 3761,14391 3737,14414"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3667,14486 C 3644,14512 3623,14538 3603,14564"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3547,14648 C 3529,14677 3513,14706 3499,14736"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3460,14829 C 3449,14861 3439,14893 3432,14925"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3416,15025 C 3413,15049 3412,15073 3412,15097 L 3412,15125"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,15225 L 3412,15326"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,15426 L 3412,15527"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,15627 L 3412,15728"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,15828 L 3412,15929"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,16029 L 3412,16130"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,16230 L 3412,16331"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,16431 L 3412,16531"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,16632 L 3412,16732"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,16833 L 3412,16933"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,17034 L 3412,17134"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,17235 L 3412,17335"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,17436 L 3412,17536"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,17637 L 3412,17737"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,17838 L 3412,17938"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,18039 L 3412,18139"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,18239 L 3412,18340"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,18440 L 3412,18541"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,18641 L 3412,18742"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,18842 L 3412,18943"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,19043 L 3412,19144"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,19244 L 3412,19345"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,19445 L 3412,19546"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,19646 L 3412,19746"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,19847 L 3412,19947"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,20048 L 3412,20148"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,20249 L 3412,20349"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,20450 L 3412,20550"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,20651 L 3412,20751"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,20852 L 3412,20952"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,21053 L 3412,21153"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,21254 L 3412,21354"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,21454 L 3412,21555"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,21655 L 3412,21756"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,21856 L 3412,21957"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,22057 L 3412,22158"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,22258 L 3412,22359"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,22459 L 3412,22560"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,22660 L 3412,22761"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3412,22861 L 3412,22962"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3413,23062 C 3414,23095 3418,23129 3424,23162"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3447,23259 C 3457,23291 3469,23323 3482,23354"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3526,23444 C 3543,23473 3560,23502 3579,23530"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3640,23610 C 3661,23636 3684,23661 3707,23684"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3781,23753 C 3807,23774 3834,23795 3861,23814"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 3946,23868 C 3975,23885 4005,23900 4036,23913"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4130,23949 C 4162,23959 4194,23967 4227,23973"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4327,23986 C 4341,23987 4354,23987 4368,23987 L 4427,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4528,23987 L 4628,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4729,23987 L 4829,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4930,23987 L 5030,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5130,23987 L 5231,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5331,23987 L 5432,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5532,23987 L 5633,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5733,23987 L 5834,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5934,23987 L 6035,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6135,23987 L 6236,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6336,23987 L 6437,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6537,23987 L 6638,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6738,23987 L 6838,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6939,23987 L 7039,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7140,23987 L 7240,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7341,23987 L 7441,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7542,23987 L 7642,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7743,23987 L 7843,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7944,23987 L 8044,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8145,23987 L 8245,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8346,23987 L 8446,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8546,23987 L 8647,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8747,23987 L 8848,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8948,23987 L 9049,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9149,23987 L 9250,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9350,23987 L 9451,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9551,23987 L 9652,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9752,23987 L 9853,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9953,23987 L 10054,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10154,23987 L 10254,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10355,23987 L 10455,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10556,23987 L 10656,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10757,23987 L 10857,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10958,23987 L 11058,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11159,23987 L 11259,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11360,23987 L 11460,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11561,23987 L 11661,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11762,23987 L 11862,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11962,23987 L 12063,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12163,23987 L 12264,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12364,23987 L 12465,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12565,23987 L 12666,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12766,23987 L 12867,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12967,23987 L 13068,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13168,23987 L 13269,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13369,23987 L 13469,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13570,23987 L 13670,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13771,23987 L 13871,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13972,23987 L 14072,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14173,23987 L 14273,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14374,23987 L 14474,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14575,23987 L 14675,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14776,23987 L 14876,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14977,23987 L 15077,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15177,23987 L 15278,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15378,23987 L 15479,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15579,23987 L 15680,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15780,23987 L 15881,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15981,23987 L 16082,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16182,23987 L 16283,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16383,23987 L 16484,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16584,23987 L 16685,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16785,23987 L 16885,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16986,23987 L 17086,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17187,23987 L 17287,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17388,23987 L 17488,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17589,23987 L 17689,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17790,23987 L 17890,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17991,23987 L 18077,23987 C 18082,23987 18086,23987 18091,23987"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18191,23978 C 18224,23973 18257,23966 18289,23957"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18384,23924 C 18415,23911 18446,23897 18475,23881"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18562,23830 C 18590,23811 18617,23791 18643,23770"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18718,23704 C 18743,23681 18766,23656 18788,23631"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18850,23552 C 18870,23525 18889,23497 18906,23468"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18953,23379 C 18967,23349 18979,23318 18990,23286"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19017,23189 C 19024,23156 19029,23123 19032,23090"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,22989 L 19034,22889"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,22788 L 19034,22688"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,22587 L 19034,22487"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,22387 L 19034,22286"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,22186 L 19034,22085"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,21985 L 19034,21884"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,21784 L 19034,21683"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,21583 L 19034,21482"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,21382 L 19034,21281"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,21181 L 19034,21080"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,20980 L 19034,20879"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,20779 L 19034,20679"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,20578 L 19034,20478"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,20377 L 19034,20277"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,20176 L 19034,20076"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,19975 L 19034,19875"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,19774 L 19034,19674"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,19573 L 19034,19473"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,19372 L 19034,19272"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,19171 L 19034,19071"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,18971 L 19034,18870"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,18770 L 19034,18669"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,18569 L 19034,18468"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,18368 L 19034,18267"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,18167 L 19034,18066"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,17966 L 19034,17865"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,17765 L 19034,17664"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,17564 L 19034,17464"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,17363 L 19034,17263"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,17162 L 19034,17062"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,16961 L 19034,16861"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,16760 L 19034,16660"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,16559 L 19034,16459"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,16358 L 19034,16258"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,16157 L 19034,16057"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,15956 L 19034,15856"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,15756 L 19034,15655"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,15555 L 19034,15454"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,15354 L 19034,15253"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19034,15153 L 19034,15097 C 19034,15082 19034,15067 19033,15052"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 19020,14952 C 19013,14920 19005,14887 18995,14855"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18959,14762 C 18945,14731 18930,14701 18913,14672"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18859,14587 C 18840,14560 18819,14533 18797,14508"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18729,14434 C 18705,14410 18680,14388 18654,14367"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18574,14306 C 18546,14287 18517,14270 18488,14254"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18398,14210 C 18367,14196 18335,14185 18303,14175"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18205,14152 C 18172,14146 18139,14143 18105,14142"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 18005,14141 L 17905,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17804,14141 L 17704,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17603,14141 L 17503,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17402,14141 L 17302,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17201,14141 L 17101,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 17000,14141 L 16900,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16799,14141 L 16699,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16598,14141 L 16498,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16398,14141 L 16297,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 16197,14141 L 16096,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15996,14141 L 15895,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15795,14141 L 15694,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15594,14141 L 15493,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15393,14141 L 15292,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 15192,14141 L 15091,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14991,14141 L 14890,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14790,14141 L 14690,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14589,14141 L 14489,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14388,14141 L 14288,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 14187,14141 L 14087,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13986,14141 L 13886,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13785,14141 L 13685,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13584,14141 L 13484,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13383,14141 L 13283,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13182,14141 L 13082,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12982,14141 L 12881,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12781,14141 L 12680,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12580,14141 L 12479,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12379,14141 L 12278,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12178,14141 L 12077,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11977,14141 L 11876,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11776,14141 L 11675,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11575,14141 L 11474,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11374,14141 L 11274,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11173,14141 L 11073,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10972,14141 L 10872,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10771,14141 L 10671,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10570,14141 L 10470,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10369,14141 L 10269,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10168,14141 L 10068,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9967,14141 L 9867,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9766,14141 L 9666,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9566,14141 L 9465,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9365,14141 L 9264,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9164,14141 L 9063,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8963,14141 L 8862,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8762,14141 L 8661,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8561,14141 L 8460,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8360,14141 L 8259,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8159,14141 L 8058,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7958,14141 L 7858,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7757,14141 L 7657,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7556,14141 L 7456,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7355,14141 L 7255,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7154,14141 L 7054,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6953,14141 L 6853,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6752,14141 L 6652,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6551,14141 L 6451,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6351,14141 L 6250,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6150,14141 L 6049,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5949,14141 L 5848,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5748,14141 L 5647,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5547,14141 L 5446,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5346,14141 L 5245,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5145,14141 L 5044,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4944,14141 L 4843,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4743,14141 L 4643,14141"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4542,14141 L 4442,14141"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id33">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10994" y="11507" width="459" height="2636"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11223,11533 L 11223,13808"/>
+ <path fill="rgb(178,178,178)" stroke="none" d="M 11224,14142 L 11452,13778 10995,13778 11224,14142 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id34">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7386" y="14173" width="7585" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="9584" y="14683"><tspan fill="rgb(102,102,102)" stroke="none">Run Stream API</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id35">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4357" y="15505" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 4537,15531 C 4460,15531 4383,15608 4383,15685 L 4383,16304 C 4383,16381 4460,16458 4537,16458 L 8039,16458 C 8116,16458 8194,16381 8194,16304 L 8194,15685 C 8194,15608 8116,15531 8039,15531 L 4537,15531 Z M 4383,15531 L 4383,15531 Z M 8194,16459 L 8194,16459 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 4537,15531 C 4460,15531 4383,15608 4383,15685 L 4383,16304 C 4383,16381 4460,16458 4537,16458 L 8039,16458 C 8116,16458 8194,16381 8194,16304 L 8194,15685 C 8194,15608 8116,15531 8039,15531 L 4537,15531 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id36">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4383" y="15558" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5279" y="16081"><tspan fill="rgb(0,0,0)" stroke="none">Load Elements</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id37">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6854" y="14111" width="459" height="1400"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7087,14137 C 7087,15166 7084,14639 7083,15166"/>
+ <path fill="rgb(178,178,178)" stroke="none" d="M 7084,15509 L 7312,15145 6855,15144 7084,15509 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id38">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9358" y="15505" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 9538,15531 C 9461,15531 9384,15608 9384,15685 L 9384,16304 C 9384,16381 9461,16458 9538,16458 L 13040,16458 C 13117,16458 13195,16381 13195,16304 L 13195,15685 C 13195,15608 13117,15531 13040,15531 L 9538,15531 Z M 9384,15531 L 9384,15531 Z M 13195,16459 L 13195,16459 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 9538,15531 C 9461,15531 9384,15608 9384,15685 L 9384,16304 C 9384,16381 9461,16458 9538,16458 L 13040,16458 C 13117,16458 13195,16381 13195,16304 L 13195,15685 C 13195,15608 13117,15531 13040,15531 L 9538,15531 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id39">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9384" y="15558" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10371" y="16081"><tspan fill="rgb(0,0,0)" stroke="none">Resolve Keys</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id40">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8167" y="15765" width="1219" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8193,15982 C 9067,15982 8628,15991 9043,15994"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 9384,15994 L 9020,15765 9019,16222 9384,15994 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id41">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14259" y="15505" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14439,15531 C 14362,15531 14285,15608 14285,15685 L 14285,16304 C 14285,16381 14362,16458 14439,16458 L 17941,16458 C 18018,16458 18096,16381 18096,16304 L 18096,15685 C 18096,15608 18018,15531 17941,15531 L 14439,15531 Z M 14285,15531 L 14285,15531 Z M 18096,16459 L 18096,16459 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14439,15531 C 14362,15531 14285,15608 14285,15685 L 14285,16304 C 14285,16381 14362,16458 14439,16458 L 17941,16458 C 18018,16458 18096,16381 18096,16304 L 18096,15685 C 18096,15608 18018,15531 17941,15531 L 14439,15531 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id42">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14285" y="15558" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14713" y="16081"><tspan fill="rgb(0,0,0)" stroke="none">Resolve Cached State</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id43">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13168" y="15753" width="1118" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13194,15982 L 13951,15982"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 14285,15981 L 13921,15754 13921,16211 14285,15981 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id44">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14260" y="17505" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 14440,17531 C 14363,17531 14286,17608 14286,17685 L 14286,18304 C 14286,18381 14363,18458 14440,18458 L 17942,18458 C 18019,18458 18097,18381 18097,18304 L 18097,17685 C 18097,17608 18019,17531 17942,17531 L 14440,17531 Z M 14286,17531 L 14286,17531 Z M 18097,18459 L 18097,18459 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 14440,17531 C 14363,17531 14286,17608 14286,17685 L 14286,18304 C 14286,18381 14363,18458 14440,18458 L 17942,18458 C 18019,18458 18097,18381 18097,18304 L 18097,17685 C 18097,17608 18019,17531 17942,17531 L 14440,17531 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id45">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14286" y="17539" width="3811" height="888"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14798" y="17923"><tspan fill="rgb(0,0,0)" stroke="none">Construct Scheduler </tspan></tspan><tspan class="TextPosition" x="15673" y="18241"><tspan fill="rgb(0,0,0)" stroke="none">Queues</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id46">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15962" y="16433" width="459" height="1107"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 16190,16459 C 16190,17288 16191,16909 16191,17205"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 16192,17539 L 16419,17174 15962,17175 16192,17539 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id47">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4384" y="17483" width="8944" height="5769"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5038,17509 L 4965,17509 C 4932,17509 4898,17513 4865,17521"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4770,17552 C 4740,17566 4710,17582 4682,17601"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4603,17663 C 4579,17686 4556,17710 4535,17737"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4478,17820 C 4462,17849 4448,17880 4437,17911"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4414,18009 C 4411,18027 4410,18046 4410,18064 L 4410,18109"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,18210 L 4410,18310"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,18411 L 4410,18511"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,18612 L 4410,18712"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,18813 L 4410,18913"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,19014 L 4410,19114"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,19214 L 4410,19315"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,19415 L 4410,19516"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,19616 L 4410,19717"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,19817 L 4410,19918"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,20018 L 4410,20119"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,20219 L 4410,20320"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,20420 L 4410,20521"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,20621 L 4410,20722"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,20822 L 4410,20922"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,21023 L 4410,21123"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,21224 L 4410,21324"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,21425 L 4410,21525"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,21626 L 4410,21726"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,21827 L 4410,21927"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,22028 L 4410,22128"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,22229 L 4410,22329"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,22430 L 4410,22530"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4410,22630 L 4410,22669 C 4410,22690 4412,22710 4414,22731"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4439,22828 C 4451,22859 4465,22890 4482,22919"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4539,23002 C 4560,23027 4584,23052 4608,23074"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4688,23136 C 4716,23154 4746,23170 4777,23183"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 4872,23214 C 4903,23221 4934,23224 4965,23224 L 4972,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5072,23224 L 5173,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5273,23224 L 5374,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5474,23224 L 5575,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5675,23224 L 5776,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5876,23224 L 5977,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6077,23224 L 6178,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6278,23224 L 6379,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6479,23224 L 6579,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6680,23224 L 6780,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6881,23224 L 6981,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7082,23224 L 7182,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7283,23224 L 7383,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7484,23224 L 7584,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7685,23224 L 7785,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7886,23224 L 7986,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8087,23224 L 8187,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8287,23224 L 8388,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8488,23224 L 8589,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8689,23224 L 8790,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8890,23224 L 8991,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9091,23224 L 9192,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9292,23224 L 9393,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9493,23224 L 9594,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9694,23224 L 9795,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9895,23224 L 9995,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10096,23224 L 10196,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10297,23224 L 10397,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10498,23224 L 10598,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10699,23224 L 10799,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10900,23224 L 11000,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11101,23224 L 11201,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11302,23224 L 11402,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11502,23224 L 11603,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11703,23224 L 11804,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11904,23224 L 12005,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12105,23224 L 12206,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12306,23224 L 12407,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12507,23224 L 12608,23224"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12708,23224 L 12745,23224 C 12766,23224 12787,23222 12808,23219"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12906,23194 C 12937,23183 12967,23168 12996,23151"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13079,23094 C 13105,23072 13129,23049 13151,23024"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13212,22944 C 13231,22916 13247,22886 13260,22856"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13290,22760 C 13297,22730 13300,22699 13300,22669 L 13300,22660"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,22560 L 13300,22459"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,22359 L 13300,22258"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,22158 L 13300,22057"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,21957 L 13300,21856"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,21756 L 13300,21655"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,21555 L 13300,21455"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,21354 L 13300,21254"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,21153 L 13300,21053"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,20952 L 13300,20852"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,20751 L 13300,20651"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,20550 L 13300,20450"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,20349 L 13300,20249"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,20148 L 13300,20048"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,19947 L 13300,19847"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,19747 L 13300,19646"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,19546 L 13300,19445"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,19345 L 13300,19244"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,19144 L 13300,19043"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,18943 L 13300,18842"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,18742 L 13300,18641"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,18541 L 13300,18440"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,18340 L 13300,18239"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13300,18139 L 13300,18064 C 13300,18056 13300,18047 13299,18039"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13282,17940 C 13273,17908 13261,17876 13246,17846"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13193,17760 C 13174,17733 13152,17708 13128,17684"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 13052,17618 C 13025,17598 12996,17580 12966,17565"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12873,17528 C 12841,17519 12808,17512 12774,17510"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12674,17509 L 12574,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12473,17509 L 12373,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12272,17509 L 12172,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 12071,17509 L 11971,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11870,17509 L 11770,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11669,17509 L 11569,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11468,17509 L 11368,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11267,17509 L 11167,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 11067,17509 L 10966,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10866,17509 L 10765,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10665,17509 L 10564,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10464,17509 L 10363,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10263,17509 L 10162,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 10062,17509 L 9961,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9861,17509 L 9760,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9660,17509 L 9559,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9459,17509 L 9359,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9258,17509 L 9158,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 9057,17509 L 8957,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8856,17509 L 8756,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8655,17509 L 8555,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8454,17509 L 8354,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8253,17509 L 8153,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 8052,17509 L 7952,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7851,17509 L 7751,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7651,17509 L 7550,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7450,17509 L 7349,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7249,17509 L 7148,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7048,17509 L 6947,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6847,17509 L 6746,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6646,17509 L 6545,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6445,17509 L 6344,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6244,17509 L 6143,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 6043,17509 L 5943,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5842,17509 L 5742,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5641,17509 L 5541,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5440,17509 L 5340,17509"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 5239,17509 L 5139,17509"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id48">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21195" y="18725" width="2514" height="2644"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 22451,18751 L 23682,20046 22451,21342 21221,20046 22451,18751 22451,18751 Z M 21221,18751 L 21221,18751 Z M 23682,21342 L 23682,21342 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 22451,18751 L 23682,20046 22451,21342 21221,20046 22451,18751 22451,18751 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="22066" y="19986"><tspan fill="rgb(0,0,0)" stroke="none">Event</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="21994" y="20304"><tspan fill="rgb(0,0,0)" stroke="none">Switch</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id49">
+ <rect class="BoundingBox" stroke="none" fill="none" x="19008" y="19817" width="2214" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 19034,20064 C 20280,20064 19317,20048 20868,20046"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 21221,20045 L 20856,19818 20857,20275 21221,20045 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id50">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20521" y="22386" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 20701,22412 C 20624,22412 20547,22489 20547,22566 L 20547,23185 C 20547,23262 20624,23339 20701,23339 L 24203,23339 C 24280,23339 24358,23262 24358,23185 L 24358,22566 C 24358,22489 24280,22412 24203,22412 L 20701,22412 Z M 20547,22412 L 20547,22412 Z M 24358,23340 L 24358,23340 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 20701,22412 C 20624,22412 20547,22489 20547,22566 L 20547,23185 C 20547,23262 20624,23339 20701,23339 L 24203,23339 C 24280,23339 24358,23262 24358,23185 L 24358,22566 C 24358,22489 24280,22412 24203,22412 L 20701,22412 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id51">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20547" y="22439" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="21860" y="22962"><tspan fill="rgb(0,0,0)" stroke="none">Log Line</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id52">
+ <rect class="BoundingBox" stroke="none" fill="none" x="22223" y="21315" width="459" height="1099"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 22451,21341 C 22451,22145 22452,21766 22452,22077"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 22453,22413 L 22680,22048 22223,22049 22453,22413 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id53">
+ <rect class="BoundingBox" stroke="none" fill="none" x="19033" y="22698" width="1541" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 20547,22876 C 19017,22876 19537,22912 19371,22930"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 19033,22942 L 19406,23155 19388,22699 19033,22942 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id54">
+ <rect class="BoundingBox" stroke="none" fill="none" x="19796" y="21386" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="20177" y="21769"><tspan fill="rgb(102,102,102)" stroke="none">Logging Event</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id55">
+ <rect class="BoundingBox" stroke="none" fill="none" x="23179" y="20025" width="2735" height="888"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="23784" y="20408"><tspan fill="rgb(102,102,102)" stroke="none">Interrupt or </tspan></tspan><tspan class="TextPosition" x="23774" y="20726"><tspan fill="rgb(102,102,102)" stroke="none">Error Event</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id56">
+ <rect class="BoundingBox" stroke="none" fill="none" x="25697" y="18727" width="2514" height="2644"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 26953,18753 L 28184,20048 26953,21344 25723,20048 26953,18753 26953,18753 Z M 25723,18753 L 25723,18753 Z M 28184,21344 L 28184,21344 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 26953,18753 L 28184,20048 26953,21344 25723,20048 26953,18753 26953,18753 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="26526" y="19988"><tspan fill="rgb(0,0,0)" stroke="none">App is</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="26246" y="20306"><tspan fill="rgb(0,0,0)" stroke="none">Interactive</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id57">
+ <rect class="BoundingBox" stroke="none" fill="none" x="23655" y="19819" width="2070" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 23681,20046 C 25214,20046 24350,20048 25381,20048"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 25723,20047 L 25359,19819 25359,20276 25723,20047 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id58">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4937" y="17574" width="7875" height="5652"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="7378" y="18084"><tspan fill="rgb(102,102,102)" stroke="none">Run Scheduler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="5187" y="19753"><tspan fill="rgb(102,102,102)" stroke="none">Run the event loop, and process the </tspan></tspan><tspan class="TextPosition" x="5187" y="20147"><tspan fill="rgb(102,102,102)" stroke="none">elements until they have passed through all </tspan></tspan><tspan class="TextPosition" x="5187" y="20541"><tspan fill="rgb(102,102,102)" stroke="none">of the queues, or until there is a terminate </tspan></tspan><tspan class="TextPosition" x="5187" y="20935"><tspan fill="rgb(102,102,102)" stroke="none">condition.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id59">
+ <rect class="BoundingBox" stroke="none" fill="none" x="28157" y="19834" width="1902" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 28183,20048 C 29609,20048 28830,20060 29720,20063"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 30057,20062 L 29693,19834 29692,20291 30057,20062 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id60">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27532" y="20150" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="28194" y="20533"><tspan fill="rgb(102,102,102)" stroke="none">Interactive</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id61">
+ <rect class="BoundingBox" stroke="none" fill="none" x="29955" y="19586" width="3610" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 30135,19612 C 30058,19612 29981,19689 29981,19766 L 29981,20385 C 29981,20462 30058,20539 30135,20539 L 33383,20539 C 33460,20539 33538,20462 33538,20385 L 33538,19766 C 33538,19689 33460,19612 33383,19612 L 30135,19612 Z M 29981,19612 L 29981,19612 Z M 33538,20540 L 33538,20540 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 30135,19612 C 30058,19612 29981,19689 29981,19766 L 29981,20385 C 29981,20462 30058,20539 30135,20539 L 33383,20539 C 33460,20539 33538,20462 33538,20385 L 33538,19766 C 33538,19689 33460,19612 33383,19612 L 30135,19612 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id62">
+ <rect class="BoundingBox" stroke="none" fill="none" x="30057" y="19639" width="3430" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="30629" y="20162"><tspan fill="rgb(0,0,0)" stroke="none">Pause Scheduler</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id63">
+ <rect class="BoundingBox" stroke="none" fill="none" x="30498" y="14828" width="2514" height="2644"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 31754,14854 L 32985,16149 31754,17445 30524,16149 31754,14854 31754,14854 Z M 30524,14854 L 30524,14854 Z M 32985,17445 L 32985,17445 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 31754,14854 L 32985,16149 31754,17445 30524,16149 31754,14854 31754,14854 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="30903" y="16248"><tspan fill="rgb(0,0,0)" stroke="none">Prompt User</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id64">
+ <rect class="BoundingBox" stroke="none" fill="none" x="31525" y="17444" width="459" height="2196"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 31759,19613 C 31759,17987 31755,18913 31754,17789"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 31753,17444 L 31526,17809 31983,17808 31753,17444 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id65">
+ <rect class="BoundingBox" stroke="none" fill="none" x="23924" y="15686" width="3610" height="957"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 24100,15712 C 24025,15712 23950,15787 23950,15862 L 23950,16465 C 23950,16540 24025,16615 24100,16615 L 27356,16615 C 27431,16615 27507,16540 27507,16465 L 27507,15862 C 27507,15787 27431,15712 27356,15712 L 24100,15712 Z M 23950,15712 L 23950,15712 Z M 27507,16616 L 27507,16616 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 24100,15712 C 24025,15712 23950,15787 23950,15862 L 23950,16465 C 23950,16540 24025,16615 24100,16615 L 27356,16615 C 27431,16615 27507,16540 27507,16465 L 27507,15862 C 27507,15787 27431,15712 27356,15712 L 24100,15712 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id66">
+ <rect class="BoundingBox" stroke="none" fill="none" x="23950" y="15738" width="3593" height="827"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="24470" y="16250"><tspan fill="rgb(0,0,0)" stroke="none">Resume Scheduler</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id67">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20866" y="17186" width="3383" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 21046,17212 C 20969,17212 20892,17289 20892,17366 L 20892,17985 C 20892,18062 20969,18139 21046,18139 L 24067,18139 C 24144,18139 24222,18062 24222,17985 L 24222,17366 C 24222,17289 24144,17212 24067,17212 L 21046,17212 Z M 20892,17212 L 20892,17212 Z M 24222,18140 L 24222,18140 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 21046,17212 C 20969,17212 20892,17289 20892,17366 L 20892,17985 C 20892,18062 20969,18139 21046,18139 L 24067,18139 C 24144,18139 24222,18062 24222,17985 L 24222,17366 C 24222,17289 24144,17212 24067,17212 L 21046,17212 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id68">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20964" y="17220" width="3211" height="888"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="21644" y="17604"><tspan fill="rgb(0,0,0)" stroke="none">Set Terminate </tspan></tspan><tspan class="TextPosition" x="21907" y="17922"><tspan fill="rgb(0,0,0)" stroke="none">Condition</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id69">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27542" y="15922" width="3009" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 30524,16149 C 28268,16149 29595,16151 27900,16151"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 27542,16152 L 27906,16379 27906,15922 27542,16152 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id70">
+ <rect class="BoundingBox" stroke="none" fill="none" x="24173" y="17439" width="2807" height="1341"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 26953,18753 C 26953,18026 26139,17710 24511,17667"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 24174,17664 L 24535,17897 24542,17440 24174,17664 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id71">
+ <rect class="BoundingBox" stroke="none" fill="none" x="26432" y="17651" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="26779" y="18034"><tspan fill="rgb(102,102,102)" stroke="none">Non Interactive</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id72">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27532" y="15652" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="28285" y="16035"><tspan fill="rgb(102,102,102)" stroke="none">Continue</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id73">
+ <rect class="BoundingBox" stroke="none" fill="none" x="29956" y="11686" width="3610" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 30136,11712 C 30059,11712 29982,11789 29982,11866 L 29982,12485 C 29982,12562 30059,12639 30136,12639 L 33384,12639 C 33461,12639 33539,12562 33539,12485 L 33539,11866 C 33539,11789 33461,11712 33384,11712 L 30136,11712 Z M 29982,11712 L 29982,11712 Z M 33539,12640 L 33539,12640 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 30136,11712 C 30059,11712 29982,11789 29982,11866 L 29982,12485 C 29982,12562 30059,12639 30136,12639 L 33384,12639 C 33461,12639 33539,12562 33539,12485 L 33539,11866 C 33539,11789 33461,11712 33384,11712 L 30136,11712 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id74">
+ <rect class="BoundingBox" stroke="none" fill="none" x="30058" y="11720" width="3430" height="888"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="30848" y="12104"><tspan fill="rgb(0,0,0)" stroke="none">Set Terminate </tspan></tspan><tspan class="TextPosition" x="31110" y="12422"><tspan fill="rgb(0,0,0)" stroke="none">Condition</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id75">
+ <rect class="BoundingBox" stroke="none" fill="none" x="31543" y="12606" width="459" height="2275"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 31754,14854 C 31754,13150 31769,14113 31772,12953"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 31771,12607 L 31543,12971 32000,12972 31771,12607 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id76">
+ <rect class="BoundingBox" stroke="none" fill="none" x="31272" y="13684" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="31968" y="14067"><tspan fill="rgb(102,102,102)" stroke="none">Terminate</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id77">
+ <rect class="BoundingBox" stroke="none" fill="none" x="25529" y="12150" width="4480" height="3590"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 29982,12176 C 27158,12176 25886,13251 25756,15402"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 25747,15738 L 25986,15381 25529,15366 25747,15738 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id78">
+ <rect class="BoundingBox" stroke="none" fill="none" x="19032" y="17410" width="1888" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 20893,17676 C 19498,17676 20273,17645 19370,17639"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 19033,17639 L 19397,17868 19398,17411 19033,17639 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id79">
+ <rect class="BoundingBox" stroke="none" fill="none" x="19033" y="16012" width="4944" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 23950,16164 C 20263,16164 22553,16236 19405,16241"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 19033,16242 L 19398,16469 19397,16012 19033,16242 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id80">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13300" y="18433" width="2918" height="2156"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 16191,18459 C 16191,19731 15340,20288 13637,20360"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 13300,20368 L 13669,20587 13659,20130 13300,20368 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id81">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7348" y="23879" width="2502" height="1904"/>
+ <path fill="none" stroke="rgb(178,178,178)" stroke-width="51" stroke-linejoin="round" d="M 7374,23905 C 7374,25011 8086,25483 9512,25555"/>
+ <path fill="rgb(178,178,178)" stroke="none" d="M 9848,25562 L 9490,25325 9478,25782 9848,25562 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id82">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9822" y="25086" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 10002,25112 C 9925,25112 9848,25189 9848,25266 L 9848,25885 C 9848,25962 9925,26039 10002,26039 L 13504,26039 C 13581,26039 13659,25962 13659,25885 L 13659,25266 C 13659,25189 13581,25112 13504,25112 L 10002,25112 Z M 9848,25112 L 9848,25112 Z M 13659,26040 L 13659,26040 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 10002,25112 C 9925,25112 9848,25189 9848,25266 L 9848,25885 C 9848,25962 9925,26039 10002,26039 L 13504,26039 C 13581,26039 13659,25962 13659,25885 L 13659,25266 C 13659,25189 13581,25112 13504,25112 L 10002,25112 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id83">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9848" y="25139" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="10221" y="25662"><tspan fill="rgb(0,0,0)" stroke="none">Log Session Summary</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id84">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9823" y="27686" width="3864" height="981"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 10003,27712 C 9926,27712 9849,27789 9849,27866 L 9849,28485 C 9849,28562 9926,28639 10003,28639 L 13505,28639 C 13582,28639 13660,28562 13660,28485 L 13660,27866 C 13660,27789 13582,27712 13505,27712 L 10003,27712 Z M 9849,27712 L 9849,27712 Z M 13660,28640 L 13660,28640 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 10003,27712 C 9926,27712 9849,27789 9849,27866 L 9849,28485 C 9849,28562 9926,28639 10003,28639 L 13505,28639 C 13582,28639 13660,28562 13660,28485 L 13660,27866 C 13660,27789 13582,27712 13505,27712 L 10003,27712 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id85">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9849" y="27739" width="3811" height="849"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="11068" y="28262"><tspan fill="rgb(0,0,0)" stroke="none">Clean Exit</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id86">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11525" y="26014" width="459" height="1726"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 11753,26040 C 11753,27334 11754,26643 11754,27402"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 11755,27739 L 11982,27375 11525,27375 11755,27739 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id87">
+ <rect class="BoundingBox" stroke="none" fill="none" x="30972" y="2885" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="31662" y="3268"><tspan fill="rgb(102,102,102)" stroke="none">Exception</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id88">
+ <rect class="BoundingBox" stroke="none" fill="none" x="18996" y="20087" width="2325" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="19773" y="20470"><tspan fill="rgb(102,102,102)" stroke="none">Event</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-scheduler-job.svg b/doc/source/images/arch-scheduler-job.svg
new file mode 100644
index 000000000..9a50135d8
--- /dev/null
+++ b/doc/source/images/arch-scheduler-job.svg
@@ -0,0 +1,750 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="215.9mm" height="355.6mm" viewBox="0 0 21590 35560" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="21590" height="35560"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1271" d="M 501,0 C 464,-63 429,-121 395,-173 361,-225 325,-270 288,-307 251,-344 210,-373 167,-394 123,-415 73,-425 16,-425 -6,-425 -28,-424 -52,-422 -74,-419 -96,-416 -116,-411 L -85,-277 C -74,-279 -61,-281 -47,-283 -32,-284 -19,-285 -8,-285 55,-285 111,-264 160,-221 208,-178 255,-116 302,-35 L 329,12 112,1082 295,1082 407,484 C 411,463 415,438 420,410 425,382 429,354 433,327 437,299 441,273 444,250 447,226 448,208 449,196 456,211 464,229 475,250 486,271 498,293 511,317 524,340 537,365 551,390 564,415 577,439 590,462 L 928,1082 1127,1082 501,0 Z"/>
+ <glyph unicode="x" horiz-adv-x="1191" d="M 706,0 L 497,444 117,0 -82,0 410,556 146,1082 335,1082 528,661 878,1082 1084,1082 615,558 896,0 706,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1482" d="M 1068,0 L 859,0 822,698 C 821,711 821,731 820,757 819,783 819,809 818,836 817,867 817,900 816,934 804,904 792,874 780,845 769,820 758,793 747,766 735,739 724,715 715,694 L 402,0 194,0 102,1082 280,1082 320,347 C 321,339 321,326 322,308 323,289 323,270 324,250 325,229 325,210 326,191 327,172 327,158 327,149 337,173 347,197 357,220 366,240 375,261 384,283 393,305 401,324 408,339 L 749,1082 942,1082 986,339 C 988,303 990,268 991,235 992,202 992,173 992,149 1002,173 1012,197 1023,220 1032,240 1042,261 1052,284 1061,307 1070,328 1079,347 L 1413,1082 1589,1082 1068,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1046" d="M 507,0 L 294,0 112,1082 299,1082 400,378 C 402,363 404,346 407,325 409,304 411,282 413,259 415,236 417,215 419,194 420,173 422,155 423,141 430,155 439,173 449,194 459,215 470,236 481,258 492,280 503,302 514,323 525,344 534,361 542,376 L 926,1082 1122,1082 507,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1006" d="M 415,1082 L 289,437 C 284,411 279,385 276,358 273,331 271,307 271,287 271,234 285,193 313,164 341,135 387,120 450,120 493,120 533,129 571,146 608,163 642,187 673,218 704,249 730,286 752,330 773,373 789,422 800,476 L 918,1082 1098,1082 932,228 C 927,205 923,181 919,156 914,131 910,107 907,85 903,62 900,43 898,27 895,11 894,3 893,3 L 723,3 C 723,6 724,15 726,30 728,44 731,61 734,79 737,98 740,117 743,136 746,156 748,172 751,185 L 748,185 C 725,154 702,125 678,100 654,75 628,53 599,36 570,18 538,4 503,-5 468,-14 428,-19 383,-19 284,-19 210,5 161,54 111,103 86,173 86,265 86,289 88,316 93,346 97,376 102,404 107,429 L 234,1082 415,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="557" d="M 448,4 C 423,-2 396,-7 367,-13 338,-17 307,-20 275,-20 218,-20 174,-3 142,31 109,65 93,110 93,166 93,187 95,210 98,235 101,259 105,279 108,296 L 234,951 109,951 135,1082 262,1082 367,1324 487,1324 440,1082 640,1082 614,951 414,951 289,306 C 286,293 284,276 281,257 278,238 277,222 277,211 277,183 284,161 298,146 312,131 335,123 367,123 384,123 401,124 416,127 431,129 448,132 467,137 L 448,4 Z"/>
+ <glyph unicode="s" horiz-adv-x="980" d="M 907,317 C 907,260 896,211 873,169 850,126 818,91 777,63 735,35 684,14 625,1 566,-13 499,-20 425,-20 363,-20 309,-15 262,-4 215,7 175,22 142,43 108,63 80,88 58,119 35,149 18,184 5,223 L 152,279 C 162,252 175,229 191,208 206,187 226,169 249,155 272,140 299,129 331,122 362,115 399,111 441,111 484,111 523,115 559,122 594,129 625,140 651,155 676,170 696,190 711,214 725,238 732,267 732,301 732,328 726,351 713,370 700,389 683,405 660,420 637,434 609,447 576,460 543,472 506,484 465,497 422,511 381,526 342,543 303,560 268,580 239,603 209,626 185,654 168,686 150,717 141,754 141,797 141,852 153,898 177,937 200,975 232,1006 273,1030 313,1054 360,1072 414,1083 467,1094 524,1099 584,1099 639,1099 689,1094 734,1085 779,1076 819,1061 853,1041 887,1020 915,994 937,962 959,929 974,890 982,844 L 819,819 C 804,872 777,910 736,933 695,956 641,968 572,968 537,968 504,965 473,960 442,955 414,946 391,934 368,922 349,906 336,887 322,868 315,844 315,817 315,790 321,767 334,749 347,730 365,714 388,700 411,686 438,674 471,663 503,652 539,640 579,627 617,615 656,601 695,585 734,569 769,549 800,526 831,502 857,473 877,440 897,406 907,365 907,317 Z"/>
+ <glyph unicode="r" horiz-adv-x="715" d="M 718,938 C 707,941 693,944 678,947 662,950 645,951 628,951 585,951 547,939 513,914 479,889 449,858 424,820 398,782 377,740 360,695 343,649 331,605 324,564 L 214,0 34,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 237,1067 239,1082 L 409,1082 C 407,1067 405,1050 402,1030 399,1010 395,990 392,969 389,948 386,929 383,910 380,891 377,874 374,861 L 378,861 C 399,902 419,938 440,969 460,999 481,1024 503,1044 525,1063 549,1078 574,1088 599,1097 626,1102 656,1102 663,1102 671,1102 680,1101 689,1100 698,1098 707,1097 716,1096 724,1094 732,1093 740,1091 746,1089 751,1088 L 718,938 Z"/>
+ <glyph unicode="p" horiz-adv-x="1139" d="M 554,-20 C 472,-20 405,-3 354,32 302,67 265,115 244,178 L 239,178 C 239,177 238,170 237,159 236,147 234,132 231,115 228,98 225,79 222,58 218,37 214,17 210,-2 L 128,-425 -51,-425 198,864 C 203,891 208,916 212,940 216,964 220,986 223,1005 226,1025 228,1042 230,1056 231,1070 232,1077 233,1077 L 400,1077 C 400,1072 400,1063 399,1052 398,1040 397,1027 396,1013 394,998 392,983 390,967 388,950 386,935 383,921 L 387,921 C 411,952 436,979 461,1002 486,1025 512,1044 541,1059 569,1074 599,1085 632,1092 665,1099 701,1102 741,1102 794,1102 842,1094 883,1077 924,1060 959,1037 987,1006 1015,975 1036,938 1051,895 1066,851 1073,802 1073,748 1073,715 1072,678 1069,639 1066,599 1060,558 1052,516 1034,421 1010,340 981,273 952,205 916,149 875,106 834,63 786,31 733,11 680,-10 620,-20 554,-20 Z M 689,963 C 646,963 606,957 568,944 529,931 494,910 461,879 428,848 400,806 375,753 350,700 329,634 314,554 301,489 295,430 295,377 295,334 301,297 312,264 323,231 340,203 361,181 382,158 407,141 437,130 466,119 499,113 535,113 576,113 614,119 647,132 680,144 711,165 738,196 765,226 788,267 809,318 830,369 847,433 862,510 877,591 885,659 885,716 885,798 869,860 838,901 807,942 757,963 689,963 Z"/>
+ <glyph unicode="o" horiz-adv-x="1007" d="M 1074,683 C 1074,648 1072,614 1068,579 1064,544 1057,506 1048,467 1028,379 1000,304 965,242 929,180 887,130 839,91 791,52 738,24 679,7 620,-11 558,-20 491,-20 427,-20 369,-10 317,10 265,29 221,58 184,96 147,133 118,179 98,234 77,288 67,350 67,419 68,450 70,483 73,516 76,549 81,584 89,620 108,704 135,776 169,837 203,897 243,947 290,986 337,1025 390,1054 449,1073 508,1092 572,1101 642,1101 713,1101 775,1092 829,1073 882,1054 927,1027 964,991 1000,955 1027,911 1046,860 1065,808 1074,749 1074,683 Z M 888,683 C 888,734 882,778 871,814 860,850 843,880 822,903 800,926 774,942 743,953 712,964 678,969 640,969 605,969 569,965 534,957 498,948 464,931 432,906 399,881 370,845 343,798 316,751 294,689 276,612 267,575 261,541 258,508 254,475 252,444 252,416 252,361 258,315 271,276 284,237 301,206 324,182 346,158 372,141 403,130 433,119 466,113 502,113 538,113 574,117 609,125 644,133 677,150 708,176 739,201 768,238 795,285 821,332 843,395 861,473 870,513 877,550 881,583 884,616 887,650 888,683 Z"/>
+ <glyph unicode="n" horiz-adv-x="1006" d="M 717,0 L 843,645 C 848,671 853,698 856,725 859,752 861,775 861,795 861,848 847,889 819,918 791,947 745,962 682,962 639,962 599,954 562,937 524,920 490,896 459,865 428,834 402,796 381,753 359,709 343,660 332,606 L 214,0 34,0 200,853 C 205,876 209,900 214,925 218,950 222,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 409,1078 C 409,1075 408,1066 406,1052 404,1037 402,1021 399,1002 396,984 393,965 390,945 387,926 384,910 381,897 L 384,897 C 407,928 430,957 454,982 478,1007 505,1029 534,1047 563,1064 595,1078 630,1087 665,1096 704,1101 749,1101 848,1101 922,1077 972,1028 1021,979 1046,909 1046,817 1046,793 1044,766 1040,736 1035,706 1030,678 1025,653 L 898,0 717,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 660,0 L 784,634 C 787,647 790,662 793,678 796,694 798,710 801,726 803,742 805,757 807,772 808,786 809,798 809,808 809,858 796,896 771,923 746,949 704,962 647,962 609,962 573,954 539,937 504,920 473,896 446,865 419,834 395,796 375,752 355,707 340,658 331,604 L 213,0 34,0 200,853 C 205,876 209,900 214,925 218,950 222,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 409,1078 C 409,1075 408,1066 406,1052 404,1037 402,1021 399,1002 396,984 393,965 390,945 387,926 384,910 381,897 L 384,897 C 404,928 425,957 446,982 467,1007 491,1029 516,1047 541,1064 570,1078 601,1087 632,1096 667,1101 706,1101 787,1101 851,1081 898,1042 945,1002 974,944 983,869 1004,902 1026,933 1049,961 1072,989 1097,1014 1125,1035 1152,1056 1183,1072 1217,1084 1250,1095 1288,1101 1331,1101 1421,1101 1490,1077 1539,1028 1587,979 1611,909 1611,817 1611,793 1609,766 1605,736 1600,706 1595,678 1590,653 L 1463,0 1285,0 1409,634 C 1412,647 1415,662 1418,678 1421,694 1423,710 1426,726 1428,742 1430,757 1432,772 1433,786 1434,798 1434,808 1434,858 1421,896 1396,923 1371,949 1329,962 1272,962 1234,962 1198,954 1164,937 1129,920 1098,897 1071,866 1044,835 1020,798 1000,754 980,710 965,661 956,607 L 838,0 660,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="477" d="M 33,0 L 321,1484 501,1484 212,0 33,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1085" d="M 721,0 L 453,502 285,378 213,0 34,0 322,1484 502,1484 323,567 527,757 888,1082 1110,1082 580,617 916,0 721,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="742" d="M 289,1312 L 322,1484 502,1484 469,1312 289,1312 Z M -100,-425 C -123,-425 -145,-423 -169,-421 -191,-417 -212,-414 -229,-411 L -206,-275 C -197,-276 -185,-278 -168,-280 -151,-282 -136,-283 -123,-283 -84,-283 -54,-269 -34,-241 -14,-213 2,-168 13,-107 L 244,1082 424,1082 187,-134 C 179,-175 169,-214 156,-249 143,-284 125,-315 103,-341 81,-367 54,-387 21,-403 -12,-417 -53,-425 -100,-425 Z"/>
+ <glyph unicode="i" horiz-adv-x="477" d="M 287,1312 L 321,1484 501,1484 467,1312 287,1312 Z M 33,0 L 243,1082 423,1082 212,0 33,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1006" d="M 383,897 C 406,928 429,957 453,982 477,1007 504,1029 533,1047 562,1064 594,1078 629,1087 664,1096 703,1101 748,1101 847,1101 921,1077 971,1028 1020,979 1045,909 1045,817 1045,793 1043,766 1039,736 1034,706 1029,678 1024,653 L 897,0 716,0 842,645 C 847,671 852,698 855,725 858,752 860,775 860,795 860,848 846,889 818,918 790,947 744,962 681,962 638,962 598,954 561,937 523,920 489,896 458,865 427,834 401,796 380,753 358,709 342,660 331,606 L 213,0 34,0 322,1484 502,1484 427,1098 C 423,1076 419,1054 414,1032 409,1010 404,990 399,972 394,953 390,937 387,924 384,911 381,902 380,897 L 383,897 Z"/>
+ <glyph unicode="g" horiz-adv-x="1139" d="M 397,-425 C 335,-425 281,-419 235,-407 189,-394 150,-377 119,-355 87,-333 62,-306 44,-276 25,-244 12,-210 4,-173 L 167,-131 C 178,-182 204,-220 243,-248 282,-274 334,-288 401,-288 449,-288 491,-282 528,-270 565,-257 596,-238 623,-213 649,-188 671,-155 689,-116 706,-76 720,-28 731,27 734,44 738,63 742,83 746,103 750,122 753,139 757,160 761,180 765,201 L 763,201 C 744,174 725,148 704,123 683,98 658,75 631,56 604,37 572,21 536,10 500,-2 458,-8 410,-8 357,-8 310,1 268,20 226,38 190,63 161,96 132,128 109,167 94,212 78,257 70,306 70,359 70,392 72,426 76,463 79,499 85,538 93,580 126,754 183,884 263,971 342,1058 451,1101 588,1101 626,1101 662,1097 696,1088 730,1079 761,1065 788,1048 815,1030 838,1008 858,983 877,958 891,929 900,897 L 902,897 C 905,914 910,933 915,953 920,974 924,994 929,1012 934,1031 938,1046 942,1060 946,1073 949,1080 950,1080 L 1121,1080 C 1120,1074 1117,1064 1114,1050 1111,1035 1107,1018 1102,998 1097,978 1093,956 1088,932 1083,907 1077,882 1072,856 L 911,30 C 897,-41 878,-105 853,-161 828,-217 796,-265 755,-304 714,-343 665,-373 607,-394 548,-415 478,-425 397,-425 Z M 259,373 C 259,292 277,231 312,189 347,146 398,125 466,125 502,125 539,133 576,148 613,163 648,188 681,221 714,254 743,297 770,350 796,403 816,466 831,541 836,569 840,598 843,628 846,657 847,683 847,704 847,749 841,788 829,821 817,854 800,881 779,903 757,925 731,941 702,952 673,963 641,968 607,968 566,968 528,962 495,950 461,937 431,916 404,887 377,857 354,817 334,768 314,718 297,655 282,580 275,541 269,503 265,467 261,431 259,400 259,373 Z"/>
+ <glyph unicode="f" horiz-adv-x="676" d="M 434,951 L 249,0 69,0 254,951 102,951 128,1082 280,1082 303,1204 C 311,1243 321,1280 334,1314 347,1348 365,1378 389,1403 412,1428 443,1448 480,1463 517,1477 565,1484 622,1484 643,1484 665,1483 688,1481 710,1479 729,1476 746,1472 L 720,1335 C 714,1336 707,1337 700,1338 692,1339 684,1340 675,1341 666,1342 658,1342 650,1342 642,1342 635,1342 629,1342 604,1342 583,1338 566,1331 549,1324 535,1313 524,1299 513,1285 504,1268 497,1248 490,1228 484,1205 479,1179 L 460,1082 671,1082 645,951 434,951 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 256,503 C 253,484 251,466 250,447 249,428 248,409 247,390 247,301 269,233 314,186 358,139 425,115 514,115 551,115 585,120 616,130 647,139 675,152 700,169 725,185 747,204 766,226 785,247 800,270 813,294 L 951,231 C 934,201 914,171 890,142 866,112 836,85 801,61 765,37 722,18 672,3 622,-12 562,-20 493,-20 426,-20 367,-10 314,9 261,28 217,55 181,92 144,128 117,172 98,225 79,278 69,338 69,405 69,510 83,606 112,692 140,778 179,851 230,912 280,973 339,1020 408,1053 476,1086 550,1102 630,1102 703,1102 767,1092 821,1073 875,1054 920,1027 956,992 992,957 1019,916 1037,868 1054,819 1063,766 1063,708 1063,694 1063,679 1062,662 1061,645 1059,628 1057,610 1055,592 1053,574 1050,556 1047,537 1043,520 1039,503 L 256,503 Z M 880,641 C 881,654 882,667 883,679 884,690 884,702 884,713 884,757 878,795 866,828 854,860 837,887 815,908 793,929 767,944 736,954 705,964 671,969 634,969 602,969 568,964 533,955 498,945 464,928 432,903 399,878 370,845 343,803 316,760 295,706 280,641 L 880,641 Z"/>
+ <glyph unicode="d" horiz-adv-x="1139" d="M 401,-21 C 348,-21 300,-13 259,4 218,21 183,44 155,75 127,106 106,143 91,187 76,230 69,279 69,333 69,363 71,399 74,440 77,481 82,523 90,565 108,660 132,741 161,809 190,876 226,932 267,975 308,1018 356,1050 409,1071 462,1091 522,1101 588,1101 670,1101 737,1084 789,1049 840,1014 877,966 898,903 L 903,903 C 904,910 906,921 909,936 912,951 915,968 918,985 921,1002 923,1018 926,1033 929,1048 930,1059 931,1065 L 1013,1484 1193,1484 948,219 C 943,193 938,168 934,143 929,119 925,97 922,77 919,57 916,40 914,26 912,11 911,4 910,4 L 738,4 C 738,17 740,38 744,66 747,95 752,126 759,160 L 754,160 C 730,129 706,102 681,79 656,56 629,38 601,23 573,8 543,-3 510,-11 477,-17 441,-21 401,-21 Z M 453,118 C 496,118 536,124 575,137 613,150 648,172 681,203 714,234 743,275 768,328 793,381 813,447 828,527 841,592 847,651 847,704 847,747 841,785 830,818 819,851 803,878 782,901 761,923 735,940 706,951 676,962 643,968 607,968 566,968 529,962 496,950 462,937 432,916 405,886 378,855 354,815 334,764 313,713 295,648 280,571 265,490 257,422 257,365 257,283 273,221 304,180 335,139 385,118 453,118 Z"/>
+ <glyph unicode="c" horiz-adv-x="940" d="M 469,122 C 506,122 540,128 570,139 600,150 627,165 650,185 673,205 694,229 712,258 730,286 745,317 758,352 L 914,303 C 895,253 873,208 846,169 819,129 787,95 750,67 713,39 670,18 623,3 576,-12 523,-20 465,-20 396,-20 337,-10 287,11 236,32 195,61 163,98 130,135 106,178 91,229 75,280 67,335 67,395 67,422 68,451 71,482 73,513 77,544 83,574 98,648 117,712 140,767 163,822 188,869 217,908 245,947 276,979 309,1004 342,1029 376,1049 411,1064 446,1078 481,1088 518,1094 554,1099 590,1102 625,1102 684,1102 737,1094 782,1079 827,1064 865,1042 896,1014 927,986 952,953 970,914 987,875 998,831 1001,784 L 824,759 C 822,789 816,816 807,841 798,866 785,887 768,905 751,922 730,936 705,946 680,956 652,961 619,961 573,961 532,954 495,941 458,928 426,906 397,876 368,846 343,807 322,759 301,710 284,651 270,581 264,549 259,515 256,480 253,445 251,414 251,389 251,304 268,239 303,192 337,145 392,122 469,122 Z"/>
+ <glyph unicode="b" horiz-adv-x="1047" d="M 744,1102 C 797,1102 845,1094 886,1077 927,1060 962,1037 990,1006 1018,975 1039,938 1054,895 1069,851 1076,802 1076,748 1076,715 1075,678 1072,639 1069,599 1063,558 1055,516 1037,421 1013,340 984,273 955,205 919,149 878,106 837,63 789,31 736,11 683,-10 623,-20 557,-20 475,-20 408,-3 357,32 306,67 269,115 248,178 L 245,178 C 242,160 238,142 233,122 228,102 224,83 220,66 215,48 212,33 209,21 206,8 203,2 202,2 L 29,2 C 31,8 34,18 37,32 40,47 44,64 49,84 53,104 58,126 63,150 68,174 73,199 78,225 L 323,1484 503,1484 420,1061 C 417,1042 413,1023 409,1006 404,989 400,974 397,961 393,946 389,933 386,921 L 390,921 C 414,952 439,979 464,1002 489,1025 515,1044 544,1059 572,1074 602,1085 635,1092 668,1099 704,1102 744,1102 Z M 692,963 C 649,963 609,957 571,944 532,931 497,910 464,879 431,848 403,806 378,753 353,700 332,634 317,554 304,489 298,430 298,377 298,334 304,297 315,264 326,231 343,203 364,181 385,158 410,141 440,130 469,119 502,113 538,113 579,113 617,119 650,132 683,144 714,165 741,196 768,226 791,267 812,318 833,369 850,433 865,510 880,591 888,659 888,716 888,798 872,860 841,901 810,942 760,963 692,963 Z"/>
+ <glyph unicode="a" horiz-adv-x="1033" d="M 1055,6 C 1036,1 1015,-2 993,-6 970,-8 948,-10 927,-10 865,-10 820,3 792,29 763,54 749,92 749,143 749,153 750,164 751,176 752,187 753,198 754,207 L 748,207 C 725,172 701,140 676,112 651,84 623,60 593,41 562,21 528,6 491,-5 454,-15 410,-20 361,-20 309,-20 264,-12 225,5 186,22 153,44 126,72 99,100 79,131 66,168 53,204 46,241 46,279 46,333 54,380 70,419 85,459 107,493 134,521 161,549 192,572 229,589 265,607 304,621 345,631 386,641 428,648 472,652 516,656 559,658 601,658 L 833,658 840,694 C 843,711 846,727 849,743 851,758 852,772 852,786 852,847 834,892 799,921 764,950 715,965 652,965 619,965 589,963 561,958 532,953 507,944 485,931 462,918 443,900 426,878 409,855 395,827 384,793 L 206,822 C 219,863 236,901 258,936 280,970 309,999 345,1024 381,1049 425,1068 477,1082 528,1095 590,1102 662,1102 721,1102 774,1095 820,1080 866,1065 905,1045 936,1019 967,993 991,962 1008,926 1024,890 1032,850 1032,807 1032,786 1030,762 1027,733 1023,704 1018,676 1013,650 L 939,272 C 936,257 933,242 931,227 929,212 928,197 928,184 928,159 935,141 948,129 961,117 981,111 1009,111 1019,111 1029,112 1040,113 1050,114 1060,116 1069,118 L 1055,6 Z M 809,530 L 610,530 C 583,530 556,530 527,530 498,530 470,527 443,520 415,514 389,505 364,495 339,484 317,469 298,451 279,432 265,410 254,383 243,357 237,325 237,288 237,266 241,245 248,225 255,204 265,186 280,170 295,154 313,141 335,132 356,122 382,117 411,117 469,117 520,127 563,147 606,166 643,191 674,220 705,248 729,280 747,314 764,347 776,379 782,407 L 809,530 Z"/>
+ <glyph unicode="T" horiz-adv-x="1192" d="M 858,1253 L 614,0 424,0 668,1253 184,1253 214,1409 1372,1409 1342,1253 858,1253 Z"/>
+ <glyph unicode="S" horiz-adv-x="1284" d="M 616,-20 C 529,-20 454,-12 389,4 324,19 268,42 223,73 178,103 142,140 115,185 88,229 69,280 58,338 L 235,375 C 244,334 257,298 276,267 295,236 320,211 351,191 382,170 421,155 467,145 513,135 567,130 630,130 695,130 754,135 806,144 858,153 902,168 939,189 975,210 1003,237 1022,271 1041,304 1051,346 1051,396 1051,430 1045,459 1034,483 1023,507 1003,529 975,548 947,567 909,585 862,602 814,619 754,637 682,657 623,673 568,691 517,711 465,730 420,755 381,784 342,813 312,848 289,889 266,930 255,981 255,1041 255,1111 271,1171 303,1220 334,1269 377,1309 430,1340 483,1371 543,1394 612,1409 680,1423 751,1430 824,1430 905,1430 975,1423 1036,1408 1096,1393 1147,1373 1190,1347 1232,1320 1266,1289 1291,1252 1316,1215 1334,1175 1344,1132 L 1171,1081 C 1161,1113 1147,1142 1129,1167 1111,1192 1088,1214 1060,1232 1032,1249 999,1263 960,1272 921,1281 875,1286 823,1286 754,1286 695,1280 648,1269 600,1257 561,1241 532,1220 502,1199 480,1174 467,1145 454,1116 447,1084 447,1050 447,1014 454,984 468,961 481,937 502,917 530,900 558,883 594,868 637,855 680,841 730,826 789,810 847,794 904,776 959,757 1014,738 1062,713 1105,684 1148,654 1182,617 1208,573 1233,529 1246,474 1246,408 1246,271 1194,165 1091,91 988,17 829,-20 616,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1364" d="M 1051,0 L 808,585 367,585 254,0 63,0 336,1409 948,1409 C 1017,1409 1081,1401 1138,1384 1195,1367 1245,1342 1286,1310 1327,1278 1359,1239 1382,1194 1405,1148 1416,1096 1416,1039 1416,914 1380,814 1308,741 1236,668 1130,621 989,602 L 1257,0 1051,0 Z M 857,736 C 978,736 1069,761 1130,812 1191,862 1222,933 1222,1024 1222,1099 1197,1156 1148,1196 1098,1236 1024,1256 925,1256 L 498,1256 397,736 857,736 Z"/>
+ <glyph unicode="P" horiz-adv-x="1284" d="M 852,1409 C 929,1409 999,1400 1061,1382 1122,1364 1175,1338 1218,1305 1261,1272 1295,1231 1318,1183 1341,1134 1353,1080 1353,1020 1353,947 1340,881 1314,823 1287,764 1250,715 1201,675 1152,634 1092,603 1022,582 951,560 872,549 784,549 L 360,549 254,0 63,0 336,1409 852,1409 Z M 390,700 L 777,700 C 905,700 1001,726 1064,778 1127,830 1159,908 1159,1011 1159,1054 1152,1091 1137,1122 1122,1153 1100,1178 1073,1198 1046,1218 1013,1233 975,1242 936,1251 894,1256 847,1256 L 498,1256 390,700 Z"/>
+ <glyph unicode="N" horiz-adv-x="1417" d="M 987,0 L 456,1210 C 452,1179 448,1148 443,1116 439,1089 435,1060 430,1029 425,998 419,969 414,943 L 233,0 63,0 336,1409 548,1409 1082,194 C 1086,223 1090,253 1095,285 1099,312 1104,343 1109,377 1114,410 1120,444 1127,478 L 1308,1409 1480,1409 1207,0 987,0 Z"/>
+ <glyph unicode="M" horiz-adv-x="1655" d="M 1261,0 L 1441,928 C 1448,962 1455,997 1462,1032 1469,1067 1476,1100 1483,1129 1490,1163 1498,1196 1506,1228 1489,1193 1472,1159 1455,1125 1440,1096 1425,1065 1408,1033 1391,1001 1376,973 1361,948 L 813,0 689,0 504,948 C 500,968 496,994 491,1026 486,1057 482,1088 478,1118 473,1153 468,1190 463,1228 458,1191 452,1154 446,1117 441,1086 435,1053 430,1019 424,985 418,955 413,928 L 233,0 63,0 336,1409 572,1409 761,432 C 763,422 766,406 770,384 773,361 777,338 780,315 784,288 788,259 793,227 807,256 820,284 833,311 844,334 856,358 868,382 879,405 889,425 897,440 L 1450,1409 1706,1409 1433,0 1261,0 Z"/>
+ <glyph unicode="J" horiz-adv-x="1046" d="M 381,-20 C 275,-20 189,11 122,73 55,135 12,225 -5,343 L 163,376 C 178,298 205,238 242,197 279,156 331,135 398,135 438,135 473,142 502,157 531,172 557,192 578,219 599,246 616,278 630,316 643,353 654,395 663,440 L 820,1253 529,1253 559,1409 1040,1409 847,423 C 834,356 816,296 793,241 769,186 739,140 702,101 665,62 620,33 567,12 514,-9 452,-20 381,-20 Z"/>
+ <glyph unicode="I" horiz-adv-x="478" d="M 81,0 L 355,1409 546,1409 272,0 81,0 Z"/>
+ <glyph unicode="H" horiz-adv-x="1430" d="M 1021,0 L 1148,653 381,653 254,0 63,0 337,1409 528,1409 412,813 1179,813 1295,1409 1481,1409 1207,0 1021,0 Z"/>
+ <glyph unicode="E" horiz-adv-x="1311" d="M 63,0 L 336,1409 1385,1409 1355,1253 497,1253 409,801 1207,801 1177,647 379,647 284,156 1183,156 1153,0 63,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1377" d="M 1358,337 C 1325,288 1289,242 1248,199 1207,156 1161,118 1109,86 1056,53 997,28 930,9 863,-10 786,-20 700,-20 601,-20 515,-5 442,26 368,57 307,99 258,152 209,205 173,267 149,339 125,410 113,487 113,569 113,652 122,730 140,805 158,880 184,949 217,1013 250,1076 291,1134 339,1186 387,1237 441,1281 502,1317 562,1353 628,1381 699,1401 770,1420 846,1430 926,1430 1012,1430 1087,1420 1152,1401 1217,1381 1272,1355 1318,1323 1364,1291 1401,1254 1429,1213 1457,1172 1477,1129 1490,1085 L 1310,1030 C 1300,1061 1285,1092 1264,1121 1243,1150 1217,1176 1185,1199 1152,1222 1114,1240 1070,1254 1025,1267 974,1274 916,1274 819,1274 732,1256 656,1221 580,1185 516,1136 463,1073 410,1010 370,935 343,849 316,762 302,668 302,566 302,503 311,446 328,393 345,340 371,295 406,257 440,218 483,188 534,167 585,146 645,135 713,135 773,135 828,143 878,160 928,176 974,198 1016,225 1057,252 1095,283 1128,318 1161,353 1190,389 1215,426 L 1358,337 Z"/>
+ <glyph unicode="B" horiz-adv-x="1231" d="M 336,1409 L 846,1409 C 915,1409 978,1402 1033,1387 1088,1372 1136,1351 1175,1324 1214,1296 1244,1262 1265,1222 1286,1182 1296,1137 1296,1087 1296,990 1267,913 1210,857 1153,800 1068,762 957,743 1004,735 1046,722 1083,704 1119,685 1149,663 1174,636 1198,609 1216,579 1229,546 1241,513 1247,477 1247,439 1247,384 1239,334 1224,291 1209,248 1187,210 1160,177 1133,144 1101,117 1064,95 1027,72 986,54 943,40 899,26 853,16 805,10 756,3 707,0 658,0 L 63,0 336,1409 Z M 411,810 L 742,810 C 863,810 952,832 1010,875 1068,918 1097,983 1097,1068 1097,1131 1074,1179 1029,1210 983,1241 916,1256 829,1256 L 498,1256 411,810 Z M 283,153 L 651,153 C 703,153 754,157 803,165 852,173 895,188 932,209 969,230 999,260 1022,297 1045,334 1056,383 1056,442 1056,513 1030,568 977,605 924,642 847,661 748,661 L 382,661 283,153 Z"/>
+ <glyph unicode="." horiz-adv-x="240" d="M 80,0 L 123,219 318,219 275,0 80,0 Z"/>
+ <glyph unicode="-" horiz-adv-x="530" d="M 105,464 L 136,624 636,624 605,464 105,464 Z"/>
+ <glyph unicode="," horiz-adv-x="292" d="M 299,51 C 292,16 285,-16 276,-46 267,-74 256,-101 245,-127 234,-151 221,-175 207,-197 193,-219 177,-241 160,-262 L 37,-262 C 75,-219 107,-175 132,-131 157,-87 173,-43 182,0 L 94,0 136,219 331,219 299,51 Z"/>
+ <glyph unicode=")" horiz-adv-x="782" d="M -199,-424 C -10,-257 134,-73 232,129 330,331 379,554 379,798 379,925 362,1045 329,1160 295,1275 243,1383 172,1484 L 346,1484 C 419,1383 473,1273 508,1155 543,1036 560,912 560,782 560,661 548,545 524,432 499,319 463,212 414,111 365,9 304,-87 231,-177 158,-266 72,-349 -25,-424 L -199,-424 Z"/>
+ <glyph unicode="(" horiz-adv-x="768" d="M 855,1484 C 666,1317 522,1133 424,931 326,729 277,506 277,262 277,135 294,15 328,-100 361,-215 413,-323 484,-424 L 310,-424 C 237,-323 183,-213 148,-95 113,24 96,148 96,278 96,399 108,515 133,628 157,741 194,848 243,950 292,1051 353,1147 426,1237 499,1326 584,1409 681,1484 L 855,1484 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="z" horiz-adv-x="914" d="M 68,0 L 68,199 608,879 109,879 109,1082 918,1082 918,881 381,205 967,205 967,0 68,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1126" d="M 584,241 L 834,1082 1128,1082 700,-57 C 646,-188 590,-281 532,-336 469,-395 386,-425 283,-425 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 173,-220 202,-220 230,-220 255,-217 276,-211 297,-205 317,-195 334,-181 368,-153 399,-105 426,-37 L 444,11 16,1082 313,1082 584,241 Z"/>
+ <glyph unicode="x" horiz-adv-x="1139" d="M 819,0 L 567,392 313,0 14,0 410,559 33,1082 336,1082 567,728 797,1082 1102,1082 725,562 1124,0 819,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1615" d="M 436,255 L 645,1082 946,1082 1153,255 1337,1082 1597,1082 1313,0 1016,0 797,882 571,0 274,0 -6,1082 258,1082 436,255 Z"/>
+ <glyph unicode="v" horiz-adv-x="1139" d="M 565,227 L 836,1082 1130,1082 731,0 395,0 8,1082 305,1082 565,227 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1006" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+ <glyph unicode="j" horiz-adv-x="450" d="M 144,1277 L 144,1484 425,1484 425,1277 144,1277 Z M 138,-423 C 101,-423 68,-423 41,-423 13,-423 -11,-421 -32,-416 L -32,-218 C -23,-219 -15,-220 -6,-221 3,-222 11,-222 19,-222 45,-222 66,-219 82,-214 98,-209 111,-200 120,-187 129,-174 136,-158 139,-137 142,-116 144,-91 144,-60 L 144,1082 425,1082 425,-126 C 425,-170 420,-209 409,-245 398,-281 382,-312 359,-339 336,-366 306,-386 270,-401 233,-416 189,-423 138,-423 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="979" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 833,1102 889,1091 934,1070 979,1049 1015,1019 1044,982 1072,945 1092,901 1105,850 1118,799 1124,745 1124,686 L 1124,0 844,0 844,606 C 844,648 841,687 834,722 827,757 816,787 801,812 786,837 766,856 741,870 716,884 686,891 651,891 617,891 586,884 559,869 531,854 507,832 487,805 467,777 452,744 441,706 430,667 424,625 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1058 424,1036 423,1015 422,993 422,973 421,954 420,935 419,917 418,902 417,887 417,875 416,866 L 420,866 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="f" horiz-adv-x="649" d="M 473,892 L 473,0 193,0 193,892 35,892 35,1082 193,1082 193,1195 C 193,1236 198,1275 208,1310 218,1345 235,1375 259,1401 283,1427 315,1447 356,1462 397,1477 447,1484 508,1484 540,1484 572,1482 603,1479 634,1476 661,1472 686,1468 L 686,1287 C 674,1290 661,1292 646,1294 631,1295 617,1296 604,1296 578,1296 557,1293 540,1288 523,1283 509,1275 500,1264 490,1253 483,1240 479,1224 475,1207 473,1188 473,1167 L 473,1082 686,1082 686,892 473,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 1167,545 C 1167,463 1159,388 1143,319 1126,250 1101,190 1067,140 1033,89 990,50 938,22 885,-6 823,-20 752,-20 720,-20 688,-17 656,-10 624,-3 594,8 565,23 536,38 510,58 486,83 462,108 441,138 424,174 L 422,174 C 422,160 422,143 421,125 420,106 418,88 417,71 416,54 414,38 413,24 411,11 409,4 408,4 L 135,4 C 137,27 139,60 141,103 142,146 143,195 143,250 L 143,1484 424,1484 424,1070 C 424,1049 424,1028 424,1008 423,987 423,968 422,951 421,931 421,912 420,894 L 424,894 C 458,969 505,1022 564,1054 623,1086 692,1102 770,1102 839,1102 899,1088 949,1061 999,1033 1040,994 1073,945 1105,895 1129,836 1144,768 1159,700 1167,626 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 624,907 596,901 568,890 540,879 515,859 493,831 471,802 453,764 440,717 427,669 420,609 420,536 420,465 427,407 440,360 453,313 471,276 492,248 513,220 538,200 566,189 594,178 622,172 651,172 722,172 777,202 816,261 855,320 874,414 874,545 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="U" horiz-adv-x="1245" d="M 723,-20 C 635,-20 554,-9 481,12 408,33 345,65 292,110 239,154 197,211 168,280 138,349 123,432 123,528 L 123,1409 418,1409 418,551 C 418,492 425,441 440,398 455,355 476,319 503,292 530,264 563,244 602,231 641,218 684,211 731,211 779,211 823,218 864,232 904,245 939,266 968,295 997,324 1019,360 1035,404 1051,448 1059,500 1059,561 L 1059,1409 1354,1409 1354,543 C 1354,446 1338,363 1307,292 1276,221 1232,163 1176,117 1120,70 1054,36 977,14 900,-9 815,-20 723,-20 Z"/>
+ <glyph unicode="T" horiz-adv-x="1205" d="M 773,1181 L 773,0 478,0 478,1181 23,1181 23,1409 1229,1409 1229,1181 773,1181 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="O" horiz-adv-x="1430" d="M 1507,711 C 1507,601 1491,501 1458,411 1425,321 1378,244 1317,180 1256,116 1181,67 1093,32 1004,-3 904,-20 793,-20 675,-20 572,-2 484,35 395,71 321,122 262,187 203,252 158,329 129,418 99,507 84,605 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,571 408,510 425,449 451,396 486,352 521,308 564,274 615,249 666,224 726,212 793,212 865,212 927,225 979,250 1031,275 1074,309 1108,354 1141,398 1166,451 1182,512 1198,573 1206,639 1206,711 Z"/>
+ <glyph unicode="N" horiz-adv-x="1218" d="M 995,0 L 381,1085 C 384,1056 387,1026 390,997 393,972 395,944 397,915 398,886 399,858 399,831 L 399,0 137,0 137,1409 474,1409 1097,315 C 1094,343 1091,372 1088,403 1085,429 1083,458 1082,491 1080,524 1079,557 1079,590 L 1079,1409 1341,1409 1341,0 995,0 Z"/>
+ <glyph unicode="M" horiz-adv-x="1443" d="M 1307,0 L 1307,854 C 1307,888 1308,923 1309,959 1310,995 1311,1028 1312,1058 1314,1093 1316,1128 1317,1161 1303,1108 1290,1058 1277,1011 1272,991 1266,970 1260,949 1254,928 1248,907 1243,887 1237,867 1231,848 1226,831 1221,814 1216,799 1212,786 L 958,0 748,0 494,786 C 490,799 486,814 481,831 476,848 470,867 465,887 459,907 453,928 447,949 441,970 435,991 429,1011 416,1058 402,1108 387,1161 389,1122 391,1084 393,1047 394,1015 396,981 397,946 398,911 399,880 399,854 L 399,0 137,0 137,1409 532,1409 784,621 C 791,600 798,575 806,545 813,515 821,486 828,458 836,425 845,391 854,356 863,391 872,424 881,456 885,470 889,484 893,499 897,514 901,528 905,542 909,556 913,569 917,582 921,595 925,606 928,616 L 1176,1409 1569,1409 1569,0 1307,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1060" d="M 137,0 L 137,1409 432,1409 432,228 1188,228 1188,0 137,0 Z"/>
+ <glyph unicode="K" horiz-adv-x="1351" d="M 1112,0 L 606,647 432,514 432,0 137,0 137,1409 432,1409 432,770 1067,1409 1411,1409 809,813 1460,0 1112,0 Z"/>
+ <glyph unicode="I" horiz-adv-x="292" d="M 137,0 L 137,1409 432,1409 432,0 137,0 Z"/>
+ <glyph unicode="G" horiz-adv-x="1390" d="M 806,211 C 849,211 890,214 929,221 968,228 1005,237 1039,248 1072,259 1103,271 1130,286 1157,300 1179,315 1196,330 L 1196,525 852,525 852,743 1466,743 1466,225 C 1434,192 1395,161 1350,132 1305,102 1254,76 1197,54 1140,31 1079,13 1012,0 945,-13 873,-20 798,-20 673,-20 566,-2 476,35 386,71 312,122 254,187 196,252 153,329 126,418 98,507 84,605 84,711 84,821 99,920 128,1009 157,1098 202,1173 262,1236 321,1298 396,1346 487,1380 577,1413 683,1430 805,1430 894,1430 973,1421 1042,1404 1111,1387 1171,1362 1223,1330 1274,1298 1318,1260 1353,1215 1388,1170 1415,1119 1436,1063 L 1164,981 C 1152,1010 1136,1038 1116,1065 1096,1091 1071,1114 1042,1134 1012,1153 978,1169 939,1181 900,1192 855,1198 805,1198 732,1198 668,1187 615,1164 562,1141 518,1108 483,1065 448,1022 423,971 406,912 389,852 381,785 381,711 381,638 390,570 407,509 424,448 450,395 485,351 520,307 564,273 617,248 670,223 733,211 806,211 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="C" horiz-adv-x="1351" d="M 795,212 C 850,212 898,220 939,236 979,251 1014,272 1044,297 1073,322 1098,351 1118,383 1137,415 1153,447 1166,480 L 1423,383 C 1402,332 1375,283 1342,234 1309,185 1267,142 1217,105 1167,68 1108,38 1039,15 970,-8 888,-20 795,-20 673,-20 567,-2 478,35 389,71 315,122 257,187 198,252 155,329 127,418 98,507 84,605 84,711 84,821 98,920 127,1009 155,1098 198,1173 255,1236 312,1298 385,1346 473,1380 560,1413 663,1430 782,1430 874,1430 955,1420 1024,1401 1093,1382 1152,1355 1203,1320 1253,1285 1295,1243 1328,1196 1361,1148 1386,1095 1405,1038 L 1145,967 C 1136,997 1121,1026 1102,1054 1083,1081 1058,1106 1029,1127 999,1148 964,1166 924,1179 884,1192 839,1198 788,1198 717,1198 655,1187 604,1164 553,1141 511,1108 478,1065 445,1022 420,971 405,912 389,852 381,785 381,711 381,638 389,571 405,510 420,449 445,396 478,352 511,308 554,274 607,249 659,224 722,212 795,212 Z"/>
+ <glyph unicode="B" horiz-adv-x="1258" d="M 1386,402 C 1386,331 1372,270 1343,219 1314,168 1275,126 1226,94 1176,61 1118,38 1052,23 986,8 916,0 842,0 L 137,0 137,1409 782,1409 C 865,1409 940,1402 1005,1388 1070,1373 1124,1351 1169,1322 1214,1293 1248,1256 1271,1212 1294,1167 1305,1115 1305,1055 1305,975 1283,908 1239,853 1194,798 1127,760 1036,741 1150,728 1237,692 1297,634 1356,575 1386,498 1386,402 Z M 1008,1015 C 1008,1078 988,1123 948,1150 907,1177 847,1190 768,1190 L 432,1190 432,841 770,841 C 853,841 914,856 952,885 989,914 1008,957 1008,1015 Z M 1090,425 C 1090,462 1083,494 1068,519 1053,544 1033,565 1008,580 982,595 952,606 918,613 883,620 846,623 806,623 L 432,623 432,219 817,219 C 856,219 892,222 925,229 958,235 987,246 1012,262 1036,277 1055,298 1069,325 1083,352 1090,385 1090,425 Z"/>
+ <glyph unicode="," horiz-adv-x="292" d="M 432,66 C 432,21 430,-19 425,-56 420,-93 412,-126 403,-158 394,-188 382,-217 369,-243 356,-269 341,-294 324,-317 L 139,-317 C 158,-294 176,-269 192,-243 208,-217 222,-190 234,-163 246,-136 255,-108 262,-81 269,-54 272,-27 272,0 L 143,0 143,305 432,305 432,66 Z"/>
+ <glyph unicode=")" horiz-adv-x="583" d="M 2,-425 C 55,-347 101,-270 139,-196 177,-120 208,-44 233,33 257,110 275,190 286,272 297,353 303,439 303,530 303,620 297,706 286,788 275,869 257,949 233,1026 208,1103 177,1180 139,1255 101,1330 55,1407 2,1484 L 283,1484 C 334,1410 379,1337 416,1264 453,1191 484,1116 509,1039 533,962 551,882 563,799 574,716 580,626 580,531 580,436 574,347 563,264 551,180 533,99 509,22 484,-55 453,-131 416,-204 379,-277 334,-351 283,-425 L 2,-425 Z"/>
+ <glyph unicode="(" horiz-adv-x="583" d="M 399,-425 C 348,-351 303,-277 266,-204 229,-131 198,-55 174,22 149,99 131,180 120,264 108,347 102,436 102,531 102,626 108,716 120,799 131,882 149,962 174,1039 198,1116 229,1191 266,1264 303,1337 348,1410 399,1484 L 680,1484 C 627,1407 581,1330 543,1255 505,1180 474,1103 450,1026 425,949 407,869 396,788 385,706 379,620 379,530 379,439 385,353 396,272 407,190 425,110 450,33 474,-44 505,-120 543,-196 581,-270 627,-347 680,-425 L 399,-425 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.LineShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="10464" y="974" width="53" height="33073"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,1000 L 10490,1100"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,1201 L 10490,1301"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,1402 L 10490,1502"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,1603 L 10490,1703"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,1804 L 10490,1904"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,2005 L 10490,2105"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,2206 L 10490,2306"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,2407 L 10490,2507"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,2608 L 10490,2708"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,2808 L 10490,2909"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,3009 L 10490,3110"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,3210 L 10490,3311"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,3411 L 10490,3512"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,3612 L 10490,3713"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,3813 L 10490,3914"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,4014 L 10490,4115"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,4215 L 10490,4316"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,4416 L 10490,4516"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,4617 L 10490,4717"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,4818 L 10490,4918"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,5019 L 10490,5119"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,5220 L 10490,5320"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,5421 L 10490,5521"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,5622 L 10490,5722"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,5823 L 10490,5923"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,6023 L 10490,6124"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,6224 L 10490,6325"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,6425 L 10490,6526"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,6626 L 10490,6727"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,6827 L 10490,6928"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,7028 L 10490,7129"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,7229 L 10490,7330"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,7430 L 10490,7531"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,7631 L 10490,7731"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,7832 L 10490,7932"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,8033 L 10490,8133"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,8234 L 10490,8334"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,8435 L 10490,8535"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,8636 L 10490,8736"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,8837 L 10490,8937"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,9038 L 10490,9138"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,9239 L 10490,9339"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,9439 L 10490,9540"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,9640 L 10490,9741"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,9841 L 10490,9942"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,10042 L 10490,10143"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,10243 L 10490,10344"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,10444 L 10490,10545"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,10645 L 10490,10746"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,10846 L 10490,10947"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,11047 L 10490,11147"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,11248 L 10490,11348"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,11449 L 10490,11549"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,11650 L 10490,11750"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,11851 L 10490,11951"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,12052 L 10490,12152"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,12253 L 10490,12353"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,12454 L 10490,12554"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,12655 L 10490,12755"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,12855 L 10490,12956"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,13056 L 10490,13157"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,13257 L 10490,13358"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,13458 L 10490,13559"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,13659 L 10490,13760"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,13860 L 10490,13961"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,14061 L 10490,14162"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,14262 L 10490,14363"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,14463 L 10490,14563"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,14664 L 10490,14764"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,14865 L 10490,14965"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,15066 L 10490,15166"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,15267 L 10490,15367"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,15468 L 10490,15568"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,15669 L 10490,15769"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,15870 L 10490,15970"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,16070 L 10490,16171"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,16271 L 10490,16372"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,16472 L 10490,16573"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,16673 L 10490,16774"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,16874 L 10490,16975"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,17075 L 10490,17176"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,17276 L 10490,17377"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,17477 L 10490,17578"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,17678 L 10490,17778"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,17879 L 10490,17979"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,18080 L 10490,18180"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,18281 L 10490,18381"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,18482 L 10490,18582"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,18683 L 10490,18783"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,18884 L 10490,18984"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,19085 L 10490,19185"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,19286 L 10490,19386"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,19486 L 10490,19587"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,19687 L 10490,19788"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,19888 L 10490,19989"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,20089 L 10490,20190"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,20290 L 10490,20391"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,20491 L 10490,20592"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,20692 L 10490,20793"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,20893 L 10490,20994"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,21094 L 10490,21194"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,21295 L 10490,21395"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,21496 L 10490,21596"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,21697 L 10490,21797"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,21898 L 10490,21998"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,22099 L 10490,22199"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,22300 L 10490,22400"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,22501 L 10490,22601"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,22702 L 10490,22802"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,22902 L 10490,23003"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,23103 L 10490,23204"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,23304 L 10490,23405"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,23505 L 10490,23606"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,23706 L 10490,23807"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,23907 L 10490,24008"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,24108 L 10490,24209"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,24309 L 10490,24410"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,24510 L 10490,24610"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,24711 L 10490,24811"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,24912 L 10490,25012"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,25113 L 10490,25213"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,25314 L 10490,25414"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,25515 L 10490,25615"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,25716 L 10490,25816"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,25917 L 10490,26017"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,26118 L 10490,26218"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,26318 L 10490,26419"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,26519 L 10490,26620"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,26720 L 10490,26821"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,26921 L 10490,27022"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,27122 L 10490,27223"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,27323 L 10490,27424"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,27524 L 10490,27625"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,27725 L 10490,27825"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,27926 L 10490,28026"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,28127 L 10490,28227"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,28328 L 10490,28428"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,28529 L 10490,28629"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,28730 L 10490,28830"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,28931 L 10490,29031"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,29132 L 10490,29232"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,29333 L 10490,29433"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,29533 L 10490,29634"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,29734 L 10490,29835"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,29935 L 10490,30036"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,30136 L 10490,30237"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,30337 L 10490,30438"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,30538 L 10490,30639"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,30739 L 10490,30840"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,30940 L 10490,31041"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,31141 L 10490,31241"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,31342 L 10490,31442"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,31543 L 10490,31643"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,31744 L 10490,31844"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,31945 L 10490,32045"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,32146 L 10490,32246"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,32347 L 10490,32447"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,32548 L 10490,32648"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,32749 L 10490,32849"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,32949 L 10490,33050"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,33150 L 10490,33251"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,33351 L 10490,33452"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,33552 L 10490,33653"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,33753 L 10490,33854"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10490,33954 L 10490,34020"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.LineShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2244" y="2244" width="16593" height="93"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2270,2270 L 2370,2270"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2471,2270 L 2571,2271"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2672,2271 L 2772,2271"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 2873,2271 L 2973,2272"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3074,2272 L 3174,2272"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3275,2272 L 3375,2273"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3476,2273 L 3576,2273"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3677,2273 L 3777,2274"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 3878,2274 L 3978,2274"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4078,2274 L 4179,2275"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4279,2275 L 4380,2275"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4480,2275 L 4581,2276"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4681,2276 L 4782,2276"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 4882,2276 L 4983,2277"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5083,2277 L 5184,2277"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5284,2277 L 5385,2278"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5485,2278 L 5586,2278"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5686,2278 L 5786,2279"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5887,2279 L 5987,2279"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6088,2279 L 6188,2279"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6289,2280 L 6389,2280"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6490,2280 L 6590,2280"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6691,2281 L 6791,2281"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6892,2281 L 6992,2281"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7093,2282 L 7193,2282"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7293,2282 L 7394,2282"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7494,2283 L 7595,2283"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7695,2283 L 7796,2283"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7896,2284 L 7997,2284"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8097,2284 L 8198,2284"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8298,2285 L 8399,2285"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8499,2285 L 8600,2285"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8700,2286 L 8801,2286"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8901,2286 L 9001,2286"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9102,2287 L 9202,2287"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9303,2287 L 9403,2287"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9504,2287 L 9604,2288"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9705,2288 L 9805,2288"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9906,2288 L 10006,2289"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10107,2289 L 10207,2289"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10308,2289 L 10408,2290"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10509,2290 L 10609,2290"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10709,2290 L 10810,2291"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10910,2291 L 11011,2291"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11111,2291 L 11212,2292"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11312,2292 L 11413,2292"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11513,2292 L 11614,2293"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11714,2293 L 11815,2293"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11915,2293 L 12016,2294"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12116,2294 L 12217,2294"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12317,2294 L 12417,2295"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12518,2295 L 12618,2295"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12719,2295 L 12819,2296"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12920,2296 L 13020,2296"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13121,2296 L 13221,2296"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13322,2297 L 13422,2297"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13523,2297 L 13623,2297"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13724,2298 L 13824,2298"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13924,2298 L 14025,2298"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14125,2299 L 14226,2299"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14326,2299 L 14427,2299"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14527,2300 L 14628,2300"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14728,2300 L 14829,2300"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14929,2301 L 15030,2301"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15130,2301 L 15231,2301"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15331,2302 L 15432,2302"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15532,2302 L 15632,2302"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15733,2303 L 15833,2303"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15934,2303 L 16034,2303"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16135,2304 L 16235,2304"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16336,2304 L 16436,2304"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16537,2305 L 16637,2305"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16738,2305 L 16838,2305"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 16939,2305 L 17039,2306"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17140,2306 L 17240,2306"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17340,2306 L 17441,2307"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17541,2307 L 17642,2307"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17742,2307 L 17843,2308"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 17943,2308 L 18044,2308"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18144,2308 L 18245,2309"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18345,2309 L 18446,2309"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18546,2309 L 18647,2310"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 18747,2310 L 18810,2310"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="7316" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,7342 C 13755,7342 13650,7447 13650,7553 L 13650,8399 C 13650,8505 13755,8611 13861,8611 L 17268,8611 C 17374,8611 17480,8505 17480,8399 L 17480,7553 C 17480,7447 17374,7342 17268,7342 L 13861,7342 Z M 13650,7342 L 13650,7342 Z M 17480,8611 L 17480,8611 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,7342 C 13755,7342 13650,7447 13650,7553 L 13650,8399 C 13650,8505 13755,8611 13861,8611 L 17268,8611 C 17374,8611 17480,8505 17480,8399 L 17480,7553 C 17480,7447 17374,7342 17268,7342 L 13861,7342 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="7467" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14111" y="8074"><tspan fill="rgb(0,0,0)" stroke="none">Setup signal handlers</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="4917" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,4943 C 3655,4943 3550,5048 3550,5154 L 3550,6000 C 3550,6106 3655,6212 3761,6212 L 7168,6212 C 7274,6212 7380,6106 7380,6000 L 7380,5154 C 7380,5048 7274,4943 7168,4943 L 3761,4943 Z M 3550,4943 L 3550,4943 Z M 7380,6212 L 7380,6212 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,4943 C 3655,4943 3550,5048 3550,5154 L 3550,6000 C 3550,6106 3655,6212 3761,6212 L 7168,6212 C 7274,6212 7380,6106 7380,6000 L 7380,5154 C 7380,5048 7274,4943 7168,4943 L 3761,4943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="5068" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4572" y="5675"><tspan fill="rgb(0,0,0)" stroke="none">Block signals</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="7318" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,7344 C 3655,7344 3550,7449 3550,7555 L 3550,8401 C 3550,8507 3655,8613 3761,8613 L 7168,8613 C 7274,8613 7380,8507 7380,8401 L 7380,7555 C 7380,7449 7274,7344 7168,7344 L 3761,7344 Z M 3550,7344 L 3550,7344 Z M 7380,8613 L 7380,8613 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,7344 C 3655,7344 3550,7449 3550,7555 L 3550,8401 C 3550,8507 3655,8613 3761,8613 L 7168,8613 C 7274,8613 7380,8507 7380,8401 L 7380,7555 C 7380,7449 7274,7344 7168,7344 L 3761,7344 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="7469" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5126" y="8076"><tspan fill="rgb(0,0,0)" stroke="none">fork()</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="9918" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,9944 C 3655,9944 3550,10049 3550,10155 L 3550,11001 C 3550,11107 3655,11213 3761,11213 L 7168,11213 C 7274,11213 7380,11107 7380,11001 L 7380,10155 C 7380,10049 7274,9944 7168,9944 L 3761,9944 Z M 3550,9944 L 3550,9944 Z M 7380,11213 L 7380,11213 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,9944 C 3655,9944 3550,10049 3550,10155 L 3550,11001 C 3550,11107 3655,11213 3761,11213 L 7168,11213 C 7274,11213 7380,11107 7380,11001 L 7380,10155 C 7380,10049 7274,9944 7168,9944 L 3761,9944 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="10069" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4398" y="10676"><tspan fill="rgb(0,0,0)" stroke="none">Unblock signals</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5236" y="6185" width="459" height="1160"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5465,6211 L 5465,7010"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 5466,7344 L 5694,6980 5237,6980 5466,7344 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5236" y="8586" width="459" height="1359"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5465,8612 L 5465,9610"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 5466,9944 L 5694,9580 5237,9580 5466,9944 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7354" y="7747" width="6298" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7380,7978 C 12082,7978 9117,7976 13274,7976"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 13651,7975 L 13287,7748 13287,8205 13651,7975 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1000" y="1072" width="8891" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="3155" y="1806"><tspan fill="rgb(102,102,102)" stroke="none">Main BuildStream Process</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11100" y="1072" width="8891" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="14474" y="1806"><tspan fill="rgb(102,102,102)" stroke="none">Job Process</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="9917" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,9943 C 13755,9943 13650,10048 13650,10154 L 13650,11000 C 13650,11106 13755,11212 13861,11212 L 17268,11212 C 17374,11212 17480,11106 17480,11000 L 17480,10154 C 17480,10048 17374,9943 17268,9943 L 13861,9943 Z M 13650,9943 L 13650,9943 Z M 17480,11212 L 17480,11212 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,9943 C 13755,9943 13650,10048 13650,10154 L 13650,11000 C 13650,11106 13755,11212 13861,11212 L 17268,11212 C 17374,11212 17480,11106 17480,11000 L 17480,10154 C 17480,10048 17374,9943 17268,9943 L 13861,9943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="10068" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14189" y="10516"><tspan fill="rgb(0,0,0)" stroke="none">Initialize subprocess </tspan></tspan><tspan class="TextPosition" x="14299" y="10834"><tspan fill="rgb(0,0,0)" stroke="none">logging redirection</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15336" y="8584" width="459" height="1360"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15565,8610 L 15565,9609"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 15566,9943 L 15794,9579 15337,9579 15566,9943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="12418" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,12444 C 13755,12444 13650,12549 13650,12655 L 13650,13501 C 13650,13607 13755,13713 13861,13713 L 17268,13713 C 17374,13713 17480,13607 17480,13501 L 17480,12655 C 17480,12549 17374,12444 17268,12444 L 13861,12444 Z M 13650,12444 L 13650,12444 Z M 17480,13713 L 17480,13713 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,12444 C 13755,12444 13650,12549 13650,12655 L 13650,13501 C 13650,13607 13755,13713 13861,13713 L 17268,13713 C 17374,13713 17480,13607 17480,13501 L 17480,12655 C 17480,12549 17374,12444 17268,12444 L 13861,12444 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="12569" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14422" y="13017"><tspan fill="rgb(0,0,0)" stroke="none">Unblock selected </tspan></tspan><tspan class="TextPosition" x="14587" y="13335"><tspan fill="rgb(0,0,0)" stroke="none">signals (ready)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15336" y="11185" width="459" height="1260"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15565,11211 L 15565,12110"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 15566,12444 L 15794,12080 15337,12080 15566,12444 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="16219" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,16245 C 13755,16245 13650,16350 13650,16456 L 13650,17302 C 13650,17408 13755,17514 13861,17514 L 17268,17514 C 17374,17514 17480,17408 17480,17302 L 17480,16456 C 17480,16350 17374,16245 17268,16245 L 13861,16245 Z M 13650,16245 L 13650,16245 Z M 17480,17514 L 17480,17514 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,16245 C 13755,16245 13650,16350 13650,16456 L 13650,17302 C 13650,17408 13755,17514 13861,17514 L 17268,17514 C 17374,17514 17480,17408 17480,17302 L 17480,16456 C 17480,16350 17374,16245 17268,16245 L 13861,16245 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="16370" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14232" y="16977"><tspan fill="rgb(0,0,0)" stroke="none">Run the job payload</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15337" y="13686" width="459" height="1246"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15565,13712 C 15565,15021 15565,14515 15566,14601"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 15568,14931 L 15794,14566 15337,14567 15568,14931 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="16219" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,16245 C 3655,16245 3550,16350 3550,16456 L 3550,17302 C 3550,17408 3655,17514 3761,17514 L 7168,17514 C 7274,17514 7380,17408 7380,17302 L 7380,16456 C 7380,16350 7274,16245 7168,16245 L 3761,16245 Z M 3550,16245 L 3550,16245 Z M 7380,17514 L 7380,17514 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,16245 C 3655,16245 3550,16350 3550,16456 L 3550,17302 C 3550,17408 3655,17514 3761,17514 L 7168,17514 C 7274,17514 7380,17408 7380,17302 L 7380,16456 C 7380,16350 7274,16245 7168,16245 L 3761,16245 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="16370" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4502" y="16977"><tspan fill="rgb(0,0,0)" stroke="none">Log messages</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7380" y="16650" width="6298" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13651,16879 L 7714,16879"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 7380,16880 L 7744,17108 7744,16651 7380,16880 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2243" y="3544" width="6531" height="8944"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2848,3570 C 2558,3570 2269,3859 2269,4149 L 2269,11881 C 2269,12171 2558,12461 2848,12461 L 8167,12461 C 8457,12461 8747,12171 8747,11881 L 8747,4149 C 8747,3859 8457,3570 8167,3570 L 2848,3570 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2300" y="3572" width="6448" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="4298" y="4306"><tspan fill="rgb(102,102,102)" stroke="none">Start New Job</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id32">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2243" y="14944" width="6531" height="6333"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2830,14970 C 2549,14970 2269,15250 2269,15531 L 2269,20688 C 2269,20969 2549,21250 2830,21250 L 8185,21250 C 8465,21250 8746,20969 8746,20688 L 8746,15531 C 8746,15250 8465,14970 8185,14970 L 2830,14970 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id33">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2301" y="14972" width="6448" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="3505" y="15706"><tspan fill="rgb(102,102,102)" stroke="none">Receive IPC Messages</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id34">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="18720" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,18746 C 13755,18746 13650,18851 13650,18957 L 13650,19803 C 13650,19909 13755,20015 13861,20015 L 17268,20015 C 17374,20015 17480,19909 17480,19803 L 17480,18957 C 17480,18851 17374,18746 17268,18746 L 13861,18746 Z M 13650,18746 L 13650,18746 Z M 17480,20015 L 17480,20015 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,18746 C 13755,18746 13650,18851 13650,18957 L 13650,19803 C 13650,19909 13755,20015 13861,20015 L 17268,20015 C 17374,20015 17480,19909 17480,19803 L 17480,18957 C 17480,18851 17374,18746 17268,18746 L 13861,18746 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id35">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="18871" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14162" y="19319"><tspan fill="rgb(0,0,0)" stroke="none">Report job result and </tspan></tspan><tspan class="TextPosition" x="14581" y="19637"><tspan fill="rgb(0,0,0)" stroke="none">any other state</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id36">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="18720" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,18746 C 3655,18746 3550,18851 3550,18957 L 3550,19803 C 3550,19909 3655,20015 3761,20015 L 7168,20015 C 7274,20015 7380,19909 7380,19803 L 7380,18957 C 7380,18851 7274,18746 7168,18746 L 3761,18746 Z M 3550,18746 L 3550,18746 Z M 7380,20015 L 7380,20015 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,18746 C 3655,18746 3550,18851 3550,18957 L 3550,19803 C 3550,19909 3655,20015 3761,20015 L 7168,20015 C 7274,20015 7380,19909 7380,19803 L 7380,18957 C 7380,18851 7274,18746 7168,18746 L 3761,18746 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id37">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="18871" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4045" y="19319"><tspan fill="rgb(0,0,0)" stroke="none">Collect results on job </tspan></tspan><tspan class="TextPosition" x="4913" y="19637"><tspan fill="rgb(0,0,0)" stroke="none">instance</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id38">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7380" y="19151" width="6298" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13651,19380 L 7714,19380"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 7380,19381 L 7744,19609 7744,19152 7380,19381 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id39">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15336" y="17487" width="459" height="1260"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15565,17513 L 15565,18412"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 15566,18746 L 15794,18382 15337,18382 15566,18746 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id40">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2243" y="27644" width="6531" height="6333"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2830,27670 C 2549,27670 2269,27950 2269,28231 L 2269,33388 C 2269,33669 2549,33950 2830,33950 L 8185,33950 C 8465,33950 8746,33669 8746,33388 L 8746,28231 C 8746,27950 8465,27670 8185,27670 L 2830,27670 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id41">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="28920" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,28946 C 3655,28946 3550,29051 3550,29157 L 3550,30003 C 3550,30109 3655,30215 3761,30215 L 7168,30215 C 7274,30215 7380,30109 7380,30003 L 7380,29157 C 7380,29051 7274,28946 7168,28946 L 3761,28946 Z M 3550,28946 L 3550,28946 Z M 7380,30215 L 7380,30215 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,28946 C 3655,28946 3550,29051 3550,29157 L 3550,30003 C 3550,30109 3655,30215 3761,30215 L 7168,30215 C 7274,30215 7380,30109 7380,30003 L 7380,29157 C 7380,29051 7274,28946 7168,28946 L 3761,28946 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id42">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="29071" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4276" y="29678"><tspan fill="rgb(0,0,0)" stroke="none">Collect exit status</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id43">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13624" y="23821" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13861,23847 C 13755,23847 13650,23952 13650,24058 L 13650,24904 C 13650,25010 13755,25116 13861,25116 L 17268,25116 C 17374,25116 17480,25010 17480,24904 L 17480,24058 C 17480,23952 17374,23847 17268,23847 L 13861,23847 Z M 13650,23847 L 13650,23847 Z M 17480,25116 L 17480,25116 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13861,23847 C 13755,23847 13650,23952 13650,24058 L 13650,24904 C 13650,25010 13755,25116 13861,25116 L 17268,25116 C 17374,25116 17480,25010 17480,24904 L 17480,24058 C 17480,23952 17374,23847 17268,23847 L 13861,23847 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id44">
+ <rect class="BoundingBox" stroke="none" fill="none" x="13819" y="23972" width="3535" height="1017"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="14346" y="24420"><tspan fill="rgb(0,0,0)" stroke="none">Exit with symbolic </tspan></tspan><tspan class="TextPosition" x="14888" y="24738"><tspan fill="rgb(0,0,0)" stroke="none">exit status</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id45">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12343" y="14944" width="6531" height="11483"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 12948,14970 C 12658,14970 12369,15259 12369,15549 L 12369,25820 C 12369,26110 12658,26400 12948,26400 L 18267,26400 C 18557,26400 18847,26110 18847,25820 L 18847,15549 C 18847,15259 18557,14970 18267,14970 L 12948,14970 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id46">
+ <rect class="BoundingBox" stroke="none" fill="none" x="12402" y="14972" width="6448" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="13450" y="15706"><tspan fill="rgb(102,102,102)" stroke="none">Interruptible Job Harness</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id47">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3524" y="31421" width="3883" height="1322"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 3761,31447 C 3655,31447 3550,31552 3550,31658 L 3550,32504 C 3550,32610 3655,32716 3761,32716 L 7168,32716 C 7274,32716 7380,32610 7380,32504 L 7380,31658 C 7380,31552 7274,31447 7168,31447 L 3761,31447 Z M 3550,31447 L 3550,31447 Z M 7380,32716 L 7380,32716 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 3761,31447 C 3655,31447 3550,31552 3550,31658 L 3550,32504 C 3550,32610 3655,32716 3761,32716 L 7168,32716 C 7274,32716 7380,32610 7380,32504 L 7380,31658 C 7380,31552 7274,31447 7168,31447 L 3761,31447 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id48">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3719" y="31478" width="3535" height="1206"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4083" y="31862"><tspan fill="rgb(0,0,0)" stroke="none">Inform the job owner </tspan></tspan><tspan class="TextPosition" x="4068" y="32180"><tspan fill="rgb(0,0,0)" stroke="none">that a job completed, </tspan></tspan><tspan class="TextPosition" x="4132" y="32498"><tspan fill="rgb(0,0,0)" stroke="none">hand over the result</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id49">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15336" y="19988" width="459" height="3860"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15565,20014 L 15565,23513"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 15566,23847 L 15794,23483 15337,23483 15566,23847 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id50">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8747" y="26374" width="6888" height="4663"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15608,26400 C 15608,29340 13433,30736 9084,30807"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 8747,30811 L 9113,31035 9109,30578 8747,30811 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id51">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2244" y="22520" width="6404" height="3907"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2912,22546 C 2591,22546 2270,22867 2270,23188 L 2270,25757 C 2270,26078 2591,26400 2912,26400 L 7978,26400 C 8299,26400 8620,26078 8620,25757 L 8620,23188 C 8620,22867 8299,22546 7978,22546 L 2912,22546 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id52">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2397" y="22598" width="6097" height="3676"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="4450" y="23074"><tspan fill="rgb(102,102,102)" stroke="none">Job Control</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4108" y="23845"><tspan fill="rgb(0,0,0)" stroke="none">Suspend (SIGTSTP)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4118" y="24481"><tspan fill="rgb(0,0,0)" stroke="none">Resume (SIGCONT)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4000" y="25117"><tspan fill="rgb(0,0,0)" stroke="none">Terminate (SIGTERM)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="4529" y="25753"><tspan fill="rgb(0,0,0)" stroke="none">Kill (SIGKILL)</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id53">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8594" y="24265" width="3778" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8620,24473 C 11432,24473 9723,24492 12004,24494"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 12370,24493 L 12006,24265 12005,24722 12370,24493 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id54">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2302" y="27672" width="6448" height="1199"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="4618" y="28406"><tspan fill="rgb(102,102,102)" stroke="none">Job Exited</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id55">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5236" y="30188" width="459" height="1260"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5465,30214 L 5465,31113"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 5466,31447 L 5694,31083 5237,31083 5466,31447 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id56">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11100" y="2372" width="8891" height="4852"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="11816" y="3205"><tspan fill="rgb(102,102,102)" stroke="none">This process is a fork() of the main process </tspan></tspan><tspan class="TextPosition" x="14070" y="3637"><tspan fill="rgb(102,102,102)" stroke="none">without execve().</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-style="italic" font-weight="400"><tspan class="TextPosition" x="11602" y="4501"><tspan fill="rgb(102,102,102)" stroke="none">This means it has access to the main process </tspan></tspan><tspan class="TextPosition" x="12135" y="4933"><tspan fill="rgb(102,102,102)" stroke="none">data model at the time of the fork(), any </tspan></tspan><tspan class="TextPosition" x="11439" y="5365"><tspan fill="rgb(102,102,102)" stroke="none">modifications made after this point are copy-on-</tspan></tspan><tspan class="TextPosition" x="11456" y="5797"><tspan fill="rgb(102,102,102)" stroke="none">write, and any side effects of the job need to be </tspan></tspan><tspan class="TextPosition" x="11507" y="6229"><tspan fill="rgb(102,102,102)" stroke="none">manually propagated back to the main process </tspan></tspan><tspan class="TextPosition" x="14125" y="6661"><tspan fill="rgb(102,102,102)" stroke="none">through the IPC.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-scheduler-queue-ports.svg b/doc/source/images/arch-scheduler-queue-ports.svg
new file mode 100644
index 000000000..2466551bf
--- /dev/null
+++ b/doc/source/images/arch-scheduler-queue-ports.svg
@@ -0,0 +1,318 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="127mm" height="208.28mm" viewBox="0 0 12700 20828" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="12700" height="20828"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1126" d="M 584,241 L 834,1082 1128,1082 700,-57 C 646,-188 590,-281 532,-336 469,-395 386,-425 283,-425 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 173,-220 202,-220 230,-220 255,-217 276,-211 297,-205 317,-195 334,-181 368,-153 399,-105 426,-37 L 444,11 16,1082 313,1082 584,241 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="p" horiz-adv-x="1046" d="M 1167,546 C 1167,464 1159,388 1143,319 1126,250 1101,190 1067,140 1033,90 990,51 938,23 885,-6 823,-20 752,-20 720,-20 688,-17 657,-10 625,-3 595,8 566,23 537,38 511,57 487,82 462,106 441,136 424,172 L 418,172 C 419,169 419,160 420,147 421,134 421,118 422,101 423,83 423,64 424,45 424,25 424,7 424,-10 L 424,-425 143,-425 143,833 C 143,888 142,938 141,981 139,1024 137,1058 135,1082 L 408,1082 C 409,1077 411,1068 413,1055 414,1042 416,1026 417,1009 418,992 418,974 419,955 420,936 420,920 420,906 L 424,906 C 458,977 505,1028 564,1059 623,1090 692,1105 770,1105 839,1105 898,1091 948,1063 998,1035 1039,996 1072,947 1104,898 1128,839 1144,771 1159,702 1167,627 1167,546 Z M 874,546 C 874,669 855,761 818,821 781,880 725,910 651,910 623,910 595,904 568,893 540,881 515,861 494,833 472,804 454,766 441,719 427,671 420,611 420,538 420,467 427,409 440,362 453,315 471,277 493,249 514,221 539,201 566,190 593,178 621,172 649,172 685,172 717,179 745,194 773,208 797,230 816,261 835,291 849,330 859,377 869,424 874,481 874,546 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1006" d="M 834,0 L 545,490 424,406 424,0 143,0 143,1484 424,1484 424,634 810,1082 1112,1082 732,660 1141,0 834,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="g" horiz-adv-x="1046" d="M 596,-434 C 525,-434 462,-427 408,-413 353,-398 307,-378 269,-353 230,-327 200,-296 177,-261 154,-225 138,-186 129,-143 L 410,-110 C 420,-153 442,-187 475,-212 508,-237 551,-249 604,-249 637,-249 668,-244 696,-235 723,-226 747,-210 767,-188 786,-165 802,-136 813,-99 824,-62 829,-17 829,37 829,56 829,75 829,94 829,113 829,131 830,147 831,166 831,184 831,201 L 829,201 C 796,131 751,80 692,49 633,18 562,2 481,2 412,2 353,16 304,43 254,70 213,107 180,156 147,204 123,262 108,329 92,396 84,469 84,550 84,633 92,709 109,777 126,844 151,902 186,951 220,1000 263,1037 316,1064 368,1090 430,1103 502,1103 574,1103 639,1088 696,1057 753,1026 797,977 829,908 L 834,908 C 834,922 835,939 836,957 837,976 838,994 839,1011 840,1029 842,1044 844,1058 845,1071 847,1078 848,1078 L 1114,1078 C 1113,1054 1111,1020 1110,977 1109,934 1108,885 1108,829 L 1108,32 C 1108,-47 1097,-115 1074,-173 1051,-231 1018,-280 975,-318 931,-357 877,-386 814,-405 750,-424 677,-434 596,-434 Z M 831,556 C 831,624 824,681 811,726 798,771 780,808 759,835 738,862 713,882 686,893 658,904 630,910 602,910 566,910 534,903 507,889 479,875 455,853 436,824 417,795 402,757 392,712 382,667 377,613 377,550 377,433 396,345 433,286 470,227 526,197 600,197 628,197 656,203 684,214 711,225 736,244 758,272 780,299 798,336 811,382 824,428 831,486 831,556 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="W" horiz-adv-x="1985" d="M 1567,0 L 1217,0 1026,815 C 1020,840 1014,869 1007,903 1000,937 993,970 987,1002 980,1039 973,1077 967,1116 960,1077 952,1038 945,1001 942,985 938,969 935,952 932,935 928,918 925,902 921,885 918,870 915,855 912,840 908,827 905,815 L 715,0 365,0 2,1409 301,1409 477,625 C 487,582 496,540 505,499 514,458 522,421 529,388 537,350 544,314 551,279 561,328 571,376 580,423 584,443 588,464 593,485 598,506 602,527 607,548 611,569 615,589 620,608 624,627 628,644 631,659 L 805,1409 1135,1409 1313,659 C 1317,643 1321,625 1325,606 1329,586 1333,566 1337,545 1341,524 1345,503 1349,482 1353,461 1357,440 1360,420 1368,373 1376,326 1384,279 1392,316 1400,355 1409,395 1416,429 1425,466 1434,507 1443,548 1453,587 1462,625 L 1632,1409 1931,1409 1567,0 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="P" horiz-adv-x="1165" d="M 1296,963 C 1296,902 1286,844 1266,788 1245,731 1214,681 1172,638 1130,595 1077,560 1012,535 947,509 871,496 782,496 L 432,496 432,0 137,0 137,1409 770,1409 C 860,1409 938,1398 1004,1377 1070,1355 1125,1324 1168,1285 1211,1246 1244,1199 1265,1144 1286,1089 1296,1029 1296,963 Z M 999,958 C 999,1031 977,1086 934,1124 890,1161 824,1180 737,1180 L 432,1180 432,723 745,723 C 789,723 827,729 859,740 890,751 917,767 938,788 959,809 974,834 984,863 994,892 999,923 999,958 Z"/>
+ <glyph unicode="I" horiz-adv-x="292" d="M 137,0 L 137,1409 432,1409 432,0 137,0 Z"/>
+ <glyph unicode="F" horiz-adv-x="1046" d="M 432,1181 L 432,745 1153,745 1153,517 432,517 432,0 137,0 137,1409 1176,1409 1176,1181 432,1181 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="”" horiz-adv-x="848" d="M 985,1217 C 976,1172 966,1131 954,1094 942,1057 928,1023 913,992 897,961 880,932 862,906 843,880 823,855 801,831 L 617,831 C 641,855 664,880 685,906 706,932 726,959 743,986 760,1013 774,1040 786,1068 798,1095 807,1122 812,1149 L 685,1149 736,1409 1023,1409 985,1217 Z M 555,1217 C 546,1172 536,1131 524,1094 512,1057 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1217 Z"/>
+ <glyph unicode="“" horiz-adv-x="848" d="M 617,831 L 655,1026 C 664,1071 674,1111 687,1148 699,1185 713,1218 728,1249 743,1280 761,1308 780,1335 799,1361 819,1386 841,1409 L 1023,1409 C 1000,1386 978,1361 957,1335 936,1309 917,1282 900,1255 883,1228 868,1200 856,1173 844,1146 835,1119 830,1092 L 957,1092 906,831 617,831 Z M 189,831 L 227,1026 C 236,1071 246,1111 258,1148 270,1185 284,1218 299,1249 314,1280 331,1308 350,1335 369,1361 389,1386 410,1409 L 593,1409 C 570,1386 548,1361 527,1335 506,1309 487,1282 470,1255 453,1228 438,1200 426,1173 414,1146 405,1119 400,1092 L 527,1092 476,831 189,831 Z"/>
+ <glyph unicode="’" horiz-adv-x="411" d="M 555,1214 C 546,1169 536,1129 524,1093 512,1056 498,1023 483,992 468,961 451,932 432,906 413,880 393,855 371,831 L 189,831 C 236,879 277,931 313,986 348,1041 371,1095 382,1149 L 255,1149 306,1409 593,1409 555,1214 Z"/>
+ <glyph unicode="y" horiz-adv-x="1324" d="M 570,-57 C 533,-115 497,-167 464,-212 430,-257 395,-296 358,-328 321,-359 280,-383 237,-400 194,-417 144,-425 88,-425 53,-425 22,-423 -6,-421 -33,-417 -60,-413 -85,-407 L -47,-211 C -35,-214 -21,-216 -5,-218 12,-219 27,-220 40,-220 65,-220 89,-217 111,-210 132,-203 153,-192 174,-177 195,-162 215,-141 235,-117 255,-91 275,-61 296,-24 L 324,24 112,1082 403,1082 474,585 C 475,578 477,565 480,548 482,531 484,511 487,489 489,466 491,443 494,418 497,393 499,370 501,348 503,325 505,305 507,288 508,271 509,258 509,251 512,258 518,271 526,288 533,305 542,324 553,346 563,367 574,390 585,414 596,438 607,461 618,483 628,505 637,525 646,543 655,560 661,573 665,581 L 924,1082 1224,1082 570,-57 Z"/>
+ <glyph unicode="x" horiz-adv-x="1298" d="M 724,0 L 538,383 211,0 -90,0 418,562 139,1082 431,1082 604,735 900,1082 1208,1082 725,557 1019,0 724,0 Z"/>
+ <glyph unicode="w" horiz-adv-x="1602" d="M 1207,0 L 910,0 867,660 C 866,681 865,704 865,731 864,758 864,783 863,806 862,833 862,861 862,890 851,861 840,833 829,806 820,783 810,758 799,731 788,704 777,679 767,658 L 465,0 168,0 99,1082 357,1082 370,446 C 371,428 371,408 371,386 371,363 371,342 371,323 L 371,255 C 380,278 389,300 398,323 406,342 415,363 424,386 433,408 441,428 450,446 L 744,1082 1045,1082 1087,446 C 1088,429 1089,409 1090,387 1090,365 1090,344 1091,325 1092,302 1092,279 1092,255 1101,279 1111,302 1120,325 1128,344 1136,365 1145,387 1154,409 1162,429 1169,446 L 1436,1082 1702,1082 1207,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="q" horiz-adv-x="1165" d="M 898,903 C 901,920 905,938 910,957 914,976 918,994 923,1011 927,1027 931,1043 935,1056 939,1070 942,1077 945,1077 L 1215,1077 C 1212,1066 1205,1036 1195,989 1184,942 1171,876 1154,791 L 918,-425 637,-425 722,7 C 727,29 732,53 738,79 744,105 751,133 758,163 L 754,163 C 730,132 705,105 680,82 655,59 628,39 599,24 570,9 538,-3 505,-10 471,-17 434,-21 394,-21 340,-21 292,-12 251,7 210,25 175,50 146,83 117,115 96,154 81,199 66,244 59,294 59,348 59,378 61,411 64,448 67,484 72,523 80,565 99,660 124,742 157,810 190,878 228,934 271,977 314,1020 362,1052 415,1072 467,1092 522,1102 580,1102 624,1102 663,1098 696,1091 729,1084 757,1072 782,1056 807,1040 828,1019 846,994 864,969 880,938 893,903 L 898,903 Z M 518,172 C 553,172 587,178 619,189 650,200 679,219 706,246 733,273 756,309 777,355 798,400 814,458 827,527 832,556 836,584 839,609 842,634 843,658 843,680 843,755 829,812 802,851 774,890 730,910 669,910 634,910 601,905 571,895 540,884 513,866 488,840 463,814 441,779 422,735 403,690 387,634 374,565 367,530 363,498 360,469 357,439 356,411 356,386 356,353 359,324 366,298 372,271 382,249 395,230 408,211 424,197 445,187 465,177 489,172 518,172 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1707" d="M 1322,892 C 1292,892 1264,885 1237,872 1210,859 1185,840 1164,815 1142,790 1123,760 1108,725 1092,690 1080,650 1071,607 L 952,0 673,0 796,635 C 798,646 800,657 802,670 804,682 806,694 808,707 809,720 811,732 812,743 813,754 813,763 813,771 813,852 771,892 687,892 656,892 628,885 601,872 574,858 550,839 528,814 506,789 487,758 472,723 456,687 444,647 435,604 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 227,996 230,1019 233,1038 236,1054 238,1070 239,1078 240,1078 L 512,1078 C 512,1075 511,1066 509,1052 507,1037 505,1021 502,1002 499,984 496,965 493,945 490,926 487,910 484,897 L 487,897 C 508,928 529,957 551,982 572,1007 596,1029 622,1047 647,1064 676,1078 708,1087 739,1096 775,1101 815,1101 898,1101 963,1081 1011,1042 1059,1002 1088,944 1097,869 1118,902 1141,933 1164,961 1187,989 1213,1014 1241,1035 1269,1056 1300,1072 1335,1084 1369,1095 1408,1101 1451,1101 1543,1101 1614,1077 1663,1028 1712,979 1736,909 1736,817 1736,793 1734,766 1730,736 1725,706 1720,678 1715,653 L 1587,0 1308,0 1430,627 C 1432,637 1434,648 1436,661 1438,673 1440,685 1442,698 1444,710 1446,722 1447,734 1448,746 1448,757 1448,766 L 1448,771 C 1446,852 1404,892 1322,892 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="g" horiz-adv-x="1231" d="M 431,-425 C 361,-425 300,-419 249,-407 198,-394 154,-376 119,-352 84,-328 56,-298 36,-264 15,-228 1,-188 -7,-142 L 276,-112 C 285,-156 306,-188 337,-209 368,-229 411,-239 464,-239 503,-239 536,-234 565,-224 594,-213 619,-197 640,-176 661,-154 678,-126 693,-93 707,-59 719,-19 730,27 734,46 738,66 742,87 745,107 749,126 752,143 755,163 758,182 761,201 L 759,201 C 740,174 721,148 700,123 679,98 654,75 627,56 599,37 567,21 531,10 495,-2 453,-8 405,-8 352,-8 305,1 263,19 220,37 185,62 156,94 127,126 104,164 89,209 73,254 65,303 65,356 65,389 67,424 70,461 73,498 78,538 86,580 120,754 177,884 258,971 338,1058 447,1101 586,1101 624,1101 660,1096 695,1087 729,1078 760,1064 787,1047 814,1029 838,1007 858,982 877,956 892,926 901,893 L 903,893 C 906,910 911,930 916,950 921,971 925,991 930,1010 935,1029 939,1046 943,1059 947,1073 950,1080 951,1080 L 1216,1080 C 1215,1074 1212,1064 1209,1049 1206,1034 1202,1017 1197,997 1192,976 1188,954 1183,929 1178,904 1172,878 1167,851 L 1002,9 C 987,-62 966,-126 939,-180 912,-234 876,-279 831,-316 786,-352 730,-379 665,-398 600,-416 522,-425 431,-425 Z M 833,548 C 838,571 841,596 843,621 845,646 846,668 846,686 846,724 841,757 831,785 821,812 807,835 790,854 772,873 751,887 727,896 702,905 676,909 648,909 614,909 583,904 556,894 528,883 503,866 482,841 460,816 441,782 424,740 407,697 393,644 381,581 375,548 370,515 366,482 361,449 359,421 359,396 359,327 374,277 404,245 433,213 476,197 532,197 561,197 591,204 622,217 653,230 682,250 709,279 736,307 761,343 783,388 804,432 821,485 833,548 Z"/>
+ <glyph unicode="f" horiz-adv-x="782" d="M 528,892 L 354,0 74,0 248,892 90,892 127,1082 285,1082 307,1195 C 316,1240 329,1281 347,1317 364,1353 389,1383 420,1408 451,1433 489,1452 534,1465 579,1478 634,1484 698,1484 728,1484 757,1482 784,1479 811,1475 834,1471 853,1467 L 817,1286 C 811,1287 804,1289 796,1290 787,1291 779,1292 770,1293 761,1294 752,1294 743,1295 734,1296 727,1296 721,1296 676,1296 644,1285 624,1264 604,1243 590,1210 581,1167 L 565,1082 778,1082 741,892 528,892 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="S" horiz-adv-x="1311" d="M 600,-20 C 510,-20 431,-12 363,4 295,20 238,44 191,77 144,109 107,149 80,197 53,245 34,301 25,365 L 314,414 C 321,378 331,347 346,320 361,293 380,271 405,254 430,236 460,223 495,214 530,205 572,201 620,201 671,201 717,204 760,211 802,218 838,229 869,245 899,260 923,281 940,306 957,331 965,363 965,400 965,431 959,458 946,480 933,502 915,521 890,537 865,553 834,567 797,580 760,593 716,605 667,618 604,635 546,653 491,674 436,695 388,721 347,753 306,784 273,823 249,869 225,914 213,970 213,1037 213,1100 228,1157 258,1206 288,1255 329,1296 381,1329 432,1362 493,1388 563,1405 632,1422 707,1430 786,1430 872,1430 948,1422 1013,1406 1078,1389 1133,1366 1179,1337 1225,1307 1262,1271 1289,1230 1316,1188 1335,1142 1345,1091 L 1057,1024 C 1042,1084 1011,1132 962,1168 913,1203 849,1221 770,1221 726,1221 688,1217 655,1208 622,1199 594,1187 572,1172 549,1157 532,1138 521,1117 510,1096 504,1072 504,1047 504,1017 512,992 527,972 542,951 562,934 589,919 615,904 646,891 683,880 720,869 760,857 804,845 838,836 873,826 909,815 944,804 979,791 1012,776 1045,761 1077,743 1106,723 1135,702 1161,678 1183,650 1205,621 1222,589 1235,552 1248,515 1254,472 1254,423 1254,353 1241,291 1214,236 1187,181 1147,135 1093,97 1039,59 971,30 889,10 807,-10 711,-20 600,-20 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="Q" horiz-adv-x="1456" d="M 928,1430 C 1027,1430 1115,1417 1193,1390 1271,1363 1337,1324 1392,1274 1446,1223 1487,1162 1516,1091 1545,1020 1559,940 1559,851 1559,818 1557,785 1554,750 1551,715 1546,681 1539,649 1521,559 1493,477 1455,403 1416,328 1369,263 1313,207 1257,150 1193,104 1121,68 1048,31 969,6 882,-8 895,-73 916,-120 947,-149 977,-178 1022,-193 1081,-193 1092,-193 1105,-193 1118,-193 1131,-193 1145,-192 1158,-191 1171,-190 1184,-188 1197,-187 1210,-185 1221,-183 1231,-181 L 1186,-375 C 1167,-382 1142,-388 1112,-393 1081,-398 1050,-400 1017,-400 943,-400 880,-391 828,-372 776,-353 733,-327 699,-293 665,-258 639,-217 621,-169 603,-121 591,-68 584,-9 505,4 436,27 376,61 315,94 265,136 224,187 183,237 152,295 131,360 110,425 100,496 100,573 100,604 102,635 105,667 108,699 112,731 119,764 140,864 173,955 219,1037 265,1119 322,1189 391,1248 460,1306 539,1351 630,1383 720,1414 819,1430 928,1430 Z M 914,1197 C 843,1197 779,1186 723,1165 667,1144 619,1113 578,1073 537,1033 502,984 475,926 448,867 427,801 413,727 408,702 405,678 403,653 401,628 400,604 400,581 400,458 430,366 490,305 550,243 634,212 741,212 813,212 877,223 933,245 989,266 1038,297 1079,338 1120,379 1155,428 1182,486 1209,543 1229,608 1243,680 1248,704 1251,730 1253,757 1254,784 1255,808 1255,827 1255,889 1247,943 1231,989 1215,1035 1192,1074 1163,1105 1134,1136 1098,1159 1056,1174 1013,1189 966,1197 914,1197 Z"/>
+ <glyph unicode="O" horiz-adv-x="1456" d="M 928,1430 C 1027,1430 1115,1417 1193,1390 1271,1363 1337,1324 1392,1274 1446,1223 1487,1162 1516,1091 1545,1020 1559,940 1559,851 1559,818 1557,785 1554,750 1551,715 1546,681 1539,649 1518,546 1485,454 1438,372 1391,289 1332,219 1263,161 1194,103 1114,58 1024,27 933,-4 834,-20 727,-20 625,-20 535,-5 457,24 379,53 314,93 261,146 208,198 168,260 141,333 114,406 100,486 100,573 100,604 102,635 105,667 108,699 112,731 119,764 140,864 173,955 219,1037 265,1119 322,1189 391,1248 460,1306 539,1351 630,1383 720,1414 819,1430 928,1430 Z M 914,1197 C 843,1197 779,1186 723,1165 667,1144 619,1113 578,1073 537,1033 502,984 475,926 448,867 427,801 413,727 408,702 405,678 403,653 401,628 400,604 400,581 400,458 430,366 490,305 550,243 634,212 741,212 813,212 877,223 933,245 989,266 1038,297 1079,338 1120,379 1155,428 1182,486 1209,543 1229,608 1243,680 1248,704 1251,730 1253,757 1254,784 1255,808 1255,827 1255,889 1247,943 1231,989 1215,1035 1192,1074 1163,1105 1134,1136 1098,1159 1056,1174 1013,1189 966,1197 914,1197 Z"/>
+ <glyph unicode="I" horiz-adv-x="583" d="M 36,0 L 309,1409 604,1409 330,0 36,0 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="A" horiz-adv-x="1377" d="M 1039,0 L 984,360 447,360 252,0 -42,0 745,1409 1093,1409 1331,0 1039,0 Z M 894,1034 C 893,1044 891,1057 889,1072 887,1087 885,1102 883,1118 881,1133 879,1148 878,1162 877,1175 876,1185 876,1192 873,1184 869,1172 862,1156 855,1139 847,1121 838,1101 829,1081 819,1060 808,1039 797,1018 787,998 778,980 L 566,582 961,582 894,1034 Z"/>
+ <glyph unicode="." horiz-adv-x="358" d="M 46,0 L 105,305 394,305 335,0 46,0 Z"/>
+ <glyph unicode="," horiz-adv-x="424" d="M 347,66 C 338,21 328,-19 316,-56 304,-93 290,-126 275,-158 260,-188 243,-217 225,-243 206,-269 186,-294 165,-317 L -20,-317 C 3,-294 26,-269 47,-243 68,-217 88,-190 105,-163 122,-136 137,-108 149,-81 161,-54 170,-27 175,0 L 46,0 105,305 394,305 347,66 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1226" y="14291" width="10231" height="5246"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 1716,14317 C 1484,14317 1252,14549 1252,14781 L 1252,19045 C 1252,19277 1484,19510 1716,19510 L 10965,19510 C 11197,19510 11429,19277 11429,19045 L 11429,14781 C 11429,14549 11197,14317 10965,14317 L 1716,14317 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="4993" y="14916" width="2651" height="1352"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 5235,14942 C 5127,14942 5019,15050 5019,15158 L 5019,16024 C 5019,16132 5127,16241 5235,16241 L 7400,16241 C 7508,16241 7617,16132 7617,16024 L 7617,15158 C 7617,15050 7508,14942 7400,14942 L 5235,14942 Z M 5019,14942 L 5019,14942 Z M 7617,16241 L 7617,16241 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 5235,14942 C 5127,14942 5019,15050 5019,15158 L 5019,16024 C 5019,16132 5127,16241 5235,16241 L 7400,16241 C 7508,16241 7617,16132 7617,16024 L 7617,15158 C 7617,15050 7508,14942 7400,14942 L 5235,14942 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5020" y="14942" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5603" y="15690"><tspan fill="rgb(0,0,0)" stroke="none">Processed</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1793" y="14917" width="2651" height="1352"/>
+ <path fill="rgb(204,153,153)" stroke="none" d="M 2035,14943 C 1927,14943 1819,15051 1819,15159 L 1819,16025 C 1819,16133 1927,16242 2035,16242 L 4200,16242 C 4308,16242 4417,16133 4417,16025 L 4417,15159 C 4417,15051 4308,14943 4200,14943 L 2035,14943 Z M 1819,14943 L 1819,14943 Z M 4417,16242 L 4417,16242 Z"/>
+ <path fill="none" stroke="rgb(153,0,0)" stroke-width="51" stroke-linejoin="round" d="M 2035,14943 C 1927,14943 1819,15051 1819,15159 L 1819,16025 C 1819,16133 1927,16242 2035,16242 L 4200,16242 C 4308,16242 4417,16133 4417,16025 L 4417,15159 C 4417,15051 4308,14943 4200,14943 L 2035,14943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1820" y="14943" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2708" y="15691"><tspan fill="rgb(0,0,0)" stroke="none">Failed</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8193" y="14917" width="2651" height="1352"/>
+ <path fill="rgb(204,204,153)" stroke="none" d="M 8435,14943 C 8327,14943 8219,15051 8219,15159 L 8219,16025 C 8219,16133 8327,16242 8435,16242 L 10600,16242 C 10708,16242 10817,16133 10817,16025 L 10817,15159 C 10817,15051 10708,14943 10600,14943 L 8435,14943 Z M 8219,14943 L 8219,14943 Z M 10817,16242 L 10817,16242 Z"/>
+ <path fill="none" stroke="rgb(102,51,0)" stroke-width="51" stroke-linejoin="round" d="M 8435,14943 C 8327,14943 8219,15051 8219,15159 L 8219,16025 C 8219,16133 8327,16242 8435,16242 L 10600,16242 C 10708,16242 10817,16133 10817,16025 L 10817,15159 C 10817,15051 10708,14943 10600,14943 L 8435,14943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8220" y="14943" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="8966" y="15691"><tspan fill="rgb(0,0,0)" stroke="none">Skipped</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1240" y="4450" width="10218" height="5245"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 1730,4476 C 1498,4476 1266,4708 1266,4940 L 1266,9203 C 1266,9435 1498,9668 1730,9668 L 10966,9668 C 11198,9668 11431,9435 11431,9203 L 11431,4940 C 11431,4708 11198,4476 10966,4476 L 1730,4476 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5006" y="5075" width="2651" height="1352"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 5248,5101 C 5140,5101 5032,5209 5032,5317 L 5032,6183 C 5032,6291 5140,6400 5248,6400 L 7413,6400 C 7521,6400 7630,6291 7630,6183 L 7630,5317 C 7630,5209 7521,5101 7413,5101 L 5248,5101 Z M 5032,5101 L 5032,5101 Z M 7630,6400 L 7630,6400 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 5248,5101 C 5140,5101 5032,5209 5032,5317 L 5032,6183 C 5032,6291 5140,6400 5248,6400 L 7413,6400 C 7521,6400 7630,6291 7630,6183 L 7630,5317 C 7630,5209 7521,5101 7413,5101 L 5248,5101 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5033" y="5101" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5908" y="5849"><tspan fill="rgb(0,0,0)" stroke="none">Ready</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8206" y="5076" width="2651" height="1352"/>
+ <path fill="rgb(204,153,102)" stroke="none" d="M 8448,5102 C 8340,5102 8232,5210 8232,5318 L 8232,6184 C 8232,6292 8340,6401 8448,6401 L 10613,6401 C 10721,6401 10830,6292 10830,6184 L 10830,5318 C 10830,5210 10721,5102 10613,5102 L 8448,5102 Z M 8232,5102 L 8232,5102 Z M 10830,6401 L 10830,6401 Z"/>
+ <path fill="none" stroke="rgb(128,25,0)" stroke-width="51" stroke-linejoin="round" d="M 8448,5102 C 8340,5102 8232,5210 8232,5318 L 8232,6184 C 8232,6292 8340,6401 8448,6401 L 10613,6401 C 10721,6401 10830,6292 10830,6184 L 10830,5318 C 10830,5210 10721,5102 10613,5102 L 8448,5102 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8233" y="5102" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9231" y="5850"><tspan fill="rgb(0,0,0)" stroke="none">Skip</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1319" y="6523" width="10112" height="3115"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1621" y="7216"><tspan fill="rgb(102,102,102)" stroke="none">Queue implementations report a “QueueStatus” for all of </tspan></tspan><tspan class="TextPosition" x="1868" y="7610"><tspan fill="rgb(102,102,102)" stroke="none">the elements which are in the input queue at all times.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1883" y="8398"><tspan fill="rgb(102,102,102)" stroke="none">Skip elements go directly to the output queue without </tspan></tspan><tspan class="TextPosition" x="1786" y="8792"><tspan fill="rgb(102,102,102)" stroke="none">processing, and the scheduler only ever processes the </tspan></tspan><tspan class="TextPosition" x="4988" y="9186"><tspan fill="rgb(102,102,102)" stroke="none">Ready elements.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1806" y="5077" width="2651" height="1352"/>
+ <path fill="rgb(153,153,204)" stroke="none" d="M 2048,5103 C 1940,5103 1832,5211 1832,5319 L 1832,6185 C 1832,6293 1940,6402 2048,6402 L 4213,6402 C 4321,6402 4430,6293 4430,6185 L 4430,5319 C 4430,5211 4321,5103 4213,5103 L 2048,5103 Z M 1832,5103 L 1832,5103 Z M 4430,6402 L 4430,6402 Z"/>
+ <path fill="none" stroke="rgb(0,0,153)" stroke-width="51" stroke-linejoin="round" d="M 2048,5103 C 1940,5103 1832,5211 1832,5319 L 1832,6185 C 1832,6293 1940,6402 2048,6402 L 4213,6402 C 4321,6402 4430,6293 4430,6185 L 4430,5319 C 4430,5211 4321,5103 4213,5103 L 2048,5103 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1833" y="5103" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2835" y="5851"><tspan fill="rgb(0,0,0)" stroke="none">Wait</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5006" y="1295" width="2651" height="1351"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 5248,1321 C 5140,1321 5032,1429 5032,1537 L 5032,2402 C 5032,2510 5140,2619 5248,2619 L 7413,2619 C 7521,2619 7630,2510 7630,2402 L 7630,1537 C 7630,1429 7521,1321 7413,1321 L 5248,1321 Z M 5032,1321 L 5032,1321 Z M 7630,2619 L 7630,2619 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5248,1321 C 5140,1321 5032,1429 5032,1537 L 5032,2402 C 5032,2510 5140,2619 5248,2619 L 7413,2619 C 7521,2619 7630,2510 7630,2402 L 7630,1537 C 7630,1429 7521,1321 7413,1321 L 5248,1321 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5033" y="1322" width="2598" height="1298"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5534" y="2070"><tspan fill="rgb(0,0,0)" stroke="none">Elements In</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6102" y="2593" width="459" height="2509"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,2619 L 6331,4767"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 6332,5101 L 6560,4737 6103,4737 6332,5101 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2953" y="2593" width="3405" height="2512"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,2619 C 6331,4501 3542,3411 3171,4775"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 3132,5103 L 3407,4773 2954,4711 3132,5103 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6305" y="2593" width="3406" height="2510"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,2619 C 6331,4482 9124,3391 9491,4773"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 9532,5102 L 9709,4711 9256,4771 9532,5102 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5006" y="11004" width="2651" height="1352"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 5248,11030 C 5140,11030 5032,11138 5032,11246 L 5032,12112 C 5032,12220 5140,12329 5248,12329 L 7413,12329 C 7521,12329 7630,12220 7630,12112 L 7630,11246 C 7630,11138 7521,11030 7413,11030 L 5248,11030 Z M 5032,11030 L 5032,11030 Z M 7630,12329 L 7630,12329 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5248,11030 C 5140,11030 5032,11138 5032,11246 L 5032,12112 C 5032,12220 5140,12329 5248,12329 L 7413,12329 C 7521,12329 7630,12220 7630,12112 L 7630,11246 C 7630,11138 7521,11030 7413,11030 L 5248,11030 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5033" y="11030" width="2598" height="1299"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="5779" y="11619"><tspan fill="rgb(0,0,0)" stroke="none">Element </tspan></tspan><tspan class="TextPosition" x="5568" y="11937"><tspan fill="rgb(0,0,0)" stroke="none">Processing</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6103" y="9642" width="459" height="1390"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6348,9668 C 6348,10709 6336,10191 6332,10687"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 6332,11030 L 6561,10666 6104,10665 6332,11030 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6089" y="12302" width="459" height="2642"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,12328 C 6331,14288 6320,13143 6318,14589"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 6319,14942 L 6547,14578 6090,14577 6319,14942 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2934" y="12302" width="3424" height="2643"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,12328 C 6331,14290 3507,13134 3154,14612"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 3119,14943 L 3388,14608 2935,14554 3119,14943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6305" y="12302" width="3399" height="2642"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6331,12328 C 6331,14270 9136,13112 9483,14612"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 9519,14943 L 9703,14554 9249,14608 9519,14943 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1320" y="16333" width="10112" height="3115"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1992" y="16829"><tspan fill="rgb(102,102,102)" stroke="none">After elements are either processed or skipped, they </tspan></tspan><tspan class="TextPosition" x="1734" y="17223"><tspan fill="rgb(102,102,102)" stroke="none">move to the Queue’s output queue where the scheduler </tspan></tspan><tspan class="TextPosition" x="1778" y="17617"><tspan fill="rgb(102,102,102)" stroke="none">can pick them up and and move them along to the next </tspan></tspan><tspan class="TextPosition" x="5779" y="18011"><tspan fill="rgb(102,102,102)" stroke="none">Queue.</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1774" y="18799"><tspan fill="rgb(102,102,102)" stroke="none">Elements which have passed through a Queue are also </tspan></tspan><tspan class="TextPosition" x="2534" y="19193"><tspan fill="rgb(102,102,102)" stroke="none">kept in status lists for bookkeeping purposes.</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1320" y="3179" width="3634" height="1275"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="2108" y="3937"><tspan fill="rgb(52,101,164)" stroke="none">Input Queue</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1321" y="12990" width="3634" height="1275"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="1961" y="13748"><tspan fill="rgb(52,101,164)" stroke="none">Output Queue</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-scheduler-queues.svg b/doc/source/images/arch-scheduler-queues.svg
new file mode 100644
index 000000000..8732b9fc4
--- /dev/null
+++ b/doc/source/images/arch-scheduler-queues.svg
@@ -0,0 +1,488 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="325.12mm" height="165.1mm" viewBox="0 0 32512 16510" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="32512" height="16510"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="O" horiz-adv-x="1430" d="M 1507,711 C 1507,601 1491,501 1458,411 1425,321 1378,244 1317,180 1256,116 1181,67 1093,32 1004,-3 904,-20 793,-20 675,-20 572,-2 484,35 395,71 321,122 262,187 203,252 158,329 129,418 99,507 84,605 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,571 408,510 425,449 451,396 486,352 521,308 564,274 615,249 666,224 726,212 793,212 865,212 927,225 979,250 1031,275 1074,309 1108,354 1141,398 1166,451 1182,512 1198,573 1206,639 1206,711 Z"/>
+ <glyph unicode="I" horiz-adv-x="292" d="M 137,0 L 137,1409 432,1409 432,0 137,0 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="r" horiz-adv-x="847" d="M 844,853 C 829,856 812,860 795,863 778,866 756,868 730,868 648,868 581,839 530,781 478,723 440,634 417,514 L 316,0 35,0 196,830 C 201,853 205,877 209,900 213,923 217,946 221,968 224,990 228,1011 231,1031 234,1050 236,1067 238,1082 L 506,1082 C 504,1067 502,1050 500,1030 497,1010 495,990 492,969 489,948 487,929 484,910 481,891 478,874 476,861 L 480,861 C 503,902 525,938 548,969 570,999 593,1024 618,1044 642,1063 668,1078 696,1088 723,1097 754,1102 787,1102 795,1102 804,1102 814,1101 823,1100 833,1098 843,1097 852,1096 861,1094 870,1093 878,1091 885,1089 890,1088 L 844,853 Z"/>
+ <glyph unicode="l" horiz-adv-x="583" d="M 35,0 L 323,1484 604,1484 315,0 35,0 Z"/>
+ <glyph unicode="k" horiz-adv-x="1191" d="M 728,0 L 540,497 400,422 315,0 35,0 323,1484 604,1484 437,634 902,1082 1224,1082 751,660 1026,0 728,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="583" d="M 282,1277 L 323,1484 604,1484 563,1277 282,1277 Z M 35,0 L 245,1082 526,1082 315,0 35,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="1138" d="M 601,1484 L 522,1079 C 519,1065 516,1050 513,1034 510,1017 506,1001 503,985 499,969 495,953 492,938 489,923 486,909 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 818,878 780,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 321,1484 601,1484 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="d" horiz-adv-x="1271" d="M 749,160 C 725,129 700,102 675,79 650,56 623,38 595,23 566,8 535,-3 502,-11 469,-17 432,-21 392,-21 339,-21 291,-12 250,7 208,26 173,52 145,85 116,118 95,158 80,204 65,250 58,300 58,354 58,384 60,416 63,451 66,486 71,524 79,566 98,661 123,742 156,810 188,877 226,933 269,976 312,1019 359,1051 412,1072 465,1092 521,1102 580,1102 629,1102 671,1097 707,1087 742,1076 773,1062 798,1044 823,1026 843,1005 859,981 874,957 886,931 894,904 L 899,904 C 900,917 903,937 907,964 911,991 917,1025 925,1066 L 1009,1484 1286,1484 1048,231 C 1041,190 1035,151 1030,112 1025,73 1022,36 1019,0 L 738,0 C 738,5 738,13 739,24 739,35 740,47 741,62 742,77 744,92 746,109 748,126 750,143 753,160 L 749,160 Z M 515,172 C 550,172 584,178 616,189 647,200 676,219 703,246 730,273 753,309 774,355 795,400 812,458 825,527 830,556 835,584 838,610 841,635 842,659 842,681 842,761 826,819 795,856 764,892 717,910 654,910 623,910 593,905 564,894 535,883 509,865 485,839 461,812 439,777 420,733 401,688 385,632 373,565 367,531 363,500 360,473 357,445 355,418 355,393 355,322 368,268 393,230 418,191 459,172 515,172 Z"/>
+ <glyph unicode="c" horiz-adv-x="1046" d="M 536,173 C 591,173 637,191 673,226 709,261 738,312 759,381 L 1030,331 C 1014,278 992,230 965,187 937,144 903,107 862,76 821,45 772,22 716,5 659,-12 594,-20 520,-20 443,-20 375,-10 318,11 261,32 213,61 176,99 138,136 110,181 91,233 72,285 63,342 63,405 63,432 64,461 67,492 69,523 74,554 81,584 98,658 119,722 145,777 170,831 199,877 231,916 262,954 296,985 333,1010 370,1034 407,1053 446,1067 485,1080 524,1090 564,1095 603,1100 642,1102 680,1102 751,1102 813,1092 865,1073 917,1054 961,1028 996,995 1031,962 1057,923 1076,880 1094,836 1105,790 1109,741 L 825,718 C 822,778 807,825 780,859 753,892 712,909 658,909 621,909 588,903 561,891 533,878 508,859 487,832 466,805 447,770 430,728 413,685 396,634 381,575 378,562 376,548 373,533 370,518 368,503 366,488 363,473 361,458 360,445 359,431 358,418 358,407 358,326 373,267 403,230 433,192 477,173 536,173 Z"/>
+ <glyph unicode="a" horiz-adv-x="1073" d="M 1065,9 C 1037,-2 1009,-7 980,-7 951,-7 922,-7 892,-7 825,-7 774,7 738,35 702,63 684,100 684,146 684,156 684,167 685,178 686,189 687,199 689,210 L 683,210 C 660,175 637,143 614,115 591,87 565,63 537,44 508,24 476,8 441,-3 406,-14 364,-20 317,-20 265,-20 220,-12 182,5 143,22 111,44 86,72 61,100 42,131 29,168 16,204 10,241 10,279 10,333 18,380 33,419 48,459 68,493 94,521 120,549 151,572 186,589 221,607 258,621 298,631 338,641 380,648 423,652 466,656 509,658 551,658 L 742,658 750,694 C 755,714 758,732 760,747 762,762 763,777 763,790 763,834 752,867 729,888 706,909 675,919 636,919 617,919 597,918 576,915 555,912 536,906 518,897 499,887 483,873 468,854 453,835 441,809 433,777 L 170,808 C 181,853 198,893 222,929 246,965 277,996 316,1022 355,1047 401,1067 455,1081 508,1095 570,1102 641,1102 779,1102 880,1078 945,1029 1009,980 1041,906 1041,807 1041,786 1038,762 1033,733 1028,704 1022,677 1017,650 L 946,297 C 944,286 942,274 941,261 939,248 938,236 938,225 938,209 941,197 948,188 955,179 962,173 971,169 980,165 988,163 997,162 1006,161 1012,160 1017,160 1026,160 1035,160 1044,161 1052,162 1064,164 1079,167 L 1065,9 Z M 711,502 L 549,502 C 471,502 410,487 365,456 320,425 297,382 297,325 297,299 301,277 309,258 317,239 328,223 341,211 354,199 370,190 388,185 405,179 424,176 443,176 462,176 484,180 508,187 531,195 555,208 578,226 601,244 622,268 642,298 662,328 678,366 689,410 L 711,502 Z"/>
+ <glyph unicode="T" horiz-adv-x="1257" d="M 895,1181 L 665,0 370,0 600,1181 145,1181 189,1409 1395,1409 1351,1181 895,1181 Z"/>
+ <glyph unicode="P" horiz-adv-x="1337" d="M 850,1409 C 933,1409 1006,1399 1071,1380 1135,1361 1189,1333 1234,1296 1278,1259 1312,1215 1335,1163 1358,1111 1369,1052 1369,987 1369,911 1356,843 1329,782 1302,721 1263,670 1214,628 1165,585 1105,553 1036,530 967,507 890,496 805,496 L 428,496 330,0 36,0 309,1409 850,1409 Z M 471,723 L 760,723 C 863,723 941,742 993,781 1044,820 1070,883 1070,971 1070,1008 1064,1039 1052,1066 1040,1092 1023,1114 1001,1131 979,1148 953,1160 923,1168 892,1176 859,1180 822,1180 L 560,1180 471,723 Z"/>
+ <glyph unicode="F" horiz-adv-x="1257" d="M 560,1181 L 475,745 1143,745 1099,517 431,517 330,0 36,0 309,1409 1295,1409 1251,1181 560,1181 Z"/>
+ <glyph unicode="B" horiz-adv-x="1363" d="M 310,1409 L 894,1409 C 981,1409 1057,1402 1121,1387 1184,1372 1237,1351 1279,1323 1321,1295 1352,1261 1373,1221 1393,1180 1403,1134 1403,1083 1403,1034 1395,991 1380,953 1365,914 1343,881 1315,853 1286,824 1252,801 1212,782 1172,763 1128,748 1079,738 1126,730 1168,717 1204,698 1240,679 1270,657 1295,630 1319,603 1337,572 1350,539 1362,505 1368,469 1368,431 1368,348 1351,278 1318,223 1284,168 1239,124 1182,91 1125,58 1058,34 982,21 906,7 826,0 741,0 L 36,0 310,1409 Z M 494,841 L 788,841 C 846,841 896,845 937,852 978,859 1011,871 1037,887 1062,903 1081,924 1093,949 1104,974 1110,1003 1110,1038 1110,1067 1105,1092 1094,1112 1083,1131 1067,1147 1046,1159 1025,1170 999,1178 968,1183 937,1188 901,1190 862,1190 L 561,1190 494,841 Z M 373,219 L 701,219 C 764,219 819,222 866,229 913,236 951,247 982,264 1012,281 1035,303 1050,331 1065,359 1072,394 1072,437 1072,497 1049,543 1004,575 959,607 885,623 782,623 L 452,623 373,219 Z"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59 id60 id61 id62"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7943" y="3824" width="3881" height="8934"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 8311,3850 C 8140,3850 7969,4021 7969,4192 L 7969,12388 C 7969,12559 8140,12731 8311,12731 L 11454,12731 C 11625,12731 11797,12559 11797,12388 L 11797,4192 C 11797,4021 11625,3850 11454,3850 L 8311,3850 Z M 7969,3850 L 7969,3850 Z M 11797,12731 L 11797,12731 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 8311,3850 C 8140,3850 7969,4021 7969,4192 L 7969,12388 C 7969,12559 8140,12731 8311,12731 L 11454,12731 C 11625,12731 11797,12559 11797,12388 L 11797,4192 C 11797,4021 11625,3850 11454,3850 L 8311,3850 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8595" y="4825" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8832,4851 C 8726,4851 8621,4956 8621,5062 L 8621,5910 C 8621,6016 8726,6122 8832,6122 L 10950,6122 C 11056,6122 11162,6016 11162,5910 L 11162,5062 C 11162,4956 11056,4851 10950,4851 L 8832,4851 Z M 8621,4851 L 8621,4851 Z M 11162,6122 L 11162,6122 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8832,4851 C 8726,4851 8621,4956 8621,5062 L 8621,5910 C 8621,6016 8726,6122 8832,6122 L 10950,6122 C 11056,6122 11162,6016 11162,5910 L 11162,5062 C 11162,4956 11056,4851 10950,4851 L 8832,4851 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8621" y="4887" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9339" y="5567"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8596" y="6726" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8833,6752 C 8727,6752 8622,6857 8622,6963 L 8622,7811 C 8622,7917 8727,8023 8833,8023 L 10951,8023 C 11057,8023 11163,7917 11163,7811 L 11163,6963 C 11163,6857 11057,6752 10951,6752 L 8833,6752 Z M 8622,6752 L 8622,6752 Z M 11163,8023 L 11163,8023 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8833,6752 C 8727,6752 8622,6857 8622,6963 L 8622,7811 C 8622,7917 8727,8023 8833,8023 L 10951,8023 C 11057,8023 11163,7917 11163,7811 L 11163,6963 C 11163,6857 11057,6752 10951,6752 L 8833,6752 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8622" y="6788" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9340" y="7468"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8597" y="8627" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8834,8653 C 8728,8653 8623,8758 8623,8864 L 8623,9712 C 8623,9818 8728,9924 8834,9924 L 10952,9924 C 11058,9924 11164,9818 11164,9712 L 11164,8864 C 11164,8758 11058,8653 10952,8653 L 8834,8653 Z M 8623,8653 L 8623,8653 Z M 11164,9924 L 11164,9924 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8834,8653 C 8728,8653 8623,8758 8623,8864 L 8623,9712 C 8623,9818 8728,9924 8834,9924 L 10952,9924 C 11058,9924 11164,9818 11164,9712 L 11164,8864 C 11164,8758 11058,8653 10952,8653 L 8834,8653 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8623" y="8689" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9341" y="9369"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8598" y="10528" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 8835,10554 C 8729,10554 8624,10659 8624,10765 L 8624,11613 C 8624,11719 8729,11825 8835,11825 L 10953,11825 C 11059,11825 11165,11719 11165,11613 L 11165,10765 C 11165,10659 11059,10554 10953,10554 L 8835,10554 Z M 8624,10554 L 8624,10554 Z M 11165,11825 L 11165,11825 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8835,10554 C 8729,10554 8624,10659 8624,10765 L 8624,11613 C 8624,11719 8729,11825 8835,11825 L 10953,11825 C 11059,11825 11165,11719 11165,11613 L 11165,10765 C 11165,10659 11059,10554 10953,10554 L 8835,10554 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8624" y="10590" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="9342" y="11270"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7970" y="3850" width="3811" height="1144"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="370px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="9539" y="4550"><tspan fill="rgb(102,102,102)" stroke="none">Pull</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14343" y="3824" width="3881" height="8933"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 14711,3850 C 14540,3850 14369,4021 14369,4192 L 14369,12387 C 14369,12558 14540,12729 14711,12729 L 17854,12729 C 18025,12729 18197,12558 18197,12387 L 18197,4192 C 18197,4021 18025,3850 17854,3850 L 14711,3850 Z M 14369,3850 L 14369,3850 Z M 18197,12730 L 18197,12730 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 14711,3850 C 14540,3850 14369,4021 14369,4192 L 14369,12387 C 14369,12558 14540,12729 14711,12729 L 17854,12729 C 18025,12729 18197,12558 18197,12387 L 18197,4192 C 18197,4021 18025,3850 17854,3850 L 14711,3850 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14995" y="4826" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 15232,4852 C 15126,4852 15021,4957 15021,5063 L 15021,5911 C 15021,6017 15126,6123 15232,6123 L 17350,6123 C 17456,6123 17562,6017 17562,5911 L 17562,5063 C 17562,4957 17456,4852 17350,4852 L 15232,4852 Z M 15021,4852 L 15021,4852 Z M 17562,6123 L 17562,6123 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15232,4852 C 15126,4852 15021,4957 15021,5063 L 15021,5911 C 15021,6017 15126,6123 15232,6123 L 17350,6123 C 17456,6123 17562,6017 17562,5911 L 17562,5063 C 17562,4957 17456,4852 17350,4852 L 15232,4852 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15021" y="4888" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15739" y="5568"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14996" y="6727" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 15233,6753 C 15127,6753 15022,6858 15022,6964 L 15022,7812 C 15022,7918 15127,8024 15233,8024 L 17351,8024 C 17457,8024 17563,7918 17563,7812 L 17563,6964 C 17563,6858 17457,6753 17351,6753 L 15233,6753 Z M 15022,6753 L 15022,6753 Z M 17563,8024 L 17563,8024 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15233,6753 C 15127,6753 15022,6858 15022,6964 L 15022,7812 C 15022,7918 15127,8024 15233,8024 L 17351,8024 C 17457,8024 17563,7918 17563,7812 L 17563,6964 C 17563,6858 17457,6753 17351,6753 L 15233,6753 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15022" y="6789" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15740" y="7469"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14997" y="8628" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 15234,8654 C 15128,8654 15023,8759 15023,8865 L 15023,9713 C 15023,9819 15128,9925 15234,9925 L 17352,9925 C 17458,9925 17564,9819 17564,9713 L 17564,8865 C 17564,8759 17458,8654 17352,8654 L 15234,8654 Z M 15023,8654 L 15023,8654 Z M 17564,9925 L 17564,9925 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15234,8654 C 15128,8654 15023,8759 15023,8865 L 15023,9713 C 15023,9819 15128,9925 15234,9925 L 17352,9925 C 17458,9925 17564,9819 17564,9713 L 17564,8865 C 17564,8759 17458,8654 17352,8654 L 15234,8654 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15023" y="8690" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15741" y="9370"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14998" y="10529" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 15235,10555 C 15129,10555 15024,10660 15024,10766 L 15024,11614 C 15024,11720 15129,11826 15235,11826 L 17353,11826 C 17459,11826 17565,11720 17565,11614 L 17565,10766 C 17565,10660 17459,10555 17353,10555 L 15235,10555 Z M 15024,10555 L 15024,10555 Z M 17565,11826 L 17565,11826 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 15235,10555 C 15129,10555 15024,10660 15024,10766 L 15024,11614 C 15024,11720 15129,11826 15235,11826 L 17353,11826 C 17459,11826 17565,11720 17565,11614 L 17565,10766 C 17565,10660 17459,10555 17353,10555 L 15235,10555 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="15024" y="10591" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="15742" y="11271"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="14370" y="3851" width="3811" height="1144"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="370px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="15786" y="4551"><tspan fill="rgb(102,102,102)" stroke="none">Fetch</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20643" y="3826" width="3881" height="8932"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 21011,3852 C 20840,3852 20669,4023 20669,4194 L 20669,12388 C 20669,12559 20840,12731 21011,12731 L 24154,12731 C 24325,12731 24497,12559 24497,12388 L 24497,4194 C 24497,4023 24325,3852 24154,3852 L 21011,3852 Z M 20669,3852 L 20669,3852 Z M 24497,12731 L 24497,12731 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 21011,3852 C 20840,3852 20669,4023 20669,4194 L 20669,12388 C 20669,12559 20840,12731 21011,12731 L 24154,12731 C 24325,12731 24497,12559 24497,12388 L 24497,4194 C 24497,4023 24325,3852 24154,3852 L 21011,3852 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21295" y="4827" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 21532,4853 C 21426,4853 21321,4958 21321,5064 L 21321,5912 C 21321,6018 21426,6124 21532,6124 L 23650,6124 C 23756,6124 23862,6018 23862,5912 L 23862,5064 C 23862,4958 23756,4853 23650,4853 L 21532,4853 Z M 21321,4853 L 21321,4853 Z M 23862,6124 L 23862,6124 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 21532,4853 C 21426,4853 21321,4958 21321,5064 L 21321,5912 C 21321,6018 21426,6124 21532,6124 L 23650,6124 C 23756,6124 23862,6018 23862,5912 L 23862,5064 C 23862,4958 23756,4853 23650,4853 L 21532,4853 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id25">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21321" y="4889" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="22039" y="5569"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id26">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21296" y="6728" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 21533,6754 C 21427,6754 21322,6859 21322,6965 L 21322,7813 C 21322,7919 21427,8025 21533,8025 L 23651,8025 C 23757,8025 23863,7919 23863,7813 L 23863,6965 C 23863,6859 23757,6754 23651,6754 L 21533,6754 Z M 21322,6754 L 21322,6754 Z M 23863,8025 L 23863,8025 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 21533,6754 C 21427,6754 21322,6859 21322,6965 L 21322,7813 C 21322,7919 21427,8025 21533,8025 L 23651,8025 C 23757,8025 23863,7919 23863,7813 L 23863,6965 C 23863,6859 23757,6754 23651,6754 L 21533,6754 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id27">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21322" y="6790" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="22040" y="7470"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id28">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21297" y="8629" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 21534,8655 C 21428,8655 21323,8760 21323,8866 L 21323,9714 C 21323,9820 21428,9926 21534,9926 L 23652,9926 C 23758,9926 23864,9820 23864,9714 L 23864,8866 C 23864,8760 23758,8655 23652,8655 L 21534,8655 Z M 21323,8655 L 21323,8655 Z M 23864,9926 L 23864,9926 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 21534,8655 C 21428,8655 21323,8760 21323,8866 L 21323,9714 C 21323,9820 21428,9926 21534,9926 L 23652,9926 C 23758,9926 23864,9820 23864,9714 L 23864,8866 C 23864,8760 23758,8655 23652,8655 L 21534,8655 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id29">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21323" y="8691" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="22041" y="9371"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id30">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21298" y="10530" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 21535,10556 C 21429,10556 21324,10661 21324,10767 L 21324,11615 C 21324,11721 21429,11827 21535,11827 L 23653,11827 C 23759,11827 23865,11721 23865,11615 L 23865,10767 C 23865,10661 23759,10556 23653,10556 L 21535,10556 Z M 21324,10556 L 21324,10556 Z M 23865,11827 L 23865,11827 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 21535,10556 C 21429,10556 21324,10661 21324,10767 L 21324,11615 C 21324,11721 21429,11827 21535,11827 L 23653,11827 C 23759,11827 23865,11721 23865,11615 L 23865,10767 C 23865,10661 23759,10556 23653,10556 L 21535,10556 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id31">
+ <rect class="BoundingBox" stroke="none" fill="none" x="21324" y="10592" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="22042" y="11272"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id32">
+ <rect class="BoundingBox" stroke="none" fill="none" x="20670" y="3852" width="3811" height="1144"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="370px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="22116" y="4552"><tspan fill="rgb(102,102,102)" stroke="none">Build</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id33">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1643" y="3824" width="3881" height="8933"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 2011,3850 C 1840,3850 1669,4021 1669,4192 L 1669,12387 C 1669,12558 1840,12729 2011,12729 L 5154,12729 C 5325,12729 5497,12558 5497,12387 L 5497,4192 C 5497,4021 5325,3850 5154,3850 L 2011,3850 Z M 1669,3850 L 1669,3850 Z M 5497,12730 L 5497,12730 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 2011,3850 C 1840,3850 1669,4021 1669,4192 L 1669,12387 C 1669,12558 1840,12729 2011,12729 L 5154,12729 C 5325,12729 5497,12558 5497,12387 L 5497,4192 C 5497,4021 5325,3850 5154,3850 L 2011,3850 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id34">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2295" y="4826" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2532,4852 C 2426,4852 2321,4957 2321,5063 L 2321,5911 C 2321,6017 2426,6123 2532,6123 L 4650,6123 C 4756,6123 4862,6017 4862,5911 L 4862,5063 C 4862,4957 4756,4852 4650,4852 L 2532,4852 Z M 2321,4852 L 2321,4852 Z M 4862,6123 L 4862,6123 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2532,4852 C 2426,4852 2321,4957 2321,5063 L 2321,5911 C 2321,6017 2426,6123 2532,6123 L 4650,6123 C 4756,6123 4862,6017 4862,5911 L 4862,5063 C 4862,4957 4756,4852 4650,4852 L 2532,4852 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id35">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2321" y="4888" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3039" y="5568"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id36">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2296" y="6727" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2533,6753 C 2427,6753 2322,6858 2322,6964 L 2322,7812 C 2322,7918 2427,8024 2533,8024 L 4651,8024 C 4757,8024 4863,7918 4863,7812 L 4863,6964 C 4863,6858 4757,6753 4651,6753 L 2533,6753 Z M 2322,6753 L 2322,6753 Z M 4863,8024 L 4863,8024 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2533,6753 C 2427,6753 2322,6858 2322,6964 L 2322,7812 C 2322,7918 2427,8024 2533,8024 L 4651,8024 C 4757,8024 4863,7918 4863,7812 L 4863,6964 C 4863,6858 4757,6753 4651,6753 L 2533,6753 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id37">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2322" y="6789" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3040" y="7469"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id38">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2297" y="8628" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2534,8654 C 2428,8654 2323,8759 2323,8865 L 2323,9713 C 2323,9819 2428,9925 2534,9925 L 4652,9925 C 4758,9925 4864,9819 4864,9713 L 4864,8865 C 4864,8759 4758,8654 4652,8654 L 2534,8654 Z M 2323,8654 L 2323,8654 Z M 4864,9925 L 4864,9925 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2534,8654 C 2428,8654 2323,8759 2323,8865 L 2323,9713 C 2323,9819 2428,9925 2534,9925 L 4652,9925 C 4758,9925 4864,9819 4864,9713 L 4864,8865 C 4864,8759 4758,8654 4652,8654 L 2534,8654 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id39">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2323" y="8690" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3041" y="9370"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id40">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2298" y="10529" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2535,10555 C 2429,10555 2324,10660 2324,10766 L 2324,11614 C 2324,11720 2429,11826 2535,11826 L 4653,11826 C 4759,11826 4865,11720 4865,11614 L 4865,10766 C 4865,10660 4759,10555 4653,10555 L 2535,10555 Z M 2324,10555 L 2324,10555 Z M 4865,11826 L 4865,11826 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2535,10555 C 2429,10555 2324,10660 2324,10766 L 2324,11614 C 2324,11720 2429,11826 2535,11826 L 4653,11826 C 4759,11826 4865,11720 4865,11614 L 4865,10766 C 4865,10660 4759,10555 4653,10555 L 2535,10555 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id41">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2324" y="10591" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="3042" y="11271"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id42">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1670" y="3851" width="3811" height="1144"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="370px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="3091" y="4551"><tspan fill="rgb(102,102,102)" stroke="none">Track</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id43">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27043" y="3826" width="3881" height="8931"/>
+ <path fill="rgb(153,204,153)" stroke="none" d="M 27411,3852 C 27240,3852 27069,4023 27069,4194 L 27069,12387 C 27069,12558 27240,12730 27411,12730 L 30554,12730 C 30725,12730 30897,12558 30897,12387 L 30897,4194 C 30897,4023 30725,3852 30554,3852 L 27411,3852 Z M 27069,3852 L 27069,3852 Z M 30897,12730 L 30897,12730 Z"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 27411,3852 C 27240,3852 27069,4023 27069,4194 L 27069,12387 C 27069,12558 27240,12730 27411,12730 L 30554,12730 C 30725,12730 30897,12558 30897,12387 L 30897,4194 C 30897,4023 30725,3852 30554,3852 L 27411,3852 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id44">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27695" y="4828" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 27932,4854 C 27826,4854 27721,4959 27721,5065 L 27721,5913 C 27721,6019 27826,6125 27932,6125 L 30050,6125 C 30156,6125 30262,6019 30262,5913 L 30262,5065 C 30262,4959 30156,4854 30050,4854 L 27932,4854 Z M 27721,4854 L 27721,4854 Z M 30262,6125 L 30262,6125 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 27932,4854 C 27826,4854 27721,4959 27721,5065 L 27721,5913 C 27721,6019 27826,6125 27932,6125 L 30050,6125 C 30156,6125 30262,6019 30262,5913 L 30262,5065 C 30262,4959 30156,4854 30050,4854 L 27932,4854 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id45">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27721" y="4890" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="28439" y="5570"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id46">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27696" y="6729" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 27933,6755 C 27827,6755 27722,6860 27722,6966 L 27722,7814 C 27722,7920 27827,8026 27933,8026 L 30051,8026 C 30157,8026 30263,7920 30263,7814 L 30263,6966 C 30263,6860 30157,6755 30051,6755 L 27933,6755 Z M 27722,6755 L 27722,6755 Z M 30263,8026 L 30263,8026 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 27933,6755 C 27827,6755 27722,6860 27722,6966 L 27722,7814 C 27722,7920 27827,8026 27933,8026 L 30051,8026 C 30157,8026 30263,7920 30263,7814 L 30263,6966 C 30263,6860 30157,6755 30051,6755 L 27933,6755 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id47">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27722" y="6791" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="28440" y="7471"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id48">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27697" y="8630" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 27934,8656 C 27828,8656 27723,8761 27723,8867 L 27723,9715 C 27723,9821 27828,9927 27934,9927 L 30052,9927 C 30158,9927 30264,9821 30264,9715 L 30264,8867 C 30264,8761 30158,8656 30052,8656 L 27934,8656 Z M 27723,8656 L 27723,8656 Z M 30264,9927 L 30264,9927 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 27934,8656 C 27828,8656 27723,8761 27723,8867 L 27723,9715 C 27723,9821 27828,9927 27934,9927 L 30052,9927 C 30158,9927 30264,9821 30264,9715 L 30264,8867 C 30264,8761 30158,8656 30052,8656 L 27934,8656 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id49">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27723" y="8692" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="28441" y="9372"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id50">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27698" y="10531" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 27935,10557 C 27829,10557 27724,10662 27724,10768 L 27724,11616 C 27724,11722 27829,11828 27935,11828 L 30053,11828 C 30159,11828 30265,11722 30265,11616 L 30265,10768 C 30265,10662 30159,10557 30053,10557 L 27935,10557 Z M 27724,10557 L 27724,10557 Z M 30265,11828 L 30265,11828 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 27935,10557 C 27829,10557 27724,10662 27724,10768 L 27724,11616 C 27724,11722 27829,11828 27935,11828 L 30053,11828 C 30159,11828 30265,11722 30265,11616 L 30265,10768 C 30265,10662 30159,10557 30053,10557 L 27935,10557 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id51">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27724" y="10593" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="28442" y="11273"><tspan fill="rgb(0,0,0)" stroke="none">Element</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id52">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27070" y="3853" width="3811" height="1144"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="370px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="28527" y="4553"><tspan fill="rgb(102,102,102)" stroke="none">Push</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id53">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3557" y="2572" width="6518" height="11381"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 3583,12730 C 3583,15025 6750,14260 6750,8292 6750,2324 9563,1653 9851,3523"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 9876,3850 L 10074,3468 9618,3505 9876,3850 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id54">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9857" y="2575" width="6618" height="11484"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 9883,12730 C 9883,15200 13097,14378 13097,8351 13097,2325 15958,1653 16251,3524"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 16276,3851 L 16473,3469 16018,3506 16276,3851 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id55">
+ <rect class="BoundingBox" stroke="none" fill="none" x="16257" y="2460" width="6523" height="11595"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 16283,12730 C 16283,15197 19447,14375 19447,8286 19447,2197 22287,1460 22555,3523"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 22576,3852 L 22778,3473 22322,3504 22576,3852 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id56">
+ <rect class="BoundingBox" stroke="none" fill="none" x="22557" y="2575" width="6618" height="11483"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 22583,12730 C 22583,15197 25797,14376 25797,8350 25797,2325 28659,1652 28951,3526"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 28976,3853 L 29173,3471 28718,3508 28976,3853 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id57">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2279" y="1284" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 2516,1310 C 2410,1310 2305,1415 2305,1521 L 2305,2369 C 2305,2475 2410,2581 2516,2581 L 4634,2581 C 4740,2581 4846,2475 4846,2369 L 4846,1521 C 4846,1415 4740,1310 4634,1310 L 2516,1310 Z M 2305,1310 L 2305,1310 Z M 4846,2581 L 4846,2581 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2516,1310 C 2410,1310 2305,1415 2305,1521 L 2305,2369 C 2305,2475 2410,2581 2516,2581 L 4634,2581 C 4740,2581 4846,2475 4846,2369 L 4846,1521 C 4846,1415 4740,1310 4634,1310 L 2516,1310 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id58">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2305" y="1346" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="2777" y="2026"><tspan fill="rgb(0,0,0)" stroke="none">Elements In</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id59">
+ <rect class="BoundingBox" stroke="none" fill="none" x="3346" y="2554" width="459" height="1298"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 3575,2580 L 3575,3517"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 3576,3851 L 3804,3487 3347,3487 3576,3851 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id60">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27680" y="13985" width="2594" height="1324"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 27917,14011 C 27811,14011 27706,14116 27706,14222 L 27706,15070 C 27706,15176 27811,15282 27917,15282 L 30035,15282 C 30141,15282 30247,15176 30247,15070 L 30247,14222 C 30247,14116 30141,14011 30035,14011 L 27917,14011 Z M 27706,14011 L 27706,14011 Z M 30247,15282 L 30247,15282 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 27917,14011 C 27811,14011 27706,14116 27706,14222 L 27706,15070 C 27706,15176 27811,15282 27917,15282 L 30035,15282 C 30141,15282 30247,15176 30247,15070 L 30247,14222 C 30247,14116 30141,14011 30035,14011 L 27917,14011 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id61">
+ <rect class="BoundingBox" stroke="none" fill="none" x="27706" y="14047" width="2541" height="1162"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="28062" y="14727"><tspan fill="rgb(0,0,0)" stroke="none">Elements Out</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id62">
+ <rect class="BoundingBox" stroke="none" fill="none" x="28748" y="12704" width="459" height="1309"/>
+ <path fill="none" stroke="rgb(0,102,0)" stroke-width="51" stroke-linejoin="round" d="M 28983,12730 C 28983,13691 28978,13211 28976,13669"/>
+ <path fill="rgb(0,102,0)" stroke="none" d="M 28977,14011 L 29205,13647 28748,13646 28977,14011 Z"/>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/images/arch-scheduler-run.svg b/doc/source/images/arch-scheduler-run.svg
new file mode 100644
index 000000000..e031aa57e
--- /dev/null
+++ b/doc/source/images/arch-scheduler-run.svg
@@ -0,0 +1,437 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.2" width="165.1mm" height="114.3mm" viewBox="0 0 16510 11430" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+ <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+ <rect x="0" y="0" width="16510" height="11430"/>
+ </clipPath>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_1" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="normal" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="y" horiz-adv-x="1126" d="M 584,241 L 834,1082 1128,1082 700,-57 C 646,-188 590,-281 532,-336 469,-395 386,-425 283,-425 216,-425 157,-421 106,-412 L 106,-212 C 141,-217 173,-220 202,-220 230,-220 255,-217 276,-211 297,-205 317,-195 334,-181 368,-153 399,-105 426,-37 L 444,11 16,1082 313,1082 584,241 Z"/>
+ <glyph unicode="u" horiz-adv-x="993" d="M 408,1082 L 408,475 C 408,433 411,395 418,360 425,325 436,295 451,270 466,245 486,225 511,211 535,197 565,190 600,190 634,190 665,198 693,213 720,228 744,249 764,277 784,304 800,337 811,376 822,414 827,456 827,502 L 827,1082 1108,1082 1108,237 C 1108,214 1108,190 1109,165 1109,139 1110,116 1111,93 1112,71 1113,50 1114,33 1115,15 1115,6 1116,6 L 848,6 C 847,14 846,26 845,43 843,61 842,80 841,100 840,121 839,142 838,163 837,183 836,201 836,215 L 831,215 C 794,133 746,73 689,36 631,-1 562,-20 483,-20 418,-20 363,-9 318,12 273,33 236,63 208,100 179,137 159,180 146,231 133,282 127,336 127,395 L 127,1082 408,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="623" d="M 420,-18 C 337,-18 274,5 229,50 184,95 162,163 162,254 L 162,892 25,892 25,1082 176,1082 264,1336 440,1336 440,1082 645,1082 645,892 440,892 440,330 C 440,277 450,239 470,214 490,189 521,176 563,176 580,176 596,177 610,180 624,183 640,186 657,190 L 657,16 C 622,5 586,-4 547,-10 508,-15 466,-18 420,-18 Z"/>
+ <glyph unicode="s" horiz-adv-x="993" d="M 1055,316 C 1055,264 1044,217 1023,176 1001,135 969,100 928,71 887,42 836,19 776,4 716,-12 648,-20 571,-20 502,-20 440,-15 385,-5 330,5 281,22 240,45 198,68 163,97 135,134 107,171 86,216 72,270 L 319,307 C 327,277 338,253 352,234 366,215 383,201 404,191 425,181 449,174 477,171 504,168 536,166 571,166 603,166 633,168 661,172 688,175 712,182 733,191 753,200 769,212 780,229 791,245 797,265 797,290 797,318 789,340 773,357 756,373 734,386 706,397 677,407 644,416 606,424 567,431 526,440 483,450 438,460 393,472 349,486 305,500 266,519 231,543 196,567 168,598 147,635 126,672 115,718 115,775 115,826 125,872 145,913 165,953 194,987 233,1016 272,1044 320,1066 377,1081 434,1096 499,1103 573,1103 632,1103 686,1098 737,1087 788,1076 833,1058 873,1035 913,1011 947,981 974,944 1001,907 1019,863 1030,811 L 781,785 C 776,811 768,833 756,850 744,867 729,880 712,890 694,900 673,907 650,911 627,914 601,916 573,916 506,916 456,908 423,891 390,874 373,845 373,805 373,780 380,761 394,746 407,731 427,719 452,710 477,700 506,692 541,685 575,678 612,669 653,659 703,648 752,636 801,622 849,607 892,588 930,563 967,538 998,505 1021,466 1044,427 1055,377 1055,316 Z"/>
+ <glyph unicode="r" horiz-adv-x="636" d="M 143,0 L 143,833 C 143,856 143,881 143,907 142,933 142,958 141,982 140,1006 139,1027 138,1046 137,1065 136,1075 135,1075 L 403,1075 C 404,1067 406,1054 407,1035 408,1016 410,995 411,972 412,950 414,927 415,905 416,883 416,865 416,851 L 420,851 C 434,890 448,926 462,957 476,988 493,1014 512,1036 531,1057 553,1074 580,1086 607,1097 640,1103 679,1103 696,1103 712,1102 729,1099 745,1096 757,1092 766,1088 L 766,853 C 748,857 730,861 712,864 693,867 671,868 646,868 576,868 522,840 483,783 444,726 424,642 424,531 L 424,0 143,0 Z"/>
+ <glyph unicode="o" horiz-adv-x="1099" d="M 1171,542 C 1171,459 1160,384 1137,315 1114,246 1079,187 1033,138 987,88 930,49 861,22 792,-6 712,-20 621,-20 533,-20 455,-6 388,21 321,48 264,87 219,136 173,185 138,245 115,314 92,383 80,459 80,542 80,623 91,697 114,766 136,834 170,893 215,943 260,993 317,1032 386,1060 455,1088 535,1102 627,1102 724,1102 807,1088 876,1060 945,1032 1001,993 1045,944 1088,894 1120,835 1141,767 1161,698 1171,623 1171,542 Z M 877,542 C 877,671 856,764 814,822 772,880 711,909 631,909 548,909 485,880 441,821 397,762 375,669 375,542 375,477 381,422 393,375 404,328 421,290 442,260 463,230 489,208 519,194 549,179 582,172 618,172 659,172 696,179 729,194 761,208 788,230 810,260 832,290 849,328 860,375 871,422 877,477 877,542 Z"/>
+ <glyph unicode="n" horiz-adv-x="993" d="M 844,0 L 844,607 C 844,649 841,688 834,723 827,758 816,788 801,813 786,838 766,857 741,871 716,885 686,892 651,892 617,892 586,885 559,870 531,855 507,833 487,806 467,778 452,745 441,707 430,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 458,950 506,1010 563,1047 620,1084 689,1103 768,1103 833,1103 889,1092 934,1071 979,1050 1015,1020 1044,983 1072,946 1092,902 1105,851 1118,800 1124,746 1124,687 L 1124,0 844,0 Z"/>
+ <glyph unicode="m" horiz-adv-x="1562" d="M 780,0 L 780,607 C 780,649 777,688 772,723 766,758 757,788 744,813 731,838 714,857 693,871 672,885 646,892 616,892 587,892 561,885 538,870 515,855 495,833 478,806 461,778 447,745 438,707 429,668 424,626 424,580 L 424,0 143,0 143,845 C 143,868 143,892 143,917 142,942 142,966 141,988 140,1010 139,1031 138,1048 137,1066 136,1075 135,1075 L 403,1075 C 404,1067 406,1055 407,1038 408,1021 410,1002 411,981 412,961 414,940 415,919 416,899 416,881 416,867 L 420,867 C 455,950 498,1010 550,1047 601,1084 663,1103 735,1103 818,1103 884,1083 935,1043 985,1002 1019,944 1036,867 L 1042,867 C 1061,912 1082,949 1105,979 1127,1009 1152,1033 1179,1052 1206,1070 1235,1083 1267,1091 1298,1099 1333,1103 1370,1103 1429,1103 1480,1092 1521,1071 1562,1050 1595,1020 1621,983 1646,946 1665,902 1677,851 1688,800 1694,746 1694,687 L 1694,0 1415,0 1415,607 C 1415,649 1412,688 1407,723 1401,758 1392,788 1379,813 1366,838 1349,857 1328,871 1307,885 1281,892 1251,892 1223,892 1198,885 1175,871 1152,856 1132,836 1115,810 1098,783 1084,752 1075,715 1066,678 1060,638 1059,593 L 1059,0 780,0 Z"/>
+ <glyph unicode="l" horiz-adv-x="278" d="M 143,0 L 143,1484 424,1484 424,0 143,0 Z"/>
+ <glyph unicode="i" horiz-adv-x="278" d="M 143,1277 L 143,1484 424,1484 424,1277 143,1277 Z M 143,0 L 143,1082 424,1082 424,0 143,0 Z"/>
+ <glyph unicode="h" horiz-adv-x="979" d="M 420,866 C 458,949 506,1009 563,1046 620,1083 689,1102 768,1102 833,1102 889,1091 934,1070 979,1049 1015,1019 1044,982 1072,945 1092,901 1105,850 1118,799 1124,745 1124,686 L 1124,0 844,0 844,606 C 844,648 841,687 834,722 827,757 816,787 801,812 786,837 766,856 741,870 716,884 686,891 651,891 617,891 586,884 559,869 531,854 507,832 487,805 467,777 452,744 441,706 430,667 424,625 424,579 L 424,0 143,0 143,1484 424,1484 424,1079 C 424,1058 424,1036 423,1015 422,993 422,973 421,954 420,935 419,917 418,902 417,887 417,875 416,866 L 420,866 Z"/>
+ <glyph unicode="e" horiz-adv-x="994" d="M 586,-20 C 508,-20 438,-8 376,15 313,38 260,73 216,120 172,167 138,226 115,297 92,368 80,451 80,546 80,649 94,736 122,807 149,878 187,935 234,979 281,1022 335,1054 396,1073 457,1092 522,1102 590,1102 675,1102 748,1087 809,1057 869,1027 918,986 957,932 996,878 1024,814 1042,739 1060,664 1069,582 1069,491 L 1069,491 375,491 C 375,445 379,402 387,363 395,323 408,289 426,261 444,232 467,209 496,193 525,176 559,168 600,168 649,168 690,179 721,200 752,221 775,253 788,297 L 1053,274 C 1041,243 1024,211 1003,176 981,141 952,110 916,81 880,52 835,28 782,9 728,-10 663,-20 586,-20 Z M 586,925 C 557,925 531,920 506,911 481,901 459,886 441,865 422,844 407,816 396,783 385,750 378,710 377,663 L 797,663 C 792,750 771,816 734,860 697,903 648,925 586,925 Z"/>
+ <glyph unicode="d" horiz-adv-x="1046" d="M 844,0 C 843,5 841,15 840,29 838,42 836,58 835,75 833,92 832,110 831,128 830,146 829,162 829,176 L 825,176 C 792,106 747,56 689,26 630,-5 560,-20 479,-20 411,-20 352,-6 303,22 253,50 212,89 180,139 147,189 123,248 108,317 92,385 84,459 84,540 84,622 92,697 109,766 125,835 150,894 184,944 218,993 261,1032 314,1060 366,1088 428,1102 500,1102 535,1102 569,1098 602,1091 635,1084 665,1072 693,1057 721,1042 746,1022 769,998 792,974 811,945 827,911 L 829,911 C 829,918 829,928 829,941 828,954 828,968 828,985 828,1002 828,1019 828,1037 827,1055 827,1072 827,1089 L 827,1484 1108,1484 1108,236 C 1108,183 1109,137 1111,96 1113,55 1115,23 1116,0 L 844,0 Z M 831,547 C 831,618 824,678 811,725 798,772 780,809 759,837 737,864 712,884 685,895 657,906 629,911 600,911 564,911 532,904 505,890 477,876 454,854 435,824 416,794 401,756 392,709 382,662 377,606 377,540 377,295 451,172 598,172 626,172 654,178 682,190 710,202 735,222 757,251 779,280 797,318 811,367 824,415 831,475 831,547 Z"/>
+ <glyph unicode="c" horiz-adv-x="994" d="M 594,-20 C 508,-20 433,-7 369,20 304,47 251,84 208,133 165,182 133,240 112,309 91,377 80,452 80,535 80,625 92,705 115,776 138,846 172,905 216,954 260,1002 314,1039 379,1064 443,1089 516,1102 598,1102 668,1102 730,1092 785,1073 839,1054 886,1028 925,995 964,963 996,924 1021,879 1045,834 1062,786 1071,734 L 788,734 C 780,787 760,830 728,861 696,893 651,909 592,909 517,909 462,878 427,816 392,754 375,664 375,546 375,297 449,172 596,172 649,172 694,188 730,221 766,253 788,302 797,366 L 1079,366 C 1072,315 1057,267 1034,220 1010,174 978,133 938,97 897,62 848,33 791,12 734,-9 668,-20 594,-20 Z"/>
+ <glyph unicode="b" horiz-adv-x="1046" d="M 1167,545 C 1167,463 1159,388 1143,319 1126,250 1101,190 1067,140 1033,89 990,50 938,22 885,-6 823,-20 752,-20 720,-20 688,-17 656,-10 624,-3 594,8 565,23 536,38 510,58 486,83 462,108 441,138 424,174 L 422,174 C 422,160 422,143 421,125 420,106 418,88 417,71 416,54 414,38 413,24 411,11 409,4 408,4 L 135,4 C 137,27 139,60 141,103 142,146 143,195 143,250 L 143,1484 424,1484 424,1070 C 424,1049 424,1028 424,1008 423,987 423,968 422,951 421,931 421,912 420,894 L 424,894 C 458,969 505,1022 564,1054 623,1086 692,1102 770,1102 839,1102 899,1088 949,1061 999,1033 1040,994 1073,945 1105,895 1129,836 1144,768 1159,700 1167,626 1167,545 Z M 874,545 C 874,668 856,759 820,818 784,877 728,907 653,907 624,907 596,901 568,890 540,879 515,859 493,831 471,802 453,764 440,717 427,669 420,609 420,536 420,465 427,407 440,360 453,313 471,276 492,248 513,220 538,200 566,189 594,178 622,172 651,172 722,172 777,202 816,261 855,320 874,414 874,545 Z"/>
+ <glyph unicode="a" horiz-adv-x="1086" d="M 393,-20 C 341,-20 295,-13 254,2 213,16 178,37 149,65 120,93 98,127 83,168 68,208 60,255 60,307 60,371 71,425 94,469 116,513 146,548 185,575 224,602 269,622 321,634 373,647 428,653 487,653 L 720,653 720,709 C 720,748 717,782 710,808 703,835 692,857 679,873 666,890 649,902 630,909 610,916 587,920 562,920 539,920 518,918 500,913 481,909 465,901 452,890 439,879 428,864 420,845 411,826 405,803 402,774 L 109,774 C 117,822 132,866 153,906 174,946 204,981 242,1010 279,1039 326,1062 381,1078 436,1094 500,1102 574,1102 641,1102 701,1094 754,1077 807,1060 851,1036 888,1003 925,970 953,929 972,881 991,833 1001,777 1001,714 L 1001,320 C 1001,295 1002,272 1005,252 1007,232 1011,215 1018,202 1024,188 1033,178 1045,171 1056,164 1071,160 1090,160 1111,160 1132,162 1152,166 L 1152,14 C 1135,10 1120,6 1107,3 1094,0 1080,-3 1067,-5 1054,-7 1040,-9 1025,-10 1010,-11 992,-12 972,-12 901,-12 849,5 816,40 782,75 762,126 755,193 L 749,193 C 712,126 664,73 606,36 547,-1 476,-20 393,-20 Z M 720,499 L 576,499 C 546,499 518,497 491,493 464,490 440,482 420,470 399,459 383,442 371,420 359,397 353,367 353,329 353,277 365,239 389,214 412,189 444,176 483,176 519,176 552,184 581,199 610,214 635,234 656,259 676,284 692,312 703,345 714,377 720,411 720,444 L 720,499 Z"/>
+ <glyph unicode="W" horiz-adv-x="1985" d="M 1567,0 L 1217,0 1026,815 C 1020,840 1014,869 1007,903 1000,937 993,970 987,1002 980,1039 973,1077 967,1116 960,1077 952,1038 945,1001 942,985 938,969 935,952 932,935 928,918 925,902 921,885 918,870 915,855 912,840 908,827 905,815 L 715,0 365,0 2,1409 301,1409 477,625 C 487,582 496,540 505,499 514,458 522,421 529,388 537,350 544,314 551,279 561,328 571,376 580,423 584,443 588,464 593,485 598,506 602,527 607,548 611,569 615,589 620,608 624,627 628,644 631,659 L 805,1409 1135,1409 1313,659 C 1317,643 1321,625 1325,606 1329,586 1333,566 1337,545 1341,524 1345,503 1349,482 1353,461 1357,440 1360,420 1368,373 1376,326 1384,279 1392,316 1400,355 1409,395 1416,429 1425,466 1434,507 1443,548 1453,587 1462,625 L 1632,1409 1931,1409 1567,0 Z"/>
+ <glyph unicode="S" horiz-adv-x="1231" d="M 1286,406 C 1286,342 1274,284 1251,232 1228,179 1192,134 1143,97 1094,60 1031,31 955,11 878,-10 787,-20 682,-20 589,-20 506,-12 435,5 364,22 303,46 252,79 201,112 159,152 128,201 96,249 73,304 59,367 L 344,414 C 352,383 364,354 379,328 394,302 416,280 443,261 470,242 503,227 544,217 584,206 633,201 690,201 790,201 867,216 920,247 973,277 999,324 999,389 999,428 988,459 967,484 946,509 917,529 882,545 847,561 806,574 760,585 714,596 666,606 616,616 576,625 536,635 496,645 456,655 418,667 382,681 345,695 311,712 280,731 249,750 222,774 199,803 176,831 158,864 145,902 132,940 125,985 125,1036 125,1106 139,1166 167,1216 195,1266 234,1307 284,1339 333,1370 392,1393 461,1408 530,1423 605,1430 686,1430 778,1430 857,1423 923,1409 988,1394 1043,1372 1088,1343 1132,1314 1167,1277 1193,1233 1218,1188 1237,1136 1249,1077 L 963,1038 C 948,1099 919,1144 874,1175 829,1206 764,1221 680,1221 628,1221 585,1217 551,1208 516,1199 489,1186 469,1171 448,1156 434,1138 425,1118 416,1097 412,1076 412,1053 412,1018 420,990 437,968 454,945 477,927 507,912 537,897 573,884 615,874 656,863 702,853 752,842 796,833 840,823 883,813 926,802 968,790 1007,776 1046,762 1083,745 1117,725 1151,705 1181,681 1206,652 1231,623 1250,588 1265,548 1279,508 1286,461 1286,406 Z"/>
+ <glyph unicode="R" horiz-adv-x="1324" d="M 1105,0 L 778,535 432,535 432,0 137,0 137,1409 841,1409 C 929,1409 1006,1399 1072,1380 1137,1360 1192,1332 1236,1296 1280,1259 1313,1215 1335,1164 1356,1112 1367,1054 1367,989 1367,936 1359,888 1344,845 1328,801 1306,762 1279,728 1251,694 1218,666 1180,643 1142,620 1101,603 1056,592 L 1437,0 1105,0 Z M 1070,977 C 1070,1046 1048,1097 1003,1130 958,1163 893,1180 810,1180 L 432,1180 432,764 818,764 C 862,764 900,769 932,780 963,790 989,805 1010,824 1030,843 1045,865 1055,891 1065,917 1070,946 1070,977 Z"/>
+ <glyph unicode="Q" horiz-adv-x="1430" d="M 1507,711 C 1507,617 1495,531 1472,452 1448,373 1414,303 1369,242 1324,181 1269,130 1204,90 1139,49 1066,21 983,4 996,-35 1012,-66 1030,-91 1048,-115 1068,-134 1091,-148 1114,-161 1138,-170 1165,-176 1192,-180 1220,-183 1251,-183 1270,-183 1290,-182 1310,-181 1330,-179 1350,-176 1370,-173 L 1368,-375 C 1332,-383 1294,-390 1255,-395 1216,-400 1173,-403 1126,-403 1063,-403 1007,-393 960,-375 913,-355 872,-329 837,-295 802,-260 772,-219 748,-171 723,-122 702,-69 684,-10 584,-1 497,24 422,63 347,102 284,154 234,217 184,280 147,354 122,438 97,522 84,613 84,711 84,821 100,920 131,1009 162,1098 207,1173 268,1236 328,1298 402,1346 491,1380 579,1413 680,1430 795,1430 910,1430 1011,1413 1100,1379 1188,1345 1262,1297 1323,1234 1383,1171 1429,1096 1460,1008 1491,919 1507,820 1507,711 Z M 1206,711 C 1206,785 1197,852 1180,912 1162,971 1136,1022 1101,1065 1066,1108 1024,1141 973,1164 922,1187 862,1198 795,1198 726,1198 666,1187 615,1164 563,1141 520,1108 485,1065 450,1022 424,971 407,912 390,852 381,785 381,711 381,638 390,570 408,509 425,448 451,395 486,351 521,307 564,273 615,248 666,223 726,211 793,211 865,211 927,224 979,249 1031,274 1074,308 1108,353 1141,397 1166,450 1182,511 1198,572 1206,639 1206,711 Z"/>
+ <glyph unicode="J" horiz-adv-x="967" d="M 524,-20 C 453,-20 390,-13 335,2 280,17 232,40 191,72 150,104 117,146 91,197 64,248 44,309 31,382 L 324,425 C 331,386 340,353 352,326 364,299 379,277 396,260 413,243 432,230 454,223 476,215 500,211 526,211 585,211 629,231 660,270 690,309 705,366 705,439 L 705,1178 424,1178 424,1409 999,1409 999,446 C 999,375 989,310 968,253 947,195 917,146 877,106 836,65 787,34 728,13 669,-9 601,-20 524,-20 Z"/>
+ <glyph unicode="E" horiz-adv-x="1152" d="M 137,0 L 137,1409 1245,1409 1245,1181 432,1181 432,827 1184,827 1184,599 432,599 432,228 1286,228 1286,0 137,0 Z"/>
+ <glyph unicode="." horiz-adv-x="292" d="M 139,0 L 139,305 428,305 428,0 139,0 Z"/>
+ <glyph unicode=")" horiz-adv-x="583" d="M 2,-425 C 55,-347 101,-270 139,-196 177,-120 208,-44 233,33 257,110 275,190 286,272 297,353 303,439 303,530 303,620 297,706 286,788 275,869 257,949 233,1026 208,1103 177,1180 139,1255 101,1330 55,1407 2,1484 L 283,1484 C 334,1410 379,1337 416,1264 453,1191 484,1116 509,1039 533,962 551,882 563,799 574,716 580,626 580,531 580,436 574,347 563,264 551,180 533,99 509,22 484,-55 453,-131 416,-204 379,-277 334,-351 283,-425 L 2,-425 Z"/>
+ <glyph unicode="(" horiz-adv-x="583" d="M 399,-425 C 348,-351 303,-277 266,-204 229,-131 198,-55 174,22 149,99 131,180 120,264 108,347 102,436 102,531 102,626 108,716 120,799 131,882 149,962 174,1039 198,1116 229,1191 266,1264 303,1337 348,1410 399,1484 L 680,1484 C 627,1407 581,1330 543,1255 505,1180 474,1103 450,1026 425,949 407,869 396,788 385,706 379,620 379,530 379,439 385,353 396,272 407,190 425,110 450,33 474,-44 505,-120 543,-196 581,-270 627,-347 680,-425 L 399,-425 Z"/>
+ </font>
+ </defs>
+ <defs>
+ <font id="EmbeddedFont_2" horiz-adv-x="2048">
+ <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="bold" font-style="italic" ascent="1852" descent="437"/>
+ <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+ <glyph unicode="v" horiz-adv-x="1125" d="M 622,0 L 286,0 110,1082 399,1082 470,477 C 473,457 475,435 477,411 479,387 481,363 483,339 485,315 487,292 489,269 490,246 491,226 492,208 499,225 508,245 518,268 527,291 538,314 549,338 560,362 571,386 582,409 593,432 604,454 614,474 L 930,1082 1232,1082 622,0 Z"/>
+ <glyph unicode="u" horiz-adv-x="1152" d="M 512,1082 L 394,487 C 391,474 389,460 386,445 383,430 380,414 377,399 374,384 372,369 371,356 369,343 368,331 368,322 368,280 381,248 406,226 431,204 469,193 520,193 551,193 583,200 615,213 646,226 676,245 703,270 730,295 753,325 773,360 793,395 807,433 815,476 L 933,1082 1215,1082 1049,228 C 1044,205 1040,181 1036,156 1031,131 1027,107 1024,85 1021,62 1018,43 1016,27 1013,11 1012,3 1011,3 L 743,3 C 743,6 744,15 746,30 747,44 749,61 752,79 754,98 756,117 759,136 762,156 764,172 767,185 L 764,185 C 744,157 722,131 698,106 674,81 647,60 617,41 587,22 553,8 516,-3 479,-14 437,-19 391,-19 290,-19 213,5 162,54 111,103 85,173 85,265 85,277 86,291 88,306 89,321 91,337 93,352 95,367 97,381 100,395 102,409 104,420 106,429 L 233,1082 512,1082 Z"/>
+ <glyph unicode="t" horiz-adv-x="689" d="M 560,8 C 535,1 507,-5 476,-10 445,-14 411,-16 376,-16 337,-16 301,-11 269,-2 237,7 210,21 187,40 164,59 147,82 135,111 122,139 116,172 116,209 116,239 118,268 122,297 125,325 129,348 132,366 L 234,892 86,892 123,1082 285,1082 422,1336 598,1336 550,1082 752,1082 717,892 512,892 408,357 C 405,344 403,328 400,309 397,290 396,273 397,260 398,232 407,211 423,198 438,184 459,177 484,177 500,177 516,178 533,181 549,183 569,186 592,190 L 560,8 Z"/>
+ <glyph unicode="s" horiz-adv-x="1047" d="M 1000,334 C 1000,275 989,223 967,179 944,134 912,97 869,68 826,39 773,17 711,2 648,-13 577,-20 497,-20 363,-20 257,4 180,51 103,98 50,172 23,271 L 274,307 C 281,283 290,262 302,245 314,227 330,212 349,201 368,189 392,180 420,175 447,169 480,166 517,166 550,166 580,169 607,174 634,179 657,187 677,198 696,209 712,223 723,240 734,257 739,278 739,302 739,323 735,341 726,355 717,368 703,380 685,390 666,399 643,408 615,416 586,423 553,431 515,439 462,451 414,465 370,482 325,499 287,520 255,546 223,571 198,602 180,639 162,675 153,718 153,769 153,829 166,880 191,922 216,963 250,997 294,1024 337,1050 388,1069 447,1081 506,1093 569,1099 637,1099 699,1099 755,1094 805,1085 854,1075 897,1059 933,1036 969,1013 999,984 1022,947 1045,910 1060,865 1069,811 L 818,782 C 807,828 785,861 752,882 719,903 675,913 618,913 589,913 563,911 538,908 513,904 491,897 473,888 454,879 440,866 429,851 418,836 413,816 413,793 413,772 419,754 432,740 445,725 462,713 485,703 508,692 535,683 566,676 597,668 631,660 668,651 715,640 758,627 799,612 839,597 874,577 904,553 934,528 958,498 975,463 992,428 1000,385 1000,334 Z"/>
+ <glyph unicode="p" horiz-adv-x="1245" d="M 728,907 C 693,907 660,902 628,891 596,880 567,861 540,834 513,807 490,771 469,726 448,681 430,623 417,554 412,525 408,497 405,472 402,447 400,423 400,401 400,364 405,331 415,303 424,274 438,250 456,231 473,212 494,197 519,188 544,178 571,173 601,173 635,173 666,178 694,189 721,200 746,218 768,244 790,270 810,305 827,350 844,394 858,449 870,516 876,550 881,582 884,612 887,641 889,669 889,694 889,765 876,818 851,854 825,889 784,907 728,907 Z M 493,913 C 516,946 540,974 565,998 590,1021 616,1041 645,1057 674,1072 705,1084 738,1091 771,1098 808,1102 848,1102 902,1102 950,1094 992,1077 1034,1060 1069,1037 1098,1006 1126,975 1148,938 1163,895 1178,851 1185,802 1185,748 1185,709 1183,670 1180,632 1177,593 1171,555 1164,516 1145,421 1121,340 1092,273 1063,205 1027,149 986,106 944,63 896,31 843,11 789,-10 729,-20 662,-20 579,-20 511,-3 459,32 407,67 370,115 349,178 L 347,178 C 344,150 339,119 333,86 327,53 321,21 315,-10 L 235,-425 -45,-425 198,833 C 203,856 207,876 210,893 213,909 215,926 218,943 220,960 223,979 226,1000 229,1021 232,1049 237,1082 L 512,1082 C 512,1078 511,1069 510,1056 509,1043 507,1028 505,1011 503,994 501,976 498,959 495,941 492,926 489,913 L 493,913 Z"/>
+ <glyph unicode="o" horiz-adv-x="1126" d="M 1185,683 C 1185,574 1169,477 1136,390 1103,303 1058,229 1000,168 942,107 873,61 794,29 715,-4 628,-20 535,-20 464,-20 399,-10 341,10 283,29 233,58 192,96 151,133 119,179 97,234 74,288 63,350 63,419 63,522 79,616 110,700 141,784 184,856 241,915 298,974 365,1020 444,1053 523,1085 609,1101 704,1101 783,1101 852,1092 912,1073 972,1054 1022,1027 1063,991 1103,955 1133,911 1154,860 1175,808 1185,749 1185,683 Z M 891,662 C 891,706 886,744 877,775 867,806 853,832 835,852 817,871 795,886 770,895 744,904 715,909 683,909 654,909 624,906 594,899 564,892 536,877 509,855 482,833 457,802 435,761 412,720 393,667 378,600 371,568 366,538 363,510 360,481 358,455 358,431 358,383 363,343 374,310 384,277 398,251 417,230 436,209 458,195 483,186 508,177 536,172 566,172 596,172 626,175 655,182 684,189 712,203 739,225 766,246 790,277 812,318 834,358 853,412 868,480 875,515 881,547 884,576 887,605 890,633 891,662 Z"/>
+ <glyph unicode="n" horiz-adv-x="1138" d="M 738,0 L 856,595 C 859,608 862,622 865,637 868,652 870,668 873,683 876,698 878,713 880,727 881,740 882,751 882,760 882,802 869,834 844,856 819,878 781,889 730,889 699,889 667,882 636,869 605,856 576,837 549,812 522,787 498,758 478,723 457,688 443,649 435,606 L 317,0 35,0 201,853 C 206,876 210,900 215,925 219,950 223,974 226,996 229,1019 232,1038 235,1054 237,1070 238,1078 239,1078 L 507,1078 C 507,1075 506,1066 505,1052 503,1037 501,1021 499,1002 496,984 494,965 491,945 488,926 486,910 483,897 L 486,897 C 506,925 528,951 553,976 577,1001 604,1022 634,1041 664,1060 698,1074 735,1085 772,1096 813,1101 859,1101 960,1101 1037,1077 1088,1028 1139,979 1165,909 1165,817 1165,805 1164,791 1163,776 1161,761 1159,746 1157,731 1155,716 1153,701 1151,688 1148,674 1146,662 1144,653 L 1017,0 738,0 Z"/>
+ <glyph unicode="e" horiz-adv-x="1007" d="M 358,476 C 355,461 354,447 353,432 352,417 351,402 351,387 351,316 367,262 398,225 429,187 474,168 535,168 563,168 588,172 610,181 632,190 652,202 669,217 686,232 702,249 715,270 728,291 739,313 748,337 L 993,263 C 973,220 950,182 925,147 900,112 869,82 832,57 795,32 751,13 700,0 649,-13 587,-20 516,-20 443,-20 378,-10 322,11 265,32 218,61 180,99 141,137 112,183 93,237 73,291 63,351 63,418 63,527 78,624 107,709 136,794 176,865 228,924 279,982 341,1026 412,1057 483,1087 561,1102 646,1102 721,1102 785,1092 840,1072 895,1052 940,1024 976,988 1012,951 1039,908 1056,858 1073,807 1082,752 1082,691 1082,661 1080,627 1076,588 1071,549 1065,511 1058,476 L 358,476 Z M 822,663 C 823,674 824,683 825,692 825,701 825,710 825,719 825,790 809,842 776,875 743,908 699,924 646,924 623,924 599,920 574,913 549,906 524,892 501,873 477,853 456,826 437,793 418,759 402,716 391,663 L 822,663 Z"/>
+ <glyph unicode="b" horiz-adv-x="1152" d="M 855,1102 C 909,1102 957,1094 999,1077 1041,1060 1076,1037 1105,1006 1133,975 1155,938 1170,895 1185,851 1192,802 1192,748 L 1192,734 C 1192,702 1190,667 1187,630 1184,593 1178,555 1171,516 1152,421 1128,340 1099,273 1070,205 1034,149 993,106 951,63 903,31 850,11 796,-10 736,-20 669,-20 586,-20 518,-3 466,32 414,67 377,115 356,178 L 354,178 C 350,160 346,142 341,122 336,102 331,83 326,66 321,48 316,33 313,21 310,8 307,2 306,2 L 35,2 C 37,8 40,18 43,32 46,47 50,64 55,84 59,104 64,126 69,150 74,174 79,199 84,225 L 330,1484 611,1484 527,1057 C 518,1013 511,978 505,952 499,926 496,913 495,913 L 499,913 C 536,969 585,1015 645,1050 704,1085 774,1102 855,1102 Z M 735,907 C 700,907 667,902 635,891 603,880 574,861 547,834 520,807 497,771 476,726 455,681 437,623 424,554 419,525 415,497 412,472 409,447 407,423 407,401 407,364 412,331 422,303 431,274 445,250 463,231 480,212 501,197 526,188 551,178 578,173 608,173 642,173 673,178 700,189 727,199 751,217 773,243 794,268 814,303 831,348 848,392 863,448 877,516 884,550 890,582 894,612 897,641 899,669 899,694 899,764 887,817 864,853 840,889 797,907 735,907 Z"/>
+ <glyph unicode="Y" horiz-adv-x="1351" d="M 836,578 L 724,0 430,0 542,578 172,1409 464,1409 723,804 1197,1409 1520,1409 836,578 Z"/>
+ <glyph unicode="R" horiz-adv-x="1429" d="M 1010,0 L 780,534 434,534 331,0 36,0 310,1409 961,1409 C 1051,1409 1128,1398 1192,1376 1256,1354 1308,1325 1349,1288 1389,1251 1418,1208 1437,1159 1456,1110 1465,1059 1465,1006 1465,943 1454,888 1432,839 1409,790 1380,747 1343,712 1306,677 1263,648 1214,627 1165,606 1115,591 1062,583 L 1336,0 1010,0 Z M 872,764 C 917,764 957,768 993,777 1029,786 1060,799 1086,818 1111,837 1131,860 1145,889 1159,917 1166,950 1166,989 1166,1024 1160,1053 1147,1078 1134,1102 1117,1122 1095,1137 1073,1152 1047,1163 1018,1170 989,1177 957,1180 924,1180 L 560,1180 479,764 872,764 Z"/>
+ <glyph unicode="N" horiz-adv-x="1496" d="M 884,0 L 510,1131 C 506,1102 502,1074 498,1046 495,1022 491,996 486,969 481,941 477,915 472,892 L 298,0 36,0 310,1409 660,1409 1037,268 C 1041,294 1045,321 1049,350 1052,375 1057,402 1062,433 1067,463 1072,493 1078,524 L 1252,1409 1514,1409 1240,0 884,0 Z"/>
+ <glyph unicode="L" horiz-adv-x="1099" d="M 36,0 L 309,1409 604,1409 375,228 1131,228 1086,0 36,0 Z"/>
+ <glyph unicode="J" horiz-adv-x="1166" d="M 480,-20 C 410,-20 349,-11 297,8 245,27 201,53 164,88 127,122 98,164 76,213 53,262 36,318 25,379 L 292,437 C 299,404 308,374 319,347 330,319 343,295 360,275 376,255 396,239 419,228 442,217 468,211 499,211 532,211 560,217 582,230 604,243 622,260 637,281 652,302 663,326 672,354 680,381 687,410 693,440 L 836,1178 555,1178 599,1409 1174,1409 981,423 C 967,350 947,287 922,232 897,177 864,130 824,93 784,56 736,28 680,9 623,-10 557,-20 480,-20 Z"/>
+ <glyph unicode="E" horiz-adv-x="1377" d="M 36,0 L 309,1409 1417,1409 1373,1181 560,1181 491,827 1243,827 1199,599 447,599 375,228 1229,228 1184,0 36,0 Z"/>
+ <glyph unicode="D" horiz-adv-x="1390" d="M 734,1409 C 843,1409 940,1396 1025,1371 1110,1346 1181,1308 1240,1258 1299,1207 1344,1145 1375,1070 1406,995 1421,907 1421,807 1421,718 1411,637 1391,563 1370,488 1342,421 1306,362 1269,302 1226,250 1176,205 1125,160 1070,122 1011,92 951,61 887,38 820,23 753,8 684,0 614,0 L 36,0 310,1409 734,1409 Z M 375,228 L 605,228 C 682,228 754,240 820,265 886,290 943,326 991,374 1039,421 1077,480 1104,551 1131,621 1145,702 1145,794 1145,859 1136,916 1117,965 1098,1013 1072,1053 1037,1085 1002,1117 959,1141 908,1157 857,1173 800,1181 736,1181 L 560,1181 375,228 Z"/>
+ <glyph unicode=" " horiz-adv-x="569"/>
+ </font>
+ </defs>
+ <defs class="TextShapeIndex">
+ <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+ <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+ </g>
+ <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+ </g>
+ <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+ </g>
+ <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+ </g>
+ <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+ </g>
+ <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+ </g>
+ <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+ </g>
+ <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+ <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+ </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+ <g id="id2" class="Master_Slide">
+ <g id="bg-id2" class="Background"/>
+ <g id="bo-id2" class="BackgroundObjects"/>
+ </g>
+ </g>
+ <g class="SlideGroup">
+ <g>
+ <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+ <g class="Page">
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id3">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5014" y="1302" width="10214" height="8926"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5902,1328 C 5869,1328 5835,1331 5802,1336"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5704,1357 C 5672,1367 5640,1378 5609,1391"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5519,1436 C 5490,1453 5462,1471 5435,1491"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5356,1553 C 5331,1576 5307,1599 5284,1624"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5219,1700 C 5199,1727 5180,1755 5162,1784"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5115,1872 C 5100,1903 5088,1934 5077,1965"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5052,2062 C 5046,2096 5042,2129 5041,2162"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,2263 L 5040,2363"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,2464 L 5040,2564"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,2665 L 5040,2765"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,2866 L 5040,2966"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,3067 L 5040,3167"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,3268 L 5040,3368"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,3468 L 5040,3569"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,3669 L 5040,3770"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,3870 L 5040,3971"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,4071 L 5040,4172"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,4272 L 5040,4373"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,4473 L 5040,4574"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,4674 L 5040,4775"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,4875 L 5040,4976"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,5076 L 5040,5176"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,5277 L 5040,5377"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,5478 L 5040,5578"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,5679 L 5040,5779"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,5880 L 5040,5980"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,6081 L 5040,6181"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,6282 L 5040,6382"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,6483 L 5040,6583"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,6684 L 5040,6784"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,6884 L 5040,6985"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,7085 L 5040,7186"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,7286 L 5040,7387"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,7487 L 5040,7588"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,7688 L 5040,7789"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,7889 L 5040,7990"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,8090 L 5040,8191"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,8291 L 5040,8392"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,8492 L 5040,8592"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,8693 L 5040,8793"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,8894 L 5040,8994"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,9095 L 5040,9195"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5040,9296 L 5040,9338 C 5040,9357 5041,9377 5043,9396"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5059,9495 C 5066,9528 5076,9560 5088,9592"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5128,9683 C 5143,9713 5160,9742 5179,9770"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5238,9852 C 5259,9878 5281,9903 5305,9927"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5379,9995 C 5405,10016 5432,10036 5459,10055"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5546,10107 C 5575,10123 5606,10137 5637,10149"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5733,10180 C 5765,10188 5798,10194 5832,10197"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 5932,10201 L 6032,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6133,10201 L 6233,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6334,10201 L 6434,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6535,10201 L 6635,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6736,10201 L 6836,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6937,10201 L 7037,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7138,10201 L 7238,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7338,10201 L 7439,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7539,10201 L 7640,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7740,10201 L 7841,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7941,10201 L 8042,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8142,10201 L 8243,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8343,10201 L 8444,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8544,10201 L 8645,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8745,10201 L 8846,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8946,10201 L 9046,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9147,10201 L 9247,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9348,10201 L 9448,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9549,10201 L 9649,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9750,10201 L 9850,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9951,10201 L 10051,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10152,10201 L 10252,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10353,10201 L 10453,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10554,10201 L 10654,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10754,10201 L 10855,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10955,10201 L 11056,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11156,10201 L 11257,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11357,10201 L 11458,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11558,10201 L 11659,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11759,10201 L 11860,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11960,10201 L 12061,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12161,10201 L 12262,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12362,10201 L 12462,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12563,10201 L 12663,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12764,10201 L 12864,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12965,10201 L 13065,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13166,10201 L 13266,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13367,10201 L 13467,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13568,10201 L 13668,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13769,10201 L 13869,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13970,10201 L 14070,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14170,10201 L 14271,10201"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14371,10200 C 14405,10198 14438,10194 14471,10188"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14568,10162 C 14600,10151 14631,10138 14661,10124"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14749,10075 C 14778,10058 14805,10039 14832,10018"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14909,9953 C 14933,9930 14956,9906 14978,9881"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15041,9802 C 15060,9774 15078,9746 15095,9717"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15139,9627 C 15152,9596 15164,9564 15173,9532"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15194,9434 C 15199,9402 15201,9370 15201,9338 L 15201,9334"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,9233 L 15201,9133"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,9032 L 15201,8932"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,8831 L 15201,8731"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,8630 L 15201,8530"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,8429 L 15201,8329"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,8228 L 15201,8128"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,8027 L 15201,7927"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,7827 L 15201,7726"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,7626 L 15201,7525"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,7425 L 15201,7324"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,7224 L 15201,7123"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,7023 L 15201,6922"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,6822 L 15201,6721"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,6621 L 15201,6520"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,6420 L 15201,6319"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,6219 L 15201,6119"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,6018 L 15201,5918"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,5817 L 15201,5717"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,5616 L 15201,5516"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,5415 L 15201,5315"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,5214 L 15201,5114"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,5013 L 15201,4913"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,4812 L 15201,4712"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,4611 L 15201,4511"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,4411 L 15201,4310"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,4210 L 15201,4109"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,4009 L 15201,3908"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,3808 L 15201,3707"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,3607 L 15201,3506"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,3406 L 15201,3305"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,3205 L 15201,3104"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,3004 L 15201,2903"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,2803 L 15201,2703"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,2602 L 15201,2502"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,2401 L 15201,2301"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15201,2200 L 15201,2190 C 15201,2160 15199,2130 15195,2100"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15174,2002 C 15166,1970 15154,1938 15141,1907"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 15097,1816 C 15081,1787 15063,1759 15044,1731"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14982,1652 C 14960,1627 14937,1602 14912,1579"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14836,1514 C 14810,1493 14782,1474 14754,1456"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14666,1407 C 14635,1393 14604,1380 14573,1369"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14476,1342 C 14443,1336 14410,1331 14376,1329"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14276,1328 L 14176,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 14075,1328 L 13975,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13874,1328 L 13774,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13673,1328 L 13573,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13472,1328 L 13372,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13271,1328 L 13171,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 13070,1328 L 12970,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12869,1328 L 12769,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12669,1328 L 12568,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12468,1328 L 12367,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12267,1328 L 12166,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 12066,1328 L 11965,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11865,1328 L 11764,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11664,1328 L 11563,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11463,1328 L 11362,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11262,1328 L 11161,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 11061,1328 L 10961,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10860,1328 L 10760,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10659,1328 L 10559,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10458,1328 L 10358,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10257,1328 L 10157,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 10056,1328 L 9956,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9855,1328 L 9755,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9654,1328 L 9554,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9453,1328 L 9353,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9253,1328 L 9152,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 9052,1328 L 8951,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8851,1328 L 8750,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8650,1328 L 8549,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8449,1328 L 8348,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8248,1328 L 8147,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 8047,1328 L 7946,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7846,1328 L 7745,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7645,1328 L 7545,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7444,1328 L 7344,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7243,1328 L 7143,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7042,1328 L 6942,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6841,1328 L 6741,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6640,1328 L 6540,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6439,1328 L 6339,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6238,1328 L 6138,1328"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 6037,1328 L 5937,1328"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id4">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1262" y="5105" width="2645" height="1389"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 1510,5131 C 1399,5131 1288,5242 1288,5353 L 1288,6244 C 1288,6355 1399,6467 1510,6467 L 3657,6467 C 3768,6467 3880,6355 3880,6244 L 3880,5353 C 3880,5242 3768,5131 3657,5131 L 1510,5131 Z M 1288,5131 L 1288,5131 Z M 3880,6467 L 3880,6467 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 1510,5131 C 1399,5131 1288,5242 1288,5353 L 1288,6244 C 1288,6355 1399,6467 1510,6467 L 3657,6467 C 3768,6467 3880,6355 3880,6244 L 3880,5353 C 3880,5242 3768,5131 3657,5131 L 1510,5131 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id5">
+ <rect class="BoundingBox" stroke="none" fill="none" x="1289" y="5169" width="2592" height="1223"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="1545" y="5879"><tspan fill="rgb(0,0,0)" stroke="none">Scheduler.run()</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id6">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6262" y="5005" width="2645" height="1389"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 6510,5031 C 6399,5031 6288,5142 6288,5253 L 6288,6144 C 6288,6255 6399,6367 6510,6367 L 8657,6367 C 8768,6367 8880,6255 8880,6144 L 8880,5253 C 8880,5142 8768,5031 8657,5031 L 6510,5031 Z M 6288,5031 L 6288,5031 Z M 8880,6367 L 8880,6367 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6510,5031 C 6399,5031 6288,5142 6288,5253 L 6288,6144 C 6288,6255 6399,6367 6510,6367 L 8657,6367 C 8768,6367 8880,6255 8880,6144 L 8880,5253 C 8880,5142 8768,5031 8657,5031 L 6510,5031 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id7">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6289" y="5069" width="2592" height="1223"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7288" y="5779"><tspan fill="rgb(0,0,0)" stroke="none">Wait</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id8">
+ <rect class="BoundingBox" stroke="none" fill="none" x="5040" y="1374" width="10161" height="726"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="8497" y="1884"><tspan fill="rgb(102,102,102)" stroke="none">Run Event Loop</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id9">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8854" y="5444" width="3140" height="459"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 8880,5680 C 11196,5680 9802,5674 11633,5673"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 11993,5672 L 11628,5445 11629,5902 11993,5672 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id10">
+ <rect class="BoundingBox" stroke="none" fill="none" x="9358" y="5080" width="2735" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="10080" y="5463"><tspan fill="rgb(102,102,102)" stroke="none">Job Done</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id11">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11967" y="4352" width="2514" height="2644"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 13223,4378 L 14454,5673 13223,6969 11993,5673 13223,4378 13223,4378 Z M 11993,4378 L 11993,4378 Z M 14454,6969 L 14454,6969 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13223,4378 L 14454,5673 13223,6969 11993,5673 13223,4378 13223,4378 Z"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12800" y="5454"><tspan fill="rgb(0,0,0)" stroke="none">Ready</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12592" y="5772"><tspan fill="rgb(0,0,0)" stroke="none">Elements</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="12711" y="6090"><tspan fill="rgb(0,0,0)" stroke="none">Remain</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id12">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6262" y="2505" width="2645" height="1389"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 6510,2531 C 6399,2531 6288,2642 6288,2753 L 6288,3644 C 6288,3755 6399,3867 6510,3867 L 8657,3867 C 8768,3867 8880,3755 8880,3644 L 8880,2753 C 8880,2642 8768,2531 8657,2531 L 6510,2531 Z M 6288,2531 L 6288,2531 Z M 8880,3867 L 8880,3867 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6510,2531 C 6399,2531 6288,2642 6288,2753 L 6288,3644 C 6288,3755 6399,3867 6510,3867 L 8657,3867 C 8768,3867 8880,3755 8880,3644 L 8880,2753 C 8880,2642 8768,2531 8657,2531 L 6510,2531 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id13">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6289" y="2569" width="2592" height="1223"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7144" y="3120"><tspan fill="rgb(0,0,0)" stroke="none">Queue</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7255" y="3438"><tspan fill="rgb(0,0,0)" stroke="none">Jobs</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id14">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8879" y="2953" width="4371" height="1452"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13223,4378 C 13223,3579 11889,3212 9220,3182"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 8880,3181 L 9243,3411 9246,2954 8880,3181 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id15">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7355" y="3841" width="459" height="1192"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 7584,3867 L 7584,4698"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 7585,5032 L 7813,4668 7356,4668 7585,5032 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id16">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11828" y="3154" width="2484" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12824" y="3537"><tspan fill="rgb(102,102,102)" stroke="none">Yes</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id17">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7355" y="1329" width="459" height="1192"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7584,1355 L 7584,2186"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 7585,2520 L 7813,2156 7356,2156 7585,2520 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.CustomShape">
+ <g id="id18">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6262" y="7605" width="2645" height="1389"/>
+ <path fill="rgb(207,231,245)" stroke="none" d="M 6510,7631 C 6399,7631 6288,7742 6288,7853 L 6288,8744 C 6288,8855 6399,8967 6510,8967 L 8657,8967 C 8768,8967 8880,8855 8880,8744 L 8880,7853 C 8880,7742 8768,7631 8657,7631 L 6510,7631 Z M 6288,7631 L 6288,7631 Z M 8880,8967 L 8880,8967 Z"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 6510,7631 C 6399,7631 6288,7742 6288,7853 L 6288,8744 C 6288,8855 6399,8967 6510,8967 L 8657,8967 C 8768,8967 8880,8855 8880,8744 L 8880,7853 C 8880,7742 8768,7631 8657,7631 L 6510,7631 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id19">
+ <rect class="BoundingBox" stroke="none" fill="none" x="6289" y="7669" width="2592" height="1223"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="700"><tspan class="TextPosition" x="7130" y="8379"><tspan fill="rgb(0,0,0)" stroke="none">Return</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id20">
+ <rect class="BoundingBox" stroke="none" fill="none" x="8880" y="6942" width="4370" height="1566"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 13223,6968 C 13223,7843 11889,8244 9220,8278"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 8880,8281 L 9246,8506 9243,8049 8880,8281 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id21">
+ <rect class="BoundingBox" stroke="none" fill="none" x="7355" y="8917" width="459" height="1246"/>
+ <path fill="none" stroke="rgb(102,102,102)" stroke-width="51" stroke-linejoin="round" d="M 7584,8943 L 7584,9828"/>
+ <path fill="rgb(102,102,102)" stroke="none" d="M 7585,10162 L 7813,9798 7356,9798 7585,10162 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id22">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2370" y="6467" width="2738" height="2449"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 5081,8889 C 3416,8889 2707,8193 2597,6801"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 2583,6467 L 2371,6841 2828,6822 2583,6467 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.ConnectorShape">
+ <g id="id23">
+ <rect class="BoundingBox" stroke="none" fill="none" x="2558" y="2327" width="2524" height="2832"/>
+ <path fill="none" stroke="rgb(52,101,164)" stroke-width="51" stroke-linejoin="round" d="M 2584,5132 C 2584,3404 3305,2665 4746,2553"/>
+ <path fill="rgb(52,101,164)" stroke="none" d="M 5081,2540 L 4708,2328 4726,2784 5081,2540 Z"/>
+ </g>
+ </g>
+ <g class="com.sun.star.drawing.TextShape">
+ <g id="id24">
+ <rect class="BoundingBox" stroke="none" fill="none" x="11829" y="7755" width="2484" height="570"/>
+ <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-style="italic" font-weight="700"><tspan class="TextPosition" x="12882" y="8138"><tspan fill="rgb(102,102,102)" stroke="none">No</tspan></tspan></tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg> \ No newline at end of file
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 494e90c67..4d5fe9ac2 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -20,6 +20,7 @@ Later sections provide detailed information on BuildStream internals.
main_using
main_core
CONTRIBUTING
+ main_architecture
For any other information, including `how to install BuildStream <https://buildstream.build/install.html>`_,
refer to `the BuildStream website <https://buildstream.build>`_.
diff --git a/doc/source/main_architecture.rst b/doc/source/main_architecture.rst
new file mode 100644
index 000000000..55b607dae
--- /dev/null
+++ b/doc/source/main_architecture.rst
@@ -0,0 +1,17 @@
+
+
+Architecture
+============
+This section provides details on the overall BuildStream architecture.
+
+
+.. toctree::
+ :maxdepth: 2
+
+ arch_overview
+ arch_program_flow
+ arch_data_model
+ arch_dependency_model
+ arch_scheduler
+ arch_cachekeys
+ arch_sandboxing