Updated README.md

This commit is contained in:
2025-05-15 11:47:19 +02:00
parent d575d4fe76
commit 926df04caf
3 changed files with 605 additions and 32 deletions

View File

@ -4,33 +4,50 @@
## Overview
This is a driver for the detector tower which is based on the Turbo PMAC driver (https://git.psi.ch/sinq-epics-modules/turboPmac). It consists of the following three objects:
- `detectorTowerAngleAxis`: This is a virtual axis which controls multiple physical motors in order to provide a synchronized movement.
![Physical setup](images/PhysicalSetup.svg)
This is a driver for the detector tower which is based on the Turbo PMAC driver (https://git.psi.ch/sinq-epics-modules/turboPmac). It consists of the following four objects:
- `detectorTowerController`: This is an expanded variant of `turboPmacController` provided by the Turbo PMAC library linked above.It is needed to operate a `detectorTowerAngleAxis`, but it can also be used to operate a "normal" `turboPmacAxis`.
- `detectorTowerLiftAxis`: This is an auxiliary axis type attached to the main detector axis. Multiple instances of these axes are constructed automatically when creating a `detectorTowerAngleAxis`.
The header files contain detailed documentation for all public functions. The headers themselves are exported when building the library to allow other drivers to depend on this one.
- `detectorTowerAngleAxis`: This is a virtual axis which controls multiple physical motors in order to provide a combined movement. Moving it results in a rotation of the entire beam around the support axis position.
- `detectorTowerLiftAxis`: This is a virtual axis which controls multiple physical motors in order to provide a combined movement. Moving it results in a vertical lift.
- `detectorTowerSupportAxis`: This is an axis at the rotation center of the beam which is part of the combined movements. Its origin can be shifted manually for small adjustments, resulting in a corresponding movement. Other than that, it is not meant to move on its own, hence setting a new value to the `VAL` field of the motor record won't cause it to move.
## User guide
The centerpiece of this driver is the `detectorTowerAngleAxis`, which controls the angle of the detector flight tube. Creating an instance of this axis type also creates multiple so-called `detectorTowerLiftAxis`, which are used to perform secondary movements.
The centerpiece of this driver is the `detectorTowerAngleAxis`, which controls the angle of the detector flight tube. It is supported by two secondary axes, `detectorTowerLiftAxis` and `detectorTowerSupportAxis`. All three axes are created by a single IOC shell command `detectorTowerAxis` (see [Usage in IOC shell](#usage-in-ioc-shell)). All three axes use absolute encoders and therefore cannot perform a reference / home drive.
The utilities provided in the `utils` folder of https://git.psi.ch/sinq-epics-modules/turboPmac work with this driver as well.
The first two axes can be moved independently from each other or together as a combined movement by issuing both move orders within a certain time span. This time span can be configured via the IOC shell function `setDeferredMovementWait` and defaults to 100 ms. This allows the user to start a combined movement e.g. via caput:
TODO: How to start combined movement
```
caput $(ControllerPV):angle 2 & $(ControllerPV):caput lift 10
```
which moves the angle to 2 degree and shifts the entire beam vertically by 10 mm. When using the axis from NICOS, using the `maw` or `move` command with multiple devices has the same effect:
```
move("angle", 2, "lift", 10)
```
If one axis is already moving, no new move command can be issued until the movement is finished. The `detectorTowerSupportAxis` cannot be moved directly.
It is possible to shift the origin of all three axes (and therefore also moving the `detectorTowerSupportAxis`) for small adjustments. The current origin position in the axis unit (degree for `detectorTowerAngleAxis`, mm for `detectorTowerLiftAxis` and encoder steps for `detectorTowerSupportAxis`) can be read from the PV `$(INSTR)$(M):Origin`. The origin can be shifted by the amount of axis units written to `$(INSTR)$(M):AdjustOrigin`. Since this is a relative movement, writing "10" two times to `$(INSTR)$(M):AdjustOrigin` shifts the origin by 20 axis units. Therefore, the limits are only there to prevent too large shifts during a single write (since the origin can be shifted to any position by writing to `$(INSTR)$(M):AdjustOrigin` repeatedly).
The detector tower can be moved into a so-called "changer position" by writing "1" to the PV `$(INSTR)$(M):ChangeState`. This causes the entire tower to move vertically down. When it is in the changer position, the axes cannot be moved at all. In order to go back to the "working state" where the axes can be moved again, write "0" to `$(INSTR)$(M):ChangeState`. The current state of the axis can be read out from `$(INSTR)$(M):ChangingStateRBV`. In case starting a change movement succeeds, `$(INSTR)$(M):ChangeStateRBV` changes its value accordingly, otherwise it stays at its current value.
The utilities provided in the `utils` folder in `turboPmac/utils` work with this driver as well.
### Usage in IOC shell
detectorTower exports the following IOC shell functions:
- `detectorTowerController`: Create a new controller object.
- `detectorTowerAngleAxis`: Create a new axis object.
- `detectorTowerAxis`: Create a `detectorTowerAngleAxis`, a `detectorTowerLiftAxis` and a `detectorTowerSupportAxis` object and link them to each other
The constructor function for `detectorTowerAngleAxis` has the following syntax:
The constructor function for `detectorTowerAxis` has the following syntax:
```
detectorTowerAngleAxis("$(NAME)",1, 2, 3)
```
with 1 being the axis number / index of the detector flight tube angle axis, 2 being the lift offset axis and 3 being the tilt offset axis. These axes are parametrized in the same way as any "normal" axes via a substitution file (see corresponding section below).
with 1 being the axis number / index of the `detectorTowerAngleAxis`, 2 being the `detectorTowerLiftAxis` and 3 being the `detectorTowerSupportAxis`. These axes are parametrized in the same way as any "normal" axes via a substitution file (see corresponding section below).
"Normal" `turboPmacAxis` may be used together with this controller:
@ -50,7 +67,7 @@ drvAsynIPPortConfigure("$(ASYN_PORT)","172.28.101.24:1025")
# 1: Socket communication timeout in seconds
detectorTowerController("$(NAME)", "$(ASYN_PORT)", 8, 0.05, 1, 1);
# Slot 1, 2 and 3 are occupied by a detector tower axis and its attached auxiliary axes, while the slots 4 and 5 are "normal" Turbo PMAC axes.
# Slot 1, 2 and 3 are occupied by the three detector tower axis, while the slots 4 and 5 are "normal" Turbo PMAC axes.
detectorTowerAngleAxis("$(NAME)",1, 2, 3);
turboPmacAxis("$(NAME)",4);
turboPmacAxis("$(NAME)",5);
@ -63,9 +80,9 @@ setThresholdComTimeout("$(NAME)", 100, 1);
# Parametrize the EPICS record database with the substitution file named after the MCU.
# Since this driver is based on Turbo PMAC, we need to parametrize turboPmac.db in addition to sinqMotor.db and detectorTower.db.
epicsEnvSet("SINQDBPATH","$(sinqMotor_DB)/sinqMotor.db")
epicsEnvSet("SINQDBPATH","$(detectorTower_DB)/sinqMotor.db")
dbLoadTemplate("$(TOP)/$(NAME).substitutions", "INSTR=$(INSTR)$(NAME):,CONTROLLER=$(NAME)")
epicsEnvSet("SINQDBPATH","$(turboPmac_DB)/turboPmac.db")
epicsEnvSet("SINQDBPATH","$(detectorTower_DB)/turboPmac.db")
dbLoadTemplate("$(TOP)/$(NAME).substitutions", "INSTR=$(INSTR)$(NAME):,CONTROLLER=$(NAME)")
epicsEnvSet("SINQDBPATH","$(detectorTower_DB)/detectorTower.db")
dbLoadTemplate("$(TOP)/$(NAME).substitutions", "INSTR=$(INSTR)$(NAME):,CONTROLLER=$(NAME)")
@ -85,9 +102,9 @@ file "$(SINQDBPATH)"
{
pattern
{ AXIS, M, DESC, EGU, DIR, MRES, MSGTEXTSIZE, ENABLEMOVWATCHDOG, LIMITSOFFSET, CANSETSPEED }
{ 1, "tower", "Angle of the beam guide", degree, Pos, 0.001, 200, 0, 1.0, 0 }
{ 2, "liftZeroCorr", "Detector vertical lift offset", mm, Pos, 0.001, 200, 0, 1.0, 0 }
{ 3, "tiltZeroCorr", "Detector tilt offset", degree, Pos, 0.001, 200, 0, 1.0, 0 }
{ 1, "angle", "Angle of the beam guide", degree, Pos, 0.001, 200, 0, 1.0, 0 }
{ 2, "lift", "Detector vertical lift offset", mm, Pos, 0.001, 200, 0, 1.0, 0 }
{ 3, "suppoer", "Support axis", mm, Pos, 0.001, 200, 0, 1.0, 0 }
{ 4, "other axis A", "A normal axis", degree, Pos, 0.001, 200, 1, 2.0, 1 }
{ 5, "other axis B", "Another normal axis", degree, Pos, 0.001, 200, 1, 2.0, 0 }
}
@ -99,24 +116,11 @@ Note that the speed of the detector tower axes 1, 2 and 3 cannot be set. Setting
### Code architecture
The code is designed around the `detectorTowerAngleAxis`, which controls the angle of the beam guide and acts as a "master" axis. Other movements are realized as auxiliary axes (e.g. for the vertical lift offset and the tilt offset). The `detectorTowerAngleAxis` has pointers to all associated auxiliary axes and (as described above) its IOC shell constructor also builds the associated auxiliary axes.
The code is designed around the `detectorTowerAngleAxis`, which controls the angle of the beam guide and acts as a "master" axis which contains pointers to its attached `detectorTowerLiftAxis` and `detectorTowerSupportAxis`. All three axes are polled at once via the function `detectorTowerController::pollDetectorAxes`, which is called from the individual `poll` functions of the axes (the `doPoll` mechanism from `sinqMotor` is not used). To avoid polling the axes multiple times during one controller cycle, the function `detectorTowerController::pollDetectorAxes` is only executed for the axis with the smallest index. Since this axis is polled first, the other two axes are therefore already up-to-date when they execute their own poll function. If one of the axes is moving, all three axes are marked as moving. The same is true for errors.
TODO
The `doPoll` implementation for `detectorTowerAngleAxis` queries the status of both the `detectorTowerAngleAxis` itself and all associated auxiliary axes. If any of the axes is moving, the `detectorTowerAngleAxis` is set to "moving" as well. In turn, the `doPoll` implementation of a `detectorTowerLiftAxis` checks if its associated `detectorTowerAngleAxis` is moving and sets its own movement status accordingly.
In order to save on movement time, movement commands to auxiliary axes and the `detectorTowerAngleAxis` are collected and then send as a single resulting movement command to the MCU. In order to do so, a "collector" thread is running which checks if a movement request has been send to one of the axes. If that is the case, it waits for `detectorTowerAngleAxis->deferredMovementWait_` seconds and checks if commands for other axes are given as well. Then, it calls `detectorTowerAngleAxis::startCombinedMove` which combines all commands to a single request which is sent to the MCU. `detectorTowerAngleAxis->deferredMovementWait_` can be set with the IOC shell function `setDeferredMovementWait` and defaults to 100 ms.
The `detectorTowerController` is a thin wrapper around a `turboPmacController` which overwrites the `readInt32` and `writeInt32` in order to support the PVs "$(INSTR)$(M):ChangeState", "$(INSTR)$(M):PositionStateRBV" and "$(INSTR)$(M):ChangingStateRBV". Any calls to these two methods not concerning the aforementioned PVs are directly forwarded to `turboPmacController::readInt32` / `turboPmacController::writeInt32`.
In order to save on movement time, movement commands to auxiliary axes and the `detectorTowerAngleAxis` are collected and then send as a single resulting movement command to the MCU. In order to do so, a "collector" thread is running which checks if a movement request has been send to one of the axes. If that is the case, it waits for some time and checks if commands for other axes are given as well. Then, it calls `detectorTowerAngleAxis::startCombinedMove` which combines all commands to a single request which is sent to the MCU. This allows the user to start a combined movement e.g. via caput:
```
caput tower 2 & caput liftZeroCorr 10
```
When using the axis from NICOS, using the `maw` or `move` command with multiple devices has the same effect:
```
move("tower", 2, "liftZeroCorr", 10)
```
The `detectorTowerController` is a thin wrapper around a `turboPmacController` which overwrites the `readInt32`, `writeInt32` and `writeFloat64` methods in order to support the additional PVs defined in `db/detectorTower.db`. Any calls to these two methods not concerning the aforementioned PVs are directly forwarded to `turboPmacController::readInt32` / `turboPmacController::writeInt32`.
### Versioning

BIN
images/PhysicalSetup.odg Normal file

Binary file not shown.

569
images/PhysicalSetup.svg Normal file
View File

@ -0,0 +1,569 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="215.9mm" height="90mm" viewBox="0 0 21590 9000" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="0" y="0" width="21590" height="9000"/>
</clipPath>
<clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
<rect x="21" y="9" width="21547" height="8982"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="z" horiz-adv-x="848" d="M 83,0 L 83,137 688,943 117,943 117,1082 901,1082 901,945 295,139 922,139 922,0 83,0 Z"/>
<glyph unicode="6" horiz-adv-x="980" d="M 1049,461 C 1049,312 1009,195 928,109 847,23 736,-20 594,-20 435,-20 314,39 230,157 146,275 104,447 104,672 104,916 148,1103 235,1234 322,1365 447,1430 608,1430 821,1430 955,1334 1010,1143 L 838,1112 C 803,1227 725,1284 606,1284 503,1284 424,1236 368,1141 311,1045 283,906 283,725 316,786 362,832 421,864 480,895 548,911 625,911 755,911 858,870 935,789 1011,708 1049,598 1049,461 Z M 866,453 C 866,555 841,634 791,689 741,744 671,772 582,772 498,772 430,748 379,699 327,650 301,582 301,496 301,387 328,298 382,229 435,160 504,125 588,125 675,125 743,154 792,213 841,271 866,351 866,453 Z"/>
<glyph unicode="5" horiz-adv-x="980" d="M 1053,459 C 1053,310 1009,193 921,108 832,23 710,-20 553,-20 422,-20 316,9 235,66 154,123 103,206 82,315 L 264,336 C 302,197 400,127 557,127 654,127 729,156 784,215 839,273 866,353 866,455 866,544 839,615 784,670 729,725 654,752 561,752 512,752 467,744 425,729 383,714 341,688 299,651 L 123,651 170,1409 971,1409 971,1256 334,1256 307,809 C 385,869 482,899 598,899 737,899 847,858 930,777 1012,696 1053,590 1053,459 Z"/>
<glyph unicode="4" horiz-adv-x="1060" d="M 881,319 L 881,0 711,0 711,319 47,319 47,459 692,1409 881,1409 881,461 1079,461 1079,319 881,319 Z M 711,1206 C 710,1202 700,1184 683,1153 666,1122 653,1100 644,1087 L 283,555 229,481 213,461 711,461 711,1206 Z"/>
<glyph unicode="3" horiz-adv-x="1006" d="M 1049,389 C 1049,259 1008,158 925,87 842,16 724,-20 571,-20 428,-20 315,12 230,77 145,141 94,236 78,362 L 264,379 C 288,212 390,129 571,129 662,129 733,151 785,196 836,241 862,307 862,395 862,472 833,532 774,575 715,618 629,639 518,639 L 416,639 416,795 514,795 C 613,795 689,817 744,860 798,903 825,962 825,1038 825,1113 803,1173 759,1217 714,1260 648,1282 561,1282 482,1282 418,1262 369,1221 320,1180 291,1123 283,1049 L 102,1063 C 115,1178 163,1268 246,1333 328,1398 434,1430 563,1430 704,1430 814,1397 893,1332 971,1266 1010,1174 1010,1057 1010,967 985,894 935,838 884,781 811,743 715,723 L 715,719 C 820,708 902,672 961,613 1020,554 1049,479 1049,389 Z"/>
<glyph unicode="2" horiz-adv-x="954" d="M 103,0 L 103,127 C 137,205 179,274 228,334 277,393 328,447 382,496 436,544 490,589 543,630 596,671 643,713 686,754 729,795 763,839 790,884 816,929 829,981 829,1038 829,1115 806,1175 761,1218 716,1261 653,1282 572,1282 495,1282 432,1261 383,1220 333,1178 304,1119 295,1044 L 111,1061 C 124,1174 172,1263 255,1330 337,1397 443,1430 572,1430 714,1430 823,1397 900,1330 976,1263 1014,1167 1014,1044 1014,989 1002,935 977,881 952,827 914,773 865,719 816,665 721,581 582,468 505,405 444,349 399,299 354,248 321,200 301,153 L 1036,153 1036,0 103,0 Z"/>
<glyph unicode="1" horiz-adv-x="927" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
</g>
</defs>
<g>
<g id="id2" class="Master_Slide">
<g id="bg-id2" class="Background"/>
<g id="bo-id2" class="BackgroundObjects"/>
</g>
</g>
<g class="SlideGroup">
<g>
<g id="container-id1">
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="com.sun.star.drawing.LineShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="3447" y="2422" width="107" height="2207"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,4575 L 3500,4469"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,4363 L 3500,4257"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,4151 L 3500,4045"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,3939 L 3500,3833"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,3727 L 3500,3621"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,3515 L 3500,3409"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,3303 L 3500,3197"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,3091 L 3500,2985"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,2879 L 3500,2773"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,2667 L 3500,2561"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="6447" y="2122" width="107" height="2207"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,4275 L 6500,4169"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,4063 L 6500,3957"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,3851 L 6500,3745"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,3639 L 6500,3533"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,3427 L 6500,3321"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,3215 L 6500,3109"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,3003 L 6500,2897"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,2791 L 6500,2685"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,2579 L 6500,2473"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,2367 L 6500,2261"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="8947" y="1922" width="107" height="1807"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,3675 L 9000,3569"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,3463 L 9000,3357"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,3251 L 9000,3145"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,3039 L 9000,2933"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,2827 L 9000,2721"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,2615 L 9000,2509"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,2403 L 9000,2297"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,2191 L 9000,2085"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,1979 L 9000,1975"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="11947" y="1722" width="107" height="1607"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,3275 L 12000,3169"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,3063 L 12000,2957"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,2851 L 12000,2745"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,2639 L 12000,2533"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,2427 L 12000,2321"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,2215 L 12000,2109"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,2003 L 12000,1897"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,1791 L 12000,1775"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="14447" y="1522" width="107" height="1007"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,2475 L 14500,2369"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,2263 L 14500,2157"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,2051 L 14500,1945"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,1839 L 14500,1733"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,1627 L 14500,1575"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="17447" y="1222" width="107" height="1007"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,2175 L 17500,2069"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,1963 L 17500,1857"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,1751 L 17500,1645"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,1539 L 17500,1433"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,1327 L 17500,1275"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="8947" y="3422" width="107" height="2007"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 9000,3475 L 9000,5375"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="11947" y="3122" width="107" height="2328"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 12000,3175 L 12000,5396"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="14447" y="2422" width="107" height="2507"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 14500,2475 L 14500,4875"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="17447" y="2122" width="107" height="2707"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 17500,2175 L 17500,4775"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="3447" y="4522" width="107" height="1507"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 3500,4575 L 3500,5975"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="6447" y="4222" width="107" height="1707"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="106" stroke-linejoin="round" d="M 6500,4275 L 6500,5875"/>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="2585" y="3699" width="4996" height="1265"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 5117,4528 L 2655,4962 2586,4568 7510,3700 7579,4094 5117,4528 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 5117,4528 L 2655,4962 2586,4568 7510,3700 7579,4094 5117,4528 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="8001" y="2743" width="4996" height="1265"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 10533,3572 L 8071,4006 8002,3612 12926,2744 12995,3138 10533,3572 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10533,3572 L 8071,4006 8002,3612 12926,2744 12995,3138 10533,3572 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="13418" y="1787" width="4996" height="1265"/>
<path fill="rgb(204,204,204)" stroke="none" d="M 15950,2616 L 13488,3050 13419,2656 18343,1788 18412,2182 15950,2616 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 15950,2616 L 13488,3050 13419,2656 18343,1788 18412,2182 15950,2616 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="2111" y="1881" width="16779" height="2989"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 2129,4851 L 2336,4815"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 2439,4796 L 2474,4790"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 2577,4772 L 2784,4736"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 2887,4717 L 2922,4711"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 3025,4693 L 3232,4657"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 3335,4638 L 3370,4632"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 3473,4614 L 3680,4578"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 3783,4559 L 3818,4553"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 3921,4535 L 4128,4499"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 4232,4480 L 4266,4474"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 4369,4456 L 4576,4419"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 4680,4401 L 4714,4395"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 4818,4377 L 5024,4340"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 5128,4322 L 5162,4316"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 5266,4298 L 5472,4261"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 5576,4243 L 5610,4237"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 5714,4219 L 5921,4182"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 6024,4164 L 6058,4158"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 6162,4140 L 6369,4103"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 6472,4085 L 6506,4079"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 6610,4061 L 6817,4024"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 6920,4006 L 6955,4000"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7058,3982 L 7265,3945"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7368,3927 L 7403,3921"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7506,3903 L 7713,3866"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7816,3848 L 7851,3842"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7954,3824 L 8161,3787"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8264,3769 L 8299,3763"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8402,3745 L 8609,3708"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8712,3690 L 8747,3684"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8850,3666 L 9057,3629"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9161,3611 L 9195,3605"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9298,3587 L 9505,3550"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9609,3532 L 9643,3526"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9746,3508 L 9953,3471"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 10057,3453 L 10091,3447"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 10195,3429 L 10401,3392"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 10505,3374 L 10539,3368"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 10643,3350 L 10849,3313"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 10953,3295 L 10987,3289"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11091,3271 L 11298,3234"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11401,3216 L 11435,3210"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11539,3192 L 11746,3155"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11849,3137 L 11884,3131"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11987,3113 L 12194,3076"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 12297,3058 L 12332,3052"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 12435,3034 L 12642,2997"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 12745,2979 L 12780,2973"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 12883,2955 L 13090,2918"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 13193,2900 L 13228,2894"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 13331,2876 L 13538,2839"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 13641,2821 L 13676,2815"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 13779,2797 L 13986,2760"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14089,2742 L 14124,2736"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14227,2718 L 14434,2681"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14538,2663 L 14572,2657"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14675,2639 L 14882,2602"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14986,2584 L 15020,2578"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 15124,2560 L 15330,2523"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 15434,2505 L 15468,2499"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 15572,2481 L 15778,2444"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 15882,2426 L 15916,2420"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16020,2402 L 16227,2365"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16330,2347 L 16364,2341"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16468,2323 L 16675,2286"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16778,2268 L 16812,2262"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16916,2244 L 17123,2207"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17226,2189 L 17261,2183"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17364,2165 L 17571,2128"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17674,2110 L 17709,2104"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17812,2086 L 18019,2049"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18122,2031 L 18157,2025"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18260,2007 L 18467,1970"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18570,1952 L 18605,1946"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18708,1928 L 18871,1899"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="2998" y="5974" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 4000,6975 L 4000,5975 4000,5975 3000,5975 3000,5975 3000,6975 2999,6998 3014,7011 3030,7024 3047,7036 3064,7047 3082,7056 3091,7060 3100,7064 3110,7067 3120,7070 3130,7072 3140,7073 3149,7074 3157,7074 3166,7073 3175,7073 3184,7071 3193,7069 3201,7067 3210,7064 3218,7060 3226,7056 3234,7051 3242,7045 3249,7039 3256,7032 3262,7024 3268,7016 3287,6982 3298,6965 3309,6949 3315,6941 3321,6934 3328,6927 3336,6921 3344,6916 3353,6911 3363,6908 3374,6905 3382,6903 3391,6901 3408,6895 3442,6883 3459,6879 3468,6877 3477,6876 3485,6875 3493,6875 3502,6877 3510,6879 3530,6887 3549,6896 3568,6907 3586,6919 3603,6933 3619,6949 3633,6966 3647,6985 3685,7054 3691,7062 3697,7069 3704,7076 3712,7083 3721,7088 3730,7093 3741,7096 3753,7099 3769,7101 3786,7103 3803,7104 3820,7104 3837,7102 3845,7101 3854,7099 3862,7096 3870,7093 3877,7090 3885,7086 3934,7060 3978,7033 4000,7002 4000,6975 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 4000,6975 L 4000,5975 4000,5975 3000,5975 3000,5975 3000,6975 2999,6998 3014,7011 3030,7024 3047,7036 3064,7047 3082,7056 3091,7060 3100,7064 3110,7067 3120,7070 3130,7072 3140,7073 3149,7074 3157,7074 3166,7073 3175,7073 3184,7071 3193,7069 3201,7067 3210,7064 3218,7060 3226,7056 3234,7051 3242,7045 3249,7039 3256,7032 3262,7024 3268,7016 3287,6982 3298,6965 3309,6949 3315,6941 3321,6934 3328,6927 3336,6921 3344,6916 3353,6911 3363,6908 3374,6905 3382,6903 3391,6901 3408,6895 3442,6883 3459,6879 3468,6877 3477,6876 3485,6875 3493,6875 3502,6877 3510,6879 3530,6887 3549,6896 3568,6907 3586,6919 3603,6933 3619,6949 3633,6966 3647,6985 3685,7054 3691,7062 3697,7069 3704,7076 3712,7083 3721,7088 3730,7093 3741,7096 3753,7099 3769,7101 3786,7103 3803,7104 3820,7104 3837,7102 3845,7101 3854,7099 3862,7096 3870,7093 3877,7090 3885,7086 3934,7060 3978,7033 4000,7002 4000,6975 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="2624" y="4475" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 2800,5975 L 2800,4980"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 2800,4475 L 2624,5003 2976,5003 2800,4475 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="2700" y="5059" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="2950" y="5633"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="3200" y="5796"><tspan fill="rgb(42,96,153)" stroke="none">1</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="2582" y="5957" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 3000,5975 L 2600,5975"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="5998" y="5874" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 7000,6875 L 7000,5875 7000,5875 6000,5875 6000,5875 6000,6875 5999,6898 6014,6911 6030,6924 6047,6936 6064,6947 6082,6956 6091,6960 6100,6964 6110,6967 6120,6970 6130,6972 6140,6973 6149,6974 6157,6974 6166,6973 6175,6973 6184,6971 6193,6969 6201,6967 6210,6964 6218,6960 6226,6956 6234,6951 6242,6945 6249,6939 6256,6932 6262,6924 6268,6916 6287,6882 6298,6865 6309,6849 6315,6841 6321,6834 6328,6827 6336,6821 6344,6816 6353,6811 6363,6808 6374,6805 6382,6803 6391,6801 6408,6795 6442,6783 6459,6779 6468,6777 6477,6776 6485,6775 6493,6775 6502,6777 6510,6779 6530,6787 6549,6796 6568,6807 6586,6819 6603,6833 6619,6849 6633,6866 6647,6885 6685,6954 6691,6962 6697,6969 6704,6976 6712,6983 6721,6988 6730,6993 6741,6996 6753,6999 6769,7001 6786,7003 6803,7004 6820,7004 6837,7002 6845,7001 6854,6999 6862,6996 6870,6993 6877,6990 6885,6986 6934,6960 6978,6933 7000,6902 7000,6875 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 7000,6875 L 7000,5875 7000,5875 6000,5875 6000,5875 6000,6875 5999,6898 6014,6911 6030,6924 6047,6936 6064,6947 6082,6956 6091,6960 6100,6964 6110,6967 6120,6970 6130,6972 6140,6973 6149,6974 6157,6974 6166,6973 6175,6973 6184,6971 6193,6969 6201,6967 6210,6964 6218,6960 6226,6956 6234,6951 6242,6945 6249,6939 6256,6932 6262,6924 6268,6916 6287,6882 6298,6865 6309,6849 6315,6841 6321,6834 6328,6827 6336,6821 6344,6816 6353,6811 6363,6808 6374,6805 6382,6803 6391,6801 6408,6795 6442,6783 6459,6779 6468,6777 6477,6776 6485,6775 6493,6775 6502,6777 6510,6779 6530,6787 6549,6796 6568,6807 6586,6819 6603,6833 6619,6849 6633,6866 6647,6885 6685,6954 6691,6962 6697,6969 6704,6976 6712,6983 6721,6988 6730,6993 6741,6996 6753,6999 6769,7001 6786,7003 6803,7004 6820,7004 6837,7002 6845,7001 6854,6999 6862,6996 6870,6993 6877,6990 6885,6986 6934,6960 6978,6933 7000,6902 7000,6875 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="5624" y="4375" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 5800,5875 L 5800,4880"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 5800,4375 L 5624,4903 5976,4903 5800,4375 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="5700" y="4959" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="5950" y="5533"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="6200" y="5696"><tspan fill="rgb(42,96,153)" stroke="none">2</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="5582" y="5857" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 6000,5875 L 5600,5875"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="8498" y="5374" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 9500,6375 L 9500,5375 9500,5375 8500,5375 8500,5375 8500,6375 8499,6398 8514,6411 8530,6424 8547,6436 8564,6447 8582,6456 8591,6460 8600,6464 8610,6467 8620,6470 8630,6472 8640,6473 8649,6474 8657,6474 8666,6473 8675,6473 8684,6471 8693,6469 8701,6467 8710,6464 8718,6460 8726,6456 8734,6451 8742,6445 8749,6439 8756,6432 8762,6424 8768,6416 8787,6382 8798,6365 8809,6349 8815,6341 8821,6334 8828,6327 8836,6321 8844,6316 8853,6311 8863,6308 8874,6305 8882,6303 8891,6301 8908,6295 8942,6283 8959,6279 8968,6277 8977,6276 8985,6275 8993,6275 9002,6277 9010,6279 9030,6287 9049,6296 9068,6307 9086,6319 9103,6333 9119,6349 9133,6366 9147,6385 9185,6454 9191,6462 9197,6469 9204,6476 9212,6483 9221,6488 9230,6493 9241,6496 9253,6499 9269,6501 9286,6503 9303,6504 9320,6504 9337,6502 9345,6501 9354,6499 9362,6496 9370,6493 9377,6490 9385,6486 9434,6460 9478,6433 9500,6402 9500,6375 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9500,6375 L 9500,5375 9500,5375 8500,5375 8500,5375 8500,6375 8499,6398 8514,6411 8530,6424 8547,6436 8564,6447 8582,6456 8591,6460 8600,6464 8610,6467 8620,6470 8630,6472 8640,6473 8649,6474 8657,6474 8666,6473 8675,6473 8684,6471 8693,6469 8701,6467 8710,6464 8718,6460 8726,6456 8734,6451 8742,6445 8749,6439 8756,6432 8762,6424 8768,6416 8787,6382 8798,6365 8809,6349 8815,6341 8821,6334 8828,6327 8836,6321 8844,6316 8853,6311 8863,6308 8874,6305 8882,6303 8891,6301 8908,6295 8942,6283 8959,6279 8968,6277 8977,6276 8985,6275 8993,6275 9002,6277 9010,6279 9030,6287 9049,6296 9068,6307 9086,6319 9103,6333 9119,6349 9133,6366 9147,6385 9185,6454 9191,6462 9197,6469 9204,6476 9212,6483 9221,6488 9230,6493 9241,6496 9253,6499 9269,6501 9286,6503 9303,6504 9320,6504 9337,6502 9345,6501 9354,6499 9362,6496 9370,6493 9377,6490 9385,6486 9434,6460 9478,6433 9500,6402 9500,6375 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="8124" y="3875" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 8300,5375 L 8300,4380"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 8300,3875 L 8124,4403 8476,4403 8300,3875 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="8200" y="4459" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="8450" y="5033"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="8700" y="5196"><tspan fill="rgb(42,96,153)" stroke="none">3</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id30">
<rect class="BoundingBox" stroke="none" fill="none" x="8082" y="5357" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 8500,5375 L 8100,5375"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id31">
<rect class="BoundingBox" stroke="none" fill="none" x="11498" y="5345" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 12500,6346 L 12500,5346 12500,5346 11500,5346 11500,5346 11500,6346 11499,6369 11514,6382 11530,6395 11547,6407 11564,6418 11582,6427 11591,6431 11600,6435 11610,6438 11620,6441 11630,6443 11640,6444 11649,6445 11657,6445 11666,6444 11675,6444 11684,6442 11693,6440 11701,6438 11710,6435 11718,6431 11726,6427 11734,6422 11742,6416 11749,6410 11756,6403 11762,6395 11768,6387 11787,6353 11798,6336 11809,6320 11815,6312 11821,6305 11828,6298 11836,6292 11844,6287 11853,6282 11863,6279 11874,6276 11882,6274 11891,6272 11908,6266 11942,6254 11959,6250 11968,6248 11977,6247 11985,6246 11993,6246 12002,6248 12010,6250 12030,6258 12049,6267 12068,6278 12086,6290 12103,6304 12119,6320 12133,6337 12147,6356 12185,6425 12191,6433 12197,6440 12204,6447 12212,6454 12221,6459 12230,6464 12241,6467 12253,6470 12269,6472 12286,6474 12303,6475 12320,6475 12337,6473 12345,6472 12354,6470 12362,6467 12370,6464 12377,6461 12385,6457 12434,6431 12478,6404 12500,6373 12500,6346 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 12500,6346 L 12500,5346 12500,5346 11500,5346 11500,5346 11500,6346 11499,6369 11514,6382 11530,6395 11547,6407 11564,6418 11582,6427 11591,6431 11600,6435 11610,6438 11620,6441 11630,6443 11640,6444 11649,6445 11657,6445 11666,6444 11675,6444 11684,6442 11693,6440 11701,6438 11710,6435 11718,6431 11726,6427 11734,6422 11742,6416 11749,6410 11756,6403 11762,6395 11768,6387 11787,6353 11798,6336 11809,6320 11815,6312 11821,6305 11828,6298 11836,6292 11844,6287 11853,6282 11863,6279 11874,6276 11882,6274 11891,6272 11908,6266 11942,6254 11959,6250 11968,6248 11977,6247 11985,6246 11993,6246 12002,6248 12010,6250 12030,6258 12049,6267 12068,6278 12086,6290 12103,6304 12119,6320 12133,6337 12147,6356 12185,6425 12191,6433 12197,6440 12204,6447 12212,6454 12221,6459 12230,6464 12241,6467 12253,6470 12269,6472 12286,6474 12303,6475 12320,6475 12337,6473 12345,6472 12354,6470 12362,6467 12370,6464 12377,6461 12385,6457 12434,6431 12478,6404 12500,6373 12500,6346 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id32">
<rect class="BoundingBox" stroke="none" fill="none" x="11124" y="3846" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 11300,5346 L 11300,4351"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 11300,3846 L 11124,4374 11476,4374 11300,3846 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id33">
<rect class="BoundingBox" stroke="none" fill="none" x="11200" y="4430" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="11450" y="5004"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="11700" y="5167"><tspan fill="rgb(42,96,153)" stroke="none">4</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id34">
<rect class="BoundingBox" stroke="none" fill="none" x="11082" y="5328" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 11500,5346 L 11100,5346"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id35">
<rect class="BoundingBox" stroke="none" fill="none" x="13998" y="4845" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 15000,5846 L 15000,4846 15000,4846 14000,4846 14000,4846 14000,5846 13999,5869 14014,5882 14030,5895 14047,5907 14064,5918 14082,5927 14091,5931 14100,5935 14110,5938 14120,5941 14130,5943 14140,5944 14149,5945 14157,5945 14166,5944 14175,5944 14184,5942 14193,5940 14201,5938 14210,5935 14218,5931 14226,5927 14234,5922 14242,5916 14249,5910 14256,5903 14262,5895 14268,5887 14287,5853 14298,5836 14309,5820 14315,5812 14321,5805 14328,5798 14336,5792 14344,5787 14353,5782 14363,5779 14374,5776 14382,5774 14391,5772 14408,5766 14442,5754 14459,5750 14468,5748 14477,5747 14485,5746 14493,5746 14502,5748 14510,5750 14530,5758 14549,5767 14568,5778 14586,5790 14603,5804 14619,5820 14633,5837 14647,5856 14685,5925 14691,5933 14697,5940 14704,5947 14712,5954 14721,5959 14730,5964 14741,5967 14753,5970 14769,5972 14786,5974 14803,5975 14820,5975 14837,5973 14845,5972 14854,5970 14862,5967 14870,5964 14877,5961 14885,5957 14934,5931 14978,5904 15000,5873 15000,5846 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 15000,5846 L 15000,4846 15000,4846 14000,4846 14000,4846 14000,5846 13999,5869 14014,5882 14030,5895 14047,5907 14064,5918 14082,5927 14091,5931 14100,5935 14110,5938 14120,5941 14130,5943 14140,5944 14149,5945 14157,5945 14166,5944 14175,5944 14184,5942 14193,5940 14201,5938 14210,5935 14218,5931 14226,5927 14234,5922 14242,5916 14249,5910 14256,5903 14262,5895 14268,5887 14287,5853 14298,5836 14309,5820 14315,5812 14321,5805 14328,5798 14336,5792 14344,5787 14353,5782 14363,5779 14374,5776 14382,5774 14391,5772 14408,5766 14442,5754 14459,5750 14468,5748 14477,5747 14485,5746 14493,5746 14502,5748 14510,5750 14530,5758 14549,5767 14568,5778 14586,5790 14603,5804 14619,5820 14633,5837 14647,5856 14685,5925 14691,5933 14697,5940 14704,5947 14712,5954 14721,5959 14730,5964 14741,5967 14753,5970 14769,5972 14786,5974 14803,5975 14820,5975 14837,5973 14845,5972 14854,5970 14862,5967 14870,5964 14877,5961 14885,5957 14934,5931 14978,5904 15000,5873 15000,5846 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id36">
<rect class="BoundingBox" stroke="none" fill="none" x="13624" y="3346" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 13800,4846 L 13800,3851"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 13800,3346 L 13624,3874 13976,3874 13800,3346 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id37">
<rect class="BoundingBox" stroke="none" fill="none" x="13700" y="3930" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="13950" y="4504"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="14200" y="4667"><tspan fill="rgb(42,96,153)" stroke="none">5</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id38">
<rect class="BoundingBox" stroke="none" fill="none" x="13582" y="4828" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 14000,4846 L 13600,4846"/>
</g>
</g>
<g class="com.sun.star.drawing.PolyPolygonShape">
<g id="id39">
<rect class="BoundingBox" stroke="none" fill="none" x="16998" y="4745" width="1004" height="1132"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 18000,5746 L 18000,4746 18000,4746 17000,4746 17000,4746 17000,5746 16999,5769 17014,5782 17030,5795 17047,5807 17064,5818 17082,5827 17091,5831 17100,5835 17110,5838 17120,5841 17130,5843 17140,5844 17149,5845 17157,5845 17166,5844 17175,5844 17184,5842 17193,5840 17201,5838 17210,5835 17218,5831 17226,5827 17234,5822 17242,5816 17249,5810 17256,5803 17262,5795 17268,5787 17287,5753 17298,5736 17309,5720 17315,5712 17321,5705 17328,5698 17336,5692 17344,5687 17353,5682 17363,5679 17374,5676 17382,5674 17391,5672 17408,5666 17442,5654 17459,5650 17468,5648 17477,5647 17485,5646 17493,5646 17502,5648 17510,5650 17530,5658 17549,5667 17568,5678 17586,5690 17603,5704 17619,5720 17633,5737 17647,5756 17685,5825 17691,5833 17697,5840 17704,5847 17712,5854 17721,5859 17730,5864 17741,5867 17753,5870 17769,5872 17786,5874 17803,5875 17820,5875 17837,5873 17845,5872 17854,5870 17862,5867 17870,5864 17877,5861 17885,5857 17934,5831 17978,5804 18000,5773 18000,5746 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 18000,5746 L 18000,4746 18000,4746 17000,4746 17000,4746 17000,5746 16999,5769 17014,5782 17030,5795 17047,5807 17064,5818 17082,5827 17091,5831 17100,5835 17110,5838 17120,5841 17130,5843 17140,5844 17149,5845 17157,5845 17166,5844 17175,5844 17184,5842 17193,5840 17201,5838 17210,5835 17218,5831 17226,5827 17234,5822 17242,5816 17249,5810 17256,5803 17262,5795 17268,5787 17287,5753 17298,5736 17309,5720 17315,5712 17321,5705 17328,5698 17336,5692 17344,5687 17353,5682 17363,5679 17374,5676 17382,5674 17391,5672 17408,5666 17442,5654 17459,5650 17468,5648 17477,5647 17485,5646 17493,5646 17502,5648 17510,5650 17530,5658 17549,5667 17568,5678 17586,5690 17603,5704 17619,5720 17633,5737 17647,5756 17685,5825 17691,5833 17697,5840 17704,5847 17712,5854 17721,5859 17730,5864 17741,5867 17753,5870 17769,5872 17786,5874 17803,5875 17820,5875 17837,5873 17845,5872 17854,5870 17862,5867 17870,5864 17877,5861 17885,5857 17934,5831 17978,5804 18000,5773 18000,5746 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id40">
<rect class="BoundingBox" stroke="none" fill="none" x="16624" y="3246" width="353" height="1519"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 16800,4746 L 16800,3751"/>
<path fill="rgb(52,101,164)" stroke="none" d="M 16800,3246 L 16624,3774 16976,3774 16800,3246 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id41">
<rect class="BoundingBox" stroke="none" fill="none" x="16700" y="3830" width="1101" height="1017"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="287px" font-weight="400"><tspan class="TextPosition" x="16950" y="4404"><tspan font-size="494px" fill="rgb(42,96,153)" stroke="none">z</tspan></tspan><tspan class="TextPosition" x="17200" y="4567"><tspan fill="rgb(42,96,153)" stroke="none">6</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id42">
<rect class="BoundingBox" stroke="none" fill="none" x="16582" y="4728" width="437" height="37"/>
<path fill="none" stroke="rgb(52,101,164)" stroke-width="35" stroke-linejoin="round" d="M 17000,4746 L 16600,4746"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id43">
<rect class="BoundingBox" stroke="none" fill="none" x="1991" y="5966" width="17019" height="19"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2000,5975 L 2108,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2162,5975 L 2270,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2324,5975 L 2432,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2486,5975 L 2594,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2648,5975 L 2756,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2810,5975 L 2918,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 2972,5975 L 3080,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3134,5975 L 3242,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3296,5975 L 3404,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3458,5975 L 3566,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3620,5975 L 3728,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3782,5975 L 3890,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 3944,5975 L 4052,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4106,5975 L 4214,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4268,5975 L 4376,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4430,5975 L 4538,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4592,5975 L 4700,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4754,5975 L 4862,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 4916,5975 L 5024,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5078,5975 L 5186,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5240,5975 L 5348,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5402,5975 L 5510,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5564,5975 L 5672,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5726,5975 L 5834,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 5888,5975 L 5996,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6050,5975 L 6158,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6212,5975 L 6320,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6374,5975 L 6482,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6536,5975 L 6644,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6698,5975 L 6806,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 6860,5975 L 6968,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7022,5975 L 7130,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7184,5975 L 7292,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7346,5975 L 7454,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7508,5975 L 7616,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7670,5975 L 7778,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7832,5975 L 7940,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 7994,5975 L 8102,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8156,5975 L 8264,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8318,5975 L 8426,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8480,5975 L 8588,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8642,5975 L 8750,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8804,5975 L 8912,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 8966,5975 L 9074,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9128,5975 L 9236,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9290,5975 L 9398,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9452,5975 L 9560,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9614,5975 L 9722,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9776,5975 L 9884,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 9938,5975 L 10046,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10100,5975 L 10208,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10262,5975 L 10370,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10424,5975 L 10532,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10586,5975 L 10694,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10748,5975 L 10856,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 10910,5975 L 11018,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11072,5975 L 11180,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11234,5975 L 11342,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11396,5975 L 11504,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11558,5975 L 11666,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11720,5975 L 11828,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 11882,5975 L 11990,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12044,5975 L 12152,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12206,5975 L 12314,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12368,5975 L 12476,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12530,5975 L 12638,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12692,5975 L 12800,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 12854,5975 L 12962,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13016,5975 L 13124,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13178,5975 L 13286,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13340,5975 L 13448,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13502,5975 L 13610,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13664,5975 L 13772,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13826,5975 L 13934,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 13988,5975 L 14096,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14150,5975 L 14258,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14312,5975 L 14420,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14474,5975 L 14582,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14636,5975 L 14744,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14798,5975 L 14906,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 14960,5975 L 15068,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15122,5975 L 15230,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15284,5975 L 15392,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15446,5975 L 15554,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15608,5975 L 15716,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15770,5975 L 15878,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 15932,5975 L 16040,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16094,5975 L 16202,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16256,5975 L 16364,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16418,5975 L 16526,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16580,5975 L 16688,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16742,5975 L 16850,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 16904,5975 L 17012,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17066,5975 L 17174,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17228,5975 L 17336,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17390,5975 L 17498,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17552,5975 L 17660,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17714,5975 L 17822,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17876,5975 L 17984,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18038,5975 L 18146,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18200,5975 L 18308,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18362,5975 L 18470,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18524,5975 L 18632,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18686,5975 L 18794,5975"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 18848,5975 L 18956,5975"/>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id44">
<rect class="BoundingBox" stroke="none" fill="none" x="17491" y="4766" width="19" height="1219"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,4775 L 17500,4883"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,4937 L 17500,5045"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5099 L 17500,5207"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5261 L 17500,5369"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5423 L 17500,5531"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5585 L 17500,5693"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5747 L 17500,5855"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="18" stroke-linejoin="round" d="M 17500,5909 L 17500,5975"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB