Whamcloud - gitweb
LUDOC-94 hsm: documentation for HSM feature. 52/7852/10
authorRichard Henwood <richard.henwood@intel.com>
Wed, 2 Oct 2013 19:58:23 +0000 (14:58 -0500)
committerRichard Henwood <richard.henwood@intel.com>
Wed, 30 Oct 2013 15:13:01 +0000 (15:13 +0000)
This change includes the operating instructions for HSM. Available
since lustre software version 2.5.

Fixed bug in style used to generate fo/PDF files.

Signed-off-by: Richard Henwood <richard.henwood@intel.com>
Change-Id: Idf49b8e16910c09edd8ed962d192b142119ad42e
Reviewed-on: http://review.whamcloud.com/7852
Tested-by: Hudson
Reviewed-by: John L. Hammond <john.hammond@intel.com>
III_LustreAdministration.xml
LustreHSM.xml [new file with mode: 0644]
figures/HSM_copytool.svg [new file with mode: 0644]
style/customstyle_fo.xsl

index f55b1ef..3884888 100644 (file)
         </listitem>
         <listitem>
             <para>
+                <link linkend='lustrehsm' endterm='lustrehsm.title'/>
+            </para>
+        </listitem>
+        <listitem>
+            <para>
                 <link linkend='managingsecurity' endterm='managingsecurity.title'/>
 
             </para>
@@ -77,6 +82,7 @@
     <xi:include href="ManagingFileSystemIO.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="ManagingFailover.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="ConfiguringQuotas.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="LustreHSM.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="ManagingSecurity.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 
 
diff --git a/LustreHSM.xml b/LustreHSM.xml
new file mode 100644 (file)
index 0000000..d8b021b
--- /dev/null
@@ -0,0 +1,477 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:lang="en-US" xml:id="lustrehsm" condition='l25'>
+  <title xml:id="lustrehsm.title">Hierarchical Storage Management (HSM)</title>
+  <para>This chapter describes how to bind Lustre to a Hierarchical Storage Management (HSM) solution.</para>
+  <section xml:id="hsm_introduction">
+      <title>
+          <indexterm><primary>Hierarchical Storage Management (HSM)</primary><secondary>introduction</secondary></indexterm>Introduction</title>
+       <para>The Lustre file system can bind to a Hierarchical Storage Management (HSM)
+solution using a specific set of functions. These functions enable connecting
+a Lustre file system to one or more external storage systems, typically HSMs.
+With a Lustre file system bound to a HSM solution, the Lustre file system acts
+as a high speed cache in front of these slower HSM storage systems. </para>
+
+       <para>The Lustre file system integration with HSM provides a mechanism for
+files to simultaneously exist in a HSM solution and have a metadata entry in
+the Lustre file system that can be examined. Reading, writing or truncating the
+file will trigger the file data to be fetched from the HSM storage back into
+the Lustre file system.</para>
+
+       <para>The process of copying a file into the HSM storage is known as
+<emphasis>archive</emphasis>. Once the archive is complete, the Lustre file
+data can be delete (know as <emphasis>release</emphasis>.) The process of
+returning data from the HSM storage to the Lustre file system is called
+<emphasis>restore</emphasis>.  The archive and restore operations require a
+Lustre file system component called an <emphasis>Agent</emphasis>. </para>
+
+       <para>An Agent is a specially designed Lustre client node that mounts the
+Lustre file system in question. On an Agent, a user space program called a
+copytool is run to coordinate the archive and restore of files between the
+Lustre file system and the HSM solution.</para>
+
+       <para>Requests to restore a given file are registered and dispatched by a
+facet on the MDT called the Coordinator.
+
+       <figure xml:id='hsmcopytoolfig'>
+               <title>Overview of the Lustre file system HSM</title>
+               <mediaobject>
+                       <imageobject>
+                               <imagedata fileref='figures/HSM_copytool.svg' format='svg'/>
+                       </imageobject>
+               </mediaobject>
+       </figure>
+</para>
+  </section>
+
+  <section xml:id="hsmsetup">
+       <title>
+          <indexterm><primary>HSM</primary><secondary>setup</secondary></indexterm>Setup</title>
+
+       <section xml:id='hsmrequirements'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>requirements</secondary></indexterm>Requirements
+               </title>
+       <para>To setup a Lustre/HSM configuration you need:</para>
+      <itemizedlist>
+        <listitem>
+                       <para>a standard Lustre file system (version 2.5.0 and above)</para>
+        </listitem>
+        <listitem>
+                       <para>a minimum of 2 clients, 1 used for your chosen computation task that generates
+                       useful data, and 1 used as agent.</para>
+               </listitem>
+      </itemizedlist>
+       <para>Multiple agents can be employed. All the agents need to share access
+       to their backend storage. For the POSIX copytool, a POSIX namespace like NFS or
+       another Lustre file system is suitable.</para>
+       </section>
+
+       <section xml:id='hsmcoordinator'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>coordinator</secondary></indexterm>Coordinator
+               </title>
+
+                       <para>To bind a Lustre file system to a HSM system a coordinator
+                       must be activated on each of your filesystem MDTs. This can be achieved with the command:</para>
+<screen>$ lctl set_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm_control=enabled
+mdt.lustre-MDT0000.hsm_control=enabled</screen>
+                       <para>To verify if the coordinator is running correctly</para>
+
+<screen>$ lctl get_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm_control
+mdt.lustre-MDT0000.hsm_control=enabled</screen>
+       </section>
+
+       <section xml:id='hsmagents'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>agents</secondary></indexterm>Agents
+               </title>
+
+       <para>Once a coordinator is started launch the copytool on each agent node to connect to your HSM storage. If your HSM storage has POSIX access this command will be of the form:</para>
+       <screen>lhsmtool_posix --daemon --hsm-root <replaceable>$HSMPATH</replaceable> --archive=1 <replaceable>$LUSTREPATH</replaceable></screen>
+       <para>POSIX copytool must be stopped sending it a TERM signal.</para>
+       </section>
+
+       </section>
+
+  <section xml:id="hsmagentsandcopytool">
+       <title>
+          <indexterm><primary>HSM</primary><secondary>agents and copytools</secondary></indexterm>Agents and copytool</title>
+       <para>
+
+Agents are Lustre file system clients running copytool. copytool is a userspace
+daemon that transfers data between Lustre and a HSM solution. Because different
+HSM solutions use different APIs, copytools can typically only work with a
+specific HSM. Only one copytool could be run by agent node.</para>
+
+<para>The following rule applies regarding copytool instances: a Lustre file
+system only supports a single  copytool process, per ARCHIVE ID (see below),
+per client node.  Due to a Lustre software limitation, this constraint is
+irrespective of the number of Lustre file systems mounted by the Agent.</para>
+
+<para>Bundled with Lustre tools, the POSIX copytool can work with any HSM or
+external storage that exports a POSIX API.  </para>
+
+       <section xml:id='hsmarchivebackends'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>archiveID backends</secondary></indexterm>Archive ID, multiple backends
+               </title>
+
+<para>A Lustre file system can be bound to several different HSM solutions.
+Each bound HSM solution is identified by a number referred to as ARCHIVE ID. A
+unique value of ARCHIVE ID must be chosen for each bound HSM solution. ARCHIVE
+ID must be in the range 1 to 32.</para>
+
+<para>A Lustre file system supports an unlimited number of copytool instances.
+You need, at least, one copytool per ARCHIVE ID. When using the POSIX copytool,
+this ID is defined using <literal>--archive</literal> switch.</para>
+
+<para>For example: if a single Lustre file system is bound to 2 different HSMs (A and B,) ARCHIVE ID “1” can be chosen for HSM A and ARCHIVE ID “2” for HSM B. If you start 3 copytool instances for ARCHIVE ID 1, all of them will use Archive ID “1”. Same rule applies for copytool instances dealing with the HSM B, using Archive ID “2”. </para>
+
+<para>When issuing HSM requests, you can use <literal>--archive</literal> switch
+to choose the backend you want to use. In this example, file <literal>foo</literal> will be
+archived into backend ARCHIVE ID “5”:</para>
+
+       <screen>$ lfs hsm_archive --archive=5 /mnt/lustre/foo</screen>
+
+<para>A default ARCHIVE ID can be defined when this switch is not specified:</para>
+
+       <screen>$ lctl set_param -P mdt.<replaceable>lustre-MDT0000</replaceable>.hsm.default_archive_id=5</screen>
+
+<para>The ARCHIVE ID of archived files can be checked using <literal>lfs
+hsm_state</literal> command:</para>
+
+       <screen>$ lfs hsm_state /mnt/lustre/foo
+/mnt/lustre/foo: (0x00000009) exists archived, archive_id:5</screen>
+
+       </section>
+
+       <section xml:id='hsmregisteredagents'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>registered agents</secondary></indexterm>Registered agents
+               </title>
+
+       <para>A Lustre file system allocates a unique UUID per client mount point, for each
+filesystem. Only one copytool can be registered for each Lustre mount point.
+As a consequence the UUID uniquely identifies a copytool, per filesystem.</para>
+
+<para>The currently registered copytool instances (agents UUID) can be retrieved running the following command, per MDT, on MDS nodes:</para>
+
+<screen>$ lctl get_param -n mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm.agents
+uuid=a19b2416-0930-fc1f-8c58-c985ba5127ad archive_id=1 requests=[current:0 ok:0 errors:0]</screen>
+
+<para>The returned fields have the following meaning:</para>
+      <itemizedlist>
+        <listitem>
+               <para><literal>UUID</literal> the client mount used by the corresponding copytool.</para>
+        </listitem>
+        <listitem>
+               <para><literal>archive_id</literal> comma-separated list of ARCHIVE ID accessible by this copytool.</para>
+        </listitem>
+        <listitem>
+               <para><literal>requests</literal> various statistics of number of processed requests by this copytool.</para>
+        </listitem>
+      </itemizedlist>
+
+       </section>
+
+       <section xml:id='hsmtimeout'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>timeout</secondary></indexterm>Timeout
+               </title>
+
+               <para>One or more copytool instances may experience conditions that
+cause them to become unresponsive. To avoid blocking access to the related
+files a timeout value is defined for request processing. A copytool must be
+able to fully complete a request within this time. The default is 3600 seconds.
+               </para>
+<screen>$ lctl set_param -n mdt.<replaceable>lustre-MDT0000</replaceable>.hsm.active_request_timeout
+</screen>
+
+       </section>
+
+       </section>
+
+       <section xml:id='hsmrequests'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>requests</secondary></indexterm>Requests
+               </title>
+
+       <para>Data management between a Lustre file system and HSM solutions is driven by requests. There are tfive types:</para>
+
+      <itemizedlist>
+        <listitem>
+               <para><literal>ARCHIVE</literal> Copy data from a Lustre file system file into the HSM solution.</para>
+        </listitem>
+        <listitem>
+               <para><literal>RELEASE</literal> Remove file data from the Lustre file system.</para>
+        </listitem>
+        <listitem>
+               <para><literal>RESTORE</literal> Copy back data from the HSM solution into the corresponding Lustre file system file.</para>
+        </listitem>
+        <listitem>
+               <para><literal>REMOVE</literal> Delete the copy of the data from the HSM solution.</para>
+        </listitem>
+        <listitem>
+               <para><literal>CANCEL</literal> Cancel an undergoing or pending request.</para>
+        </listitem>
+      </itemizedlist>
+
+       <para>Only the <literal>RELEASE</literal> is performed synchronously and
+does not involve the coordinator. Other requests are handled by Coordinators.
+Each MDT coordinator is resiliently managing them.</para>
+
+       <section xml:id='hsmcommands'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>commands</secondary></indexterm>Commands
+               </title>
+
+       <para>Requests are submitted using <literal>lfs</literal> command:</para>
+               <screen>$ lfs hsm_archive [--archive=<replaceable>ID</replaceable>] <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]
+$ lfs hsm_release <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]
+$ lfs hsm_restore <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]
+$ lfs hsm_remove  <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]
+</screen>
+
+       <para>Requests are sent by default to the default ARCHIVE ID or the specified one (See <xref linkend="hsmarchivebackends"/>.)</para>
+       </section>
+
+       <section xml:id='hsmautorestore'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>automatic restore</secondary></indexterm>Automatic restore
+               </title>
+
+               <para>Released files are automatically restored when a process tries to read or modify them. The corresponding I/O will block waiting for the file to be restored.  This is transparent to the process. For example, the following command automatically restores the file if released.</para>
+<screen>$ cat <replaceable>/mnt/lustre/released_file</replaceable></screen>
+       </section>
+
+       <section xml:id='hsmrequestmonitoring'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>request monitoring</secondary></indexterm>Request monitoring
+               </title>
+
+       <para>The list of registered requests and their status can be monitored, per MDT, with the following command:</para>
+
+       <screen>$ lctl get_param -n mdt.<replaceable>lustre-MDT0000</replaceable>.hsm.actions</screen>
+
+       <para>The list of request currently being processed by a copytool is available with:</para>
+
+<screen>$ lctl get_param -n mdt.<replaceable>lustre-MDT0000</replaceable>.hsm.active_requests</screen>
+
+       </section>
+       </section>
+
+       <section xml:id='hsmfilestates'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>file states</secondary></indexterm>File states
+               </title>
+
+               <para>When files are archived or released, their state in the Lustre file system changes. This state can be read using the following <literal>lfs</literal> command:</para>
+
+<screen>$ lfs hsm_state <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]</screen>
+
+<para>There is also a list of specific policy flags which could be set to have a per-file specific policy:
+</para>
+
+      <itemizedlist>
+        <listitem>
+               <para><literal>NOARCHIVE</literal> This file will never be archived.</para>
+        </listitem>
+        <listitem>
+               <para><literal>NORELEASE</literal> This file will never be released. This value cannot be set if the flag is currently set to <literal>RELEASED</literal></para>
+        </listitem>
+        <listitem>
+               <para><literal>DIRTY</literal> This file has been modified since a copy of it was made in the HSM solution. <literal>DIRTY</literal> files should be archived again. The <literal>DIRTY</literal> flag can only be set if <literal>EXIST</literal> is set.</para>
+        </listitem>
+               </itemizedlist>
+
+<para>The following options can only be set by root user.</para>
+
+      <itemizedlist>
+        <listitem>
+
+               <para><literal>LOST</literal> This file previously archived but the
+copy was lost on the HSM solution for some reasons in the backend (for example,
+by a corrupted tape), and could not be restored. If the file is not in the
+state of <literal>RELEASE</literal> it needs to be archived again. If the file
+state is in <literal>RELEASE</literal>, file data is lost.</para>
+
+        </listitem>
+      </itemizedlist>
+
+       <para>Some flags can be manually set or cleared using the following commands:</para>
+
+<screen>$ lfs hsm_set [<replaceable>FLAGS</replaceable>] <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]
+$ lfs hsm_clear [<replaceable>FLAGS</replaceable>] <replaceable>FILE1</replaceable> [<replaceable>FILE2</replaceable>...]</screen>
+
+       </section>
+
+       <section xml:id='hsmtuning'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>tuning</secondary></indexterm>Tuning
+               </title>
+
+       <section xml:id='hsmhsm_control'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>hsm_control</secondary></indexterm><literal>hsm_controlpolicy</literal>
+               </title>
+
+               <para><literal>hsm_control</literal> controls coordinator activity and can also purge the action list.</para>
+
+               <screen>$ lctl set_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm_control=purge</screen>
+
+               <para>Possible values are:</para>
+
+      <itemizedlist>
+        <listitem>
+               <para><literal>enabled</literal> Start coordinator thread. Requests are dispatched on available copytool instances.</para>
+        </listitem>
+        <listitem>
+               <para><literal>disabled</literal> Pause coordinator activity. No new request will be scheduled. No timeout will be handled. New requests will be registered but will be handled only when the coordinator is enabled again.</para>
+        </listitem>
+        <listitem>
+               <para><literal>shutdown</literal> Stop coordinator thread. No request could be submitted.</para>
+        </listitem>
+        <listitem>
+               <para><literal>purge</literal> Clear all recorded requests. Do not change coordinator state.</para>
+        </listitem>
+      </itemizedlist>
+
+       </section>
+
+       <section xml:id='hsmmax_requests'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>max_requests</secondary></indexterm><literal>max_requests</literal>
+               </title>
+
+               <para><literal>max_requests</literal> is the maximum number of active
+requests at the same time. This is a per coordinator value, and independent of
+the number of agents.</para>
+
+<para>For example, if 2 MDT and 4 agents are present, the agents will never have to handle more than 2 x <literal>max_requests</literal>.</para>
+
+<screen>$ lctl set_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm.max_requests=10</screen>
+
+       </section>
+
+       <section xml:id='hsmpolicy'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>policy</secondary></indexterm><literal>policy</literal>
+               </title>
+
+       <para>Change system behavior. Value could be combined or removed prefixing them by '+' or '-'.</para>
+
+       <screen>$ lctl set_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm.policy=+NRA</screen>
+
+       <para>Possible values are a combination of:</para>
+
+      <itemizedlist>
+        <listitem>
+               <para><literal>NRA</literal> No Retry Action. If a restore fails, do not reschedule it automatically.</para>
+        </listitem>
+        <listitem>
+               <para><literal>NBR</literal> Non Blocking Restore. No automatic restore is triggered. Access to a released file returns <literal>ENODATA</literal>.</para>
+        </listitem>
+      </itemizedlist>
+       </section>
+
+       <section xml:id='hsmgrace_delay'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>grace_delay</secondary></indexterm><literal>grace_delay</literal>
+               </title>
+
+       <para><literal>grace_delay</literal> is the delay, expressed in seconds,
+before a successful or failed request is cleared from the whole request
+list.</para>
+
+               <screen>$ lctl set_param mdt.<replaceable>$FSNAME-MDT0000</replaceable>.hsm.grace_delay=10</screen>
+
+       </section>
+       </section>
+
+       <section xml:id='hsmchangelogs'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>changelogs</secondary></indexterm>change logs
+               </title>
+
+               <para>A changelog record type “HSM“ was added for Lustre file system
+logs that relate to HSM events.</para>
+<screen>16HSM   13:49:47.469433938 2013.10.01 0x280 t=[0x200000400:0x1:0x0]</screen>
+
+               <para>Two items of information are available for each HSM record: the
+FID of the modified file and a bit mask.  The bit mask codes the following
+information (lowest bits first):</para>
+
+      <itemizedlist>
+        <listitem>
+                       <para>Error code, if any (7 bits)</para>
+        </listitem>
+        <listitem>
+                       <para>HSM event (3 bits)</para>
+                 <itemizedlist>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 0</literal> File has been archived.</para>
+                       </listitem>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 1</literal> File has been restored.</para>
+                       </listitem>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 2</literal> A request for this file has been canceled.</para>
+                       </listitem>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 3</literal> File has been released.</para>
+                       </listitem>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 4</literal> A remove request has been executed automatically.</para>
+                       </listitem>
+                       <listitem>
+                               <para><literal>HE_ARCHIVE = 5</literal> File flags have changed.</para>
+                       </listitem>
+                 </itemizedlist>
+        </listitem>
+        <listitem>
+                       <para>HSM flags (3 bits)</para>
+                 <itemizedlist>
+                       <listitem>
+                               <para><literal>CLF_HSM_DIRTY=0x1</literal></para>
+                       </listitem>
+                 </itemizedlist>
+        </listitem>
+      </itemizedlist>
+       <para>In the above example, <literal>0x280</literal> means error code is 0 and event is HE_STATE.</para>
+
+       <para>When using <literal>liblustreapi</literal>, there is a list of helper functions to easily extract the different values from this bitmask, like: <literal>hsm_get_cl_event()</literal>, <literal>hsm_get_cl_flags()</literal>, <literal>hsm_get_cl_error()</literal></para>
+
+       </section>
+
+       <section xml:id='hsmpolicyengine'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>policy engine</secondary></indexterm>Policy engine
+               </title>
+
+               <para>A Lustre file system does not have an internal component responsible for automatically scheduling archive requests and release requests under any conditions (like low space). Automatically scheduling archive operations is the role of the policy engine.</para>
+
+       <para>It is recommended that the Policy Engine runs on a dedicated client, similar to an agent node, with a Lustre version 2.5+.</para>
+
+       <para>A policy engine is a userspace program using the Lustre file system HSM specific API to monitor the file system and schedule requests.</para>
+
+       <para>Robinhood is the recommended policy engine.</para>
+
+
+       <section xml:id='hsmrobinhood'>
+               <title>
+          <indexterm><primary>HSM</primary><secondary>robinhood</secondary></indexterm>Robinhood
+               </title>
+
+       <para>Robinhood is a Policy engine and reporting tool for large file
+systems. It maintains a replicate of file system medatada in a database that
+can be queried at will. Robinhood makes it possible to schedule mass action on
+file system entries by defining attribute-based policies, provides fast find
+and <literal>du</literal> enhanced clones, gives to administrators an overall
+view of file system content through a web user interface and command line tools.</para>
+
+<para>Robinhood can be used for various configuration. Robinhood is an external project and further information can be found on the website: <link xl:href='https://sourceforge.net/apps/trac/robinhood/wiki/Doc'>https://sourceforge.net/apps/trac/robinhood/wiki/Doc</link>.</para>
+
+       </section>
+       </section>
+
+</chapter>
diff --git a/figures/HSM_copytool.svg b/figures/HSM_copytool.svg
new file mode 100644 (file)
index 0000000..6b43faa
--- /dev/null
@@ -0,0 +1,4952 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   viewBox="0 0 19080 6368"
+   preserveAspectRatio="xMidYMid"
+   id="svg2"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="HSM_copytool.svg"
+   style="fill-rule:evenodd">
+  <metadata
+     id="metadata2018">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1058"
+     id="namedview2016"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="0.01"
+     inkscape:cx="83819"
+     inkscape:cy="-22287"
+     inkscape:window-x="1920"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs4">
+    <font
+       id="EmbeddedFont_1"
+       horiz-adv-x="2048"
+       horiz-origin-x="0"
+       horiz-origin-y="0"
+       vert-origin-x="45"
+       vert-origin-y="90"
+       vert-adv-y="90">
+      <font-face
+         font-family="Arial embedded"
+         units-per-em="2048"
+         ascent="1855"
+         descent="428"
+         id="font-face7" />
+      <missing-glyph
+         horiz-adv-x="2048"
+         style="fill:none;stroke:black;stroke-width:33"
+         d="M 0,2048 L 2047,2048 2047,1 0,1 0,2048 Z"
+         id="missing-glyph9" />
+      <glyph
+         unicode=" "
+         horiz-adv-x="1027"
+         id="glyph11" />
+      <glyph
+         unicode="A"
+         horiz-adv-x="1371"
+         d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 768,1026 C 757,1053 747,1080 738,1107 728,1134 719,1159 712,1182 705,1204 699,1223 694,1238 689,1253 686,1262 685,1265 684,1262 681,1252 676,1237 671,1222 665,1203 658,1180 650,1157 641,1132 632,1105 622,1078 612,1051 602,1024 L 422,561 949,561 768,1026 Z"
+         id="glyph13" />
+      <glyph
+         unicode="C"
+         horiz-adv-x="1314"
+         d="M 792,1274 C 712,1274 641,1261 580,1234 518,1207 466,1169 425,1120 383,1071 351,1011 330,942 309,873 298,796 298,711 298,626 310,549 333,479 356,408 389,348 432,297 475,246 527,207 590,179 652,151 722,137 800,137 855,137 905,144 950,159 995,173 1035,193 1072,219 1108,245 1140,276 1169,312 1198,347 1223,387 1245,430 L 1401,352 C 1376,299 1344,250 1307,205 1270,160 1226,120 1176,87 1125,54 1068,28 1005,9 941,-10 870,-20 791,-20 677,-20 577,-2 492,35 406,71 334,122 277,187 219,252 176,329 147,418 118,507 104,605 104,711 104,821 119,920 150,1009 180,1098 224,1173 283,1236 341,1298 413,1346 498,1380 583,1413 681,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1194,1054 1176,1086 1153,1117 1130,1147 1102,1174 1068,1197 1034,1220 994,1239 949,1253 903,1267 851,1274 792,1274 Z"
+         id="glyph15" />
+      <glyph
+         unicode="D"
+         horiz-adv-x="1228"
+         d="M 1381,719 C 1381,602 1363,498 1328,409 1293,319 1244,244 1183,184 1122,123 1049,78 966,47 882,16 792,0 695,0 L 168,0 168,1409 634,1409 C 743,1409 843,1396 935,1369 1026,1342 1105,1300 1171,1244 1237,1187 1289,1116 1326,1029 1363,942 1381,839 1381,719 Z M 1189,719 C 1189,814 1175,896 1148,964 1121,1031 1082,1087 1033,1130 984,1173 925,1205 856,1226 787,1246 712,1256 630,1256 L 359,1256 359,153 673,153 C 747,153 816,165 879,189 942,213 996,249 1042,296 1088,343 1124,402 1150,473 1176,544 1189,626 1189,719 Z"
+         id="glyph17" />
+      <glyph
+         unicode="H"
+         horiz-adv-x="1143"
+         d="M 1121,0 L 1121,653 359,653 359,0 168,0 168,1409 359,1409 359,813 1121,813 1121,1409 1312,1409 1312,0 1121,0 Z"
+         id="glyph19" />
+      <glyph
+         unicode="L"
+         horiz-adv-x="914"
+         d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"
+         id="glyph21" />
+      <glyph
+         unicode="M"
+         horiz-adv-x="1371"
+         d="M 1366,0 L 1366,940 C 1366,974 1366,1009 1367,1044 1368,1079 1369,1112 1370,1141 1371,1175 1373,1208 1375,1240 1366,1206 1356,1172 1346,1139 1337,1110 1328,1080 1318,1048 1307,1015 1297,986 1287,960 L 923,0 789,0 420,960 C 416,970 412,982 408,995 403,1008 399,1023 394,1038 389,1053 384,1068 379,1084 374,1099 369,1115 364,1130 353,1165 342,1202 331,1240 332,1203 333,1166 334,1129 335,1098 336,1065 337,1031 338,996 338,966 338,940 L 338,0 168,0 168,1409 419,1409 794,432 C 799,419 804,402 811,381 818,360 824,338 830,316 836,294 842,273 847,254 852,234 855,219 857,208 859,219 863,234 868,254 873,274 880,295 887,317 894,339 900,360 907,381 914,402 920,419 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"
+         id="glyph23" />
+      <glyph
+         unicode="O"
+         horiz-adv-x="1399"
+         d="M 1495,711 C 1495,601 1479,501 1448,411 1416,321 1370,244 1310,180 1250,116 1177,67 1090,32 1003,-3 905,-20 795,-20 679,-20 577,-2 490,35 403,71 330,122 272,187 214,252 170,329 141,418 112,507 97,605 97,711 97,821 112,920 143,1009 174,1098 219,1173 278,1236 337,1298 411,1346 498,1380 585,1413 684,1430 797,1430 909,1430 1009,1413 1096,1379 1183,1345 1256,1297 1315,1234 1374,1171 1418,1096 1449,1007 1480,918 1495,820 1495,711 Z M 1300,711 C 1300,796 1289,873 1268,942 1246,1011 1214,1071 1172,1120 1129,1169 1077,1207 1014,1234 951,1261 879,1274 797,1274 713,1274 639,1261 576,1234 513,1207 460,1169 418,1120 375,1071 344,1011 323,942 302,873 291,796 291,711 291,626 302,549 324,479 345,408 377,348 420,297 462,246 515,206 578,178 641,149 713,135 795,135 883,135 959,149 1023,178 1086,207 1139,247 1180,298 1221,349 1251,409 1271,480 1290,551 1300,628 1300,711 Z"
+         id="glyph25" />
+      <glyph
+         unicode="S"
+         horiz-adv-x="1199"
+         d="M 1272,389 C 1272,330 1261,275 1238,225 1215,175 1179,132 1131,96 1083,59 1023,31 950,11 877,-10 790,-20 690,-20 515,-20 378,11 280,72 182,133 120,222 93,338 L 278,375 C 287,338 302,305 321,275 340,245 367,219 400,198 433,176 473,159 522,147 571,135 629,129 697,129 754,129 806,134 853,144 900,153 941,168 975,188 1009,208 1036,234 1055,266 1074,297 1083,335 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 613,659 573,668 534,679 494,689 456,701 420,716 383,730 349,747 317,766 285,785 257,809 234,836 211,863 192,894 179,930 166,965 159,1006 159,1053 159,1120 173,1177 200,1225 227,1272 264,1311 312,1342 360,1373 417,1395 482,1409 547,1423 618,1430 694,1430 781,1430 856,1423 918,1410 980,1396 1032,1375 1075,1348 1118,1321 1152,1287 1178,1247 1203,1206 1224,1159 1239,1106 L 1051,1073 C 1042,1107 1028,1137 1011,1164 993,1191 970,1213 941,1231 912,1249 878,1263 837,1272 796,1281 747,1286 692,1286 627,1286 572,1280 528,1269 483,1257 448,1241 421,1221 394,1201 374,1178 363,1151 351,1124 345,1094 345,1063 345,1021 356,987 377,960 398,933 426,910 462,892 498,874 540,859 587,847 634,835 685,823 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"
+         id="glyph27" />
+      <glyph
+         unicode="a"
+         horiz-adv-x="1057"
+         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"
+         id="glyph29" />
+      <glyph
+         unicode="c"
+         horiz-adv-x="914"
+         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"
+         id="glyph31" />
+      <glyph
+         unicode="d"
+         horiz-adv-x="942"
+         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,223 C 1001,197 1001,172 1002,148 1002,124 1002,102 1003,82 1004,62 1004,45 1005,31 1006,16 1006,6 1007,0 L 835,0 C 834,7 833,16 832,29 831,41 830,55 829,71 828,87 827,104 826,122 825,139 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"
+         id="glyph33" />
+      <glyph
+         unicode="e"
+         horiz-adv-x="971"
+         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"
+         id="glyph35" />
+      <glyph
+         unicode="g"
+         horiz-adv-x="942"
+         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,932 826,953 827,974 828,993 829,1012 830,1030 831,1046 832,1059 833,1072 835,1080 836,1082 L 1007,1082 C 1006,1076 1006,1066 1005,1052 1004,1037 1004,1020 1003,1000 1002,980 1002,958 1002,934 1001,909 1001,884 1001,858 L 1001,31 C 1001,-120 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"
+         id="glyph37" />
+      <glyph
+         unicode="h"
+         horiz-adv-x="885"
+         d="M 317,897 C 337,934 359,965 382,991 405,1016 431,1037 459,1054 487,1071 518,1083 551,1091 584,1098 622,1102 663,1102 732,1102 789,1093 834,1074 878,1055 913,1029 939,996 964,962 982,922 992,875 1001,828 1006,777 1006,721 L 1006,0 825,0 825,686 C 825,732 822,772 817,807 811,842 800,871 784,894 768,917 745,934 716,946 687,957 649,963 602,963 559,963 521,955 487,940 452,925 423,903 399,875 374,847 355,813 342,773 329,733 322,688 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1076 322,1054 321,1032 320,1010 320,990 319,971 318,952 317,937 316,924 315,911 315,902 314,897 L 317,897 Z"
+         id="glyph39" />
+      <glyph
+         unicode="i"
+         horiz-adv-x="200"
+         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"
+         id="glyph41" />
+      <glyph
+         unicode="l"
+         horiz-adv-x="200"
+         d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"
+         id="glyph43" />
+      <glyph
+         unicode="n"
+         horiz-adv-x="914"
+         d="M 825,0 L 825,686 C 825,739 821,783 814,818 806,853 793,882 776,904 759,925 736,941 708,950 679,959 644,963 602,963 559,963 521,956 487,941 452,926 423,904 399,876 374,847 355,812 342,771 329,729 322,681 322,627 L 322,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 334,928 353,957 374,982 395,1007 419,1029 446,1047 473,1064 505,1078 540,1088 575,1097 616,1102 663,1102 723,1102 775,1095 818,1080 861,1065 897,1043 925,1012 953,981 974,942 987,894 1000,845 1006,788 1006,721 L 1006,0 825,0 Z"
+         id="glyph45" />
+      <glyph
+         unicode="o"
+         horiz-adv-x="971"
+         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"
+         id="glyph47" />
+      <glyph
+         unicode="p"
+         horiz-adv-x="943"
+         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,861 C 138,887 138,912 138,936 137,960 137,982 136,1002 135,1021 135,1038 134,1052 133,1066 133,1076 132,1082 L 306,1082 C 307,1080 308,1073 309,1061 310,1049 311,1035 312,1018 313,1001 314,982 315,963 316,944 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"
+         id="glyph49" />
+      <glyph
+         unicode="r"
+         horiz-adv-x="514"
+         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"
+         id="glyph51" />
+      <glyph
+         unicode="s"
+         horiz-adv-x="914"
+         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"
+         id="glyph53" />
+      <glyph
+         unicode="t"
+         horiz-adv-x="543"
+         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"
+         id="glyph55" />
+      <glyph
+         unicode="u"
+         horiz-adv-x="885"
+         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,231 C 997,208 997,185 998,160 998,135 998,111 999,89 1000,66 1000,47 1001,31 1002,15 1002,5 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 827,116 826,136 825,155 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"
+         id="glyph57" />
+      <glyph
+         unicode="v"
+         horiz-adv-x="1028"
+         d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 442,363 447,346 454,325 460,304 466,282 473,259 480,236 486,215 492,194 497,173 502,155 506,141 510,155 515,173 522,194 528,215 534,236 541,258 548,280 555,302 562,323 569,344 575,361 580,376 L 826,1082 1017,1082 613,0 Z"
+         id="glyph59" />
+      <glyph
+         unicode="w"
+         horiz-adv-x="1543"
+         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"
+         id="glyph61" />
+      <glyph
+         unicode="y"
+         horiz-adv-x="1057"
+         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,-123 417,-37 L 434,6 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"
+         id="glyph63" />
+      <glyph
+         unicode="“"
+         horiz-adv-x="543"
+         d="M 407,952 L 407,1098 C 407,1133 409,1164 412,1193 415,1222 420,1249 427,1274 433,1299 441,1322 451,1344 460,1366 472,1388 485,1409 L 607,1409 C 577,1366 554,1322 538,1278 521,1234 513,1190 513,1147 L 601,1147 601,952 407,952 Z M 75,952 L 75,1098 C 75,1133 77,1164 80,1193 83,1222 88,1249 95,1274 102,1299 110,1322 120,1344 130,1366 142,1388 155,1409 L 276,1409 C 246,1366 223,1322 206,1278 189,1234 181,1190 181,1147 L 270,1147 270,952 75,952 Z"
+         id="glyph65" />
+      <glyph
+         unicode="”"
+         horiz-adv-x="572"
+         d="M 607,1264 C 607,1229 605,1197 602,1168 599,1139 594,1113 588,1088 581,1063 573,1039 563,1017 553,995 541,973 528,952 L 407,952 C 437,995 460,1039 477,1083 493,1127 501,1171 501,1214 L 413,1214 413,1409 607,1409 607,1264 Z M 276,1264 C 276,1229 275,1197 272,1168 269,1139 264,1113 257,1088 250,1063 242,1039 233,1017 223,995 211,973 198,952 L 75,952 C 105,995 128,1039 145,1083 161,1127 169,1171 169,1214 L 81,1214 81,1409 276,1409 276,1264 Z"
+         id="glyph67" />
+    </font>
+  </defs>
+  <g
+     visibility="visible"
+     id="Default"
+     class="Master_Slide"
+     style="visibility:visible"
+     transform="translate(-1031,-2145)">
+    <g
+       style="fill:none;stroke:none"
+       id="g70">
+      <rect
+         x="0"
+         y="0"
+         width="21000"
+         height="29700"
+         id="rect72" />
+    </g>
+  </g>
+  <g
+     visibility="visible"
+     id="page1"
+     class="Slide"
+     style="visibility:visible"
+     transform="translate(-1031,-2145)">
+    <g
+       class="OLE2"
+       id="g75">
+      <g
+         id="g77">
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g79">
+          <path
+             style="fill:none"
+             d="m 2102,2271 c -16,0 -32,1 -48,1"
+             id="path81"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2006,2276 c -16,2 -32,4 -47,7"
+             id="path83"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1913,2292 c -16,3 -31,7 -47,12"
+             id="path85"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1820,2318 c -15,5 -30,10 -45,16"
+             id="path87"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1732,2352 c -15,6 -30,12 -45,20"
+             id="path89"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1645,2394 c -14,7 -28,15 -41,23"
+             id="path91"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1564,2443 c -14,8 -27,17 -40,26"
+             id="path93"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1486,2498 c -12,9 -26,19 -37,29"
+             id="path95"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1413,2558 c -12,10 -24,22 -35,33"
+             id="path97"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1345,2625 c -11,11 -22,23 -33,34"
+             id="path99"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1282,2695 c -10,12 -19,25 -29,37"
+             id="path101"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1225,2771 c -9,13 -18,25 -26,39"
+             id="path103"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1174,2850 c -7,14 -15,27 -22,42"
+             id="path105"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1131,2934 c -7,14 -13,29 -19,43"
+             id="path107"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1095,3021 c -5,14 -11,29 -14,45"
+             id="path109"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1067,3111 c -3,15 -6,30 -9,46"
+             id="path111"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1051,3203 c -3,15 -4,31 -6,47"
+             id="path113"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3297 c 0,3 0,8 0,12 l 0,34"
+             id="path115"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3390 0,47"
+             id="path117"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3484 0,47"
+             id="path119"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3578 0,47"
+             id="path121"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3672 0,47"
+             id="path123"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3765 0,47"
+             id="path125"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3859 0,47"
+             id="path127"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,3953 0,47"
+             id="path129"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4047 0,47"
+             id="path131"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4140 0,47"
+             id="path133"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4234 0,47"
+             id="path135"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4328 0,47"
+             id="path137"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4422 0,47"
+             id="path139"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4516 0,46"
+             id="path141"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4609 0,47"
+             id="path143"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4703 0,47"
+             id="path145"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4797 0,47"
+             id="path147"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4891 0,46"
+             id="path149"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,4984 0,47"
+             id="path151"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5078 0,47"
+             id="path153"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5172 0,47"
+             id="path155"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5266 0,47"
+             id="path157"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5359 0,47"
+             id="path159"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5453 0,47"
+             id="path161"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5547 0,47"
+             id="path163"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5641 0,47"
+             id="path165"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5735 0,46"
+             id="path167"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5828 0,47"
+             id="path169"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,5922 0,47"
+             id="path171"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6016 0,47"
+             id="path173"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6110 0,46"
+             id="path175"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6203 0,47"
+             id="path177"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6297 0,47"
+             id="path179"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6391 0,47"
+             id="path181"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6485 0,47"
+             id="path183"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6578 0,47"
+             id="path185"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6672 0,47"
+             id="path187"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6766 0,47"
+             id="path189"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6860 0,47"
+             id="path191"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,6953 0,47"
+             id="path193"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,7047 0,47"
+             id="path195"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,7141 0,47"
+             id="path197"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,7235 0,47"
+             id="path199"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,7329 0,46"
+             id="path201"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1043,7422 0,40 c 0,3 0,4 0,7"
+             id="path203"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1045,7516 c 1,16 3,31 5,47"
+             id="path205"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1057,7609 c 3,16 6,30 9,46"
+             id="path207"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1079,7700 c 4,16 9,30 15,45"
+             id="path209"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1111,7789 c 5,15 12,29 18,43"
+             id="path211"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1150,7875 c 7,13 14,27 22,41"
+             id="path213"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1197,7956 c 8,13 17,27 25,40"
+             id="path215"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1250,8035 c 10,12 19,24 29,36"
+             id="path217"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1309,8107 c 11,12 22,24 32,35"
+             id="path219"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1375,8176 c 11,11 23,22 35,33"
+             id="path221"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1445,8240 c 13,11 25,21 37,30"
+             id="path223"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1520,8298 c 14,10 27,19 40,27"
+             id="path225"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1600,8351 c 13,8 27,15 41,24"
+             id="path227"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1684,8397 c 14,6 29,14 43,20"
+             id="path229"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1771,8434 c 15,7 30,12 45,17"
+             id="path231"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1862,8466 c 15,3 30,8 46,11"
+             id="path233"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 1955,8487 c 16,3 31,4 47,6"
+             id="path235"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2049,8498 c 16,1 32,2 48,2"
+             id="path237"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2145,8500 48,0"
+             id="path239"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2241,8500 48,0"
+             id="path241"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2337,8500 47,0"
+             id="path243"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2432,8500 48,0"
+             id="path245"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2528,8500 48,0"
+             id="path247"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2624,8500 47,0"
+             id="path249"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2719,8500 48,0"
+             id="path251"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2815,8500 48,0"
+             id="path253"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2911,8500 47,0"
+             id="path255"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3006,8500 48,0"
+             id="path257"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3102,8500 48,0"
+             id="path259"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3198,8500 47,0"
+             id="path261"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3293,8500 48,0"
+             id="path263"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3389,8500 48,0"
+             id="path265"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3485,8500 47,0"
+             id="path267"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3580,8500 48,0"
+             id="path269"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3676,8500 48,0"
+             id="path271"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3772,8500 47,0"
+             id="path273"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3867,8500 48,0"
+             id="path275"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3963,8500 48,0"
+             id="path277"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4059,8500 48,0"
+             id="path279"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4154,8500 48,0"
+             id="path281"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4250,8500 48,0"
+             id="path283"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4346,8500 48,0"
+             id="path285"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4441,8500 48,0"
+             id="path287"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4537,8500 48,0"
+             id="path289"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4633,8500 48,0"
+             id="path291"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4728,8500 48,0"
+             id="path293"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4824,8500 48,0"
+             id="path295"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4920,8500 48,0"
+             id="path297"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5015,8500 48,0"
+             id="path299"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5111,8500 48,0"
+             id="path301"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5207,8500 48,0"
+             id="path303"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5302,8500 48,0"
+             id="path305"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5398,8500 48,0"
+             id="path307"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5494,8500 48,0"
+             id="path309"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5589,8500 48,0"
+             id="path311"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5685,8500 48,0"
+             id="path313"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5781,8500 48,0"
+             id="path315"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5876,8500 48,0"
+             id="path317"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5972,8500 48,0"
+             id="path319"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6068,8500 48,0"
+             id="path321"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6164,8500 47,0"
+             id="path323"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6259,8500 48,0"
+             id="path325"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6355,8500 48,0"
+             id="path327"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6451,8500 47,0"
+             id="path329"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6546,8500 48,0"
+             id="path331"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6642,8500 48,0"
+             id="path333"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6738,8500 47,0"
+             id="path335"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6833,8500 48,0"
+             id="path337"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6929,8500 48,0"
+             id="path339"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7025,8500 47,0"
+             id="path341"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7120,8500 48,0"
+             id="path343"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7216,8500 48,0"
+             id="path345"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7312,8500 47,0"
+             id="path347"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7407,8500 48,0"
+             id="path349"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7503,8500 48,0"
+             id="path351"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7599,8500 47,0"
+             id="path353"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7694,8500 48,0"
+             id="path355"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7790,8500 48,0"
+             id="path357"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7886,8500 47,0"
+             id="path359"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7981,8500 48,0"
+             id="path361"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8077,8500 48,0"
+             id="path363"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8173,8500 48,0"
+             id="path365"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8268,8500 48,0"
+             id="path367"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8364,8500 48,0"
+             id="path369"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8460,8500 48,0"
+             id="path371"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8555,8500 48,0"
+             id="path373"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8651,8500 48,0"
+             id="path375"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8747,8500 48,0"
+             id="path377"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8842,8500 48,0"
+             id="path379"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8938,8500 48,0"
+             id="path381"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9034,8500 48,0"
+             id="path383"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9129,8500 48,0"
+             id="path385"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9225,8500 48,0"
+             id="path387"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9321,8500 48,0"
+             id="path389"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9416,8500 48,0"
+             id="path391"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9512,8500 48,0"
+             id="path393"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9608,8500 48,0"
+             id="path395"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9703,8500 48,0"
+             id="path397"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9799,8500 48,0"
+             id="path399"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9895,8500 48,0"
+             id="path401"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9990,8500 48,0"
+             id="path403"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10086,8500 48,0"
+             id="path405"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10182,8500 48,0"
+             id="path407"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10278,8500 47,0"
+             id="path409"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10373,8500 48,0"
+             id="path411"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10469,8500 48,0"
+             id="path413"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10565,8500 47,0"
+             id="path415"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10660,8500 48,0"
+             id="path417"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10756,8500 48,0"
+             id="path419"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10852,8500 47,0"
+             id="path421"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10947,8500 48,0"
+             id="path423"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11043,8500 48,0"
+             id="path425"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11139,8500 47,0"
+             id="path427"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11234,8500 48,0"
+             id="path429"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11330,8500 48,0"
+             id="path431"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11426,8500 47,0"
+             id="path433"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11521,8500 48,0"
+             id="path435"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11617,8500 48,0"
+             id="path437"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11713,8500 47,0"
+             id="path439"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11808,8500 48,0"
+             id="path441"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11904,8500 48,0"
+             id="path443"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12000,8500 47,0"
+             id="path445"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12095,8500 48,0"
+             id="path447"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12191,8500 48,0"
+             id="path449"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12287,8500 48,0"
+             id="path451"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12382,8500 48,0"
+             id="path453"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12478,8500 48,0"
+             id="path455"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12574,8500 48,0"
+             id="path457"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12669,8500 48,0"
+             id="path459"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12765,8500 c 16,-1 32,-2 48,-3"
+             id="path461"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12861,8491 c 16,-2 31,-4 47,-8"
+             id="path463"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12955,8473 c 15,-4 30,-8 45,-13"
+             id="path465"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13046,8445 c 15,-5 30,-11 45,-17"
+             id="path467"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13134,8410 c 15,-7 29,-14 43,-22"
+             id="path469"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13219,8366 c 14,-8 27,-16 41,-24"
+             id="path471"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13300,8316 c 13,-9 26,-19 39,-28"
+             id="path473"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13377,8259 c 12,-9 24,-19 36,-30"
+             id="path475"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13448,8197 c 12,-11 23,-22 35,-33"
+             id="path477"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13515,8130 c 11,-12 21,-24 31,-36"
+             id="path479"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13576,8058 c 11,-12 20,-25 29,-38"
+             id="path481"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13633,7981 c 8,-13 17,-25 25,-39"
+             id="path483"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13681,7901 c 8,-14 15,-28 22,-42"
+             id="path485"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13724,7817 c 6,-15 12,-29 17,-44"
+             id="path487"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13757,7728 c 5,-14 10,-29 15,-45"
+             id="path489"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13783,7638 c 3,-15 6,-30 8,-46"
+             id="path491"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13798,7546 c 2,-16 3,-32 4,-47"
+             id="path493"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,7452 0,-47"
+             id="path495"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,7358 0,-47"
+             id="path497"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,7264 0,-47"
+             id="path499"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,7170 0,-46"
+             id="path501"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,7077 0,-47"
+             id="path503"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6983 0,-47"
+             id="path505"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6889 0,-47"
+             id="path507"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6795 0,-47"
+             id="path509"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6702 0,-47"
+             id="path511"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6608 0,-47"
+             id="path513"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6514 0,-47"
+             id="path515"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6420 0,-47"
+             id="path517"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6327 0,-47"
+             id="path519"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6233 0,-47"
+             id="path521"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6139 0,-47"
+             id="path523"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,6045 0,-47"
+             id="path525"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5951 0,-46"
+             id="path527"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5858 0,-47"
+             id="path529"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5764 0,-47"
+             id="path531"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5670 0,-47"
+             id="path533"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5576 0,-46"
+             id="path535"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5483 0,-47"
+             id="path537"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5389 0,-47"
+             id="path539"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5295 0,-47"
+             id="path541"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5201 0,-47"
+             id="path543"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5108 0,-47"
+             id="path545"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,5014 0,-47"
+             id="path547"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4920 0,-47"
+             id="path549"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4826 0,-47"
+             id="path551"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4732 0,-46"
+             id="path553"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4639 0,-47"
+             id="path555"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4545 0,-47"
+             id="path557"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4451 0,-47"
+             id="path559"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4357 0,-46"
+             id="path561"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4264 0,-47"
+             id="path563"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4170 0,-47"
+             id="path565"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,4076 0,-47"
+             id="path567"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3982 0,-47"
+             id="path569"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3889 0,-47"
+             id="path571"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3795 0,-47"
+             id="path573"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3701 0,-47"
+             id="path575"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3607 0,-47"
+             id="path577"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3514 0,-47"
+             id="path579"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3420 0,-47"
+             id="path581"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13802,3326 0,-17 c 0,-11 0,-20 0,-30"
+             id="path583"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13799,3233 c -2,-15 -4,-31 -6,-47"
+             id="path585"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13785,3140 c -4,-15 -8,-30 -12,-46"
+             id="path587"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13760,3049 c -4,-14 -10,-29 -16,-44"
+             id="path589"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13726,2961 c -5,-14 -12,-28 -19,-42"
+             id="path591"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13685,2876 c -7,-13 -15,-27 -23,-40"
+             id="path593"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13637,2796 c -8,-13 -17,-26 -27,-39"
+             id="path595"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13582,2718 c -9,-12 -20,-24 -30,-36"
+             id="path597"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13521,2647 c -10,-12 -22,-23 -33,-35"
+             id="path599"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13454,2579 c -11,-11 -23,-22 -34,-32"
+             id="path601"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13383,2516 c -12,-10 -24,-19 -37,-28"
+             id="path603"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13307,2459 c -13,-8 -26,-17 -40,-26"
+             id="path605"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13227,2409 c -15,-9 -29,-16 -43,-23"
+             id="path607"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13142,2364 c -15,-6 -29,-12 -44,-19"
+             id="path609"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 13054,2328 c -15,-6 -30,-10 -46,-15"
+             id="path611"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12962,2299 c -15,-4 -30,-7 -46,-10"
+             id="path613"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12869,2280 c -16,-2 -32,-4 -48,-6"
+             id="path615"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12773,2272 c -10,-1 -20,-1 -30,-1 l -17,0"
+             id="path617"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12678,2271 -48,0"
+             id="path619"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12582,2271 -48,0"
+             id="path621"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12486,2271 -47,0"
+             id="path623"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12391,2271 -48,0"
+             id="path625"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12295,2271 -48,0"
+             id="path627"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12199,2271 -47,0"
+             id="path629"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12104,2271 -48,0"
+             id="path631"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 12008,2271 -48,0"
+             id="path633"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11912,2271 -47,0"
+             id="path635"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11817,2271 -48,0"
+             id="path637"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11721,2271 -48,0"
+             id="path639"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11625,2271 -47,0"
+             id="path641"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11530,2271 -48,0"
+             id="path643"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11434,2271 -48,0"
+             id="path645"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11338,2271 -47,0"
+             id="path647"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11243,2271 -48,0"
+             id="path649"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11147,2271 -48,0"
+             id="path651"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 11051,2271 -47,0"
+             id="path653"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10956,2271 -48,0"
+             id="path655"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10860,2271 -48,0"
+             id="path657"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10764,2271 -48,0"
+             id="path659"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10669,2271 -48,0"
+             id="path661"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10573,2271 -48,0"
+             id="path663"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10477,2271 -48,0"
+             id="path665"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10382,2271 -48,0"
+             id="path667"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10286,2271 -48,0"
+             id="path669"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10190,2271 -48,0"
+             id="path671"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 10095,2271 -48,0"
+             id="path673"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9999,2271 -48,0"
+             id="path675"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9903,2271 -48,0"
+             id="path677"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9808,2271 -48,0"
+             id="path679"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9712,2271 -48,0"
+             id="path681"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9616,2271 -48,0"
+             id="path683"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9521,2271 -48,0"
+             id="path685"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9425,2271 -48,0"
+             id="path687"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9329,2271 -48,0"
+             id="path689"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9234,2271 -48,0"
+             id="path691"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9138,2271 -48,0"
+             id="path693"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 9042,2271 -48,0"
+             id="path695"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8947,2271 -48,0"
+             id="path697"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8851,2271 -48,0"
+             id="path699"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8755,2271 -48,0"
+             id="path701"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8659,2271 -47,0"
+             id="path703"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8564,2271 -48,0"
+             id="path705"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8468,2271 -48,0"
+             id="path707"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8372,2271 -47,0"
+             id="path709"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8277,2271 -48,0"
+             id="path711"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8181,2271 -48,0"
+             id="path713"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 8085,2271 -47,0"
+             id="path715"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7990,2271 -48,0"
+             id="path717"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7894,2271 -48,0"
+             id="path719"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7798,2271 -47,0"
+             id="path721"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7703,2271 -48,0"
+             id="path723"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7607,2271 -48,0"
+             id="path725"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7511,2271 -47,0"
+             id="path727"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7416,2271 -48,0"
+             id="path729"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7320,2271 -48,0"
+             id="path731"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7224,2271 -47,0"
+             id="path733"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7129,2271 -48,0"
+             id="path735"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 7033,2271 -48,0"
+             id="path737"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6937,2271 -47,0"
+             id="path739"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6842,2271 -48,0"
+             id="path741"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6746,2271 -48,0"
+             id="path743"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6650,2271 -48,0"
+             id="path745"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6555,2271 -48,0"
+             id="path747"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6459,2271 -48,0"
+             id="path749"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6363,2271 -48,0"
+             id="path751"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6268,2271 -48,0"
+             id="path753"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6172,2271 -48,0"
+             id="path755"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 6076,2271 -48,0"
+             id="path757"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5981,2271 -48,0"
+             id="path759"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5885,2271 -48,0"
+             id="path761"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5789,2271 -48,0"
+             id="path763"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5694,2271 -48,0"
+             id="path765"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5598,2271 -48,0"
+             id="path767"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5502,2271 -48,0"
+             id="path769"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5407,2271 -48,0"
+             id="path771"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5311,2271 -48,0"
+             id="path773"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5215,2271 -48,0"
+             id="path775"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5120,2271 -48,0"
+             id="path777"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 5024,2271 -48,0"
+             id="path779"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4928,2271 -48,0"
+             id="path781"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4833,2271 -48,0"
+             id="path783"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4737,2271 -48,0"
+             id="path785"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4641,2271 -48,0"
+             id="path787"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4545,2271 -47,0"
+             id="path789"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4450,2271 -48,0"
+             id="path791"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4354,2271 -48,0"
+             id="path793"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4258,2271 -47,0"
+             id="path795"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4163,2271 -48,0"
+             id="path797"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 4067,2271 -48,0"
+             id="path799"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3971,2271 -47,0"
+             id="path801"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3876,2271 -48,0"
+             id="path803"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3780,2271 -48,0"
+             id="path805"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3684,2271 -47,0"
+             id="path807"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3589,2271 -48,0"
+             id="path809"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3493,2271 -48,0"
+             id="path811"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3397,2271 -47,0"
+             id="path813"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3302,2271 -48,0"
+             id="path815"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3206,2271 -48,0"
+             id="path817"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3110,2271 -47,0"
+             id="path819"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 3015,2271 -48,0"
+             id="path821"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2919,2271 -48,0"
+             id="path823"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2823,2271 -47,0"
+             id="path825"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2728,2271 -48,0"
+             id="path827"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2632,2271 -48,0"
+             id="path829"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2536,2271 -48,0"
+             id="path831"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2441,2271 -48,0"
+             id="path833"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2345,2271 -48,0"
+             id="path835"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2249,2271 -48,0"
+             id="path837"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 2154,2271 -48,0"
+             id="path839"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:none"
+           id="g841">
+          <rect
+             x="1043"
+             y="2271"
+             width="12759"
+             height="6230"
+             id="rect843" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g845">
+          <path
+             style="fill:none"
+             d="m 15676,2157 -44,0 c -16,0 -32,1 -48,1"
+             id="path847"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15536,2163 c -16,2 -31,5 -47,8"
+             id="path849"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15442,2181 c -15,5 -30,10 -45,14"
+             id="path851"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15351,2212 c -14,5 -29,12 -43,18"
+             id="path853"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15265,2250 c -14,8 -28,16 -42,23"
+             id="path855"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15182,2298 c -13,9 -26,18 -39,27"
+             id="path857"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15104,2353 c -12,10 -24,21 -36,31"
+             id="path859"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15033,2416 c -12,11 -23,22 -34,33"
+             id="path861"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14967,2484 c -11,12 -21,24 -31,36"
+             id="path863"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14907,2557 c -9,13 -18,26 -27,39"
+             id="path865"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14855,2636 c -8,13 -16,27 -23,41"
+             id="path867"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14811,2719 c -7,15 -12,29 -18,43"
+             id="path869"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14776,2807 c -5,14 -9,30 -13,45"
+             id="path871"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14753,2898 c -4,15 -7,30 -9,46"
+             id="path873"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14740,2990 c -1,14 -1,28 -1,42 l 0,5"
+             id="path875"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3084 0,47"
+             id="path877"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3178 0,47"
+             id="path879"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3272 0,47"
+             id="path881"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3366 0,46"
+             id="path883"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3459 0,47"
+             id="path885"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3553 0,47"
+             id="path887"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3647 0,47"
+             id="path889"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3741 0,46"
+             id="path891"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3834 0,47"
+             id="path893"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,3928 0,47"
+             id="path895"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4022 0,47"
+             id="path897"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4116 0,47"
+             id="path899"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4209 0,47"
+             id="path901"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4303 0,47"
+             id="path903"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4397 0,47"
+             id="path905"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4491 0,47"
+             id="path907"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4584 0,47"
+             id="path909"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4678 0,47"
+             id="path911"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4772 0,47"
+             id="path913"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4866 0,47"
+             id="path915"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,4960 0,46"
+             id="path917"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5053 0,47"
+             id="path919"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5147 0,47"
+             id="path921"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5241 0,47"
+             id="path923"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5335 0,47"
+             id="path925"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5428 0,47"
+             id="path927"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5522 0,47"
+             id="path929"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5616 0,47"
+             id="path931"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5710 0,47"
+             id="path933"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5803 0,47"
+             id="path935"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5897 0,47"
+             id="path937"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,5991 0,47"
+             id="path939"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6085 0,47"
+             id="path941"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6179 0,46"
+             id="path943"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6272 0,47"
+             id="path945"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6366 0,47"
+             id="path947"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6460 0,47"
+             id="path949"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6554 0,46"
+             id="path951"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6647 0,47"
+             id="path953"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6741 0,47"
+             id="path955"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6835 0,47"
+             id="path957"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,6929 0,47"
+             id="path959"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7022 0,47"
+             id="path961"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7116 0,47"
+             id="path963"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7210 0,47"
+             id="path965"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7304 0,47"
+             id="path967"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7398 0,46"
+             id="path969"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7491 0,47"
+             id="path971"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14739,7585 0,40 c 0,2 0,4 0,7"
+             id="path973"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14740,7679 c 2,15 4,31 6,47"
+             id="path975"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14755,7772 c 3,14 7,30 12,45"
+             id="path977"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14781,7862 c 4,14 10,29 17,44"
+             id="path979"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14816,7949 c 7,14 14,28 22,41"
+             id="path981"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14861,8032 c 9,13 17,26 27,39"
+             id="path983"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14915,8110 c 9,12 19,25 29,37"
+             id="path985"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 14975,8183 c 11,12 22,23 33,34"
+             id="path987"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15042,8250 c 12,11 24,21 35,31"
+             id="path989"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15115,8311 c 12,9 25,19 38,28"
+             id="path991"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15193,8366 c 14,8 27,16 41,23"
+             id="path993"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15276,8412 c 14,7 28,14 43,21"
+             id="path995"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15363,8450 c 15,6 30,11 45,16"
+             id="path997"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15454,8479 c 16,3 31,7 47,10"
+             id="path999"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15549,8496 c 15,2 31,3 47,4"
+             id="path1001"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15644,8501 48,0"
+             id="path1003"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15739,8501 48,0"
+             id="path1005"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15835,8501 48,0"
+             id="path1007"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15931,8501 48,0"
+             id="path1009"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16026,8501 48,0"
+             id="path1011"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16122,8501 48,0"
+             id="path1013"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16218,8501 48,0"
+             id="path1015"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16313,8501 48,0"
+             id="path1017"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16409,8501 48,0"
+             id="path1019"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16505,8501 48,0"
+             id="path1021"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16600,8501 48,0"
+             id="path1023"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16696,8501 48,0"
+             id="path1025"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16792,8501 48,0"
+             id="path1027"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16888,8501 47,0"
+             id="path1029"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16983,8501 48,0"
+             id="path1031"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17079,8501 48,0"
+             id="path1033"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17175,8501 47,0"
+             id="path1035"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17270,8501 48,0"
+             id="path1037"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17366,8501 48,0"
+             id="path1039"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17462,8501 47,0"
+             id="path1041"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17557,8501 48,0"
+             id="path1043"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17653,8501 48,0"
+             id="path1045"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17749,8501 47,0"
+             id="path1047"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17844,8501 48,0"
+             id="path1049"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17940,8501 48,0"
+             id="path1051"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18036,8501 47,0"
+             id="path1053"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18131,8501 48,0"
+             id="path1055"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18227,8501 48,0"
+             id="path1057"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18323,8501 47,0"
+             id="path1059"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18418,8501 48,0"
+             id="path1061"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18514,8501 48,0"
+             id="path1063"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18610,8501 47,0"
+             id="path1065"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18705,8501 48,0"
+             id="path1067"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18801,8501 48,0"
+             id="path1069"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18897,8501 48,0"
+             id="path1071"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18992,8501 48,0"
+             id="path1073"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19088,8501 48,0"
+             id="path1075"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19184,8501 22,0 c 9,0 17,0 26,-1"
+             id="path1077"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19279,8497 c 16,-2 32,-4 48,-6"
+             id="path1079"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19374,8480 c 15,-3 31,-7 46,-12"
+             id="path1081"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19465,8454 c 15,-6 30,-12 45,-18"
+             id="path1083"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19553,8416 c 14,-6 28,-14 42,-22"
+             id="path1085"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19637,8370 c 13,-8 27,-16 40,-26"
+             id="path1087"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19716,8317 c 12,-9 25,-20 37,-30"
+             id="path1089"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19789,8256 c 12,-10 23,-21 34,-32"
+             id="path1091"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19856,8190 c 11,-12 21,-24 31,-36"
+             id="path1093"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19917,8117 c 10,-13 19,-25 28,-38"
+             id="path1095"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19971,8039 c 8,-13 17,-26 24,-40"
+             id="path1097"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20017,7957 c 7,-13 14,-28 19,-43"
+             id="path1099"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20054,7871 c 6,-15 10,-29 15,-45"
+             id="path1101"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20080,7781 c 4,-16 7,-30 10,-46"
+             id="path1103"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20096,7688 c 1,-16 2,-31 3,-47"
+             id="path1105"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7594 0,-47"
+             id="path1107"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7500 0,-46"
+             id="path1109"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7407 0,-47"
+             id="path1111"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7313 0,-47"
+             id="path1113"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7219 0,-47"
+             id="path1115"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7125 0,-46"
+             id="path1117"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,7032 0,-47"
+             id="path1119"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6938 0,-47"
+             id="path1121"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6844 0,-47"
+             id="path1123"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6750 0,-47"
+             id="path1125"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6657 0,-47"
+             id="path1127"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6563 0,-47"
+             id="path1129"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6469 0,-47"
+             id="path1131"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6375 0,-47"
+             id="path1133"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6281 0,-46"
+             id="path1135"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6188 0,-47"
+             id="path1137"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6094 0,-47"
+             id="path1139"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,6000 0,-47"
+             id="path1141"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5906 0,-46"
+             id="path1143"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5813 0,-47"
+             id="path1145"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5719 0,-47"
+             id="path1147"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5625 0,-47"
+             id="path1149"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5531 0,-47"
+             id="path1151"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5438 0,-47"
+             id="path1153"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5344 0,-47"
+             id="path1155"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5250 0,-47"
+             id="path1157"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5156 0,-47"
+             id="path1159"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,5063 0,-47"
+             id="path1161"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4969 0,-47"
+             id="path1163"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4875 0,-47"
+             id="path1165"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4781 0,-47"
+             id="path1167"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4687 0,-46"
+             id="path1169"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4594 0,-47"
+             id="path1171"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4500 0,-47"
+             id="path1173"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4406 0,-47"
+             id="path1175"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4312 0,-47"
+             id="path1177"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4219 0,-47"
+             id="path1179"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4125 0,-47"
+             id="path1181"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,4031 0,-47"
+             id="path1183"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3937 0,-47"
+             id="path1185"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3844 0,-47"
+             id="path1187"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3750 0,-47"
+             id="path1189"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3656 0,-47"
+             id="path1191"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3562 0,-47"
+             id="path1193"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3468 0,-46"
+             id="path1195"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3375 0,-47"
+             id="path1197"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3281 0,-47"
+             id="path1199"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3187 0,-47"
+             id="path1201"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20099,3093 0,-46"
+             id="path1203"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20098,3000 c -1,-16 -2,-32 -4,-46"
+             id="path1205"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20087,2907 c -3,-16 -6,-31 -9,-46"
+             id="path1207"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20064,2816 c -4,-15 -10,-30 -15,-44"
+             id="path1209"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 20031,2728 c -7,-14 -13,-28 -21,-43"
+             id="path1211"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19988,2644 c -9,-13 -16,-27 -25,-40"
+             id="path1213"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19936,2565 c -9,-13 -19,-25 -28,-38"
+             id="path1215"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19878,2491 c -11,-12 -22,-24 -32,-36"
+             id="path1217"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19812,2422 c -11,-11 -23,-22 -35,-32"
+             id="path1219"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19741,2360 c -12,-10 -25,-19 -39,-29"
+             id="path1221"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19664,2304 c -14,-9 -27,-18 -40,-25"
+             id="path1223"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19581,2255 c -14,-7 -28,-15 -42,-21"
+             id="path1225"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19495,2215 c -15,-6 -30,-11 -45,-16"
+             id="path1227"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19404,2184 c -15,-3 -30,-8 -46,-11"
+             id="path1229"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19311,2165 c -16,-3 -32,-5 -48,-6"
+             id="path1231"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19216,2157 c -3,0 -7,0 -10,0 l -38,0"
+             id="path1233"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19120,2157 -48,0"
+             id="path1235"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 19024,2157 -48,0"
+             id="path1237"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18929,2157 -48,0"
+             id="path1239"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18833,2157 -48,0"
+             id="path1241"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18737,2157 -48,0"
+             id="path1243"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18642,2157 -48,0"
+             id="path1245"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18546,2157 -48,0"
+             id="path1247"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18450,2157 -48,0"
+             id="path1249"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18355,2157 -48,0"
+             id="path1251"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18259,2157 -48,0"
+             id="path1253"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18163,2157 -48,0"
+             id="path1255"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 18067,2157 -47,0"
+             id="path1257"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17972,2157 -48,0"
+             id="path1259"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17876,2157 -48,0"
+             id="path1261"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17780,2157 -47,0"
+             id="path1263"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17685,2157 -48,0"
+             id="path1265"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17589,2157 -48,0"
+             id="path1267"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17493,2157 -47,0"
+             id="path1269"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17398,2157 -48,0"
+             id="path1271"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17302,2157 -48,0"
+             id="path1273"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17206,2157 -47,0"
+             id="path1275"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17111,2157 -48,0"
+             id="path1277"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17015,2157 -48,0"
+             id="path1279"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16919,2157 -47,0"
+             id="path1281"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16824,2157 -48,0"
+             id="path1283"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16728,2157 -48,0"
+             id="path1285"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16632,2157 -47,0"
+             id="path1287"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16537,2157 -48,0"
+             id="path1289"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16441,2157 -48,0"
+             id="path1291"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16345,2157 -47,0"
+             id="path1293"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16250,2157 -48,0"
+             id="path1295"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16154,2157 -48,0"
+             id="path1297"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16058,2157 -48,0"
+             id="path1299"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15963,2157 -48,0"
+             id="path1301"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15867,2157 -48,0"
+             id="path1303"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15771,2157 -48,0"
+             id="path1305"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:none"
+           id="g1307">
+          <rect
+             x="14740"
+             y="2157"
+             width="5362"
+             height="6344"
+             id="rect1309" />
+        </g>
+        <g
+           style="fill:#fde9c6;stroke:none"
+           id="g1311">
+          <path
+             d="m 17467,2732 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 511,0 938,-131 938,-288 l 0,-1721 c 0,-157 -427,-287 -938,-287 l 0,0 z m -937,0 0,0 z m 1875,2296 0,0 z"
+             id="path1313"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1315">
+          <path
+             style="fill:none"
+             d="m 17467,2732 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 511,0 938,-131 938,-288 l 0,-1721 c 0,-157 -427,-287 -938,-287 l 0,0"
+             id="path1317"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:#fef2dd;stroke:none"
+           id="g1319">
+          <path
+             d="m 17467,2732 c -511,0 -937,130 -937,287 0,156 426,287 937,287 511,0 938,-131 938,-287 0,-157 -427,-287 -938,-287 l 0,0 z m -937,0 0,0 z m 1875,2296 0,0 z"
+             id="path1321"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1323">
+          <path
+             style="fill:none"
+             d="m 17467,2732 c -511,0 -937,130 -937,287 0,156 426,287 937,287 511,0 938,-131 938,-287 0,-157 -427,-287 -938,-287 l 0,0"
+             id="path1325"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:none"
+           id="g1327">
+          <rect
+             x="16530"
+             y="2732"
+             width="1875"
+             height="2295"
+             id="rect1329" />
+        </g>
+        <g
+           style="fill:#fde9c6;stroke:none"
+           id="g1331">
+          <path
+             d="m 16271,3652 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 511,0 937,-131 937,-288 l 0,-1721 c 0,-157 -426,-287 -937,-287 l 0,0 z m -937,0 0,0 z m 1874,2296 0,0 z"
+             id="path1333"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1335">
+          <path
+             style="fill:none"
+             d="m 16271,3652 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 511,0 937,-131 937,-288 l 0,-1721 c 0,-157 -426,-287 -937,-287 l 0,0"
+             id="path1337"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:#fef2dd;stroke:none"
+           id="g1339">
+          <path
+             d="m 16271,3652 c -511,0 -937,130 -937,287 0,156 426,287 937,287 511,0 937,-131 937,-287 0,-157 -426,-287 -937,-287 l 0,0 z m -937,0 0,0 z m 1874,2296 0,0 z"
+             id="path1341"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1343">
+          <path
+             style="fill:none"
+             d="m 16271,3652 c -511,0 -937,130 -937,287 0,156 426,287 937,287 511,0 937,-131 937,-287 0,-157 -426,-287 -937,-287 l 0,0"
+             id="path1345"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:none"
+           id="g1347">
+          <rect
+             x="15335"
+             y="3652"
+             width="1874"
+             height="2295"
+             id="rect1349" />
+        </g>
+        <g
+           style="fill:#fde9c6;stroke:none"
+           id="g1351">
+          <path
+             d="m 18612,3652 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 512,0 938,-131 938,-288 l 0,-1721 c 0,-157 -426,-287 -938,-287 l 0,0 z m -937,0 0,0 z m 1875,2296 0,0 z"
+             id="path1353"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1355">
+          <path
+             style="fill:none"
+             d="m 18612,3652 c -511,0 -937,130 -937,287 l 0,1721 c 0,157 426,288 937,288 512,0 938,-131 938,-288 l 0,-1721 c 0,-157 -426,-287 -938,-287 l 0,0"
+             id="path1357"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:#fef2dd;stroke:none"
+           id="g1359">
+          <path
+             d="m 18612,3652 c -511,0 -937,130 -937,287 0,156 426,287 937,287 512,0 938,-131 938,-287 0,-157 -426,-287 -938,-287 l 0,0 z m -937,0 0,0 z m 1875,2296 0,0 z"
+             id="path1361"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1363">
+          <path
+             style="fill:none"
+             d="m 18612,3652 c -511,0 -937,130 -937,287 0,156 426,287 937,287 512,0 938,-131 938,-287 0,-157 -426,-287 -938,-287 l 0,0"
+             id="path1365"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:none"
+           id="g1367">
+          <rect
+             x="17675"
+             y="3652"
+             width="1875"
+             height="2295"
+             id="rect1369" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24"
+           id="g1371">
+          <path
+             style="fill:none"
+             d="m 15491,7099 c 0,-19 1,-36 3,-53"
+             id="path1373"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15501,6998 c 3,-16 8,-31 12,-45"
+             id="path1375"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15530,6911 c 7,-14 14,-26 22,-39"
+             id="path1377"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15580,6834 c 10,-12 21,-24 32,-35"
+             id="path1379"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15648,6768 c 13,-10 27,-20 41,-30"
+             id="path1381"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15728,6715 c 13,-7 26,-14 41,-21"
+             id="path1383"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15813,6675 c 15,-6 31,-13 46,-18"
+             id="path1385"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15907,6641 c 14,-5 29,-9 44,-14"
+             id="path1387"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 15996,6615 c 15,-3 31,-7 47,-11"
+             id="path1389"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16090,6593 c 16,-3 32,-6 49,-9"
+             id="path1391"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16188,6575 c 15,-3 31,-6 46,-9"
+             id="path1393"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16281,6559 c 16,-3 32,-5 47,-7"
+             id="path1395"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16376,6544 c 16,-2 32,-5 48,-7"
+             id="path1397"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16472,6530 c 16,-2 32,-5 48,-8"
+             id="path1399"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16569,6516 c 16,-3 31,-6 46,-7"
+             id="path1401"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16663,6500 c 16,-2 31,-5 47,-8"
+             id="path1403"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16756,6484 c 17,-3 33,-6 50,-9"
+             id="path1405"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16854,6464 c 16,-3 32,-7 47,-11"
+             id="path1407"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 16947,6441 c 15,-3 30,-8 45,-12"
+             id="path1409"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17037,6415 c 17,-6 32,-11 47,-18"
+             id="path1411"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17130,6379 c 15,-7 29,-13 43,-20"
+             id="path1413"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17213,6337 c 14,-9 27,-17 39,-26"
+             id="path1415"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17292,6281 c 12,-10 23,-21 34,-32"
+             id="path1417"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17357,6213 c 10,-12 19,-25 27,-39"
+             id="path1419"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17404,6134 c 7,-12 12,-27 16,-42"
+             id="path1421"
+             inkscape:connector-curvature="0" />
+          <path
+             style="fill:none"
+             d="m 17432,6047 c 3,-16 6,-32 7,-49"
+             id="path1423"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:#baf3ba;stroke:none"
+           id="g1425">
+          <path
+             d="m 1512,6661 0,-2920 940,0 0,2920 -940,0 0,0 z m 0,0 0,0 z m 940,-2920 0,0 z"
+             id="path1427"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+           id="g1429">
+          <path
+             style="fill:none"
+             d="m 1512,6661 0,-2920 940,0 0,2920 -940,0 0,0"
+             id="path1431"
+             inkscape:connector-curvature="0" />
+        </g>
+        <g
+           style="font-size:454px;font-weight:400;font-family:Arial embedded"
+           id="g1433">
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1435">
+            <text
+               transform="matrix(0,-1,1,0,-3742,8066)"
+               id="text1437">
+              <tspan
+                 x="2162 2518 2632 2746 3021 3297 3436"
+                 y="5904"
+                 id="tspan1439">Clients</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1441">
+            <rect
+               x="1513"
+               y="6661"
+               width="2979"
+               height="921"
+               id="rect1443" />
+          </g>
+        </g>
+        <g
+           style="font-size:454px;font-weight:400;font-family:Arial embedded"
+           id="g1445">
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1447">
+            <text
+               id="text1449">
+              <tspan
+                 x="5593 5868 6148 6397 6537 6702 6977 7117 7477 7752 7917 8031"
+                 y="8058"
+                 id="tspan1451">Lustre world</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1453">
+            <rect
+               x="5360"
+               y="7121"
+               width="4878"
+               height="1149"
+               id="rect1455" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1457">
+            <text
+               id="text1459">
+              <tspan
+                 x="16317 16677 17007 17422 17562 17921 18197 18362 18476"
+                 y="8058"
+                 id="tspan1461">HSM world</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1463">
+            <rect
+               x="15209"
+               y="7121"
+               width="4505"
+               height="1149"
+               id="rect1465" />
+          </g>
+          <g
+             style="fill:#c5e3ed;stroke:none"
+             id="g1467">
+            <path
+               d="m 3901,4741 2346,0 0,922 -2346,0 0,-922 0,0 z m 0,0 0,0 z m 2346,922 0,0 z"
+               id="path1469"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1471">
+            <path
+               style="fill:none"
+               d="m 3901,4741 2346,0 0,922 -2346,0 0,-922 0,0"
+               id="path1473"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1475">
+            <text
+               id="text1477">
+              <tspan
+                 x="4583 4968 5298"
+                 y="5378"
+                 id="tspan1479">OSS</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1481">
+            <rect
+               x="3901"
+               y="4741"
+               width="2346"
+               height="922"
+               id="rect1483" />
+          </g>
+          <g
+             style="fill:#c5e3ed;stroke:none"
+             id="g1485">
+            <path
+               d="m 3901,6200 2346,0 0,921 -2346,0 0,-921 0,0 z m 0,0 0,0 z m 2346,921 0,0 z"
+               id="path1487"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1489">
+            <path
+               style="fill:none"
+               d="m 3901,6200 2346,0 0,921 -2346,0 0,-921 0,0"
+               id="path1491"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1493">
+            <text
+               id="text1495">
+              <tspan
+                 x="4583 4968 5298"
+                 y="6837"
+                 id="tspan1497">OSS</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1499">
+            <rect
+               x="3901"
+               y="6201"
+               width="2346"
+               height="921"
+               id="rect1501" />
+          </g>
+          <g
+             style="fill:#f4a49e;stroke:none"
+             id="g1503">
+            <path
+               d="m 3901,3032 2346,0 0,921 -2346,0 0,-921 0,0 z m 0,0 0,0 z m 2346,921 0,0 z"
+               id="path1505"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1507">
+            <path
+               style="fill:none"
+               d="m 3901,3032 2346,0 0,921 -2346,0 0,-921 0,0"
+               id="path1509"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1511">
+            <text
+               id="text1513">
+              <tspan
+                 x="4556 4971 5331"
+                 y="3669"
+                 id="tspan1515">MDS</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1517">
+            <rect
+               x="3901"
+               y="3033"
+               width="2346"
+               height="921"
+               id="rect1519" />
+          </g>
+        </g>
+        <g
+           style="font-size:325px;font-weight:400;font-family:Arial embedded"
+           id="g1521">
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1523">
+            <text
+               id="text1525">
+              <tspan
+                 x="17356 17610 17843 18139 18237 18427 18546 18736 18833 19024 19202 19392 19473"
+                 y="6673"
+                 id="tspan1527">HSM protocols</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1529">
+            <rect
+               x="17122"
+               y="6243"
+               width="2979"
+               height="609"
+               id="rect1531" />
+          </g>
+          <g
+             style="fill:#edcc90;stroke:none"
+             id="g1533">
+            <path
+               d="m 5978,3443 c -75,0 -149,72 -149,146 l 0,585 c 0,72 74,146 149,146 l 2985,0 c 74,0 150,-74 150,-146 l 0,-585 c 0,-74 -76,-146 -150,-146 l -2985,0 z m -149,0 0,0 z m 3284,877 0,0 z"
+               id="path1535"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24"
+             id="g1537">
+            <path
+               style="fill:none"
+               d="m 5978,3443 c -75,0 -149,72 -149,146 l 0,585 c 0,72 74,146 149,146 l 2985,0 c 74,0 150,-74 150,-146 l 0,-585 c 0,-74 -76,-146 -150,-146 l -2985,0"
+               id="path1539"
+               inkscape:connector-curvature="0" />
+          </g>
+        </g>
+        <g
+           style="font-size:454px;font-weight:400;font-family:Arial embedded"
+           id="g1541">
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1543">
+            <text
+               id="text1545">
+              <tspan
+                 x="6254 6610 6885 7160 7325 7604 7719 7994 8269 8409 8684"
+                 y="4058"
+                 id="tspan1547">Coordinator</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1549">
+            <rect
+               x="5829"
+               y="3444"
+               width="3284"
+               height="877"
+               id="rect1551" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000"
+             id="g1553">
+            <path
+               style="fill:none"
+               d="m 5074,3953 c 0,1258 1746,1098 2257,642"
+               id="path1555"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1557">
+            <path
+               d="m 7470,4320 -341,279 239,145 102,-424 z"
+               id="path1559"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:48"
+             id="g1561">
+            <path
+               style="fill:none"
+               d="m 10213,6294 c 0,293 642,426 1928,437"
+               id="path1563"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1565">
+            <path
+               d="m 12302,6732 -198,96 2,-194 196,98 z"
+               id="path1567"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:48"
+             id="g1569">
+            <path
+               style="fill:none"
+               d="m 10050,6478 c 0,293 642,426 1928,437"
+               id="path1571"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1573">
+            <path
+               d="m 12138,6916 -197,95 1,-193 196,98 z"
+               id="path1575"
+               inkscape:connector-curvature="0" />
+            <g
+               id="g1577">
+              <defs
+                 id="defs1579">
+                <linearGradient
+                   id="gradient1"
+                   x1="12335"
+                   y1="6733"
+                   x2="15832"
+                   y2="6733"
+                   gradientUnits="userSpaceOnUse">
+                  <stop
+                     offset="0"
+                     style="stop-color:rgb(255,255,255)"
+                     id="stop1582" />
+                  <stop
+                     offset="1"
+                     style="stop-color:rgb(253,233,198)"
+                     id="stop1584" />
+                </linearGradient>
+              </defs>
+              <path
+                 style="fill:url(#gradient1)"
+                 d="m 12450,6294 -14,1 -14,3 -13,4 -14,5 -13,7 -12,7 -12,9 -10,10 -11,10 -9,12 -8,12 -6,12 -6,14 -3,13 -3,14 -1,14 0,584 1,14 3,14 3,13 6,13 6,12 8,12 9,11 11,11 10,11 12,9 12,7 13,6 14,6 13,4 14,2 14,1 3268,0 14,-1 14,-2 13,-4 13,-6 13,-6 13,-7 11,-9 11,-11 10,-11 10,-11 7,-12 7,-12 5,-13 4,-13 3,-14 1,-14 0,-584 -1,-14 -3,-14 -4,-13 -5,-14 -7,-12 -7,-12 -10,-12 -10,-10 -11,-10 -11,-9 -13,-7 -13,-7 -13,-5 -13,-4 -14,-3 -14,-1 -3268,0 z m -149,0 0,0 z m 3566,877 0,0 z"
+                 id="path1586"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24"
+             id="g1588">
+            <path
+               style="fill:none"
+               d="m 12450,6294 c -75,0 -149,73 -149,147 l 0,584 c 0,73 74,146 149,146 l 3268,0 c 74,0 149,-73 149,-146 l 0,-584 c 0,-74 -75,-147 -149,-147 l -3268,0"
+               id="path1590"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1592">
+            <text
+               id="text1594">
+              <tspan
+                 x="12578 12908 13073 13323 13598 13713 13962 14077 14352 14631 14771 14911 15186 15461"
+                 y="6909"
+                 id="tspan1596">Archiving tool</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1598">
+            <rect
+               x="12302"
+               y="6295"
+               width="3566"
+               height="877"
+               id="rect1600" />
+            <g
+               id="g1602">
+              <defs
+                 id="defs1604">
+                <linearGradient
+                   id="gradient2"
+                   x1="12147"
+                   y1="6917"
+                   x2="15644"
+                   y2="6917"
+                   gradientUnits="userSpaceOnUse">
+                  <stop
+                     offset="0"
+                     style="stop-color:rgb(255,255,255)"
+                     id="stop1607" />
+                  <stop
+                     offset="1"
+                     style="stop-color:rgb(253,233,198)"
+                     id="stop1609" />
+                </linearGradient>
+              </defs>
+              <path
+                 style="fill:url(#gradient2)"
+                 d="m 12262,6478 -14,1 -14,3 -13,4 -14,5 -12,7 -12,7 -13,9 -10,10 -10,10 -10,12 -7,12 -7,12 -5,14 -4,13 -3,14 -1,13 0,585 1,14 3,14 4,12 5,13 7,13 7,12 10,11 10,11 10,10 13,10 12,7 12,6 14,6 13,4 14,2 14,1 3268,0 14,-1 14,-2 14,-4 13,-6 13,-6 12,-7 11,-10 11,-10 11,-11 9,-11 8,-12 6,-13 6,-13 4,-12 2,-14 1,-14 0,-585 -1,-13 -2,-14 -4,-13 -6,-14 -6,-12 -8,-12 -9,-12 -11,-10 -11,-10 -11,-9 -12,-7 -13,-7 -13,-5 -14,-4 -14,-3 -14,-1 -3268,0 z m -149,0 0,0 z m 3566,877 0,0 z"
+                 id="path1611"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24"
+             id="g1613">
+            <path
+               style="fill:none"
+               d="m 12262,6478 c -75,0 -149,73 -149,146 l 0,585 c 0,73 74,146 149,146 l 3268,0 c 74,0 149,-73 149,-146 l 0,-585 c 0,-73 -75,-146 -149,-146 l -3268,0"
+               id="path1615"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1617">
+            <text
+               id="text1619">
+              <tspan
+                 x="12391 12721 12886 13136 13411 13526 13775 13890 14165 14444 14584 14724 14999 15274"
+                 y="7093"
+                 id="tspan1621">Archiving tool</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1623">
+            <rect
+               x="12114"
+               y="6479"
+               width="3566"
+               height="877"
+               id="rect1625" />
+          </g>
+          <g
+             style="fill:#baf3ba;stroke:none"
+             id="g1627">
+            <path
+               d="m 9040,4839 2346,0 0,1456 -2346,0 0,-1456 0,0 z m 0,0 0,0 z m 2346,1456 0,0 z"
+               id="path1629"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1631">
+            <path
+               style="fill:none"
+               d="m 9040,4839 2346,0 0,1456 -2346,0 0,-1456 0,0"
+               id="path1633"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1635">
+            <text
+               id="text1637">
+              <tspan
+                 x="9275 9631 9745 9859 10134 10410"
+                 y="5477"
+                 id="tspan1639">Client</tspan>
+            </text>
+            <text
+               id="text1641">
+              <tspan
+                 x="9275"
+                 y="6010"
+                 id="tspan1643">“</tspan>
+            </text>
+            <text
+               id="text1645">
+              <tspan
+                 x="9430 9760 10040 10315 10590 10730"
+                 y="6010"
+                 id="tspan1647">Agent”</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1649">
+            <rect
+               x="9040"
+               y="4840"
+               width="2346"
+               height="1456"
+               id="rect1651" />
+          </g>
+          <g
+             style="fill:#baf3ba;stroke:none"
+             id="g1653">
+            <path
+               d="m 8830,5006 2346,0 0,1457 -2346,0 0,-1457 0,0 z m 0,0 0,0 z m 2346,1457 0,0 z"
+               id="path1655"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1657">
+            <path
+               style="fill:none"
+               d="m 8830,5006 2346,0 0,1457 -2346,0 0,-1457 0,0"
+               id="path1659"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1661">
+            <text
+               id="text1663">
+              <tspan
+                 x="9065 9421 9535 9649 9924 10200"
+                 y="5644"
+                 id="tspan1665">Client</tspan>
+            </text>
+            <text
+               id="text1667">
+              <tspan
+                 x="9065"
+                 y="6178"
+                 id="tspan1669">“</tspan>
+            </text>
+            <text
+               id="text1671">
+              <tspan
+                 x="9219 9549 9829 10104 10379 10519"
+                 y="6178"
+                 id="tspan1673">Agent”</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1675">
+            <rect
+               x="8830"
+               y="5007"
+               width="2346"
+               height="1456"
+               id="rect1677" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:48"
+             id="g1679">
+            <path
+               style="fill:none"
+               d="m 9838,6662 c 0,292 642,426 1927,437"
+               id="path1681"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1683">
+            <path
+               d="m 11926,7100 -198,95 2,-193 196,98 z"
+               id="path1685"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#baf3ba;stroke:none"
+             id="g1687">
+            <path
+               d="m 8665,5206 2346,0 0,1456 -2346,0 0,-1456 0,0 z m 0,0 0,0 z m 2346,1456 0,0 z"
+               id="path1689"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24;stroke-linejoin:round"
+             id="g1691">
+            <path
+               style="fill:none"
+               d="m 8665,5206 2346,0 0,1456 -2346,0 0,-1456 0,0"
+               id="path1693"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1695">
+            <text
+               id="text1697">
+              <tspan
+                 x="9240 9596 9710 9824 10099 10375"
+                 y="5844"
+                 id="tspan1699">Client</tspan>
+            </text>
+            <text
+               id="text1701">
+              <tspan
+                 x="9073"
+                 y="6377"
+                 id="tspan1703">“</tspan>
+            </text>
+            <text
+               id="text1705">
+              <tspan
+                 x="9228 9558 9838 10113 10388 10528"
+                 y="6377"
+                 id="tspan1707">Agent”</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1709">
+            <rect
+               x="8665"
+               y="5207"
+               width="2346"
+               height="1456"
+               id="rect1711" />
+            <g
+               id="g1713">
+              <defs
+                 id="defs1715">
+                <linearGradient
+                   id="gradient3"
+                   x1="11959"
+                   y1="7100"
+                   x2="15456"
+                   y2="7100"
+                   gradientUnits="userSpaceOnUse">
+                  <stop
+                     offset="0"
+                     style="stop-color:rgb(255,255,255)"
+                     id="stop1718" />
+                  <stop
+                     offset="1"
+                     style="stop-color:rgb(253,233,198)"
+                     id="stop1720" />
+                </linearGradient>
+              </defs>
+              <path
+                 style="fill:url(#gradient3)"
+                 d="m 12074,6661 -14,1 -14,3 -14,4 -14,5 -12,6 -12,8 -12,9 -10,10 -11,10 -9,12 -8,12 -6,12 -6,14 -4,13 -2,14 -1,13 0,585 1,14 2,14 4,12 6,13 6,13 8,12 9,11 11,11 10,10 12,9 12,8 12,6 14,6 14,3 14,3 14,1 3268,0 14,-1 14,-3 13,-3 13,-6 13,-6 12,-8 12,-9 11,-10 10,-11 10,-11 7,-12 7,-13 5,-13 4,-12 3,-14 1,-14 0,-585 -1,-13 -3,-14 -4,-13 -5,-14 -7,-12 -7,-12 -10,-12 -10,-10 -11,-10 -12,-9 -12,-8 -13,-6 -13,-5 -13,-4 -14,-3 -14,-1 -3268,0 z m -149,0 0,0 z m 3566,877 0,0 z"
+                 id="path1722"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             style="fill:none;stroke:#000000;stroke-width:24"
+             id="g1724">
+            <path
+               style="fill:none"
+               d="m 12074,6661 c -75,0 -149,73 -149,146 l 0,585 c 0,73 74,146 149,146 l 3268,0 c 74,0 149,-73 149,-146 l 0,-585 c 0,-73 -75,-146 -149,-146 l -3268,0"
+               id="path1726"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g1728">
+            <text
+               id="text1730">
+              <tspan
+                 x="12721 13077 13352 13631 13881 14021 14160 14436 14711"
+                 y="7276"
+                 id="tspan1732">Copy tool</tspan>
+            </text>
+          </g>
+          <g
+             style="fill:none;stroke:none"
+             id="g1734">
+            <rect
+               x="11926"
+               y="6662"
+               width="3566"
+               height="877"
+               id="rect1736" />
+          </g>
+          <g
+             style="fill:none;stroke:#808080"
+             id="g1738">
+            <path
+               style="fill:none"
+               d="m 2452,5203 48,0"
+               id="path1740"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 2548,5203 47,0"
+               id="path1742"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 2643,5203 48,0"
+               id="path1744"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 2739,5203 48,0"
+               id="path1746"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 2835,5202 47,0"
+               id="path1748"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 2930,5202 48,0"
+               id="path1750"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3026,5202 48,0"
+               id="path1752"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3122,5202 47,0"
+               id="path1754"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3217,5202 48,0"
+               id="path1756"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3313,5202 48,0"
+               id="path1758"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3409,5202 47,0"
+               id="path1760"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3504,5202 48,-1"
+               id="path1762"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3600,5201 48,0"
+               id="path1764"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3696,5201 48,0"
+               id="path1766"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3791,5201 48,0"
+               id="path1768"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3887,5201 14,0"
+               id="path1770"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5202 0,-47"
+               id="path1772"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5108 0,-46"
+               id="path1774"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5015 0,-47"
+               id="path1776"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4921 0,-47"
+               id="path1778"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4827 0,-47"
+               id="path1780"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4733 0,-46"
+               id="path1782"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4640 0,-47"
+               id="path1784"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4546 0,-47"
+               id="path1786"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4452 0,-47"
+               id="path1788"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4358 0,-47"
+               id="path1790"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4265 0,-47"
+               id="path1792"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4171 0,-47"
+               id="path1794"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,4077 0,-47"
+               id="path1796"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3983 0,-47"
+               id="path1798"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3890 0,-47"
+               id="path1800"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3796 0,-47"
+               id="path1802"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3702 0,-47"
+               id="path1804"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3608 0,-47"
+               id="path1806"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,3514 0,-21 26,0"
+               id="path1808"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3250,3493 48,0"
+               id="path1810"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3346,3493 48,0"
+               id="path1812"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3441,3493 48,0"
+               id="path1814"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3537,3493 48,0"
+               id="path1816"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3633,3493 48,0"
+               id="path1818"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3728,3493 48,0"
+               id="path1820"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3824,3493 48,0"
+               id="path1822"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3901,6661 -48,0"
+               id="path1824"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3805,6661 -47,0"
+               id="path1826"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3710,6661 -48,0"
+               id="path1828"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3614,6661 -48,0"
+               id="path1830"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3518,6661 -47,0"
+               id="path1832"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3423,6661 -48,0"
+               id="path1834"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3327,6661 -48,0"
+               id="path1836"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3231,6661 -47,0"
+               id="path1838"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6622 0,-47"
+               id="path1840"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6528 0,-47"
+               id="path1842"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6434 0,-47"
+               id="path1844"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6340 0,-47"
+               id="path1846"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6247 0,-47"
+               id="path1848"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6153 0,-47"
+               id="path1850"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,6059 0,-47"
+               id="path1852"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5965 0,-47"
+               id="path1854"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5871 0,-46"
+               id="path1856"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5778 0,-47"
+               id="path1858"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5684 0,-47"
+               id="path1860"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5590 0,-47"
+               id="path1862"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5496 0,-46"
+               id="path1864"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5403 0,-47"
+               id="path1866"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5309 0,-47"
+               id="path1868"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 3176,5215 0,-13"
+               id="path1870"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8665,5935 -48,0"
+               id="path1872"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8569,5935 -47,0"
+               id="path1874"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8474,5935 -48,0"
+               id="path1876"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8378,5935 -48,0"
+               id="path1878"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8282,5935 -47,0"
+               id="path1880"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8187,5935 -48,0"
+               id="path1882"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8091,5935 -48,0"
+               id="path1884"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7995,5935 -47,0"
+               id="path1886"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7900,5935 -48,0"
+               id="path1888"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7804,5935 -48,0"
+               id="path1890"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7708,5935 -47,0"
+               id="path1892"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7613,5935 -48,0"
+               id="path1894"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7517,5935 -48,0"
+               id="path1896"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5901 0,-47"
+               id="path1898"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5807 0,-47"
+               id="path1900"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5713 0,-47"
+               id="path1902"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5620 0,-47"
+               id="path1904"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5526 0,-47"
+               id="path1906"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5432 0,-47"
+               id="path1908"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5338 0,-47"
+               id="path1910"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5245 0,-44 -4,0"
+               id="path1912"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7404,5201 -47,0"
+               id="path1914"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7309,5201 -48,0"
+               id="path1916"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7213,5201 -48,0"
+               id="path1918"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7117,5201 -47,0"
+               id="path1920"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7022,5201 -48,0"
+               id="path1922"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6926,5201 -48,0"
+               id="path1924"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6830,5201 -47,0"
+               id="path1926"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6735,5201 -48,0"
+               id="path1928"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6639,5201 -48,0"
+               id="path1930"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6543,5201 -47,0"
+               id="path1932"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6448,5201 -48,0"
+               id="path1934"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6352,5201 -48,0"
+               id="path1936"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6256,5201 -10,0"
+               id="path1938"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6246,6661 48,0"
+               id="path1940"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6342,6661 48,0"
+               id="path1942"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6437,6661 48,0"
+               id="path1944"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6533,6661 48,0"
+               id="path1946"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6629,6661 48,0"
+               id="path1948"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6724,6661 48,0"
+               id="path1950"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6820,6661 48,0"
+               id="path1952"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 6916,6661 48,0"
+               id="path1954"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7011,6661 48,0"
+               id="path1956"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7107,6661 48,0"
+               id="path1958"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7203,6661 48,0"
+               id="path1960"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7298,6661 48,0"
+               id="path1962"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7394,6661 48,0"
+               id="path1964"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6628 0,-47"
+               id="path1966"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6534 0,-47"
+               id="path1968"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6441 0,-47"
+               id="path1970"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6347 0,-47"
+               id="path1972"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6253 0,-47"
+               id="path1974"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6159 0,-47"
+               id="path1976"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,6065 0,-46"
+               id="path1978"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7456,5972 0,-37 10,0"
+               id="path1980"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7514,5935 48,0"
+               id="path1982"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7610,5935 48,0"
+               id="path1984"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7706,5935 47,0"
+               id="path1986"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7801,5935 48,0"
+               id="path1988"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7897,5935 48,0"
+               id="path1990"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 7993,5935 47,0"
+               id="path1992"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8088,5935 48,0"
+               id="path1994"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8184,5935 48,0"
+               id="path1996"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8280,5935 47,0"
+               id="path1998"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8375,5935 48,0"
+               id="path2000"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8471,5935 48,0"
+               id="path2002"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8567,5935 47,0"
+               id="path2004"
+               inkscape:connector-curvature="0" />
+            <path
+               style="fill:none"
+               d="m 8662,5935 3,0"
+               id="path2006"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:none;stroke:#000000"
+             id="g2008">
+            <path
+               style="fill:none"
+               d="m 7470,4320 c 0,1077 286,1439 860,1578"
+               id="path2010"
+               inkscape:connector-curvature="0" />
+          </g>
+          <g
+             style="fill:#000000;stroke:none"
+             id="g2012">
+            <path
+               d="m 8665,5935 -398,-196 -40,272 438,-76 z"
+               id="path2014"
+               inkscape:connector-curvature="0" />
+          </g>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
index 0d4ab1e..2cd6217 100644 (file)
        </fo:block-container>
 </xsl:template>
 
+
+<!-- mychapter definition This has been copied from xsl-ns-stylesheets/fo/component.xsl 
+       and modified to provide highlight regions of text for an entire chapter. 
+       This is consistent with the high-lighting provided by textdecoration_1 !-->
+<xsl:template name="mychapter">
+       <xsl:param name='version'/>
+       <xsl:param name='chunkid'/>
+  <xsl:variable name="id">
+    <xsl:call-template name="object.id"/>
+  </xsl:variable>
+
+  <xsl:variable name="master-reference">
+    <xsl:call-template name="select.pagemaster"/>
+  </xsl:variable>
+
+  <fo:page-sequence hyphenate="{$hyphenate}"
+                    master-reference="{$master-reference}">
+    <xsl:attribute name="language">
+      <xsl:call-template name="l10n.language"/>
+    </xsl:attribute>
+    <xsl:attribute name="format">
+      <xsl:call-template name="page.number.format">
+        <xsl:with-param name="master-reference" select="$master-reference"/>
+      </xsl:call-template>
+    </xsl:attribute>
+    <xsl:attribute name="initial-page-number">
+      <xsl:call-template name="initial.page.number">
+        <xsl:with-param name="master-reference" select="$master-reference"/>
+      </xsl:call-template>
+    </xsl:attribute>
+
+    <xsl:attribute name="force-page-count">
+      <xsl:call-template name="force.page.count">
+        <xsl:with-param name="master-reference" select="$master-reference"/>
+      </xsl:call-template>
+    </xsl:attribute>
+
+    <xsl:attribute name="hyphenation-character">
+      <xsl:call-template name="gentext">
+        <xsl:with-param name="key" select="'hyphenation-character'"/>
+      </xsl:call-template>
+    </xsl:attribute>
+    <xsl:attribute name="hyphenation-push-character-count">
+      <xsl:call-template name="gentext">
+        <xsl:with-param name="key" select="'hyphenation-push-character-count'"/>
+      </xsl:call-template>
+    </xsl:attribute>
+    <xsl:attribute name="hyphenation-remain-character-count">
+      <xsl:call-template name="gentext">
+        <xsl:with-param name="key" select="'hyphenation-remain-character-count'"/>
+      </xsl:call-template>
+    </xsl:attribute>
+
+    <xsl:apply-templates select="." mode="running.head.mode">
+      <xsl:with-param name="master-reference" select="$master-reference"/>
+    </xsl:apply-templates>
+
+    <xsl:apply-templates select="." mode="running.foot.mode">
+      <xsl:with-param name="master-reference" select="$master-reference"/>
+    </xsl:apply-templates>
+
+    <fo:flow flow-name="xsl-region-body">
+      <xsl:call-template name="set.flow.properties">
+        <xsl:with-param name="element" select="local-name(.)"/>
+        <xsl:with-param name="master-reference" select="$master-reference"/>
+      </xsl:call-template>
+
+       <fo:block-container id='${chunkid}'
+                       padding='5pt'
+                       border-color='gray'
+                       border-style='solid'
+                       border-width='1pt'>
+                       <fo:block-container float='left' text-indent='3px' start-indent='-20px'>
+                               <fo:block background-color="gray">
+                                       <xsl:value-of select='$version'/>
+                               </fo:block>
+                       </fo:block-container>
+                 <fo:block id="{$id}"
+                                       xsl:use-attribute-sets="component.titlepage.properties">
+                       <xsl:call-template name="chapter.titlepage"/>
+                 </fo:block>
+
+                 <xsl:call-template name="make.component.tocs"/>
+
+                 <xsl:apply-templates/>
+      </fo:block-container>
+    </fo:flow>
+  </fo:page-sequence>
+</xsl:template>
+
+
 <!-- conditional matching template: this calls text decoration
           template with the correct variables. -->
 <xsl:template match="*[@condition]">
     <xsl:variable name="id">
         <xsl:call-template name="object.id"/>
     </xsl:variable>
-    <xsl:call-template name='section.titlepage'/>
+       <xsl:variable name="versionstr">
+               <xsl:choose>
+                       <xsl:when test="@condition = 'l21'">Introduced in Lustre 2.1</xsl:when>
+                       <xsl:when test="@condition = 'l22'">Introduced in Lustre 2.2</xsl:when>
+                       <xsl:when test="@condition = 'l23'">Introduced in Lustre 2.3</xsl:when>
+                       <xsl:when test="@condition = 'l24'">Introduced in Lustre 2.4</xsl:when>
+                       <xsl:when test="@condition = 'l25'">Introduced in Lustre 2.5</xsl:when>
+                       <xsl:when test="@condition = 'l26'">Introduced in Lustre 2.6</xsl:when>
+                       <xsl:when test="@condition = 'l27'">Introduced in Lustre 2.7</xsl:when>
+                       <xsl:when test="@condition = 'l28'">Introduced in Lustre 2.8</xsl:when>
+                       <xsl:when test="@condition = 'l29'">Introduced in Lustre 2.9</xsl:when>
+                       <xsl:otherwise>Documentation Error: unrecognised condition attribute</xsl:otherwise>
+               </xsl:choose>
+       </xsl:variable>
     <xsl:choose>
-        <xsl:when test="@condition = 'l21'">
-            <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'introduced in Lustre 2.1'"/>
-                <xsl:with-param name='chunkid' select="$id"/>
-            </xsl:call-template>
-        </xsl:when>
-        <xsl:when test="@condition = 'l22'">
-            <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'introduced in Lustre 2.2'"/>
-                <xsl:with-param name='chunkid' select="$id"/>
-            </xsl:call-template>
-        </xsl:when>
-        <xsl:when test="@condition = 'l23'">
-            <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'introduced in Lustre 2.3'"/>
-                <xsl:with-param name='chunkid' select="$id"/>
-            </xsl:call-template>
-        </xsl:when>
-        <xsl:when test="@condition = 'l24'">
-            <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'introduced in Lustre 2.4'"/>
-                <xsl:with-param name='chunkid' select="$id"/>
-            </xsl:call-template>
-        </xsl:when>
-        <xsl:when test="@condition = 'l25'">
-            <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'introduced in Lustre 2.5'"/>
+        <xsl:when test="name(..) = 'part'">
+               <xsl:call-template name='mychapter'>
+                <xsl:with-param name='version' select="$versionstr"/>
                 <xsl:with-param name='chunkid' select="$id"/>
             </xsl:call-template>
-        </xsl:when>
-        <xsl:otherwise>
+               </xsl:when>
+               <xsl:otherwise>
             <xsl:call-template name='textdecoration_1'>
-                <xsl:with-param name='version' select="'unrecognised Lustre version'"/>
+                <xsl:with-param name='version' select="$versionstr"/>
                 <xsl:with-param name='chunkid' select="$id"/>
             </xsl:call-template>
-        </xsl:otherwise>
+               </xsl:otherwise>
     </xsl:choose>
 </xsl:template>