mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-03-15 07:29:15 +01:00
OP-1435 Add_more_info_PFD : Add FrameType, Cpuload/temp, MemFree to SystemTab
This commit is contained in:
parent
fd9700b578
commit
20218a0788
@ -69,6 +69,8 @@ Item {
|
||||
|
||||
property real smeter_angle
|
||||
|
||||
property real memory_free : SystemStats.HeapRemaining > 1024 ? SystemStats.HeapRemaining / 1024 : SystemStats.HeapRemaining
|
||||
|
||||
// Needed to get correctly int8 value, reset value (-127) on disconnect
|
||||
property int oplm0_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_0 : -127
|
||||
property int oplm1_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_1 : -127
|
||||
@ -844,9 +846,9 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: system_text
|
||||
elementName: "system-text-tmp"
|
||||
SvgElementPositionItem {
|
||||
id: system_frametype
|
||||
elementName: "system-frame-type"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
@ -854,13 +856,90 @@ Item {
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_text; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
PropertyChanges { target: system_frametype; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ["FixedWing", "FixedWingElevon", "FixedWingVtail", "VTOL", "HeliCP", "QuadX", "QuadP",
|
||||
"Hexa+", "Octo+", "Custom", "HexaX", "HexaH", "OctoV", "OctoCoaxP", "OctoCoaxX", "OctoX", "HexaCoax",
|
||||
"Tricopter", "GroundVehicleCar", "GroundVehicleDiff", "GroundVehicleMoto"][SystemSettings.AirframeType]
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_cpuloadtemp
|
||||
elementName: "system-cpu-load-temp"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_cpuloadtemp; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
// CC3D hack, Cputemp not working
|
||||
text: SystemStats.CPULoad+"% - "+
|
||||
[String(SystemStats.CPUTemp).charCodeAt(0) == "64" ? "??" : String(SystemStats.CPUTemp).charCodeAt(0)] +"°C"
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_memfree
|
||||
elementName: "system-mem-free"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_memfree; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: SystemStats.HeapRemaining > 1024 ? memory_free.toFixed(2) +"Kb" : memory_free +"bytes"
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -281,11 +281,11 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.0688398"
|
||||
inkscape:zoom="2.140049"
|
||||
inkscape:cx="179.9755"
|
||||
inkscape:cy="107.20979"
|
||||
inkscape:cy="32.445148"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer77"
|
||||
inkscape:current-layer="svg2"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
@ -1383,7 +1383,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer95"
|
||||
inkscape:label="close-panel"
|
||||
style="display:none">
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer96"
|
||||
@ -1396,7 +1397,7 @@
|
||||
<path
|
||||
sodipodi:nodetypes="csssccssscc"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 0,-137.96926 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-6.03303 c 0,-2.84918 -2.23399,-5.2962 -5,-5.14293 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,323.03076 L 163.99993,323.03076 C 166.76993,323.03076 168.99993,320.73701 168.99993,317.88783 L 168.99993,311.8548 C 168.99993,309.00562 166.76594,306.5586 163.99993,306.71187 z"
|
||||
id="path3908-6-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -1404,7 +1405,7 @@
|
||||
transform="matrix(0.86009397,0,0,0.86009397,0.18825858,65.744733)">
|
||||
<path
|
||||
transform="translate(-0.6835781,-2.0507343)"
|
||||
d="m 191.74365,291.50333 a 5.9813085,5.9813085 0 1 1 -11.96261,0 a 5.9813085,5.9813085 0 1 1 11.96261,0 z"
|
||||
d="M 191.74365,291.50333 A 5.9813085,5.9813085 0 1 1 179.78104,291.50333 A 5.9813085,5.9813085 0 1 1 191.74365,291.50333 z"
|
||||
sodipodi:ry="5.9813085"
|
||||
sodipodi:rx="5.9813085"
|
||||
sodipodi:cy="291.50333"
|
||||
@ -1415,11 +1416,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4869"
|
||||
d="m 182.53038,286.9042 l 5.09677,5.09678"
|
||||
d="M 182.53038,286.9042 L 187.62715,292.00098"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 187.62715,286.9042 l -5.09677,5.09678"
|
||||
d="M 187.62715,286.9042 L 182.53038,292.00098"
|
||||
id="path4871"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -1444,7 +1445,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer83"
|
||||
inkscape:label="rc-input-panel"
|
||||
style="display:none">
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer86"
|
||||
@ -1459,7 +1461,7 @@
|
||||
<path
|
||||
sodipodi:nodetypes="sssscsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 146.8968835,0 l 19,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19219 c 0,-2.84918 -2.23,-5.14293 -5,-5.14293 l -14,0 l 0,-114.66703 c 0,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 145,461.00002 L 164,461.00002 C 166.77,461.00002 169,458.70627 169,455.85709 L 169,431.6649 C 169,428.81572 166.77,426.52197 164,426.52197 L 150,426.52197 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="rc-bg"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -1476,7 +1478,7 @@
|
||||
ry="0.80000001" />
|
||||
<path
|
||||
transform="matrix(0.25,0,0,0.25,114.18623,329.53888)"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 A 2,2 0 1 1 153,441 A 2,2 0 1 1 157,441 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
@ -1492,7 +1494,7 @@
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 A 2,2 0 1 1 153,441 A 2,2 0 1 1 157,441 z"
|
||||
transform="matrix(0.625,0,0,0.625,55.875,163.98272)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -1502,11 +1504,11 @@
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 A 2,2 0 1 1 153,441 A 2,2 0 1 1 157,441 z"
|
||||
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)" />
|
||||
<path
|
||||
transform="matrix(-0.625,0,0,-0.625,253.625,715.23272)"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 A 2,2 0 1 1 153,441 A 2,2 0 1 1 157,441 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
@ -1525,7 +1527,7 @@
|
||||
style="fill:url(#linearGradient8314);fill-opacity:1;stroke:#ededed;stroke-width:0.08374871;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.81176471;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.5443666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none"
|
||||
d="m 154.54064,436.85572 l 0,-1.69713 l 5,-3"
|
||||
d="M 154.54064,436.85572 L 154.54064,435.15859 L 159.54064,432.15859"
|
||||
id="path3968"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
@ -1536,7 +1538,7 @@
|
||||
id="rc-input-labels"
|
||||
transform="translate(0,-2)">
|
||||
<path
|
||||
d="m 140,385 a 65,65 0 1 1 -130,0 a 65,65 0 1 1 130,0 z"
|
||||
d="M 140,385 A 65,65 0 1 1 10,385 A 65,65 0 1 1 140,385 z"
|
||||
sodipodi:ry="65"
|
||||
sodipodi:rx="65"
|
||||
sodipodi:cy="385"
|
||||
@ -1553,7 +1555,7 @@
|
||||
sodipodi:cy="385"
|
||||
sodipodi:rx="65"
|
||||
sodipodi:ry="65"
|
||||
d="m 140,385 a 65,65 0 1 1 -130,0 a 65,65 0 1 1 130,0 z"
|
||||
d="M 140,385 A 65,65 0 1 1 10,385 A 65,65 0 1 1 140,385 z"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
|
||||
<rect
|
||||
y="367.09421"
|
||||
@ -1615,7 +1617,7 @@
|
||||
style="fill:url(#linearGradient5057);fill-opacity:1;stroke:none;display:inline"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<path
|
||||
d="m 85,385 a 10,10 0 1 1 -20,0 a 10,10 0 1 1 20,0 z"
|
||||
d="M 85,385 A 10,10 0 1 1 65,385 A 10,10 0 1 1 85,385 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="10"
|
||||
sodipodi:cy="385"
|
||||
@ -1640,7 +1642,7 @@
|
||||
sodipodi:role="line">THROTTLE</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#d90000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 81.414,387.28098 l 11,0.0872"
|
||||
d="M 81.414,387.28098 L 92.414,387.36818"
|
||||
id="path8757"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -1653,7 +1655,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#00ff00;fill-opacity:0.6125;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 92.727829,445.54335 c -3.74455,0.37024 -7.701236,0.3364 -11.59944,0 l 0,-60.31428 l 11.59944,0 z"
|
||||
d="M 92.727829,445.54335 C 88.983279,445.91359 85.026593,445.87975 81.128389,445.54335 L 81.128389,385.22907 L 92.727829,385.22907 z"
|
||||
id="rc-throttle"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -1670,7 +1672,7 @@
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-75.769595)">
|
||||
<path
|
||||
transform="translate(5,0)"
|
||||
d="m 80,385 a 10,10 0 1 1 -20,0 a 10,10 0 1 1 20,0 z"
|
||||
d="M 80,385 A 10,10 0 1 1 60,385 A 10,10 0 1 1 80,385 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="10"
|
||||
sodipodi:cy="385"
|
||||
@ -1683,7 +1685,7 @@
|
||||
style="fill:#eb0037;fill-opacity:1;stroke:#ea002e;stroke-width:0.98430401;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:transform-center-x="3.4685256"
|
||||
inkscape:transform-center-y="-5.1293966"
|
||||
d="m 55,382.5 l -4.330127,8.66025 c 0,0 2.021368,-9.89355 0.624682,-12.00788 C 49.897869,377.03804 40,375 40,375 l 9.665064,-0.58013 l 9.665063,-0.58012 z"
|
||||
d="M 55,382.5 L 50.669873,391.16025 C 50.669873,391.16025 52.691241,381.2667 51.294555,379.15237 C 49.897869,377.03804 40,375 40,375 L 49.665064,374.41987 L 59.330127,373.83975 z"
|
||||
id="rc-yaw"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cczcccc" />
|
||||
@ -1710,7 +1712,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer84"
|
||||
inkscape:label="battery-panel"
|
||||
style="display:none">
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer85"
|
||||
@ -1723,7 +1726,7 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8224"
|
||||
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 7e-5,-34.53595 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19248 c 0,-2.84918 -2.22995,-5.1431 -5,-5.14293 l -14,0 l 0,-80.13079 c 0,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150.00007,426.46407 L 164,426.46407 C 166.77,426.46407 169,424.17032 169,421.32114 L 169,397.12866 C 169,394.27948 166.77005,391.98556 164,391.98573 L 150,391.98573 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ssssccsssscsss" />
|
||||
<g
|
||||
@ -1749,7 +1752,7 @@
|
||||
ry="0.37989542" />
|
||||
<path
|
||||
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 187.02966,383.00388 l -5.04189,8.88331 l 3.24121,-0.12005 l -3.12116,7.56282 l 6.12228,-8.76327 l -3.48129,-0.12004 z"
|
||||
d="M 187.02966,383.00388 L 181.98777,391.88719 L 185.22898,391.76714 L 182.10782,399.32996 L 188.2301,390.56669 L 184.74881,390.44665 z"
|
||||
id="path8256"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
@ -1771,22 +1774,22 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4641"
|
||||
d="m 620.206,52 l 0,-4.224819 l 0.64048,0 l 0,0.592748 c 0.13261,-0.206861 0.30897,-0.372618 0.5291,-0.497271 c 0.22012,-0.127298 0.47075,-0.190948 0.75188,-0.190953 c 0.31294,5e-6 0.56887,0.06498 0.76778,0.194931 c 0.20156,0.129957 0.34345,0.311627 0.42567,0.545009 c 0.33416,-0.493289 0.76911,-0.739935 1.30484,-0.73994 c 0.41903,5e-6 0.74126,0.116698 0.96669,0.350079 c 0.22543,0.230738 0.33814,0.587447 0.33815,1.070129 l 0,2.900087 l -0.71209,0 l 0,-2.661397 c -10e-6,-0.286425 -0.0239,-0.491964 -0.0716,-0.616617 c -0.0451,-0.127298 -0.12863,-0.229404 -0.25063,-0.306319 c -0.122,-0.07691 -0.26521,-0.115363 -0.42964,-0.115367 c -0.29704,4e-6 -0.54369,0.09946 -0.73994,0.298363 c -0.19626,0.19626 -0.29439,0.511861 -0.29438,0.946805 l 0,2.454532 l -0.71608,0 l 0,-2.744939 c 0,-0.31825 -0.0583,-0.55694 -0.17503,-0.716071 c -0.1167,-0.159123 -0.30765,-0.238686 -0.57286,-0.23869 c -0.20156,4e-6 -0.38854,0.05305 -0.56092,0.159127 c -0.16974,0.106088 -0.29306,0.261237 -0.36997,0.465446 c -0.0769,0.204216 -0.11537,0.4986 -0.11537,0.883154 l 0,2.191973 l -0.71607,0" />
|
||||
d="M 620.206,52 L 620.206,47.775181 L 620.84648,47.775181 L 620.84648,48.367929 C 620.97909,48.161068 621.15545,47.995311 621.37558,47.870658 C 621.5957,47.74336 621.84633,47.67971 622.12746,47.679705 C 622.4404,47.67971 622.69633,47.744685 622.89524,47.874636 C 623.0968,48.004593 623.23869,48.186263 623.32091,48.419645 C 623.65507,47.926356 624.09002,47.67971 624.62575,47.679705 C 625.04478,47.67971 625.36701,47.796403 625.59244,48.029784 C 625.81787,48.260522 625.93058,48.617231 625.93059,49.099913 L 625.93059,52 L 625.2185,52 L 625.2185,49.338603 C 625.21849,49.052178 625.1946,48.846639 625.1469,48.721986 C 625.1018,48.594688 625.01827,48.492582 624.89627,48.415667 C 624.77427,48.338757 624.63106,48.300304 624.46663,48.3003 C 624.16959,48.300304 623.92294,48.39976 623.72669,48.598663 C 623.53043,48.794923 623.4323,49.110524 623.43231,49.545468 L 623.43231,52 L 622.71623,52 L 622.71623,49.255061 C 622.71623,48.936811 622.65793,48.698121 622.5412,48.53899 C 622.4245,48.379867 622.23355,48.300304 621.96834,48.3003 C 621.76678,48.300304 621.5798,48.35335 621.40742,48.459427 C 621.23768,48.565515 621.11436,48.720664 621.03745,48.924873 C 620.96055,49.129089 620.92208,49.423473 620.92208,49.808027 L 620.92208,52 L 620.20601,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4645"
|
||||
d="m 632.45877,52 l 0,-5.832 l 0.71607,0 l 0,2.092518 c 0.33416,-0.387204 0.75585,-0.580808 1.26506,-0.580813 c 0.31294,5e-6 0.58479,0.06233 0.81552,0.186974 c 0.23073,0.122002 0.39516,0.291737 0.4933,0.509206 c 0.10077,0.217477 0.15116,0.533079 0.15117,0.946805 l 0,2.67731 l -0.71607,0 l 0,-2.67731 c -10e-6,-0.358032 -0.0782,-0.617939 -0.23472,-0.779721 c -0.15382,-0.164428 -0.37262,-0.246643 -0.65639,-0.246647 c -0.21218,4e-6 -0.41241,0.0557 -0.60071,0.167083 c -0.18565,0.10874 -0.31825,0.257259 -0.39782,0.445555 c -0.0796,0.188304 -0.11934,0.44821 -0.11934,0.779722 l 0,2.311318 l -0.71607,0" />
|
||||
d="M 632.45877,52 L 632.45877,46.168 L 633.17484,46.168 L 633.17484,48.260518 C 633.509,47.873314 633.93069,47.67971 634.4399,47.679705 C 634.75284,47.67971 635.02469,47.742035 635.25542,47.866679 C 635.48615,47.988681 635.65058,48.158416 635.74872,48.375885 C 635.84949,48.593362 635.89988,48.908964 635.89989,49.32269 L 635.89989,52 L 635.18382,52 L 635.18382,49.32269 C 635.18381,48.964658 635.10562,48.704751 634.9491,48.542969 C 634.79528,48.378541 634.57648,48.296326 634.29271,48.296322 C 634.08053,48.296326 633.8803,48.352022 633.692,48.463405 C 633.50635,48.572145 633.37375,48.720664 633.29418,48.90896 C 633.21458,49.097264 633.17484,49.35717 633.17484,49.688682 L 633.17484,52 L 632.45877,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4643"
|
||||
d="m 626.46764,52 l 2.23971,-5.832 l 0.83144,0 l 2.3869,5.832 l -0.87917,0 l -0.68027,-1.766308 l -2.43862,0 L 627.28714,52 l -0.8195,0 m 1.68277,-2.394859 l 1.97715,0 l -0.60866,-1.615138 c -0.18565,-0.490637 -0.32356,-0.893758 -0.41373,-1.209364 c -0.0743,0.373953 -0.17902,0.745248 -0.31428,1.113888 l -0.64048,1.710614" />
|
||||
d="M 626.46764,52 L 628.70735,46.168 L 629.53879,46.168 L 631.92569,52 L 631.04652,52 L 630.36625,50.233692 L 627.92763,50.233692 L 627.28714,52 L 626.46764,52 M 628.15041,49.605141 L 630.12756,49.605141 L 629.5189,47.990003 C 629.33325,47.499366 629.19534,47.096245 629.10517,46.780639 C 629.03087,47.154592 628.92615,47.525887 628.79089,47.894527 L 628.15041,49.605141" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(2.6441912,0,0,2.7434696,-1532.0391,272.46228)"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-amp-label">
|
||||
<path
|
||||
d="m 631.84326,27.351151 l -1.00342,2.720946 l 2.0105,0 l -1.00708,-2.720946 m -0.41748,-0.72876 l 0.83862,0 l 2.08375,5.467529 l -0.76904,0 l -0.49805,-1.402588 l -2.4646,0 l -0.49805,1.402588 l -0.78003,0 l 2.0874,-5.467529"
|
||||
d="M 631.84326,27.351151 L 630.83984,30.072097 L 632.85034,30.072097 L 631.84326,27.351151 M 631.42578,26.622391 L 632.2644,26.622391 L 634.34815,32.08992 L 633.57911,32.08992 L 633.08106,30.687332 L 630.61646,30.687332 L 630.11841,32.08992 L 629.33838,32.08992 L 631.42578,26.622391"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path4614"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1799,41 +1802,41 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6809"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 l 0.82422,0 l 1.84766,4.9101562 l 1.85156,-4.9101562 l 0.82031,0 L 626.6626,14.08992 l -0.89453,0" />
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 L 624.36572,8.2578888 L 626.21338,13.168045 L 628.06494,8.2578888 L 628.88525,8.2578888 L 626.6626,14.08992 L 625.76807,14.08992" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="battery-time-left-label">
|
||||
<path
|
||||
d="m 122.65913,432.62387 l 0,-10.10156 l -3.77343,0 l 0,-1.35156 l 9.07812,0 l 0,1.35156 l -3.78906,0 l 0,10.10156 l -1.51563,0"
|
||||
d="M 122.65913,432.62387 L 122.65913,422.52231 L 118.8857,422.52231 L 118.8857,421.17075 L 127.96382,421.17075 L 127.96382,422.52231 L 124.17476,422.52231 L 124.17476,432.62387 L 122.65913,432.62387"
|
||||
id="path8733"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 129.84663,432.62387 l 0,-11.45312 l 1.51563,0 l 0,11.45312 l -1.51563,0"
|
||||
d="M 129.84663,432.62387 L 129.84663,421.17075 L 131.36226,421.17075 L 131.36226,432.62387 L 129.84663,432.62387"
|
||||
id="path8735"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 133.97945,432.62387 l 0,-11.45312 l 2.28125,0 l 2.71093,8.10937 c 0.25,0.75521 0.43229,1.32032 0.54688,1.69531 c 0.1302,-0.41666 0.33333,-1.02864 0.60937,-1.83593 l 2.74219,-7.96875 l 2.03906,0 l 0,11.45312 l -1.46093,0 l 0,-9.58594 l -3.32813,9.58594 l -1.36719,0 l -3.3125,-9.75 l 0,9.75 l -1.46093,0"
|
||||
d="M 133.97945,432.62387 L 133.97945,421.17075 L 136.2607,421.17075 L 138.97163,429.28012 C 139.22163,430.03533 139.40392,430.60044 139.51851,430.97543 C 139.64871,430.55877 139.85184,429.94679 140.12788,429.1395 L 142.87007,421.17075 L 144.90913,421.17075 L 144.90913,432.62387 L 143.4482,432.62387 L 143.4482,423.03793 L 140.12007,432.62387 L 138.75288,432.62387 L 135.44038,422.87387 L 135.44038,432.62387 L 133.97945,432.62387"
|
||||
id="path8737"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 147.40132,432.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76562,0 l 0,3.50781 l 6.33593,0 l 0,1.34375 l -6.33593,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54688,0"
|
||||
d="M 147.40132,432.62387 L 147.40132,421.17075 L 155.68257,421.17075 L 155.68257,422.52231 L 148.91695,422.52231 L 148.91695,426.03012 L 155.25288,426.03012 L 155.25288,427.37387 L 148.91695,427.37387 L 148.91695,431.27231 L 155.9482,431.27231 L 155.9482,432.62387 L 147.40132,432.62387"
|
||||
id="path8739"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 119.22945,452.62387 l 0,-11.45312 l 1.51562,0 l 0,10.10156 l 5.64063,0 l 0,1.35156 l -7.15625,0"
|
||||
d="M 119.22945,452.62387 L 119.22945,441.17075 L 120.74507,441.17075 L 120.74507,451.27231 L 126.3857,451.27231 L 126.3857,452.62387 L 119.22945,452.62387"
|
||||
id="path8741"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 128.22945,452.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76563,0 l 0,3.50781 l 6.33594,0 l 0,1.34375 l -6.33594,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54687,0"
|
||||
d="M 128.22945,452.62387 L 128.22945,441.17075 L 136.5107,441.17075 L 136.5107,442.52231 L 129.74507,442.52231 L 129.74507,446.03012 L 136.08101,446.03012 L 136.08101,447.37387 L 129.74507,447.37387 L 129.74507,451.27231 L 136.77632,451.27231 L 136.77632,452.62387 L 128.22945,452.62387"
|
||||
id="path8743"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 138.96382,452.62387 l 0,-11.45312 l 7.72656,0 l 0,1.35156 l -6.21093,0 l 0,3.54687 l 5.375,0 l 0,1.35157 l -5.375,0 l 0,5.20312 l -1.51563,0"
|
||||
d="M 138.96382,452.62387 L 138.96382,441.17075 L 146.69038,441.17075 L 146.69038,442.52231 L 140.47945,442.52231 L 140.47945,446.06918 L 145.85445,446.06918 L 145.85445,447.42075 L 140.47945,447.42075 L 140.47945,452.62387 L 138.96382,452.62387"
|
||||
id="path8745"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 151.58101,452.62387 l 0,-10.10156 l -3.77344,0 l 0,-1.35156 l 9.07813,0 l 0,1.35156 l -3.78907,0 l 0,10.10156 l -1.51562,0"
|
||||
d="M 151.58101,452.62387 L 151.58101,442.52231 L 147.80757,442.52231 L 147.80757,441.17075 L 156.8857,441.17075 L 156.8857,442.52231 L 153.09663,442.52231 L 153.09663,452.62387 L 151.58101,452.62387"
|
||||
id="path8747"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -1877,27 +1880,27 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6494"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6496"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062" />
|
||||
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6498"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062" />
|
||||
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6500"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6502"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -1914,27 +1917,27 @@
|
||||
id="g8642"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
|
||||
<path
|
||||
d="m 37.344081,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268575,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890263,-0.52679 2.427392,-1.58037 c 0.543982,-1.06047 0.815984,-2.64772 0.816005,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346259,-1.5907 -2.427392,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.57931 -1.373802,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728411,0 -3.050555,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915874,-1.37033 2.238018,-2.0555 3.966429,-2.05552"
|
||||
d="M 37.344081,349.57585 C 36.269846,349.57586 35.460715,350.1061 34.916711,351.16656 C 34.379604,352.22015 34.111029,353.80741 34.111029,355.92833 C 34.111029,358.0424 34.379604,359.62965 34.916711,360.69012 C 35.460715,361.7437 36.269846,362.27049 37.344081,362.27049 C 38.425214,362.27049 39.234344,361.7437 39.771473,360.69012 C 40.315455,359.62965 40.587457,358.0424 40.587478,355.92833 C 40.587457,353.80741 40.315455,352.22015 39.771473,351.16656 C 39.234344,350.1061 38.425214,349.57586 37.344081,349.57585 M 37.344081,347.92317 C 39.072514,347.92319 40.391209,348.60836 41.300188,349.97869 C 42.216042,351.34217 42.673968,353.32538 42.67399,355.92833 C 42.673968,358.52442 42.216042,360.50764 41.300188,361.87798 C 40.391209,363.24145 39.072514,363.92317 37.344081,363.92317 C 35.61567,363.92317 34.293526,363.24145 33.377652,361.87798 C 32.468694,360.50764 32.014194,358.52442 32.014194,355.92833 C 32.014194,353.32538 32.468694,351.34217 33.377652,349.97869 C 34.293526,348.60836 35.61567,347.92319 37.344081,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4599"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 50.813421,349.57585 c -1.074237,10e-6 -1.883367,0.53025 -2.427371,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.427371,1.58037 c 1.081132,0 1.890241,-0.52679 2.42737,-1.58037 c 0.544004,-1.06047 0.816006,-2.64772 0.816027,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816027,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.42737,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956106,2.05552 c 0.915854,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457927,4.57931 -1.373781,5.94965 c -0.908978,1.36347 -2.227673,2.04519 -3.956106,2.04519 c -1.728433,0 -3.050576,-0.68172 -3.96643,-2.04519 c -0.908978,-1.37034 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363457,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.96643,-2.05552"
|
||||
d="M 50.813421,349.57585 C 49.739184,349.57586 48.930054,350.1061 48.38605,351.16656 C 47.848922,352.22015 47.580368,353.80741 47.580368,355.92833 C 47.580368,358.0424 47.848922,359.62965 48.38605,360.69012 C 48.930054,361.7437 49.739184,362.27049 50.813421,362.27049 C 51.894553,362.27049 52.703662,361.7437 53.240791,360.69012 C 53.784795,359.62965 54.056797,358.0424 54.056818,355.92833 C 54.056797,353.80741 53.784795,352.22015 53.240791,351.16656 C 52.703662,350.1061 51.894553,349.57586 50.813421,349.57585 M 50.813421,347.92317 C 52.541854,347.92319 53.860549,348.60836 54.769527,349.97869 C 55.685381,351.34217 56.143308,353.32538 56.143308,355.92833 C 56.143308,358.52442 55.685381,360.50764 54.769527,361.87798 C 53.860549,363.24145 52.541854,363.92317 50.813421,363.92317 C 49.084988,363.92317 47.762845,363.24145 46.846991,361.87798 C 45.938013,360.50764 45.483534,358.52442 45.483534,355.92833 C 45.483534,353.32538 45.938013,351.34217 46.846991,349.97869 C 47.762845,348.60836 49.084988,347.92319 50.813421,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4602"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 59.820516,361 L 62,361 l 0,2.62362 l -2.179484,0 l 0,-2.62362"
|
||||
d="M 59.820516,361 L 62,361 L 62,363.62362 L 59.820516,363.62362 L 59.820516,361"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4604"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.017419,349.57585 c -1.074236,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76177 c 0,2.11407 0.268554,3.70132 0.805683,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.42737,1.58037 c 1.081132,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544003,-1.06047 0.816005,-2.64772 0.816026,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816026,-4.76177 c -0.537129,-1.06046 -1.346239,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.37378,5.94964 c 0,2.59609 -0.457926,4.57931 -1.37378,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050575,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
d="M 71.017419,349.57585 C 69.943183,349.57586 69.134053,350.1061 68.590049,351.16656 C 68.05292,352.22015 67.784366,353.80741 67.784366,355.92833 C 67.784366,358.0424 68.05292,359.62965 68.590049,360.69012 C 69.134053,361.7437 69.943183,362.27049 71.017419,362.27049 C 72.098551,362.27049 72.907661,361.7437 73.44479,360.69012 C 73.988793,359.62965 74.260795,358.0424 74.260816,355.92833 C 74.260795,353.80741 73.988793,352.22015 73.44479,351.16656 C 72.907661,350.1061 72.098551,349.57586 71.017419,349.57585 M 71.017419,347.92317 C 72.745852,347.92319 74.064547,348.60836 74.973526,349.97869 C 75.88938,351.34217 76.347306,353.32538 76.347306,355.92833 C 76.347306,358.52442 75.88938,360.50764 74.973526,361.87798 C 74.064547,363.24145 72.745852,363.92317 71.017419,363.92317 C 69.288987,363.92317 67.966844,363.24145 67.05099,361.87798 C 66.142032,360.50764 65.687532,358.52442 65.687532,355.92833 C 65.687532,353.32538 66.142032,351.34217 67.05099,349.97869 C 67.966844,348.60836 69.288987,347.92319 71.017419,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4606"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.486758,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544004,-1.06047 0.816005,-2.64772 0.816005,-4.76179 c 0,-2.12092 -0.272001,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728412,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915853,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457928,4.57931 -1.373781,5.94965 c -0.908979,1.36347 -2.227695,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050576,-0.68172 -3.966429,-2.04519 c -0.908979,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363458,-5.94964 c 0.915853,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
d="M 84.486758,349.57585 C 83.412523,349.57586 82.603392,350.1061 82.059388,351.16656 C 81.52226,352.22015 81.253706,353.80741 81.253706,355.92833 C 81.253706,358.0424 81.52226,359.62965 82.059388,360.69012 C 82.603392,361.7437 83.412523,362.27049 84.486758,362.27049 C 85.567891,362.27049 86.377,361.7437 86.914129,360.69012 C 87.458133,359.62965 87.730134,358.0424 87.730134,355.92833 C 87.730134,353.80741 87.458133,352.22015 86.914129,351.16656 C 86.377,350.1061 85.567891,349.57586 84.486758,349.57585 M 84.486758,347.92317 C 86.21517,347.92319 87.533886,348.60836 88.442865,349.97869 C 89.358718,351.34217 89.816646,353.32538 89.816646,355.92833 C 89.816646,358.52442 89.358718,360.50764 88.442865,361.87798 C 87.533886,363.24145 86.21517,363.92317 84.486758,363.92317 C 82.758326,363.92317 81.436182,363.24145 80.520329,361.87798 C 79.61135,360.50764 79.156871,358.52442 79.156871,355.92833 C 79.156871,353.32538 79.61135,351.34217 80.520329,349.97869 C 81.436182,348.60836 82.758326,347.92319 84.486758,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4608"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1957,27 +1960,27 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6483"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 34.816055,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268575,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890263,-0.5268 2.427392,-1.58038 c 0.543982,-1.06046 0.815984,-2.64772 0.816005,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346259,-1.59069 -2.427392,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.5793 -1.373802,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728411,-10e-6 -3.050555,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
d="M 34.816055,309.65268 C 33.74182,309.65269 32.932689,310.18292 32.388685,311.24338 C 31.851578,312.29697 31.583003,313.88423 31.583003,316.00516 C 31.583003,318.11922 31.851578,319.70648 32.388685,320.76694 C 32.932689,321.82052 33.74182,322.34732 34.816055,322.34732 C 35.897188,322.34732 36.706318,321.82052 37.243447,320.76694 C 37.787429,319.70648 38.059431,318.11922 38.059452,316.00516 C 38.059431,313.88423 37.787429,312.29697 37.243447,311.24338 C 36.706318,310.18292 35.897188,309.65269 34.816055,309.65268 M 34.816055,308 C 36.544488,308.00001 37.863183,308.68518 38.772162,310.05552 C 39.688016,311.41899 40.145942,313.4022 40.145964,316.00516 C 40.145942,318.60125 39.688016,320.58446 38.772162,321.95481 C 37.863183,323.31827 36.544488,323.99999 34.816055,324 C 33.087644,323.99999 31.7655,323.31827 30.849626,321.95481 C 29.940668,320.58446 29.486168,318.60125 29.486168,316.00516 C 29.486168,313.4022 29.940668,311.41899 30.849626,310.05552 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6485"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 48.285395,309.65268 c -1.074237,1e-5 -1.883367,0.53024 -2.427371,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.427371,1.58038 c 1.081132,0 1.890241,-0.5268 2.42737,-1.58038 c 0.544004,-1.06046 0.816006,-2.64772 0.816027,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816027,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.42737,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956106,2.05552 c 0.915854,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457927,4.5793 -1.373781,5.94965 c -0.908978,1.36346 -2.227673,2.04518 -3.956106,2.04519 c -1.728433,-10e-6 -3.050576,-0.68173 -3.96643,-2.04519 c -0.908978,-1.37035 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363457,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.96643,-2.05552" />
|
||||
d="M 48.285395,309.65268 C 47.211158,309.65269 46.402028,310.18292 45.858024,311.24338 C 45.320896,312.29697 45.052342,313.88423 45.052342,316.00516 C 45.052342,318.11922 45.320896,319.70648 45.858024,320.76694 C 46.402028,321.82052 47.211158,322.34732 48.285395,322.34732 C 49.366527,322.34732 50.175636,321.82052 50.712765,320.76694 C 51.256769,319.70648 51.528771,318.11922 51.528792,316.00516 C 51.528771,313.88423 51.256769,312.29697 50.712765,311.24338 C 50.175636,310.18292 49.366527,309.65269 48.285395,309.65268 M 48.285395,308 C 50.013828,308.00001 51.332523,308.68518 52.241501,310.05552 C 53.157355,311.41899 53.615282,313.4022 53.615282,316.00516 C 53.615282,318.60125 53.157355,320.58446 52.241501,321.95481 C 51.332523,323.31827 50.013828,323.99999 48.285395,324 C 46.556962,323.99999 45.234819,323.31827 44.318965,321.95481 C 43.409987,320.58446 42.955508,318.60125 42.955508,316.00516 C 42.955508,313.4022 43.409987,311.41899 44.318965,310.05552 C 45.234819,308.68518 46.556962,308.00001 48.285395,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6487"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.29249,321.07682 l 2.179484,0 l 0,2.62362 l -2.179484,0 l 0,-2.62362" />
|
||||
d="M 57.29249,321.07682 L 59.471974,321.07682 L 59.471974,323.70044 L 57.29249,323.70044 L 57.29249,321.07682" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6489"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 68.489393,309.65268 c -1.074236,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76178 c 0,2.11406 0.268554,3.70132 0.805683,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.42737,1.58038 c 1.081132,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544003,-1.06046 0.816005,-2.64772 0.816026,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816026,-4.76178 c -0.537129,-1.06046 -1.346239,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.37378,5.94964 c 0,2.59609 -0.457926,4.5793 -1.37378,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728432,-10e-6 -3.050575,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.966429,-2.05552" />
|
||||
d="M 68.489393,309.65268 C 67.415157,309.65269 66.606027,310.18292 66.062023,311.24338 C 65.524894,312.29697 65.25634,313.88423 65.25634,316.00516 C 65.25634,318.11922 65.524894,319.70648 66.062023,320.76694 C 66.606027,321.82052 67.415157,322.34732 68.489393,322.34732 C 69.570525,322.34732 70.379635,321.82052 70.916764,320.76694 C 71.460767,319.70648 71.732769,318.11922 71.73279,316.00516 C 71.732769,313.88423 71.460767,312.29697 70.916764,311.24338 C 70.379635,310.18292 69.570525,309.65269 68.489393,309.65268 M 68.489393,308 C 70.217826,308.00001 71.536521,308.68518 72.4455,310.05552 C 73.361354,311.41899 73.81928,313.4022 73.81928,316.00516 C 73.81928,318.60125 73.361354,320.58446 72.4455,321.95481 C 71.536521,323.31827 70.217826,323.99999 68.489393,324 C 66.760961,323.99999 65.438818,323.31827 64.522964,321.95481 C 63.614006,320.58446 63.159506,318.60125 63.159506,316.00516 C 63.159506,313.4022 63.614006,311.41899 64.522964,310.05552 C 65.438818,308.68518 66.760961,308.00001 68.489393,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6491"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 81.958732,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544004,-1.06046 0.816005,-2.64772 0.816005,-4.76178 c 0,-2.12093 -0.272001,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728412,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915853,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457928,4.5793 -1.373781,5.94965 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 c -1.728432,-10e-6 -3.050576,-0.68173 -3.966429,-2.04519 c -0.908979,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363458,-5.94964 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
d="M 81.958732,309.65268 C 80.884497,309.65269 80.075366,310.18292 79.531362,311.24338 C 78.994234,312.29697 78.72568,313.88423 78.72568,316.00516 C 78.72568,318.11922 78.994234,319.70648 79.531362,320.76694 C 80.075366,321.82052 80.884497,322.34732 81.958732,322.34732 C 83.039865,322.34732 83.848974,321.82052 84.386103,320.76694 C 84.930107,319.70648 85.202108,318.11922 85.202108,316.00516 C 85.202108,313.88423 84.930107,312.29697 84.386103,311.24338 C 83.848974,310.18292 83.039865,309.65269 81.958732,309.65268 M 81.958732,308 C 83.687144,308.00001 85.00586,308.68518 85.914839,310.05552 C 86.830692,311.41899 87.28862,313.4022 87.28862,316.00516 C 87.28862,318.60125 86.830692,320.58446 85.914839,321.95481 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 C 80.2303,323.99999 78.908156,323.31827 77.992303,321.95481 C 77.083324,320.58446 76.628845,318.60125 76.628845,316.00516 C 76.628845,313.4022 77.083324,311.41899 77.992303,310.05552 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -1994,27 +1997,27 @@
|
||||
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)"
|
||||
id="g8667">
|
||||
<path
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8669"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062"
|
||||
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8671"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062"
|
||||
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8673"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8675"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8677"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2026,7 +2029,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer59"
|
||||
inkscape:label="system-panel"
|
||||
style="display:inline">
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer76"
|
||||
@ -2039,7 +2043,7 @@
|
||||
<path
|
||||
sodipodi:nodetypes="ssssccsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 0,-103.49149 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19247 c 0,-2.84918 -2.22975,-5.14293 -5,-5.14293 l -14,0 L 150,311.85494 c 2e-5,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,357.50853 L 163.99993,357.50853 C 166.76993,357.50853 168.99993,355.21478 168.99993,352.3656 L 168.99993,328.17313 C 168.99993,325.32395 166.77018,323.0302 163.99993,323.0302 L 149.99993,323.0302 L 150,311.85494 C 150.00002,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="path3908-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -2047,7 +2051,7 @@
|
||||
transform="matrix(0.90669538,0,0,0.90669538,-8.4795829,48.599346)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 184.72982,317.12131 c -0.15582,0.0106 -0.30765,0.0349 -0.46081,0.0524 l -0.0104,-1.3e-4 l -0.36664,2.00038 c -0.59755,0.13603 -1.15958,0.36694 -1.66531,0.68073 l -1.64418,-1.18343 c -0.44448,0.34504 -0.84897,0.74752 -1.20441,1.18342 l 1.14175,1.6653 c -0.34676,0.52953 -0.60746,1.13443 -0.75424,1.76987 c 1.7e-4,0.003 5e-5,0.0101 -1.3e-4,0.0104 l -1.98987,0.31437 c -0.0364,0.29692 -0.0524,0.60425 -0.0524,0.91091 c 0,0.25134 0.006,0.49901 0.0314,0.74367 l 1.98987,0.35625 c 0.14153,0.69104 0.41038,1.33619 0.78555,1.90592 l -1.18352,1.62342 c 0.33892,0.42092 0.73021,0.80399 1.15202,1.14147 l 1.67569,-1.15187 c 0.58548,0.37336 1.23931,0.63545 1.94816,0.76446 l 0.31401,1.97931 c 0.22321,0.0205 0.4521,0.0211 0.68067,0.0211 c 0.32274,0 0.63072,-0.0125 0.94273,-0.0523 l 0.37703,-2.02156 c 0.67263,-0.16723 1.30469,-0.4578 1.85365,-0.84824 l 1.61301,1.17299 c 0.41825,-0.35592 0.80064,-0.76479 1.13076,-1.2045 l -1.17298,-1.69645 c 0.31762,-0.54867 0.53789,-1.15389 0.6495,-1.80137 l 1.97932,-0.31436 c 0.0174,-0.20645 0.0211,-0.40686 0.0211,-0.618 c -10e-6,-0.36663 -0.0426,-0.72624 -0.0942,-1.07848 l -2.01081,-0.36663 c -0.15786,-0.5818 -0.41625,-1.12473 -0.74367,-1.61269 l 1.18336,-1.62347 c -0.36697,-0.44865 -0.78523,-0.86305 -1.24637,-1.21487 l -1.70685,1.17297 c -0.49073,-0.29004 -1.01881,-0.51285 -1.5919,-0.63886 l -0.31436,-1.98989 c -0.28589,-0.0337 -0.57443,-0.0524 -0.86935,-0.0524 c -0.0798,0 -0.16154,-0.002 -0.24064,0 c -0.0389,7.3e-4 -0.0767,-0.002 -0.11528,0 c -0.0104,6.7e-4 -0.0212,-6.5e-4 -0.0315,-3e-5 z m 0.27213,5.08973 c 0.0386,-0.002 0.0768,2e-5 0.11529,10e-6 c 1.23968,0 2.25179,1.01212 2.25179,2.2518 c 0,1.23968 -1.01211,2.24106 -2.2518,2.24106 c -1.23967,3.4e-4 -2.24105,-1.00138 -2.24105,-2.24106 c 0,-1.20114 0.93972,-2.19147 2.12577,-2.2518 z"
|
||||
d="M 184.72982,317.12131 C 184.574,317.13191 184.42217,317.15621 184.26901,317.17371 L 184.25861,317.17358 L 183.89197,319.17396 C 183.29442,319.30999 182.73239,319.5409 182.22666,319.85469 L 180.58248,318.67126 C 180.138,319.0163 179.73351,319.41878 179.37807,319.85468 L 180.51982,321.51998 C 180.17306,322.04951 179.91236,322.65441 179.76558,323.28985 C 179.76575,323.29285 179.76563,323.29995 179.76545,323.30025 L 177.77558,323.61462 C 177.73918,323.91154 177.72318,324.21887 177.72318,324.52553 C 177.72318,324.77687 177.72918,325.02454 177.75458,325.2692 L 179.74445,325.62545 C 179.88598,326.31649 180.15483,326.96164 180.53,327.53137 L 179.34648,329.15479 C 179.6854,329.57571 180.07669,329.95878 180.4985,330.29626 L 182.17419,329.14439 C 182.75967,329.51775 183.4135,329.77984 184.12235,329.90885 L 184.43636,331.88816 C 184.65957,331.90866 184.88846,331.90926 185.11703,331.90926 C 185.43977,331.90926 185.74775,331.89676 186.05976,331.85696 L 186.43679,329.8354 C 187.10942,329.66817 187.74148,329.3776 188.29044,328.98716 L 189.90345,330.16015 C 190.3217,329.80423 190.70409,329.39536 191.03421,328.95565 L 189.86123,327.2592 C 190.17885,326.71053 190.39912,326.10531 190.51073,325.45783 L 192.49005,325.14347 C 192.50745,324.93702 192.51115,324.73661 192.51115,324.52547 C 192.51114,324.15884 192.46855,323.79923 192.41695,323.44699 L 190.40614,323.08036 C 190.24828,322.49856 189.98989,321.95563 189.66247,321.46767 L 190.84583,319.8442 C 190.47886,319.39555 190.0606,318.98115 189.59946,318.62933 L 187.89261,319.8023 C 187.40188,319.51226 186.8738,319.28945 186.30071,319.16344 L 185.98635,317.17355 C 185.70046,317.13985 185.41192,317.12115 185.117,317.12115 C 185.0372,317.12115 184.95546,317.11915 184.87636,317.12115 C 184.83746,317.12188 184.79966,317.11915 184.76108,317.12115 C 184.75068,317.12182 184.73988,317.1205 184.72958,317.12112 z M 185.00195,322.21104 C 185.04055,322.20904 185.07875,322.21106 185.11724,322.21105 C 186.35692,322.21105 187.36903,323.22317 187.36903,324.46285 C 187.36903,325.70253 186.35692,326.70391 185.11723,326.70391 C 183.87756,326.70425 182.87618,325.70253 182.87618,324.46285 C 182.87618,323.26171 183.8159,322.27138 185.00195,322.21105 z"
|
||||
style="color:#000000;fill:url(#linearGradient5140);fill-opacity:1;stroke:#ffffff;stroke-width:0.66174376;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path3243" />
|
||||
<g
|
||||
@ -2057,7 +2061,7 @@
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccc"
|
||||
id="path5119"
|
||||
d="m -6075.2089,5056.1863 l -26.5589,-15.0401 l 23.3232,-86.1076 l -59.0141,-32.235 l -130.1961,55.2674 l -179.5759,-47.5125 l 159.6657,108.1749 l 62.4579,149.5405 l 80.9268,26.5242 l 25.4344,-95.6198 l 25.0829,3.9727 l 18.4541,-66.9647 z"
|
||||
d="M -6075.2089,5056.1863 L -6101.7678,5041.1462 L -6078.4446,4955.0386 L -6137.4587,4922.8036 L -6267.6548,4978.071 L -6447.2307,4930.5585 L -6287.565,5038.7334 L -6225.1071,5188.2739 L -6144.1803,5214.7981 L -6118.7459,5119.1783 L -6093.663,5123.151 L -6075.2089,5056.1863 z"
|
||||
style="opacity:0.74060148;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:0.4125;stroke-dasharray:none"
|
||||
inkscape:transform-center-x="-19.122561"
|
||||
inkscape:transform-center-y="192.50793"
|
||||
@ -2073,11 +2077,217 @@
|
||||
inkscape:transform-center-y="192.50793"
|
||||
inkscape:transform-center-x="-19.122561"
|
||||
style="fill:#4e94f6;fill-opacity:1;stroke:#212122;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m -6085.1735,5043.4152 l -26.5589,-15.0401 l 23.3232,-86.1076 l -59.0141,-32.235 l -130.1961,55.2674 l -179.5759,-47.5125 l 159.6657,108.1749 l 62.4579,149.5405 l 80.9268,26.5242 l 25.4344,-95.6198 l 25.0829,3.9727 l 18.4541,-66.9647 z"
|
||||
d="M -6085.1735,5043.4152 L -6111.7324,5028.3751 L -6088.4092,4942.2675 L -6147.4233,4910.0325 L -6277.6194,4965.2999 L -6457.1953,4917.7874 L -6297.5296,5025.9623 L -6235.0717,5175.5028 L -6154.1449,5202.027 L -6128.7105,5106.4072 L -6103.6276,5110.3799 L -6085.1735,5043.4152 z"
|
||||
id="path6992"
|
||||
sodipodi:nodetypes="cccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="frame-label"
|
||||
transform="translate(-0.82096087,24.266719)">
|
||||
<path
|
||||
d="M 5.1898856,297.7612 L 5.1898856,289.17136 L 10.984807,289.17136 L 10.984807,290.18503 L 6.3266044,290.18503 L 6.3266044,292.84518 L 10.357854,292.84518 L 10.357854,293.85886 L 6.3266044,293.85886 L 6.3266044,297.7612 L 5.1898856,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11276"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 12.320745,297.7612 L 12.320745,291.53854 L 13.269964,291.53854 L 13.269964,292.4819 C 13.512149,292.0405 13.734805,291.74949 13.937932,291.60886 C 14.144961,291.46824 14.371523,291.39793 14.61762,291.39792 C 14.973085,291.39793 15.334413,291.51121 15.701604,291.73776 L 15.338323,292.71628 C 15.080507,292.56394 14.822695,292.48777 14.564886,292.48776 C 14.334414,292.48777 14.127383,292.55808 13.943792,292.6987 C 13.760196,292.83542 13.629337,293.02683 13.551214,293.27292 C 13.434024,293.64792 13.375431,294.05808 13.375432,294.50339 L 13.375432,297.7612 L 12.320745,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11278"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 20.400823,296.99362 C 20.010194,297.32565 19.633241,297.56003 19.269964,297.69675 C 18.910585,297.83347 18.523867,297.90182 18.109807,297.90182 C 17.426212,297.90182 16.900822,297.73581 16.533636,297.40378 C 16.166447,297.06784 15.982854,296.64011 15.982854,296.12057 C 15.982854,295.81589 16.051213,295.53855 16.187932,295.28854 C 16.328557,295.03464 16.510197,294.83152 16.732854,294.67917 C 16.959415,294.52683 17.213321,294.41159 17.494573,294.33347 C 17.701602,294.27878 18.014102,294.22605 18.432073,294.17526 C 19.283632,294.0737 19.910584,293.95261 20.312932,293.81198 C 20.316834,293.66745 20.318787,293.57566 20.318792,293.53659 C 20.318787,293.10691 20.219178,292.80417 20.019964,292.62839 C 19.750428,292.39011 19.350038,292.27097 18.818792,292.27097 C 18.322695,292.27097 17.955508,292.35886 17.717229,292.53464 C 17.482852,292.70652 17.309024,293.01316 17.195745,293.45456 L 16.164495,293.31393 C 16.258244,292.87253 16.412541,292.51706 16.627386,292.24753 C 16.842228,291.9741 17.152775,291.76511 17.559026,291.62057 C 17.965274,291.47214 18.435976,291.39793 18.971136,291.39792 C 19.502382,291.39793 19.934022,291.46043 20.266057,291.58542 C 20.598084,291.71042 20.842224,291.86863 20.998479,292.06003 C 21.154724,292.24753 21.264099,292.48581 21.326604,292.77487 C 21.361755,292.95456 21.379333,293.27878 21.379339,293.74753 L 21.379339,295.15378 C 21.379333,296.13425 21.400817,296.75534 21.443792,297.01706 C 21.490661,297.27487 21.580505,297.52292 21.713323,297.7612 L 20.611761,297.7612 C 20.502381,297.54245 20.432068,297.28659 20.400823,296.99362 M 20.312932,294.63815 C 19.930116,294.79441 19.355897,294.92722 18.590276,295.03659 C 18.15668,295.09909 17.85004,295.16941 17.670354,295.24753 C 17.490665,295.32566 17.351993,295.44089 17.254339,295.59323 C 17.156681,295.74167 17.107853,295.90769 17.107854,296.09128 C 17.107853,296.37253 17.213321,296.6069 17.424261,296.7944 C 17.639102,296.9819 17.951602,297.07565 18.361761,297.07565 C 18.768007,297.07565 19.129335,296.98776 19.445745,296.81198 C 19.762147,296.63229 19.994569,296.38815 20.143011,296.07956 C 20.256287,295.84128 20.312928,295.48972 20.312932,295.02487 L 20.312932,294.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11280"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 23.019964,297.7612 L 23.019964,291.53854 L 23.963323,291.53854 L 23.963323,292.41159 C 24.158634,292.10691 24.418399,291.86277 24.74262,291.67917 C 25.066836,291.49167 25.435976,291.39793 25.850042,291.39792 C 26.310975,291.39793 26.687928,291.49363 26.980901,291.68503 C 27.277771,291.87644 27.486755,292.14402 27.607854,292.48776 C 28.100036,291.76121 28.74066,291.39793 29.529729,291.39792 C 30.146909,291.39793 30.621518,291.5698 30.953557,291.91354 C 31.28558,292.25339 31.451595,292.77878 31.451604,293.48972 L 31.451604,297.7612 L 30.402776,297.7612 L 30.402776,293.84128 C 30.402768,293.41941 30.367612,293.11667 30.297307,292.93307 C 30.230893,292.74558 30.107846,292.59519 29.928167,292.4819 C 29.748472,292.36863 29.537535,292.31199 29.295354,292.31198 C 28.857848,292.31199 28.494567,292.45847 28.205511,292.75143 C 27.916442,293.0405 27.771911,293.50534 27.771917,294.14597 L 27.771917,297.7612 L 26.717229,297.7612 L 26.717229,293.71823 C 26.717225,293.24949 26.631287,292.89792 26.459417,292.66354 C 26.287538,292.42917 26.006288,292.31199 25.615667,292.31198 C 25.318789,292.31199 25.043398,292.39011 24.789495,292.54636 C 24.539493,292.70261 24.357852,292.93113 24.244573,293.2319 C 24.13129,293.53269 24.074649,293.96628 24.074651,294.53268 L 24.074651,297.7612 L 23.019964,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11282"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 37.310979,295.75729 L 38.400823,295.89206 C 38.228942,296.52878 37.910583,297.02292 37.445745,297.37448 C 36.980897,297.72604 36.387147,297.90182 35.664495,297.90182 C 34.754336,297.90182 34.031681,297.62253 33.496526,297.06393 C 32.965276,296.50144 32.699651,295.71433 32.699651,294.70261 C 32.699651,293.65574 32.969182,292.84324 33.508245,292.26511 C 34.047306,291.68699 34.746524,291.39793 35.605901,291.39792 C 36.437928,291.39793 37.117615,291.68113 37.644964,292.24753 C 38.172302,292.81394 38.435973,293.61081 38.435979,294.63815 C 38.435973,294.70066 38.43402,294.79441 38.43012,294.9194 L 33.789495,294.9194 C 33.828556,295.603 34.021915,296.12644 34.369573,296.48972 C 34.717227,296.853 35.15082,297.03464 35.670354,297.03464 C 36.057069,297.03464 36.387147,296.93308 36.660589,296.72995 C 36.934022,296.52683 37.150818,296.20261 37.310979,295.75729 M 33.848089,294.05222 L 37.322698,294.05222 C 37.275818,293.52878 37.143006,293.1362 36.924261,292.87448 C 36.588319,292.46824 36.152772,292.26511 35.61762,292.26511 C 35.133242,292.26511 34.725039,292.42722 34.393011,292.75143 C 34.064884,293.07566 33.883243,293.50925 33.848089,294.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11284"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 43.122745,292.73972 L 43.122745,291.53854 L 44.323917,291.53854 L 44.323917,292.73972 L 43.122745,292.73972 M 43.122745,297.7612 L 43.122745,296.56003 L 44.323917,296.56003 L 44.323917,297.7612 L 43.122745,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11286"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="cpu-label"
|
||||
transform="translate(-0.43424217,22.190022)">
|
||||
<path
|
||||
d="M 11.260198,309.74948 L 12.396917,310.03659 C 12.158628,310.97019 11.728941,311.68308 11.107854,312.17526 C 10.490661,312.66354 9.734802,312.90768 8.8402762,312.90768 C 7.9144913,312.90768 7.1605858,312.72018 6.5785575,312.34518 C 6.0004307,311.96628 5.5590249,311.4194 5.2543387,310.70456 C 4.9535567,309.98972 4.8031663,309.22214 4.8031669,308.40182 C 4.8031663,307.5073 4.973088,306.728 5.3129325,306.06393 C 5.656681,305.39597 6.1430087,304.89011 6.7719169,304.54636 C 7.4047262,304.19871 8.100038,304.02488 8.8578544,304.02487 C 9.7172239,304.02488 10.439879,304.24363 11.025823,304.68112 C 11.611753,305.11863 12.019956,305.73386 12.250432,306.52682 L 11.131292,306.7905 C 10.932066,306.1655 10.643004,305.71043 10.264104,305.42526 C 9.8851924,305.14011 9.4086304,304.99754 8.8344169,304.99753 C 8.1742566,304.99754 7.6215228,305.15574 7.1762137,305.47214 C 6.734805,305.78855 6.4242584,306.21433 6.2445731,306.74948 C 6.0648838,307.28074 5.9750401,307.82956 5.9750419,308.39597 C 5.9750401,309.12644 6.0805087,309.76511 6.2914481,310.31198 C 6.5062896,310.85495 6.8383205,311.2612 7.2875419,311.53073 C 7.7367571,311.80026 8.2230847,311.93503 8.7465262,311.93503 C 9.3832398,311.93503 9.9223018,311.75144 10.363714,311.38425 C 10.805113,311.01706 11.103941,310.47214 11.260198,309.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11298"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 13.803167,312.7612 L 13.803167,304.17136 L 17.043401,304.17136 C 17.613709,304.17136 18.049255,304.19871 18.350042,304.25339 C 18.771911,304.32371 19.125426,304.45847 19.410589,304.65768 C 19.695738,304.853 19.924254,305.1284 20.096136,305.48386 C 20.271909,305.83933 20.3598,306.22996 20.359807,306.65573 C 20.3598,307.38621 20.127378,308.00535 19.662542,308.51315 C 19.197692,309.01706 18.357849,309.26902 17.143011,309.26901 L 14.939886,309.26901 L 14.939886,312.7612 L 13.803167,312.7612 M 14.939886,308.25534 L 17.160589,308.25534 C 17.894959,308.25535 18.416443,308.11863 18.725042,307.84518 C 19.033629,307.57175 19.187926,307.18699 19.187932,306.69089 C 19.187926,306.33152 19.096129,306.02488 18.912542,305.77097 C 18.732849,305.51316 18.494567,305.34324 18.197698,305.2612 C 18.006287,305.21043 17.652771,305.18504 17.137151,305.18503 L 14.939886,305.18503 L 14.939886,308.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11300"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 27.455511,304.17136 L 28.592229,304.17136 L 28.592229,309.13425 C 28.592222,309.99753 28.494566,310.68308 28.299261,311.19089 C 28.103941,311.6987 27.750426,312.11276 27.238714,312.43307 C 26.730895,312.74948 26.062927,312.90768 25.234807,312.90768 C 24.430116,312.90768 23.771914,312.76901 23.260198,312.49167 C 22.748478,312.21433 22.383244,311.81394 22.164495,311.2905 C 21.945744,310.76316 21.836369,310.04441 21.83637,309.13425 L 21.83637,304.17136 L 22.973089,304.17136 L 22.973089,309.12839 C 22.973087,309.87448 23.041446,310.42526 23.178167,310.78073 C 23.318789,311.1323 23.55707,311.40378 23.893011,311.59518 C 24.232851,311.78659 24.646913,311.88229 25.135198,311.88229 C 25.971131,311.88229 26.566833,311.69284 26.922307,311.31393 C 27.27777,310.93503 27.455504,310.20652 27.455511,309.12839 L 27.455511,304.17136"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11302"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 42.736026,307.73972 L 42.736026,306.53854 L 43.937198,306.53854 L 43.937198,307.73972 L 42.736026,307.73972 M 42.736026,312.7612 L 42.736026,311.56003 L 43.937198,311.56003 L 43.937198,312.7612 L 42.736026,312.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11304"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="memfree-label"
|
||||
transform="translate(-0.72721087,20.125045)">
|
||||
<path
|
||||
d="M 5.0961356,327.7612 L 5.0961356,319.17136 L 6.8070731,319.17136 L 8.8402762,325.25339 C 9.0277714,325.8198 9.16449,326.24362 9.2504325,326.52487 C 9.3480836,326.21237 9.5004272,325.75339 9.7074637,325.14792 L 11.764104,319.17136 L 13.293401,319.17136 L 13.293401,327.7612 L 12.197698,327.7612 L 12.197698,320.57175 L 9.7016044,327.7612 L 8.6762137,327.7612 L 6.1918387,320.4487 L 6.1918387,327.7612 L 5.0961356,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11322"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.264104,325.75729 L 20.353948,325.89206 C 20.182067,326.52878 19.863708,327.02292 19.39887,327.37448 C 18.934022,327.72604 18.340272,327.90182 17.61762,327.90182 C 16.707461,327.90182 15.984806,327.62253 15.449651,327.06393 C 14.918401,326.50144 14.652776,325.71433 14.652776,324.70261 C 14.652776,323.65574 14.922307,322.84324 15.46137,322.26511 C 16.000431,321.68699 16.699649,321.39793 17.559026,321.39792 C 18.391053,321.39793 19.07074,321.68113 19.598089,322.24753 C 20.125427,322.81394 20.389098,323.61081 20.389104,324.63815 C 20.389098,324.70066 20.387145,324.79441 20.383245,324.9194 L 15.74262,324.9194 C 15.781681,325.603 15.97504,326.12644 16.322698,326.48972 C 16.670352,326.853 17.103945,327.03464 17.623479,327.03464 C 18.010194,327.03464 18.340272,326.93308 18.613714,326.72995 C 18.887147,326.52683 19.103943,326.20261 19.264104,325.75729 M 15.801214,324.05222 L 19.275823,324.05222 C 19.228943,323.52878 19.096131,323.1362 18.877386,322.87448 C 18.541444,322.46824 18.105897,322.26511 17.570745,322.26511 C 17.086367,322.26511 16.678164,322.42722 16.346136,322.75143 C 16.018009,323.07566 15.836368,323.50925 15.801214,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11324"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 21.684026,327.7612 L 21.684026,321.53854 L 22.627386,321.53854 L 22.627386,322.41159 C 22.822696,322.10691 23.082462,321.86277 23.406682,321.67917 C 23.730898,321.49167 24.100039,321.39793 24.514104,321.39792 C 24.975038,321.39793 25.351991,321.49363 25.644964,321.68503 C 25.941834,321.87644 26.150818,322.14402 26.271917,322.48776 C 26.764098,321.76121 27.404723,321.39793 28.193792,321.39792 C 28.810971,321.39793 29.28558,321.5698 29.61762,321.91354 C 29.949642,322.25339 30.115658,322.77878 30.115667,323.48972 L 30.115667,327.7612 L 29.066839,327.7612 L 29.066839,323.84128 C 29.066831,323.41941 29.031674,323.11667 28.96137,322.93307 C 28.894956,322.74558 28.771909,322.59519 28.592229,322.4819 C 28.412534,322.36863 28.201597,322.31199 27.959417,322.31198 C 27.52191,322.31199 27.158629,322.45847 26.869573,322.75143 C 26.580505,323.0405 26.435974,323.50534 26.435979,324.14597 L 26.435979,327.7612 L 25.381292,327.7612 L 25.381292,323.71823 C 25.381287,323.24949 25.29535,322.89792 25.123479,322.66354 C 24.9516,322.42917 24.670351,322.31199 24.279729,322.31198 C 23.982851,322.31199 23.707461,322.39011 23.453557,322.54636 C 23.203555,322.70261 23.021915,322.93113 22.908636,323.2319 C 22.795352,323.53269 22.738712,323.96628 22.738714,324.53268 L 22.738714,327.7612 L 21.684026,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11326"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 31.908636,327.7612 L 31.908636,319.17136 L 37.703557,319.17136 L 37.703557,320.18503 L 33.045354,320.18503 L 33.045354,322.84518 L 37.076604,322.84518 L 37.076604,323.85886 L 33.045354,323.85886 L 33.045354,327.7612 L 31.908636,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11328"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 39.039495,327.7612 L 39.039495,321.53854 L 39.988714,321.53854 L 39.988714,322.4819 C 40.230899,322.0405 40.453555,321.74949 40.656682,321.60886 C 40.863711,321.46824 41.090273,321.39793 41.33637,321.39792 C 41.691835,321.39793 42.053163,321.51121 42.420354,321.73776 L 42.057073,322.71628 C 41.799257,322.56394 41.541445,322.48777 41.283636,322.48776 C 41.053164,322.48777 40.846133,322.55808 40.662542,322.6987 C 40.478946,322.83542 40.348087,323.02683 40.269964,323.27292 C 40.152774,323.64792 40.094181,324.05808 40.094182,324.50339 L 40.094182,327.7612 L 39.039495,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11330"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 47.318792,325.75729 L 48.408636,325.89206 C 48.236755,326.52878 47.918396,327.02292 47.453557,327.37448 C 46.988709,327.72604 46.39496,327.90182 45.672307,327.90182 C 44.762149,327.90182 44.039493,327.62253 43.504339,327.06393 C 42.973088,326.50144 42.707463,325.71433 42.707464,324.70261 C 42.707463,323.65574 42.976994,322.84324 43.516057,322.26511 C 44.055118,321.68699 44.754336,321.39793 45.613714,321.39792 C 46.445741,321.39793 47.125428,321.68113 47.652776,322.24753 C 48.180114,322.81394 48.443786,323.61081 48.443792,324.63815 C 48.443786,324.70066 48.441833,324.79441 48.437932,324.9194 L 43.797307,324.9194 C 43.836368,325.603 44.029728,326.12644 44.377386,326.48972 C 44.725039,326.853 45.158633,327.03464 45.678167,327.03464 C 46.064882,327.03464 46.39496,326.93308 46.668401,326.72995 C 46.941834,326.52683 47.158631,326.20261 47.318792,325.75729 M 43.855901,324.05222 L 47.330511,324.05222 C 47.283631,323.52878 47.150818,323.1362 46.932073,322.87448 C 46.596131,322.46824 46.160585,322.26511 45.625432,322.26511 C 45.141055,322.26511 44.732852,322.42722 44.400823,322.75143 C 44.072696,323.07566 43.891056,323.50925 43.855901,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11332"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 53.998479,325.75729 L 55.088323,325.89206 C 54.916442,326.52878 54.598083,327.02292 54.133245,327.37448 C 53.668397,327.72604 53.074647,327.90182 52.351995,327.90182 C 51.441836,327.90182 50.719181,327.62253 50.184026,327.06393 C 49.652776,326.50144 49.387151,325.71433 49.387151,324.70261 C 49.387151,323.65574 49.656682,322.84324 50.195745,322.26511 C 50.734806,321.68699 51.434024,321.39793 52.293401,321.39792 C 53.125428,321.39793 53.805115,321.68113 54.332464,322.24753 C 54.859802,322.81394 55.123473,323.61081 55.123479,324.63815 C 55.123473,324.70066 55.12152,324.79441 55.11762,324.9194 L 50.476995,324.9194 C 50.516056,325.603 50.709415,326.12644 51.057073,326.48972 C 51.404727,326.853 51.83832,327.03464 52.357854,327.03464 C 52.744569,327.03464 53.074647,326.93308 53.348089,326.72995 C 53.621522,326.52683 53.838318,326.20261 53.998479,325.75729 M 50.535589,324.05222 L 54.010198,324.05222 C 53.963318,323.52878 53.830506,323.1362 53.611761,322.87448 C 53.275819,322.46824 52.840272,322.26511 52.30512,322.26511 C 51.820742,322.26511 51.412539,322.42722 51.080511,322.75143 C 50.752384,323.07566 50.570743,323.50925 50.535589,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11334"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 60,322.73972 L 60,321.53854 L 61.201172,321.53854 L 61.201172,322.73972 L 60,322.73972 M 60,327.7612 L 60,326.56003 L 61.201172,326.56003 L 61.201172,327.7612 L 60,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11336"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g11892">
|
||||
<path
|
||||
d="M 4.1879325,402.7612 L 7.4867606,394.17136 L 8.71137,394.17136 L 12.226995,402.7612 L 10.932073,402.7612 L 9.93012,400.15964 L 6.3383231,400.15964 L 5.3949637,402.7612 L 4.1879325,402.7612 M 6.6664481,399.23386 L 9.5785575,399.23386 L 8.6820731,396.85495 C 8.4086314,396.1323 8.2055066,395.53855 8.0726981,395.0737 C 7.9633194,395.62449 7.8090226,396.17136 7.6098075,396.71432 L 6.6664481,399.23386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11346"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 15.314886,401.81784 L 15.467229,402.74948 C 15.170351,402.81198 14.904727,402.84323 14.670354,402.84323 C 14.28754,402.84323 13.990665,402.78268 13.779729,402.66159 C 13.568791,402.5405 13.420353,402.38229 13.334417,402.18698 C 13.248478,401.98776 13.20551,401.57175 13.205511,400.93893 L 13.205511,397.35886 L 12.432073,397.35886 L 12.432073,396.53854 L 13.205511,396.53854 L 13.205511,394.99753 L 14.254339,394.36472 L 14.254339,396.53854 L 15.314886,396.53854 L 15.314886,397.35886 L 14.254339,397.35886 L 14.254339,400.99753 C 14.254337,401.29831 14.271915,401.49167 14.307073,401.57761 C 14.346133,401.66354 14.40668,401.7319 14.488714,401.78268 C 14.574649,401.83347 14.695743,401.85886 14.851995,401.85886 C 14.96918,401.85886 15.123476,401.84519 15.314886,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11348"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 18.643011,401.81784 L 18.795354,402.74948 C 18.498476,402.81198 18.232852,402.84323 17.998479,402.84323 C 17.615665,402.84323 17.31879,402.78268 17.107854,402.66159 C 16.896916,402.5405 16.748478,402.38229 16.662542,402.18698 C 16.576603,401.98776 16.533635,401.57175 16.533636,400.93893 L 16.533636,397.35886 L 15.760198,397.35886 L 15.760198,396.53854 L 16.533636,396.53854 L 16.533636,394.99753 L 17.582464,394.36472 L 17.582464,396.53854 L 18.643011,396.53854 L 18.643011,397.35886 L 17.582464,397.35886 L 17.582464,400.99753 C 17.582462,401.29831 17.60004,401.49167 17.635198,401.57761 C 17.674258,401.66354 17.734805,401.7319 17.816839,401.78268 C 17.902774,401.83347 18.023868,401.85886 18.18012,401.85886 C 18.297305,401.85886 18.451601,401.84519 18.643011,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11350"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.826604,402.7612 L 19.826604,394.17136 L 26.037542,394.17136 L 26.037542,395.18503 L 20.963323,395.18503 L 20.963323,397.81589 L 25.715276,397.81589 L 25.715276,398.8237 L 20.963323,398.8237 L 20.963323,401.74753 L 26.236761,401.74753 L 26.236761,402.7612 L 19.826604,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11352"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 27.262151,400.90378 L 28.30512,400.73972 C 28.363712,401.15769 28.525821,401.478 28.791448,401.70065 C 29.060977,401.92331 29.435977,402.03464 29.916448,402.03464 C 30.40082,402.03464 30.760194,401.93698 30.994573,401.74167 C 31.228944,401.54245 31.346131,401.31003 31.346136,401.0444 C 31.346131,400.80612 31.242616,400.61862 31.035589,400.4819 C 30.891053,400.38816 30.531679,400.26901 29.957464,400.12448 C 29.184024,399.92917 28.646915,399.7612 28.346136,399.62057 C 28.049259,399.47605 27.822697,399.27878 27.666448,399.02878 C 27.514104,398.77488 27.437932,398.49558 27.437932,398.19089 C 27.437932,397.91355 27.500432,397.65769 27.625432,397.42331 C 27.754338,397.18503 27.928166,396.98777 28.146917,396.83151 C 28.310978,396.71042 28.533634,396.60886 28.814886,396.52682 C 29.10004,396.44089 29.404727,396.39793 29.728948,396.39792 C 30.217226,396.39793 30.64496,396.46824 31.012151,396.60886 C 31.383241,396.74949 31.656678,396.94089 31.832464,397.18307 C 32.00824,397.42136 32.129334,397.74167 32.195745,398.14401 L 31.164495,398.28464 C 31.117616,397.96433 30.980897,397.71433 30.754339,397.53464 C 30.531679,397.35496 30.215273,397.26511 29.80512,397.26511 C 29.320743,397.26511 28.97504,397.34519 28.768011,397.50534 C 28.560978,397.6655 28.457462,397.853 28.457464,398.06784 C 28.457462,398.20456 28.500431,398.32761 28.58637,398.43698 C 28.672306,398.55027 28.807071,398.64402 28.990667,398.71823 C 29.096133,398.7573 29.40668,398.84714 29.922307,398.98776 C 30.668397,399.18698 31.187928,399.35105 31.480901,399.47995 C 31.777771,399.60495 32.010193,399.78855 32.178167,400.03073 C 32.34613,400.27292 32.430114,400.5737 32.43012,400.93307 C 32.430114,401.28464 32.326599,401.61667 32.119573,401.92917 C 31.916443,402.23776 31.621522,402.478 31.234807,402.64987 C 30.848085,402.81784 30.410585,402.90182 29.922307,402.90182 C 29.113712,402.90182 28.496525,402.73386 28.070745,402.39792 C 27.648869,402.06198 27.379338,401.56394 27.262151,400.90378"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11354"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 35.986761,401.81784 L 36.139104,402.74948 C 35.842226,402.81198 35.576602,402.84323 35.342229,402.84323 C 34.959415,402.84323 34.66254,402.78268 34.451604,402.66159 C 34.240666,402.5405 34.092228,402.38229 34.006292,402.18698 C 33.920353,401.98776 33.877385,401.57175 33.877386,400.93893 L 33.877386,397.35886 L 33.103948,397.35886 L 33.103948,396.53854 L 33.877386,396.53854 L 33.877386,394.99753 L 34.926214,394.36472 L 34.926214,396.53854 L 35.986761,396.53854 L 35.986761,397.35886 L 34.926214,397.35886 L 34.926214,400.99753 C 34.926212,401.29831 34.94379,401.49167 34.978948,401.57761 C 35.018008,401.66354 35.078555,401.7319 35.160589,401.78268 C 35.246524,401.83347 35.367618,401.85886 35.52387,401.85886 C 35.641055,401.85886 35.795351,401.84519 35.986761,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11356"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 36.203557,402.7612 L 39.502386,394.17136 L 40.726995,394.17136 L 44.24262,402.7612 L 42.947698,402.7612 L 41.945745,400.15964 L 38.353948,400.15964 L 37.410589,402.7612 L 36.203557,402.7612 M 38.682073,399.23386 L 41.594182,399.23386 L 40.697698,396.85495 C 40.424256,396.1323 40.221132,395.53855 40.088323,395.0737 C 39.978944,395.62449 39.824648,396.17136 39.625432,396.71432 L 38.682073,399.23386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11358"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 45.004339,402.7612 L 45.004339,394.17136 L 46.059026,394.17136 L 46.059026,402.7612 L 45.004339,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11360"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 47.506292,403.27682 L 48.531682,403.42917 C 48.57465,403.74557 48.69379,403.97604 48.889104,404.12057 C 49.150821,404.31589 49.508242,404.41354 49.96137,404.41354 C 50.449648,404.41354 50.8266,404.31589 51.092229,404.12057 C 51.35785,403.92526 51.537537,403.65182 51.631292,403.30026 C 51.685975,403.08542 51.711365,402.63425 51.707464,401.94675 C 51.246522,402.48972 50.672304,402.7612 49.984807,402.7612 C 49.129337,402.7612 48.467228,402.45261 47.998479,401.83542 C 47.529729,401.21823 47.295354,400.478 47.295354,399.61472 C 47.295354,399.02097 47.402776,398.47409 47.61762,397.97409 C 47.832463,397.47019 48.143009,397.08152 48.549261,396.80807 C 48.959415,396.53464 49.439883,396.39793 49.990667,396.39792 C 50.725038,396.39793 51.330506,396.6948 51.807073,397.28854 L 51.807073,396.53854 L 52.779729,396.53854 L 52.779729,401.91745 C 52.779723,402.8862 52.680114,403.57175 52.480901,403.97409 C 52.285583,404.38034 51.973084,404.70065 51.543401,404.93503 C 51.117616,405.1694 50.592226,405.28659 49.967229,405.28659 C 49.22504,405.28659 48.625431,405.11862 48.168401,404.78268 C 47.711369,404.45065 47.490666,403.9487 47.506292,403.27682 M 48.379339,399.53854 C 48.379337,400.35495 48.541446,400.95065 48.865667,401.32565 C 49.189883,401.70065 49.596133,401.88815 50.084417,401.88815 C 50.568788,401.88815 50.975038,401.70261 51.303167,401.33151 C 51.631287,400.95651 51.795349,400.37058 51.795354,399.5737 C 51.795349,398.81199 51.625428,398.23777 51.285589,397.85104 C 50.949647,397.46433 50.543398,397.27097 50.066839,397.27097 C 49.598086,397.27097 49.199649,397.46238 48.871526,397.84518 C 48.5434,398.2241 48.379337,398.78855 48.379339,399.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11362"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 53.986761,399.64987 C 53.98676,398.49753 54.307072,397.64402 54.947698,397.08932 C 55.482852,396.62839 56.135196,396.39793 56.904729,396.39792 C 57.760194,396.39793 58.459412,396.67917 59.002386,397.24167 C 59.545348,397.80027 59.816833,398.5737 59.816839,399.56198 C 59.816833,400.36276 59.695739,400.99362 59.453557,401.45456 C 59.215271,401.91159 58.865662,402.26706 58.404729,402.52097 C 57.947694,402.77487 57.447694,402.90182 56.904729,402.90182 C 56.033633,402.90182 55.328556,402.62253 54.789495,402.06393 C 54.254338,401.50534 53.98676,400.70066 53.986761,399.64987 M 55.070745,399.64987 C 55.070744,400.44675 55.244571,401.0444 55.592229,401.44284 C 55.939883,401.83737 56.377383,402.03464 56.904729,402.03464 C 57.428163,402.03464 57.863709,401.83542 58.21137,401.43698 C 58.559021,401.03855 58.732849,400.43112 58.732854,399.61472 C 58.732849,398.84519 58.557068,398.26316 58.205511,397.86862 C 57.85785,397.47019 57.424257,397.27097 56.904729,397.27097 C 56.377383,397.27097 55.939883,397.46824 55.592229,397.86276 C 55.244571,398.2573 55.070744,398.853 55.070745,399.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11364"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 65,397.73972 L 65,396.53854 L 66.201172,396.53854 L 66.201172,397.73972 L 65,397.73972 M 65,402.7612 L 65,401.56003 L 66.201172,401.56003 L 66.201172,402.7612 L 65,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11366"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g11905">
|
||||
<path
|
||||
d="M 5.0961356,417.7612 L 5.0961356,409.17136 L 6.8070731,409.17136 L 8.8402762,415.25339 C 9.0277714,415.8198 9.16449,416.24362 9.2504325,416.52487 C 9.3480836,416.21237 9.5004272,415.75339 9.7074637,415.14792 L 11.764104,409.17136 L 13.293401,409.17136 L 13.293401,417.7612 L 12.197698,417.7612 L 12.197698,410.57175 L 9.7016044,417.7612 L 8.6762137,417.7612 L 6.1918387,410.4487 L 6.1918387,417.7612 L 5.0961356,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11392"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.064886,416.99362 C 18.674256,417.32565 18.297303,417.56003 17.934026,417.69675 C 17.574648,417.83347 17.18793,417.90182 16.77387,417.90182 C 16.090274,417.90182 15.564884,417.73581 15.197698,417.40378 C 14.83051,417.06784 14.646916,416.64011 14.646917,416.12057 C 14.646916,415.81589 14.715276,415.53855 14.851995,415.28854 C 14.992619,415.03464 15.17426,414.83152 15.396917,414.67917 C 15.623478,414.52683 15.877384,414.41159 16.158636,414.33347 C 16.365665,414.27878 16.678164,414.22605 17.096136,414.17526 C 17.947694,414.0737 18.574647,413.95261 18.976995,413.81198 C 18.980896,413.66745 18.98285,413.57566 18.982854,413.53659 C 18.98285,413.10691 18.88324,412.80417 18.684026,412.62839 C 18.414491,412.39011 18.014101,412.27097 17.482854,412.27097 C 16.986758,412.27097 16.619571,412.35886 16.381292,412.53464 C 16.146915,412.70652 15.973087,413.01316 15.859807,413.45456 L 14.828557,413.31393 C 14.922307,412.87253 15.076604,412.51706 15.291448,412.24753 C 15.506291,411.9741 15.816837,411.76511 16.223089,411.62057 C 16.629336,411.47214 17.100039,411.39793 17.635198,411.39792 C 18.166444,411.39793 18.598084,411.46043 18.93012,411.58542 C 19.262146,411.71042 19.506287,411.86863 19.662542,412.06003 C 19.818786,412.24753 19.928161,412.48581 19.990667,412.77487 C 20.025817,412.95456 20.043395,413.27878 20.043401,413.74753 L 20.043401,415.15378 C 20.043395,416.13425 20.06488,416.75534 20.107854,417.01706 C 20.154723,417.27487 20.244567,417.52292 20.377386,417.7612 L 19.275823,417.7612 C 19.166443,417.54245 19.096131,417.28659 19.064886,416.99362 M 18.976995,414.63815 C 18.594178,414.79441 18.01996,414.92722 17.254339,415.03659 C 16.820742,415.09909 16.514102,415.16941 16.334417,415.24753 C 16.154727,415.32566 16.016056,415.44089 15.918401,415.59323 C 15.820743,415.74167 15.771915,415.90769 15.771917,416.09128 C 15.771915,416.37253 15.877384,416.6069 16.088323,416.7944 C 16.303165,416.9819 16.615664,417.07565 17.025823,417.07565 C 17.43207,417.07565 17.793398,416.98776 18.109807,416.81198 C 18.42621,416.63229 18.658631,416.38815 18.807073,416.07956 C 18.92035,415.84128 18.97699,415.48972 18.976995,415.02487 L 18.976995,414.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11394"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 21.490667,418.27682 L 22.516057,418.42917 C 22.559025,418.74557 22.678165,418.97604 22.873479,419.12057 C 23.135196,419.31589 23.492617,419.41354 23.945745,419.41354 C 24.434023,419.41354 24.810975,419.31589 25.076604,419.12057 C 25.342225,418.92526 25.521912,418.65182 25.615667,418.30026 C 25.67035,418.08542 25.69574,417.63425 25.691839,416.94675 C 25.230897,417.48972 24.656679,417.7612 23.969182,417.7612 C 23.113712,417.7612 22.451603,417.45261 21.982854,416.83542 C 21.514104,416.21823 21.279729,415.478 21.279729,414.61472 C 21.279729,414.02097 21.387151,413.47409 21.601995,412.97409 C 21.816838,412.47019 22.127384,412.08152 22.533636,411.80807 C 22.94379,411.53464 23.424258,411.39793 23.975042,411.39792 C 24.709413,411.39793 25.314881,411.6948 25.791448,412.28854 L 25.791448,411.53854 L 26.764104,411.53854 L 26.764104,416.91745 C 26.764098,417.8862 26.664489,418.57175 26.465276,418.97409 C 26.269958,419.38034 25.957459,419.70065 25.527776,419.93503 C 25.101991,420.1694 24.576601,420.28659 23.951604,420.28659 C 23.209415,420.28659 22.609806,420.11862 22.152776,419.78268 C 21.695744,419.45065 21.475041,418.9487 21.490667,418.27682 M 22.363714,414.53854 C 22.363712,415.35495 22.525821,415.95065 22.850042,416.32565 C 23.174258,416.70065 23.580508,416.88815 24.068792,416.88815 C 24.553163,416.88815 24.959413,416.70261 25.287542,416.33151 C 25.615662,415.95651 25.779724,415.37058 25.779729,414.5737 C 25.779724,413.81199 25.609803,413.23777 25.269964,412.85104 C 24.934022,412.46433 24.527773,412.27097 24.051214,412.27097 C 23.582461,412.27097 23.184024,412.46238 22.855901,412.84518 C 22.527775,413.2241 22.363712,413.78855 22.363714,414.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11396"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 65,412.73972 L 65,411.53854 L 66.201172,411.53854 L 66.201172,412.73972 L 65,412.73972 M 65,417.7612 L 65,416.56003 L 66.201172,416.56003 L 66.201172,417.7612 L 65,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11398"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g11911">
|
||||
<path
|
||||
d="M 9.1508231,429.39206 L 9.1508231,428.38425 L 12.789495,428.37839 L 12.789495,431.56589 C 12.230893,432.0112 11.654722,432.34714 11.060979,432.5737 C 10.467223,432.79636 9.8578487,432.90768 9.2328544,432.90768 C 8.3891002,432.90768 7.6215228,432.728 6.93012,432.36862 C 6.242618,432.00534 5.7230872,431.4819 5.3715262,430.79831 C 5.0199629,430.11472 4.8441819,429.35105 4.8441825,428.50729 C 4.8441819,427.67136 5.0180098,426.89207 5.3656669,426.1694 C 5.7172279,425.44285 6.2211336,424.90379 6.8773856,424.55222 C 7.5336323,424.20066 8.2894909,424.02488 9.1449637,424.02487 C 9.7660519,424.02488 10.326598,424.12644 10.826604,424.32956 C 11.330503,424.52879 11.725034,424.80808 12.010198,425.16745 C 12.295346,425.52683 12.512143,425.99558 12.660589,426.5737 L 11.635198,426.85495 C 11.506285,426.41746 11.346128,426.07371 11.154729,425.8237 C 10.963316,425.57371 10.689879,425.37449 10.334417,425.22604 C 9.9789423,425.07371 9.5844115,424.99754 9.1508231,424.99753 C 8.6312874,424.99754 8.1820691,425.07761 7.8031669,425.23776 C 7.4242574,425.39402 7.1176171,425.60105 6.883245,425.85886 C 6.6527738,426.11668 6.4730865,426.39988 6.3441825,426.70847 C 6.1254306,427.23972 6.0160557,427.81589 6.0160575,428.43698 C 6.0160557,429.20261 6.1469149,429.84323 6.4086356,430.35886 C 6.6742581,430.87448 7.0590234,431.2573 7.5629325,431.50729 C 8.0668349,431.75729 8.6019906,431.88229 9.1684012,431.88229 C 9.6605833,431.88229 10.141052,431.78854 10.609807,431.60104 C 11.078551,431.40964 11.434019,431.20651 11.676214,430.99167 L 11.676214,429.39206 L 9.1508231,429.39206"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11414"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 14.459417,432.7612 L 14.459417,424.17136 L 17.699651,424.17136 C 18.269959,424.17136 18.705505,424.19871 19.006292,424.25339 C 19.428161,424.32371 19.781676,424.45847 20.066839,424.65768 C 20.351988,424.853 20.580504,425.1284 20.752386,425.48386 C 20.928159,425.83933 21.01605,426.22996 21.016057,426.65573 C 21.01605,427.38621 20.783628,428.00535 20.318792,428.51315 C 19.853942,429.01706 19.014099,429.26902 17.799261,429.26901 L 15.596136,429.26901 L 15.596136,432.7612 L 14.459417,432.7612 M 15.596136,428.25534 L 17.816839,428.25534 C 18.551209,428.25535 19.072693,428.11863 19.381292,427.84518 C 19.689879,427.57175 19.844176,427.18699 19.844182,426.69089 C 19.844176,426.33152 19.752379,426.02488 19.568792,425.77097 C 19.389099,425.51316 19.150817,425.34324 18.853948,425.2612 C 18.662537,425.21043 18.309021,425.18504 17.793401,425.18503 L 15.596136,425.18503 L 15.596136,428.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11416"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 22.088323,430.00143 L 23.160589,429.90768 C 23.211368,430.33737 23.328556,430.69089 23.512151,430.96823 C 23.699649,431.24167 23.988711,431.46433 24.379339,431.6362 C 24.769961,431.80417 25.209413,431.88815 25.697698,431.88815 C 26.131287,431.88815 26.514099,431.8237 26.846136,431.69479 C 27.178161,431.56589 27.424255,431.39011 27.584417,431.16745 C 27.748473,430.94089 27.830504,430.6948 27.830511,430.42917 C 27.830504,430.15964 27.752379,429.92527 27.596136,429.72604 C 27.43988,429.52292 27.182067,429.353 26.822698,429.21628 C 26.592224,429.12644 26.082459,428.98777 25.293401,428.80026 C 24.504336,428.60886 23.951602,428.42917 23.635198,428.2612 C 23.22504,428.04636 22.9184,427.78074 22.715276,427.46432 C 22.516057,427.14402 22.416447,426.7866 22.416448,426.39206 C 22.416447,425.95847 22.539494,425.55418 22.785589,425.17917 C 23.031681,424.80027 23.391056,424.51316 23.863714,424.31784 C 24.336367,424.12254 24.861757,424.02488 25.439886,424.02487 C 26.0766,424.02488 26.637146,424.1284 27.121526,424.33542 C 27.609801,424.53855 27.984801,424.83933 28.246526,425.23776 C 28.508238,425.63621 28.648863,426.08738 28.668401,426.59128 L 27.578557,426.67331 C 27.519958,426.13035 27.320739,425.72019 26.980901,425.44284 C 26.644959,425.1655 26.146912,425.02683 25.486761,425.02682 C 24.799257,425.02683 24.297305,425.15379 23.980901,425.40768 C 23.668399,425.65769 23.512149,425.96043 23.512151,426.31589 C 23.512149,426.62449 23.623477,426.87839 23.846136,427.07761 C 24.064883,427.27683 24.635195,427.48191 25.557073,427.69284 C 26.482849,427.89988 27.117614,428.08152 27.46137,428.23776 C 27.961364,428.46824 28.330504,428.7612 28.568792,429.11667 C 28.807066,429.46823 28.926206,429.87448 28.926214,430.33542 C 28.926206,430.79245 28.795347,431.22409 28.533636,431.63034 C 28.27191,432.03269 27.894957,432.34714 27.402776,432.5737 C 26.91449,432.79636 26.363709,432.90768 25.750432,432.90768 C 24.973085,432.90768 24.320742,432.7944 23.793401,432.56784 C 23.269962,432.34128 22.857853,432.00144 22.557073,431.54831 C 22.260197,431.09128 22.103948,430.57566 22.088323,430.00143"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11418"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 65,427.73972 L 65,426.53854 L 66.201172,426.53854 L 66.201172,427.73972 L 65,427.73972 M 65,432.7612 L 65,431.56003 L 66.201172,431.56003 L 66.201172,432.7612 L 65,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11420"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -2086,44 +2296,258 @@
|
||||
inkscape:label="system-text"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(0.74200666,-0.67039251,0.67039251,0.74200666,0,0)"
|
||||
style="font-size:30.59068871px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="system-text-tmp">
|
||||
id="system-frame-type"
|
||||
transform="translate(-6,0)">
|
||||
<path
|
||||
d="m -259.97722,334.41368 l 2.73345,-0.23899 c 0.12945,1.09538 0.42818,1.99657 0.89621,2.70358 c 0.47797,0.69705 1.21486,1.26465 2.21065,1.7028 c 0.99579,0.42819 2.11605,0.64228 3.3608,0.64228 c 1.10531,0 2.08119,-0.1643 2.92762,-0.49291 c 0.84641,-0.32861 1.47376,-0.77672 1.88205,-1.34432 c 0.41821,-0.57756 0.62733,-1.2049 0.62734,-1.88205 c -1e-5,-0.68708 -0.19917,-1.28456 -0.59747,-1.79242 c -0.39833,-0.5178 -1.05555,-0.95097 -1.97167,-1.29951 c -0.58753,-0.22902 -1.88703,-0.58252 -3.89852,-1.06051 c -2.0115,-0.48793 -3.42054,-0.94599 -4.22713,-1.37419 c -1.04558,-0.54768 -1.82728,-1.22481 -2.34508,-2.03142 c -0.50786,-0.81653 -0.76179,-1.72768 -0.76178,-2.73344 c -10e-6,-1.10531 0.31367,-2.13595 0.94102,-3.09193 c 0.62734,-0.9659 1.54347,-1.6978 2.74838,-2.19572 c 1.2049,-0.49787 2.54424,-0.74682 4.01801,-0.74684 c 1.62313,2e-5 3.05209,0.2639 4.28688,0.79165 c 1.24473,0.51783 2.20068,1.28459 2.86788,2.30028 c 0.66716,1.01572 1.02565,2.16586 1.07545,3.45041 l -2.77825,0.20912 c -0.14939,-1.38414 -0.65724,-2.42971 -1.52356,-3.13674 c -0.85639,-0.707 -2.12603,-1.0605 -3.8089,-1.06052 c -1.7526,2e-5 -3.03219,0.32365 -3.83877,0.9709 c -0.79664,0.63732 -1.19496,1.40906 -1.19495,2.31521 c -1e-5,0.78669 0.28379,1.43395 0.8514,1.94179 c 0.55764,0.50787 2.01149,1.03066 4.36156,1.56837 c 2.36001,0.52778 3.97817,0.99082 4.85448,1.38913 c 1.2746,0.58753 2.21562,1.33437 2.82307,2.24053 c 0.60741,0.89622 0.91113,1.93184 0.91115,3.10686 c -2e-5,1.16508 -0.33361,2.26543 -1.00077,3.30105 c -0.6672,1.02567 -1.62814,1.82728 -2.88282,2.40483 c -1.24475,0.56761 -2.64881,0.85141 -4.21219,0.85141 c -1.98163,0 -3.6446,-0.28878 -4.98891,-0.86634 c -1.33437,-0.57756 -2.38492,-1.4439 -3.15168,-2.59902 c -0.7568,-1.16507 -1.15512,-2.47951 -1.19495,-3.94333"
|
||||
id="path5157"
|
||||
d="M 105.00043,296.84128 C 105.52777,297.20456 106.0141,297.47018 106.45942,297.63815 L 106.12543,298.42917 C 105.50824,298.20651 104.893,297.85495 104.27973,297.37448 C 103.64301,297.72995 102.93988,297.90768 102.17035,297.90768 C 101.39301,297.90768 100.68793,297.72018 100.05512,297.34518 C 99.422306,296.97019 98.934025,296.44284 98.590276,295.76315 C 98.250432,295.08347 98.08051,294.31784 98.080511,293.46628 C 98.08051,292.61863 98.252385,291.84714 98.596136,291.15182 C 98.939884,290.45652 99.428165,289.92722 100.06098,289.56393 C 100.69769,289.20066 101.40863,289.01902 102.19379,289.01901 C 102.98676,289.01902 103.7016,289.20847 104.33832,289.58737 C 104.97503,289.96238 105.45941,290.48972 105.79145,291.1694 C 106.12738,291.84519 106.29535,292.60886 106.29535,293.46042 C 106.29535,294.16745 106.18792,294.80417 105.97309,295.37057 C 105.75824,295.93308 105.43402,296.42331 105.00043,296.84128 M 102.49848,295.38815 C 103.15472,295.57175 103.69574,295.84519 104.12153,296.20847 C 104.78949,295.59909 105.12347,294.68308 105.12348,293.46042 C 105.12347,292.76511 105.00433,292.15769 104.76606,291.63815 C 104.53168,291.11863 104.18597,290.71629 103.72895,290.43112 C 103.27582,290.14207 102.76605,289.99754 102.19965,289.99753 C 101.35199,289.99754 100.64887,290.28855 100.09028,290.87057 C 99.531681,291.44871 99.252384,292.31394 99.252386,293.46628 C 99.252384,294.58347 99.527774,295.44089 100.07856,296.03854 C 100.63324,296.6362 101.34027,296.93503 102.19965,296.93503 C 102.6059,296.93503 102.98871,296.85886 103.34809,296.70651 C 102.99262,296.47604 102.61762,296.31198 102.22309,296.21432 L 102.49848,295.38815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11288"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -239.0208,347.55812 l -0.29874,-2.52433 c 0.58751,0.15932 1.10034,0.23899 1.53849,0.23899 c 0.59748,0 1.07545,-0.0996 1.43394,-0.29874 c 0.35848,-0.19916 0.65224,-0.47798 0.88128,-0.83646 c 0.16928,-0.26887 0.44312,-0.93605 0.82153,-2.00154 c 0.0498,-0.14937 0.12944,-0.36844 0.23899,-0.65722 l -6.01956,-15.89282 l 2.89775,0 l 3.30105,9.18617 c 0.42818,1.16508 0.81156,2.3899 1.15014,3.67447 c 0.30868,-1.23478 0.67712,-2.43969 1.10532,-3.61472 l 3.39067,-9.24592 l 2.68864,0 l -6.0345,16.13181 c -0.64727,1.74263 -1.15014,2.94256 -1.50862,3.59978 c -0.47799,0.88625 -1.02567,1.53351 -1.64305,1.94179 c -0.6174,0.41823 -1.35428,0.62734 -2.21066,0.62735 c -0.51781,-10e-6 -1.09537,-0.10954 -1.73267,-0.32861"
|
||||
id="path5159"
|
||||
d="M 111.76215,297.7612 L 111.76215,296.84714 C 111.27777,297.55026 110.61957,297.90182 109.78754,297.90182 C 109.42035,297.90182 109.0766,297.83151 108.75629,297.69089 C 108.43988,297.55026 108.20356,297.37448 108.04731,297.16354 C 107.89496,296.9487 107.78754,296.68698 107.72504,296.37839 C 107.68207,296.17136 107.66059,295.84323 107.66059,295.39401 L 107.66059,291.53854 L 108.71528,291.53854 L 108.71528,294.98972 C 108.71527,295.5405 108.73676,295.91159 108.77973,296.103 C 108.84613,296.38034 108.98676,296.59909 109.2016,296.75925 C 109.41645,296.9155 109.68207,296.99362 109.99848,296.99362 C 110.31488,296.99362 110.61176,296.91354 110.8891,296.75339 C 111.16644,296.58933 111.36176,296.36862 111.47504,296.09128 C 111.59223,295.81003 111.65082,295.40378 111.65082,294.87253 L 111.65082,291.53854 L 112.70551,291.53854 L 112.70551,297.7612 L 111.76215,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11290"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -224.68142,336.71396 l 2.65876,-0.41823 c 0.14937,1.0655 0.56262,1.88205 1.23976,2.44964 c 0.68709,0.56761 1.64305,0.85141 2.86788,0.8514 c 1.23477,1e-5 2.1509,-0.24894 2.74838,-0.74684 c 0.59746,-0.50785 0.8962,-1.10034 0.89621,-1.77749 c -1e-5,-0.60742 -0.26389,-1.0854 -0.79165,-1.43393 c -0.36845,-0.23899 -1.28458,-0.5427 -2.74838,-0.91115 c -1.97167,-0.49789 -3.34088,-0.92608 -4.10764,-1.28457 c -0.7568,-0.36844 -1.33436,-0.87131 -1.73267,-1.50863 c -0.38836,-0.64725 -0.58254,-1.35924 -0.58254,-2.13597 c 0,-0.707 0.15932,-1.35924 0.47798,-1.95673 c 0.32861,-0.60741 0.77173,-1.11029 1.32938,-1.50862 c 0.41823,-0.30868 0.98583,-0.56758 1.7028,-0.77671 c 0.72692,-0.21906 1.50364,-0.3286 2.33015,-0.32862 c 1.24473,2e-5 2.33512,0.17926 3.27117,0.53773 c 0.94599,0.3585 1.64304,0.84644 2.09116,1.46381 c 0.4481,0.60745 0.75679,1.424 0.92609,2.44965 l -2.62889,0.35848 c -0.11951,-0.81653 -0.46803,-1.45384 -1.04558,-1.91191 c -0.56761,-0.45805 -1.3742,-0.68709 -2.41977,-0.6871 c -1.23479,10e-6 -2.11606,0.20415 -2.64383,0.61241 c -0.52777,0.40829 -0.79165,0.88627 -0.79165,1.43394 c 0,0.34854 0.10953,0.66221 0.32861,0.94102 c 0.21907,0.28879 0.56262,0.52778 1.03065,0.71697 c 0.26885,0.0996 1.06051,0.32862 2.37496,0.6871 c 1.90195,0.50786 3.22635,0.92609 3.9732,1.25469 c 0.75679,0.31866 1.34928,0.78668 1.77749,1.40407 c 0.42817,0.61739 0.64227,1.38415 0.64228,2.30027 c -10e-6,0.89622 -0.2639,1.74264 -0.79165,2.53927 c -0.51783,0.78668 -1.26965,1.39909 -2.25547,1.83723 c -0.98584,0.42819 -2.10112,0.64229 -3.34585,0.64229 c -2.0613,0 -3.63464,-0.42819 -4.72005,-1.28457 c -1.07546,-0.85638 -1.76255,-2.12601 -2.06129,-3.8089"
|
||||
id="path5161"
|
||||
d="M 118.42426,296.99362 C 118.03363,297.32565 117.65668,297.56003 117.2934,297.69675 C 116.93402,297.83347 116.5473,297.90182 116.13325,297.90182 C 115.44965,297.90182 114.92426,297.73581 114.55707,297.40378 C 114.18989,297.06784 114.00629,296.64011 114.00629,296.12057 C 114.00629,295.81589 114.07465,295.53855 114.21137,295.28854 C 114.35199,295.03464 114.53364,294.83152 114.75629,294.67917 C 114.98285,294.52683 115.23676,294.41159 115.51801,294.33347 C 115.72504,294.27878 116.03754,294.22605 116.45551,294.17526 C 117.30707,294.0737 117.93402,293.95261 118.33637,293.81198 C 118.34027,293.66745 118.34223,293.57566 118.34223,293.53659 C 118.34223,293.10691 118.24262,292.80417 118.0434,292.62839 C 117.77387,292.39011 117.37348,292.27097 116.84223,292.27097 C 116.34613,292.27097 115.97895,292.35886 115.74067,292.53464 C 115.50629,292.70652 115.33246,293.01316 115.21918,293.45456 L 114.18793,293.31393 C 114.28168,292.87253 114.43598,292.51706 114.65082,292.24753 C 114.86567,291.9741 115.17621,291.76511 115.58246,291.62057 C 115.98871,291.47214 116.45941,291.39793 116.99457,291.39792 C 117.52582,291.39793 117.95746,291.46043 118.2895,291.58542 C 118.62152,291.71042 118.86566,291.86863 119.02192,292.06003 C 119.17816,292.24753 119.28754,292.48581 119.35004,292.77487 C 119.38519,292.95456 119.40277,293.27878 119.40278,293.74753 L 119.40278,295.15378 C 119.40277,296.13425 119.42426,296.75534 119.46723,297.01706 C 119.5141,297.27487 119.60394,297.52292 119.73676,297.7612 L 118.6352,297.7612 C 118.52582,297.54245 118.45551,297.28659 118.42426,296.99362 M 118.33637,294.63815 C 117.95355,294.79441 117.37933,294.92722 116.61371,295.03659 C 116.18012,295.09909 115.87348,295.16941 115.69379,295.24753 C 115.5141,295.32566 115.37543,295.44089 115.27778,295.59323 C 115.18012,295.74167 115.13129,295.90769 115.13129,296.09128 C 115.13129,296.37253 115.23676,296.6069 115.4477,296.7944 C 115.66254,296.9819 115.97504,297.07565 116.3852,297.07565 C 116.79144,297.07565 117.15277,296.98776 117.46918,296.81198 C 117.78558,296.63229 118.01801,296.38815 118.16645,296.07956 C 118.27973,295.84128 118.33637,295.48972 118.33637,295.02487 L 118.33637,294.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11292"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -202.44043,339.04411 l 0.38836,2.37496 c -0.75681,0.15933 -1.43395,0.23899 -2.03142,0.23899 c -0.97588,0 -1.73268,-0.15435 -2.2704,-0.46304 c -0.53773,-0.3087 -0.91613,-0.71199 -1.1352,-1.20989 c -0.21908,-0.50785 -0.32862,-1.56837 -0.32861,-3.18155 l 0,-9.12642 l -1.97167,0 l 0,-2.09116 l 1.97167,0 l 0,-3.9284 l 2.6737,-1.61318 l 0,5.54158 l 2.70357,0 l 0,2.09116 l -2.70357,0 l 0,9.27579 c -1e-5,0.76676 0.0448,1.25968 0.13443,1.47875 c 0.0996,0.21908 0.25392,0.39334 0.46304,0.52279 c 0.21907,0.12945 0.52776,0.19418 0.92608,0.19418 c 0.29874,0 0.69207,-0.0349 1.18002,-0.10456"
|
||||
id="path5163"
|
||||
d="M 125.08051,297.7612 L 125.08051,296.97604 C 124.68598,297.59323 124.1059,297.90182 123.34028,297.90182 C 122.84418,297.90182 122.38715,297.76511 121.96918,297.49167 C 121.55512,297.21823 121.23285,296.83737 121.00239,296.34909 C 120.77582,295.8569 120.66254,295.29245 120.66254,294.65573 C 120.66254,294.03464 120.76606,293.47214 120.97309,292.96823 C 121.18012,292.46042 121.49067,292.07175 121.90473,291.80222 C 122.31879,291.53269 122.78168,291.39793 123.2934,291.39792 C 123.6684,291.39793 124.00238,291.478 124.29535,291.63815 C 124.58832,291.79441 124.8266,291.99949 125.0102,292.25339 L 125.0102,289.17136 L 126.05903,289.17136 L 126.05903,297.7612 L 125.08051,297.7612 M 121.74653,294.65573 C 121.74653,295.45261 121.91449,296.04831 122.25043,296.44284 C 122.58637,296.83737 122.98285,297.03464 123.43989,297.03464 C 123.90082,297.03464 124.29144,296.84714 124.61176,296.47214 C 124.93598,296.09323 125.09808,295.51706 125.09809,294.74362 C 125.09808,293.89206 124.93402,293.26706 124.6059,292.86862 C 124.27777,292.47019 123.87348,292.27097 123.39301,292.27097 C 122.92426,292.27097 122.53168,292.46238 122.21528,292.84518 C 121.90278,293.228 121.74653,293.83152 121.74653,294.65573"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11294"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -188.96739,336.34054 l 2.77826,0.34355 c -0.43816,1.62314 -1.24973,2.88281 -2.43471,3.77902 c -1.185,0.89621 -2.6986,1.34432 -4.5408,1.34432 c -2.3202,0 -4.16241,-0.71199 -5.52664,-2.13597 c -1.35428,-1.43394 -2.03142,-3.44045 -2.03142,-6.01956 c 0,-2.66871 0.6871,-4.73995 2.06129,-6.21373 c 1.37419,-1.47375 3.15665,-2.21064 5.3474,-2.21066 c 2.12102,2e-5 3.85369,0.72197 5.19802,2.16585 c 1.34431,1.44391 2.01646,3.47532 2.01648,6.09424 c -2e-5,0.15933 -0.005,0.39832 -0.0149,0.71697 l -11.82999,0 c 0.0996,1.74264 0.59249,3.07699 1.47875,4.00308 c 0.88625,0.92608 1.99157,1.38913 3.31598,1.38912 c 0.98583,1e-5 1.82727,-0.2589 2.52433,-0.77671 c 0.69704,-0.51781 1.24971,-1.34432 1.65799,-2.47952 m -8.82768,-4.34663 l 8.85756,0 c -0.11951,-1.33435 -0.45808,-2.33512 -1.01571,-3.00231 c -0.85639,-1.03561 -1.9667,-1.55342 -3.33092,-1.55343 c -1.23479,10e-6 -2.27539,0.41327 -3.1218,1.23976 c -0.83647,0.82652 -1.29951,1.93184 -1.38913,3.31598"
|
||||
id="path5166"
|
||||
d="M 126.98481,297.7612 L 130.30707,293.28464 L 127.37739,289.17136 L 128.7309,289.17136 L 130.2895,291.37448 C 130.61371,291.83152 130.84418,292.18308 130.9809,292.42917 C 131.1723,292.11667 131.39887,291.7905 131.66059,291.45065 L 133.3891,289.17136 L 134.62543,289.17136 L 131.60785,293.22018 L 134.85981,297.7612 L 133.45356,297.7612 L 131.29145,294.69675 C 131.17035,294.52097 131.04535,294.32956 130.91645,294.12253 C 130.72504,294.43503 130.58832,294.64987 130.50629,294.76706 L 128.35004,297.7612 L 126.98481,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11296"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-cpu-load-temp"
|
||||
transform="translate(-8,0)">
|
||||
<path
|
||||
d="M 94.144964,306.27487 L 93.096136,306.3569 C 93.002381,305.94285 92.869568,305.64207 92.697698,305.45456 C 92.412538,305.15379 92.060975,305.0034 91.643011,305.00339 C 91.30707,305.0034 91.012148,305.09715 90.758245,305.28464 C 90.426211,305.52683 90.164493,305.88035 89.973089,306.34518 C 89.781681,306.81003 89.682072,307.47214 89.674261,308.33151 C 89.928165,307.9448 90.238712,307.65769 90.605901,307.47018 C 90.973086,307.28269 91.357851,307.18894 91.760198,307.18893 C 92.463319,307.18894 93.060974,307.44871 93.553167,307.96823 C 94.049255,308.48386 94.297301,309.15183 94.297307,309.97214 C 94.297301,310.5112 94.180114,311.01315 93.945745,311.478 C 93.715271,311.93894 93.396912,312.29245 92.990667,312.53854 C 92.584412,312.78464 92.123475,312.90768 91.607854,312.90768 C 90.728946,312.90768 90.012149,312.58542 89.457464,311.94089 C 88.902776,311.29245 88.625432,310.22605 88.625432,308.74167 C 88.625432,307.08152 88.932072,305.87449 89.545354,305.12057 C 90.080509,304.46433 90.801211,304.13621 91.707464,304.1362 C 92.383241,304.13621 92.935975,304.32566 93.365667,304.70456 C 93.799255,305.08347 94.05902,305.60691 94.144964,306.27487 M 89.838323,309.978 C 89.838321,310.34128 89.914493,310.68894 90.066839,311.02097 C 90.223087,311.353 90.439883,311.6069 90.717229,311.78268 C 90.99457,311.95456 91.285586,312.0405 91.590276,312.0405 C 92.035585,312.0405 92.418397,311.86081 92.738714,311.50143 C 93.059021,311.14206 93.219177,310.65378 93.219182,310.03659 C 93.219177,309.44284 93.060974,308.97605 92.744573,308.6362 C 92.428163,308.29245 92.029726,308.12058 91.549261,308.12057 C 91.072695,308.12058 90.668399,308.29245 90.33637,308.6362 C 90.004337,308.97605 89.838321,309.42331 89.838323,309.978"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11306"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -182.79847,341.44894 l 0,-15.86294 l 2.40484,0 l 0,2.22559 c 0.49789,-0.7767 1.16009,-1.39907 1.9866,-1.86711 c 0.8265,-0.47796 1.76752,-0.71695 2.82307,-0.71697 c 1.17502,2e-5 2.13596,0.24399 2.88281,0.73191 c 0.75679,0.48795 1.28954,1.17007 1.59825,2.04635 c 1.25468,-1.85215 2.88777,-2.77824 4.89929,-2.77826 c 1.57332,2e-5 2.78321,0.43817 3.62965,1.31445 c 0.8464,0.86635 1.26961,2.20569 1.26964,4.01801 l 0,10.88897 l -2.6737,0 l 0,-9.99276 c -2e-5,-1.07544 -0.0896,-1.84717 -0.26887,-2.31521 c -0.1693,-0.47797 -0.48297,-0.86134 -0.94102,-1.15014 c -0.45808,-0.28876 -0.99581,-0.43315 -1.61318,-0.43317 c -1.1153,2e-5 -2.04139,0.37344 -2.77825,1.12027 c -0.7369,0.7369 -1.10535,1.92189 -1.10533,3.55497 l 0,9.21604 l -2.68864,0 l 0,-10.30643 c -1e-5,-1.19494 -0.21908,-2.09115 -0.65722,-2.68863 c -0.43816,-0.59746 -1.15513,-0.8962 -2.15091,-0.89622 c -0.75681,2e-5 -1.45884,0.19918 -2.10609,0.59748 c -0.63732,0.39833 -1.10036,0.98087 -1.38913,1.74761 c -0.28879,0.76677 -0.43318,1.8721 -0.43317,3.31598 l 0,8.23021 l -2.68864,0"
|
||||
id="path5169"
|
||||
d="M 95.351995,308.52487 C 95.351994,307.50925 95.45551,306.69285 95.662542,306.07565 C 95.873478,305.45457 96.184025,304.97605 96.594182,304.64011 C 97.008243,304.30418 97.527774,304.13621 98.152776,304.1362 C 98.61371,304.13621 99.018006,304.22996 99.365667,304.41745 C 99.713318,304.60105 100.00043,304.86863 100.227,305.22018 C 100.45355,305.56785 100.63129,305.99363 100.7602,306.49753 C 100.8891,306.99753 100.95355,307.67331 100.95356,308.52487 C 100.95355,309.53269 100.85004,310.34714 100.64301,310.96823 C 100.43597,311.58542 100.12543,312.06394 99.71137,312.40378 C 99.301209,312.73972 98.781679,312.90768 98.152776,312.90768 C 97.324649,312.90768 96.674259,312.61081 96.201604,312.01706 C 95.635197,311.30222 95.351994,310.13816 95.351995,308.52487 M 96.435979,308.52487 C 96.435978,309.93503 96.60004,310.87448 96.928167,311.34323 C 97.260196,311.80808 97.668398,312.0405 98.152776,312.0405 C 98.637147,312.0405 99.043397,311.80612 99.371526,311.33737 C 99.703553,310.86862 99.869568,309.93112 99.869573,308.52487 C 99.869568,307.11081 99.703553,306.17136 99.371526,305.70651 C 99.043397,305.24168 98.633241,305.00925 98.141057,305.00925 C 97.65668,305.00925 97.269961,305.21433 96.980901,305.62448 C 96.617618,306.14793 96.435978,307.11472 96.435979,308.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11308"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -142.87223,339.04411 l 0.38835,2.37496 c -0.7568,0.15933 -1.43394,0.23899 -2.03141,0.23899 c -0.97588,0 -1.73268,-0.15435 -2.2704,-0.46304 c -0.53773,-0.3087 -0.91613,-0.71199 -1.1352,-1.20989 c -0.21908,-0.50785 -0.32862,-1.56837 -0.32861,-3.18155 l 0,-9.12642 l -1.97167,0 l 0,-2.09116 l 1.97167,0 l 0,-3.9284 l 2.67369,-1.61318 l 0,5.54158 l 2.70358,0 l 0,2.09116 l -2.70358,0 l 0,9.27579 c 0,0.76676 0.0448,1.25968 0.13444,1.47875 c 0.0996,0.21908 0.25392,0.39334 0.46304,0.52279 c 0.21907,0.12945 0.52776,0.19418 0.92608,0.19418 c 0.29873,0 0.69207,-0.0349 1.18002,-0.10456"
|
||||
id="path5172"
|
||||
d="M 102.2309,306.23386 C 102.2309,305.62058 102.3852,305.0991 102.69379,304.6694 C 103.00238,304.23972 103.44965,304.02488 104.03559,304.02487 C 104.57465,304.02488 105.01996,304.21824 105.37153,304.60495 C 105.72699,304.98777 105.90473,305.55222 105.90473,306.29831 C 105.90473,307.02488 105.72504,307.58542 105.36567,307.97995 C 105.01019,308.37058 104.57074,308.56589 104.04731,308.56589 C 103.52777,308.56589 103.09418,308.37253 102.74653,307.98581 C 102.40278,307.5991 102.2309,307.01511 102.2309,306.23386 M 104.06489,304.75143 C 103.80317,304.75144 103.58442,304.86472 103.40864,305.09128 C 103.23676,305.31785 103.15082,305.73386 103.15082,306.33932 C 103.15082,306.89011 103.23871,307.27878 103.4145,307.50534 C 103.59027,307.728 103.80707,307.83933 104.06489,307.83932 C 104.33051,307.83933 104.54926,307.72605 104.72114,307.49948 C 104.89691,307.27292 104.9848,306.85886 104.98481,306.25729 C 104.9848,305.70261 104.89691,305.31394 104.72114,305.09128 C 104.54535,304.86472 104.3266,304.75144 104.06489,304.75143 M 104.07075,313.07761 L 108.76996,304.02487 L 109.62543,304.02487 L 104.94379,313.07761 L 104.07075,313.07761 M 107.78559,310.74557 C 107.78558,310.12839 107.93988,309.60691 108.24848,309.18112 C 108.55707,308.75144 109.00628,308.53659 109.59614,308.53659 C 110.13519,308.53659 110.5805,308.72995 110.93207,309.11667 C 111.28753,309.49948 111.46527,310.06394 111.46528,310.81003 C 111.46527,311.53659 111.28558,312.09714 110.92621,312.49167 C 110.57074,312.88229 110.12933,313.07761 109.602,313.07761 C 109.08246,313.07761 108.64886,312.88425 108.30121,312.49753 C 107.95746,312.1069 107.78558,311.52292 107.78559,310.74557 M 109.62543,309.26315 C 109.3598,309.26316 109.1391,309.37644 108.96332,309.603 C 108.79144,309.82956 108.7055,310.24558 108.70551,310.85104 C 108.7055,311.39792 108.79339,311.78464 108.96918,312.0112 C 109.14496,312.23776 109.36175,312.35104 109.61957,312.35104 C 109.8891,312.35104 110.1098,312.23776 110.28168,312.0112 C 110.45745,311.78464 110.54534,311.37058 110.54535,310.76901 C 110.54534,310.21433 110.45745,309.82566 110.28168,309.603 C 110.10589,309.37644 109.88714,309.26316 109.62543,309.26315"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11310"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -129.90705,339.49222 c -0.9958,0.84642 -1.95673,1.44389 -2.88281,1.79242 c -0.91614,0.34853 -1.90197,0.52279 -2.9575,0.52279 c -1.74264,0 -3.08197,-0.42321 -4.01801,-1.26963 c -0.93605,-0.85638 -1.40407,-1.94677 -1.40407,-3.27118 c 0,-0.77671 0.17426,-1.48372 0.52279,-2.12103 c 0.35849,-0.64726 0.82153,-1.16507 1.38913,-1.55343 c 0.57756,-0.38835 1.22482,-0.68211 1.94179,-0.88128 c 0.52777,-0.1394 1.3244,-0.27383 2.3899,-0.40329 c 2.17081,-0.2589 3.76906,-0.5676 4.79473,-0.92609 c 0.01,-0.36843 0.0149,-0.60244 0.0149,-0.70203 c -1e-5,-1.09536 -0.25394,-1.8671 -0.76178,-2.31522 c -0.68711,-0.60741 -1.70779,-0.91113 -3.06206,-0.91114 c -1.26466,1e-5 -2.2007,0.22406 -2.80813,0.67216 c -0.59748,0.43816 -1.0406,1.21985 -1.32938,2.34508 l -2.62888,-0.35848 c 0.23898,-1.12523 0.63232,-2.0314 1.18001,-2.71851 c 0.54768,-0.69704 1.33933,-1.22979 2.37496,-1.59824 c 1.03561,-0.37839 2.23554,-0.56759 3.59978,-0.56761 c 1.35427,2e-5 2.45461,0.15935 3.30105,0.47798 c 0.84641,0.31867 1.46877,0.72197 1.8671,1.20989 c 0.39831,0.47799 0.67713,1.08542 0.83647,1.8223 c 0.0896,0.45807 0.13442,1.28458 0.13443,2.47952 l 0,3.58484 c -1e-5,2.49944 0.0547,4.08275 0.16431,4.74992 c 0.11948,0.65723 0.34851,1.28955 0.68709,1.89698 l -2.80813,0 c -0.27883,-0.55764 -0.45807,-1.20988 -0.53773,-1.95672 m -0.22405,-6.00462 c -0.97588,0.39832 -2.43969,0.73689 -4.39143,1.0157 c -1.10534,0.15934 -1.88703,0.33858 -2.34509,0.53773 c -0.45807,0.19917 -0.81158,0.49292 -1.06052,0.88128 c -0.24895,0.3784 -0.37342,0.80161 -0.37342,1.26963 c 0,0.71697 0.26886,1.31445 0.80659,1.79242 c 0.54768,0.47798 1.34431,0.71697 2.3899,0.71697 c 1.03561,0 1.95672,-0.22405 2.76332,-0.67216 c 0.80658,-0.45806 1.39907,-1.08043 1.77748,-1.8671 c 0.28877,-0.60743 0.43316,-1.50364 0.43317,-2.68864 l 0,-0.98583"
|
||||
id="path5175"
|
||||
d="M 115.90668,310.18307 L 115.90668,309.12253 L 119.14692,309.12253 L 119.14692,310.18307 L 115.90668,310.18307"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11312"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -120.75074,341.44894 l -2.49446,0 l 0,-21.89743 l 2.68864,0 l 0,7.81198 c 1.13519,-1.42397 2.58407,-2.13596 4.34663,-2.13598 c 0.97586,2e-5 1.89697,0.19918 2.76331,0.59748 c 0.87629,0.38837 1.59326,0.94104 2.15091,1.65799 c 0.56759,0.70702 1.01071,1.5634 1.32938,2.56914 c 0.31864,1.00576 0.47797,2.08121 0.47798,3.22636 c -1e-5,2.71852 -0.67217,4.81963 -2.01647,6.30336 c -1.34433,1.48373 -2.95751,2.22559 -4.83955,2.22559 c -1.87209,0 -3.34088,-0.7817 -4.40637,-2.34509 l 0,1.9866 m -0.0299,-8.05096 c -10e-6,1.90196 0.2589,3.27615 0.77671,4.12257 c 0.84642,1.38415 1.99158,2.07623 3.43548,2.07622 c 1.17502,1e-5 2.19073,-0.50785 3.04712,-1.52356 c 0.85637,-1.02566 1.28456,-2.54921 1.28457,-4.57068 c -1e-5,-2.07123 -0.41327,-3.59977 -1.23976,-4.58561 c -0.81656,-0.98582 -1.80737,-1.47874 -2.97243,-1.47875 c -1.17504,10e-6 -2.19075,0.51285 -3.04712,1.5385 c -0.85639,1.01571 -1.28458,2.48948 -1.28457,4.42131"
|
||||
id="path5178"
|
||||
d="M 123.35981,310.5112 L 124.46723,310.41745 C 124.54926,310.95651 124.73871,311.36276 125.03559,311.6362 C 125.33637,311.90573 125.6977,312.0405 126.11957,312.0405 C 126.62738,312.0405 127.05707,311.84909 127.40864,311.46628 C 127.76019,311.08347 127.93597,310.57566 127.93598,309.94284 C 127.93597,309.34128 127.76605,308.86667 127.42621,308.51901 C 127.09027,308.17136 126.64887,307.99753 126.10199,307.99753 C 125.76215,307.99753 125.45551,308.07566 125.18207,308.2319 C 124.90863,308.38425 124.69379,308.58347 124.53754,308.82956 L 123.54731,308.70065 L 124.37934,304.28854 L 128.65082,304.28854 L 128.65082,305.29636 L 125.22309,305.29636 L 124.7602,307.60495 C 125.27582,307.24558 125.81684,307.06589 126.38324,307.06589 C 127.13324,307.06589 127.76605,307.32566 128.28168,307.84518 C 128.7973,308.36472 129.05511,309.03269 129.05512,309.84909 C 129.05511,310.62644 128.82855,311.29831 128.37543,311.86472 C 127.82465,312.56003 127.07269,312.90768 126.11957,312.90768 C 125.33832,312.90768 124.69965,312.68893 124.20356,312.25143 C 123.71137,311.81394 123.43012,311.23386 123.35981,310.5112"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11314"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 130.03949,308.52487 C 130.03949,307.50925 130.14301,306.69285 130.35004,306.07565 C 130.56098,305.45457 130.87152,304.97605 131.28168,304.64011 C 131.69574,304.30418 132.21527,304.13621 132.84028,304.1362 C 133.30121,304.13621 133.70551,304.22996 134.05317,304.41745 C 134.40082,304.60105 134.68793,304.86863 134.91449,305.22018 C 135.14105,305.56785 135.31879,305.99363 135.4477,306.49753 C 135.5766,306.99753 135.64105,307.67331 135.64106,308.52487 C 135.64105,309.53269 135.53754,310.34714 135.33051,310.96823 C 135.12347,311.58542 134.81293,312.06394 134.39887,312.40378 C 133.98871,312.73972 133.46918,312.90768 132.84028,312.90768 C 132.01215,312.90768 131.36176,312.61081 130.8891,312.01706 C 130.3227,311.30222 130.03949,310.13816 130.03949,308.52487 M 131.12348,308.52487 C 131.12348,309.93503 131.28754,310.87448 131.61567,311.34323 C 131.9477,311.80808 132.3559,312.0405 132.84028,312.0405 C 133.32465,312.0405 133.7309,311.80612 134.05903,311.33737 C 134.39105,310.86862 134.55707,309.93112 134.55707,308.52487 C 134.55707,307.11081 134.39105,306.17136 134.05903,305.70651 C 133.7309,305.24168 133.32074,305.00925 132.82856,305.00925 C 132.34418,305.00925 131.95746,305.21433 131.6684,305.62448 C 131.30512,306.14793 131.12348,307.11472 131.12348,308.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11316"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 136.97114,305.64792 C 136.97113,305.19871 137.12934,304.8159 137.44574,304.49948 C 137.76606,304.18308 138.14887,304.02488 138.59418,304.02487 C 139.0473,304.02488 139.43207,304.18308 139.74848,304.49948 C 140.06488,304.8159 140.22308,305.19871 140.22309,305.64792 C 140.22308,306.09714 140.06293,306.48191 139.74262,306.80222 C 139.42621,307.11863 139.0434,307.27683 138.59418,307.27682 C 138.14887,307.27683 137.76606,307.11863 137.44574,306.80222 C 137.12934,306.48582 136.97113,306.10105 136.97114,305.64792 M 137.60981,305.64792 C 137.60981,305.92136 137.70551,306.15574 137.89692,306.35104 C 138.09223,306.54246 138.3266,306.63816 138.60004,306.63815 C 138.86957,306.63816 139.10004,306.54246 139.29145,306.35104 C 139.48676,306.15574 139.58441,305.92136 139.58442,305.64792 C 139.58441,305.37449 139.48676,305.14207 139.29145,304.95065 C 139.10004,304.75535 138.86957,304.65769 138.60004,304.65768 C 138.3266,304.65769 138.09223,304.75535 137.89692,304.95065 C 137.70551,305.14207 137.60981,305.37449 137.60981,305.64792"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11318"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 148.08051,309.74948 L 149.21723,310.03659 C 148.97894,310.97019 148.54925,311.68308 147.92817,312.17526 C 147.31097,312.66354 146.55511,312.90768 145.66059,312.90768 C 144.7348,312.90768 143.9809,312.72018 143.39887,312.34518 C 142.82074,311.96628 142.37934,311.4194 142.07465,310.70456 C 141.77387,309.98972 141.62348,309.22214 141.62348,308.40182 C 141.62348,307.5073 141.7934,306.728 142.13324,306.06393 C 142.47699,305.39597 142.96332,304.89011 143.59223,304.54636 C 144.22504,304.19871 144.92035,304.02488 145.67817,304.02487 C 146.53754,304.02488 147.26019,304.24363 147.84614,304.68112 C 148.43207,305.11863 148.84027,305.73386 149.07074,306.52682 L 147.9516,306.7905 C 147.75238,306.1655 147.46332,305.71043 147.08442,305.42526 C 146.7055,305.14011 146.22894,304.99754 145.65473,304.99753 C 144.99457,304.99754 144.44184,305.15574 143.99653,305.47214 C 143.55512,305.78855 143.24457,306.21433 143.06489,306.74948 C 142.8852,307.28074 142.79535,307.82956 142.79535,308.39597 C 142.79535,309.12644 142.90082,309.76511 143.11176,310.31198 C 143.3266,310.85495 143.65863,311.2612 144.10785,311.53073 C 144.55707,311.80026 145.0434,311.93503 145.56684,311.93503 C 146.20355,311.93503 146.74261,311.75144 147.18403,311.38425 C 147.62543,311.01706 147.92425,310.47214 148.08051,309.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11320"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-mem-free">
|
||||
<path
|
||||
d="M 106.08246,327.7612 L 105.02778,327.7612 L 105.02778,321.0405 C 104.77387,321.28269 104.43988,321.52488 104.02582,321.76706 C 103.61567,322.00925 103.24653,322.19089 102.9184,322.31198 L 102.9184,321.29245 C 103.50824,321.01511 104.02387,320.67918 104.46528,320.28464 C 104.90668,319.89011 105.21918,319.5073 105.40278,319.1362 L 106.08246,319.1362 L 106.08246,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11338"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 112.17035,327.7612 L 112.17035,325.70456 L 108.44379,325.70456 L 108.44379,324.73776 L 112.36371,319.17136 L 113.22504,319.17136 L 113.22504,324.73776 L 114.3852,324.73776 L 114.3852,325.70456 L 113.22504,325.70456 L 113.22504,327.7612 L 112.17035,327.7612 M 112.17035,324.73776 L 112.17035,320.86472 L 109.4809,324.73776 L 112.17035,324.73776"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11340"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 115.46918,323.52487 C 115.46918,322.50925 115.5727,321.69285 115.77973,321.07565 C 115.99067,320.45457 116.30121,319.97605 116.71137,319.64011 C 117.12543,319.30418 117.64496,319.13621 118.26996,319.1362 C 118.7309,319.13621 119.13519,319.22996 119.48285,319.41745 C 119.83051,319.60105 120.11762,319.86863 120.34418,320.22018 C 120.57074,320.56785 120.74847,320.99363 120.87739,321.49753 C 121.00629,321.99753 121.07074,322.67331 121.07075,323.52487 C 121.07074,324.53269 120.96722,325.34714 120.7602,325.96823 C 120.55316,326.58542 120.24262,327.06394 119.82856,327.40378 C 119.4184,327.73972 118.89887,327.90768 118.26996,327.90768 C 117.44184,327.90768 116.79145,327.61081 116.31879,327.01706 C 115.75239,326.30222 115.46918,325.13816 115.46918,323.52487 M 116.55317,323.52487 C 116.55317,324.93503 116.71723,325.87448 117.04535,326.34323 C 117.37738,326.80808 117.78559,327.0405 118.26996,327.0405 C 118.75433,327.0405 119.16058,326.80612 119.48871,326.33737 C 119.82074,325.86862 119.98676,324.93112 119.98676,323.52487 C 119.98676,322.11081 119.82074,321.17136 119.48871,320.70651 C 119.16058,320.24168 118.75043,320.00925 118.25825,320.00925 C 117.77387,320.00925 117.38715,320.21433 117.09809,320.62448 C 116.73481,321.14793 116.55317,322.11472 116.55317,323.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11342"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 122.4477,327.7612 L 122.4477,319.17136 L 123.50239,319.17136 L 123.50239,324.06979 L 125.99848,321.53854 L 127.36371,321.53854 L 124.98481,323.84714 L 127.60395,327.7612 L 126.30317,327.7612 L 124.24653,324.57956 L 123.50239,325.2944 L 123.50239,327.7612 L 122.4477,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11344"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-attitude-estimation-algo">
|
||||
<path
|
||||
d="M 79.307073,399.74948 L 80.443792,400.03659 C 80.205503,400.97019 79.775816,401.68308 79.154729,402.17526 C 78.537536,402.66354 77.781677,402.90768 76.887151,402.90768 C 75.961366,402.90768 75.207461,402.72018 74.625432,402.34518 C 74.047306,401.96628 73.6059,401.4194 73.301214,400.70456 C 73.000432,399.98972 72.850041,399.22214 72.850042,398.40182 C 72.850041,397.5073 73.019963,396.728 73.359807,396.06393 C 73.703556,395.39597 74.189884,394.89011 74.818792,394.54636 C 75.451601,394.19871 76.146913,394.02488 76.904729,394.02487 C 77.764099,394.02488 78.486754,394.24363 79.072698,394.68112 C 79.658628,395.11863 80.066831,395.73386 80.297307,396.52682 L 79.178167,396.7905 C 78.978941,396.1655 78.689879,395.71043 78.310979,395.42526 C 77.932067,395.14011 77.455505,394.99754 76.881292,394.99753 C 76.221132,394.99754 75.668398,395.15574 75.223089,395.47214 C 74.78168,395.78855 74.471133,396.21433 74.291448,396.74948 C 74.111759,397.28074 74.021915,397.82956 74.021917,398.39597 C 74.021915,399.12644 74.127384,399.76511 74.338323,400.31198 C 74.553165,400.85495 74.885195,401.2612 75.334417,401.53073 C 75.783632,401.80026 76.26996,401.93503 76.793401,401.93503 C 77.430115,401.93503 77.969177,401.75144 78.410589,401.38425 C 78.851988,401.01706 79.150816,400.47214 79.307073,399.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11368"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 81.322698,399.64987 C 81.322698,398.49753 81.64301,397.64402 82.283636,397.08932 C 82.81879,396.62839 83.471133,396.39793 84.240667,396.39792 C 85.096131,396.39793 85.795349,396.67917 86.338323,397.24167 C 86.881286,397.80027 87.15277,398.5737 87.152776,399.56198 C 87.15277,400.36276 87.031676,400.99362 86.789495,401.45456 C 86.551208,401.91159 86.201599,402.26706 85.740667,402.52097 C 85.283631,402.77487 84.783632,402.90182 84.240667,402.90182 C 83.369571,402.90182 82.664493,402.62253 82.125432,402.06393 C 81.590276,401.50534 81.322698,400.70066 81.322698,399.64987 M 82.406682,399.64987 C 82.406681,400.44675 82.580509,401.0444 82.928167,401.44284 C 83.275821,401.83737 83.71332,402.03464 84.240667,402.03464 C 84.764101,402.03464 85.199647,401.83542 85.547307,401.43698 C 85.894959,401.03855 86.068787,400.43112 86.068792,399.61472 C 86.068787,398.84519 85.893006,398.26316 85.541448,397.86862 C 85.193788,397.47019 84.760194,397.27097 84.240667,397.27097 C 83.71332,397.27097 83.275821,397.46824 82.928167,397.86276 C 82.580509,398.2573 82.406681,398.853 82.406682,399.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11370"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 88.394964,402.7612 L 88.394964,396.53854 L 89.338323,396.53854 L 89.338323,397.41159 C 89.533634,397.10691 89.793399,396.86277 90.11762,396.67917 C 90.441836,396.49167 90.810976,396.39793 91.225042,396.39792 C 91.685975,396.39793 92.062928,396.49363 92.355901,396.68503 C 92.652771,396.87644 92.861755,397.14402 92.982854,397.48776 C 93.475036,396.76121 94.11566,396.39793 94.904729,396.39792 C 95.521909,396.39793 95.996518,396.5698 96.328557,396.91354 C 96.66058,397.25339 96.826595,397.77878 96.826604,398.48972 L 96.826604,402.7612 L 95.777776,402.7612 L 95.777776,398.84128 C 95.777768,398.41941 95.742612,398.11667 95.672307,397.93307 C 95.605893,397.74558 95.482846,397.59519 95.303167,397.4819 C 95.123472,397.36863 94.912535,397.31199 94.670354,397.31198 C 94.232848,397.31199 93.869567,397.45847 93.580511,397.75143 C 93.291442,398.0405 93.146911,398.50534 93.146917,399.14597 L 93.146917,402.7612 L 92.092229,402.7612 L 92.092229,398.71823 C 92.092225,398.24949 92.006287,397.89792 91.834417,397.66354 C 91.662538,397.42917 91.381288,397.31199 90.990667,397.31198 C 90.693789,397.31199 90.418398,397.39011 90.164495,397.54636 C 89.914493,397.70261 89.732852,397.93113 89.619573,398.2319 C 89.50629,398.53269 89.449649,398.96628 89.449651,399.53268 L 89.449651,402.7612 L 88.394964,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11372"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 98.426214,405.14597 L 98.426214,396.53854 L 99.387151,396.53854 L 99.387151,397.34714 C 99.613712,397.03074 99.869571,396.79441 100.15473,396.63815 C 100.43988,396.478 100.78559,396.39793 101.19184,396.39792 C 101.72308,396.39793 102.19183,396.53464 102.59809,396.80807 C 103.00433,397.08152 103.31097,397.46824 103.51801,397.96823 C 103.72504,398.46433 103.82855,399.00925 103.82856,399.603 C 103.82855,400.23972 103.71332,400.81394 103.48285,401.32565 C 103.25629,401.83347 102.92426,402.22409 102.48676,402.49753 C 102.05316,402.76706 101.59613,402.90182 101.11567,402.90182 C 100.7641,402.90182 100.44769,402.82761 100.16645,402.67917 C 99.889102,402.53073 99.660587,402.34323 99.480901,402.11667 L 99.480901,405.14597 L 98.426214,405.14597 M 99.381292,399.68503 C 99.38129,400.48581 99.543399,401.07761 99.86762,401.46042 C 100.19184,401.84323 100.58441,402.03464 101.04535,402.03464 C 101.5141,402.03464 101.91449,401.83737 102.24653,401.44284 C 102.58246,401.0444 102.75043,400.42917 102.75043,399.59714 C 102.75043,398.80417 102.58637,398.21042 102.25824,397.81589 C 101.93402,397.42136 101.54535,397.2241 101.09223,397.22409 C 100.64301,397.2241 100.24457,397.43503 99.896917,397.8569 C 99.553165,398.27488 99.38129,398.88425 99.381292,399.68503"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11374"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 107.32074,401.37253 L 107.32074,399.01706 L 104.98285,399.01706 L 104.98285,398.03268 L 107.32074,398.03268 L 107.32074,395.69479 L 108.31684,395.69479 L 108.31684,398.03268 L 110.65473,398.03268 L 110.65473,399.01706 L 108.31684,399.01706 L 108.31684,401.37253 L 107.32074,401.37253"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11376"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 112.21332,402.7612 L 112.21332,394.17136 L 113.92426,394.17136 L 115.95746,400.25339 C 116.14496,400.8198 116.28168,401.24362 116.36762,401.52487 C 116.46527,401.21237 116.61761,400.75339 116.82465,400.14792 L 118.88129,394.17136 L 120.41059,394.17136 L 120.41059,402.7612 L 119.31489,402.7612 L 119.31489,395.57175 L 116.81879,402.7612 L 115.7934,402.7612 L 113.30903,395.4487 L 113.30903,402.7612 L 112.21332,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11378"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 126.18207,401.99362 C 125.79144,402.32565 125.41449,402.56003 125.05121,402.69675 C 124.69184,402.83347 124.30512,402.90182 123.89106,402.90182 C 123.20746,402.90182 122.68207,402.73581 122.31489,402.40378 C 121.9477,402.06784 121.7641,401.64011 121.7641,401.12057 C 121.7641,400.81589 121.83246,400.53855 121.96918,400.28854 C 122.10981,400.03464 122.29145,399.83152 122.5141,399.67917 C 122.74067,399.52683 122.99457,399.41159 123.27582,399.33347 C 123.48285,399.27878 123.79535,399.22605 124.21332,399.17526 C 125.06488,399.0737 125.69183,398.95261 126.09418,398.81198 C 126.09808,398.66745 126.10004,398.57566 126.10004,398.53659 C 126.10004,398.10691 126.00043,397.80417 125.80121,397.62839 C 125.53168,397.39011 125.13129,397.27097 124.60004,397.27097 C 124.10395,397.27097 123.73676,397.35886 123.49848,397.53464 C 123.2641,397.70652 123.09027,398.01316 122.97699,398.45456 L 121.94574,398.31393 C 122.03949,397.87253 122.19379,397.51706 122.40864,397.24753 C 122.62348,396.9741 122.93402,396.76511 123.34028,396.62057 C 123.74652,396.47214 124.21723,396.39793 124.75239,396.39792 C 125.28363,396.39793 125.71527,396.46043 126.04731,396.58542 C 126.37933,396.71042 126.62347,396.86863 126.77973,397.06003 C 126.93597,397.24753 127.04535,397.48581 127.10785,397.77487 C 127.143,397.95456 127.16058,398.27878 127.16059,398.74753 L 127.16059,400.15378 C 127.16058,401.13425 127.18207,401.75534 127.22504,402.01706 C 127.27191,402.27487 127.36175,402.52292 127.49457,402.7612 L 126.39301,402.7612 C 126.28363,402.54245 126.21332,402.28659 126.18207,401.99362 M 126.09418,399.63815 C 125.71137,399.79441 125.13715,399.92722 124.37153,400.03659 C 123.93793,400.09909 123.63129,400.16941 123.4516,400.24753 C 123.27191,400.32566 123.13324,400.44089 123.03559,400.59323 C 122.93793,400.74167 122.8891,400.90769 122.8891,401.09128 C 122.8891,401.37253 122.99457,401.6069 123.20551,401.7944 C 123.42035,401.9819 123.73285,402.07565 124.14301,402.07565 C 124.54926,402.07565 124.91059,401.98776 125.22699,401.81198 C 125.5434,401.63229 125.77582,401.38815 125.92426,401.07956 C 126.03754,400.84128 126.09418,400.48972 126.09418,400.02487 L 126.09418,399.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11380"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 128.60785,403.27682 L 129.63324,403.42917 C 129.67621,403.74557 129.79535,403.97604 129.99067,404.12057 C 130.25238,404.31589 130.6098,404.41354 131.06293,404.41354 C 131.55121,404.41354 131.92816,404.31589 132.19379,404.12057 C 132.45941,403.92526 132.6391,403.65182 132.73285,403.30026 C 132.78754,403.08542 132.81293,402.63425 132.80903,401.94675 C 132.34808,402.48972 131.77387,402.7612 131.08637,402.7612 C 130.2309,402.7612 129.56879,402.45261 129.10004,401.83542 C 128.63129,401.21823 128.39692,400.478 128.39692,399.61472 C 128.39692,399.02097 128.50434,398.47409 128.71918,397.97409 C 128.93403,397.47019 129.24457,397.08152 129.65082,396.80807 C 130.06098,396.53464 130.54145,396.39793 131.09223,396.39792 C 131.8266,396.39793 132.43207,396.6948 132.90864,397.28854 L 132.90864,396.53854 L 133.88129,396.53854 L 133.88129,401.91745 C 133.88129,402.8862 133.78168,403.57175 133.58246,403.97409 C 133.38715,404.38034 133.07465,404.70065 132.64496,404.93503 C 132.21918,405.1694 131.69379,405.28659 131.06879,405.28659 C 130.3266,405.28659 129.72699,405.11862 129.26996,404.78268 C 128.81293,404.45065 128.59223,403.9487 128.60785,403.27682 M 129.4809,399.53854 C 129.4809,400.35495 129.64301,400.95065 129.96723,401.32565 C 130.29145,401.70065 130.6977,401.88815 131.18598,401.88815 C 131.67035,401.88815 132.0766,401.70261 132.40473,401.33151 C 132.73285,400.95651 132.89691,400.37058 132.89692,399.5737 C 132.89691,398.81199 132.72699,398.23777 132.38715,397.85104 C 132.05121,397.46433 131.64496,397.27097 131.1684,397.27097 C 130.69965,397.27097 130.30121,397.46238 129.97309,397.84518 C 129.64496,398.2241 129.4809,398.78855 129.4809,399.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11382"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 137.69574,401.37253 L 137.69574,399.01706 L 135.35785,399.01706 L 135.35785,398.03268 L 137.69574,398.03268 L 137.69574,395.69479 L 138.69184,395.69479 L 138.69184,398.03268 L 141.02973,398.03268 L 141.02973,399.01706 L 138.69184,399.01706 L 138.69184,401.37253 L 137.69574,401.37253"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11384"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 146.64301,399.39206 L 146.64301,398.38425 L 150.28168,398.37839 L 150.28168,401.56589 C 149.72308,402.0112 149.14691,402.34714 148.55317,402.5737 C 147.95941,402.79636 147.35004,402.90768 146.72504,402.90768 C 145.88129,402.90768 145.11371,402.728 144.42231,402.36862 C 143.73481,402.00534 143.21527,401.4819 142.86371,400.79831 C 142.51215,400.11472 142.33637,399.35105 142.33637,398.50729 C 142.33637,397.67136 142.5102,396.89207 142.85785,396.1694 C 143.20942,395.44285 143.71332,394.90379 144.36957,394.55222 C 145.02582,394.20066 145.78168,394.02488 146.63715,394.02487 C 147.25824,394.02488 147.81879,394.12644 148.31879,394.32956 C 148.82269,394.52879 149.21722,394.80808 149.50239,395.16745 C 149.78753,395.52683 150.00433,395.99558 150.15278,396.5737 L 149.12739,396.85495 C 148.99847,396.41746 148.83832,396.07371 148.64692,395.8237 C 148.4555,395.57371 148.18207,395.37449 147.8266,395.22604 C 147.47113,395.07371 147.0766,394.99754 146.64301,394.99753 C 146.12347,394.99754 145.67426,395.07761 145.29535,395.23776 C 144.91644,395.39402 144.6098,395.60105 144.37543,395.85886 C 144.14496,396.11668 143.96527,396.39988 143.83637,396.70847 C 143.61762,397.23972 143.50824,397.81589 143.50824,398.43698 C 143.50824,399.20261 143.6391,399.84323 143.90082,400.35886 C 144.16645,400.87448 144.55121,401.2573 145.05512,401.50729 C 145.55902,401.75729 146.09418,401.88229 146.66059,401.88229 C 147.15277,401.88229 147.63324,401.78854 148.10199,401.60104 C 148.57074,401.40964 148.92621,401.20651 149.1684,400.99167 L 149.1684,399.39206 L 146.64301,399.39206"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11386"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 151.81684,405.14597 L 151.81684,396.53854 L 152.77778,396.53854 L 152.77778,397.34714 C 153.00434,397.03074 153.2602,396.79441 153.54535,396.63815 C 153.83051,396.478 154.17621,396.39793 154.58246,396.39792 C 155.11371,396.39793 155.58246,396.53464 155.98871,396.80807 C 156.39496,397.08152 156.7016,397.46824 156.90864,397.96823 C 157.11566,398.46433 157.21918,399.00925 157.21918,399.603 C 157.21918,400.23972 157.10394,400.81394 156.87348,401.32565 C 156.64691,401.83347 156.31488,402.22409 155.87739,402.49753 C 155.44379,402.76706 154.98676,402.90182 154.50629,402.90182 C 154.15473,402.90182 153.83832,402.82761 153.55707,402.67917 C 153.27973,402.53073 153.05121,402.34323 152.87153,402.11667 L 152.87153,405.14597 L 151.81684,405.14597 M 152.77192,399.68503 C 152.77192,400.48581 152.93402,401.07761 153.25824,401.46042 C 153.58246,401.84323 153.97504,402.03464 154.43598,402.03464 C 154.90473,402.03464 155.30512,401.83737 155.63715,401.44284 C 155.97308,401.0444 156.14105,400.42917 156.14106,399.59714 C 156.14105,398.80417 155.97699,398.21042 155.64887,397.81589 C 155.32465,397.42136 154.93598,397.2241 154.48285,397.22409 C 154.03363,397.2241 153.6352,397.43503 153.28754,397.8569 C 152.94379,398.27488 152.77192,398.88425 152.77192,399.68503"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11388"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 158.07465,400.90378 L 159.11762,400.73972 C 159.17621,401.15769 159.33832,401.478 159.60395,401.70065 C 159.87348,401.92331 160.24848,402.03464 160.72895,402.03464 C 161.21332,402.03464 161.57269,401.93698 161.80707,401.74167 C 162.04144,401.54245 162.15863,401.31003 162.15864,401.0444 C 162.15863,400.80612 162.05512,400.61862 161.84809,400.4819 C 161.70355,400.38816 161.34418,400.26901 160.76996,400.12448 C 159.99652,399.92917 159.45942,399.7612 159.15864,399.62057 C 158.86176,399.47605 158.6352,399.27878 158.47895,399.02878 C 158.3266,398.77488 158.25043,398.49558 158.25043,398.19089 C 158.25043,397.91355 158.31293,397.65769 158.43793,397.42331 C 158.56684,397.18503 158.74067,396.98777 158.95942,396.83151 C 159.12348,396.71042 159.34613,396.60886 159.62739,396.52682 C 159.91254,396.44089 160.21723,396.39793 160.54145,396.39792 C 161.02973,396.39793 161.45746,396.46824 161.82465,396.60886 C 162.19574,396.74949 162.46918,396.94089 162.64496,397.18307 C 162.82074,397.42136 162.94183,397.74167 163.00824,398.14401 L 161.97699,398.28464 C 161.93012,397.96433 161.7934,397.71433 161.56684,397.53464 C 161.34418,397.35496 161.02777,397.26511 160.61762,397.26511 C 160.13324,397.26511 159.78754,397.34519 159.58051,397.50534 C 159.37348,397.6655 159.26996,397.853 159.26996,398.06784 C 159.26996,398.20456 159.31293,398.32761 159.39887,398.43698 C 159.48481,398.55027 159.61957,398.64402 159.80317,398.71823 C 159.90863,398.7573 160.21918,398.84714 160.73481,398.98776 C 161.4809,399.18698 162.00043,399.35105 162.2934,399.47995 C 162.59027,399.60495 162.82269,399.78855 162.99067,400.03073 C 163.15863,400.27292 163.24261,400.5737 163.24262,400.93307 C 163.24261,401.28464 163.1391,401.61667 162.93207,401.92917 C 162.72894,402.23776 162.43402,402.478 162.04731,402.64987 C 161.66058,402.81784 161.22309,402.90182 160.73481,402.90182 C 159.92621,402.90182 159.30902,402.73386 158.88324,402.39792 C 158.46137,402.06198 158.19184,401.56394 158.07465,400.90378"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11390"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-mag-used">
|
||||
<path
|
||||
d="M 91.418401,413.57761 C 91.418401,412.15183 91.801213,411.0366 92.566839,410.2319 C 93.332461,409.42332 94.320742,409.01902 95.531682,409.01901 C 96.324646,409.01902 97.039489,409.20847 97.676214,409.58737 C 98.312925,409.96629 98.7973,410.49558 99.129339,411.17526 C 99.465268,411.85105 99.633236,412.61863 99.633245,413.478 C 99.633236,414.34909 99.457455,415.12839 99.105901,415.81589 C 98.754331,416.50339 98.256284,417.02487 97.611761,417.38034 C 96.967223,417.7319 96.271911,417.90768 95.525823,417.90768 C 94.717225,417.90768 93.99457,417.71237 93.357854,417.32175 C 92.721134,416.93112 92.238712,416.39792 91.910589,415.72214 C 91.582463,415.04636 91.418401,414.33152 91.418401,413.57761 M 92.590276,413.59518 C 92.590274,414.63034 92.867618,415.44675 93.422307,416.0444 C 93.980898,416.63815 94.680116,416.93503 95.519964,416.93503 C 96.375427,416.93503 97.078551,416.63425 97.629339,416.03268 C 98.184019,415.43112 98.461362,414.57761 98.46137,413.47214 C 98.461362,412.77292 98.342222,412.16355 98.103948,411.64401 C 97.869566,411.12058 97.523863,410.71629 97.066839,410.43112 C 96.613708,410.14207 96.103943,409.99754 95.537542,409.99753 C 94.73285,409.99754 94.039492,410.27488 93.457464,410.82956 C 92.879337,411.38035 92.590274,412.30222 92.590276,413.59518"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11400"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 100.95746,417.7612 L 100.95746,411.53854 L 101.90668,411.53854 L 101.90668,412.42331 C 102.36371,411.73972 103.02387,411.39793 103.88715,411.39792 C 104.26215,411.39793 104.6059,411.46628 104.9184,411.603 C 105.2348,411.73582 105.47113,411.9116 105.62739,412.13034 C 105.78363,412.3491 105.89301,412.60886 105.95551,412.90964 C 105.99457,413.10495 106.0141,413.44675 106.0141,413.93503 L 106.0141,417.7612 L 104.95942,417.7612 L 104.95942,413.97604 C 104.95941,413.54636 104.9184,413.22605 104.83637,413.01511 C 104.75433,412.80027 104.60785,412.63035 104.39692,412.50534 C 104.18988,412.37644 103.94574,412.31199 103.6645,412.31198 C 103.21527,412.31199 102.8266,412.45456 102.49848,412.73972 C 102.17426,413.02488 102.01215,413.56589 102.01215,414.36276 L 102.01215,417.7612 L 100.95746,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11402"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 107.72504,417.7612 L 107.72504,409.17136 L 110.9477,409.17136 C 111.60394,409.17136 112.12933,409.25926 112.52387,409.43503 C 112.9223,409.60691 113.23285,409.87449 113.45551,410.23776 C 113.68207,410.59714 113.79535,410.9741 113.79535,411.36862 C 113.79535,411.73582 113.69574,412.08152 113.49653,412.40573 C 113.2973,412.72995 112.99652,412.99167 112.59418,413.19089 C 113.11371,413.34324 113.51215,413.603 113.7895,413.97018 C 114.07074,414.33738 114.21136,414.77097 114.21137,415.27097 C 114.21136,415.67331 114.12543,416.04831 113.95356,416.39597 C 113.78558,416.73972 113.5766,417.00534 113.3266,417.19284 C 113.0766,417.38034 112.76215,417.52292 112.38325,417.62057 C 112.00824,417.71432 111.5473,417.7612 111.00043,417.7612 L 107.72504,417.7612 M 108.86176,412.78073 L 110.71918,412.78073 C 111.22308,412.78074 111.58441,412.74753 111.80317,412.68112 C 112.09222,412.59519 112.30902,412.45261 112.45356,412.25339 C 112.60199,412.05417 112.67621,411.80417 112.67621,411.50339 C 112.67621,411.21824 112.60785,410.96824 112.47114,410.75339 C 112.33441,410.53464 112.1391,410.38621 111.8852,410.30807 C 111.63129,410.22605 111.19574,410.18504 110.57856,410.18503 L 108.86176,410.18503 L 108.86176,412.78073 M 108.86176,416.74753 L 111.00043,416.74753 C 111.36762,416.74753 111.62543,416.73386 111.77387,416.70651 C 112.03558,416.65964 112.25433,416.58151 112.43012,416.47214 C 112.6059,416.36276 112.75043,416.20456 112.86371,415.99753 C 112.97699,415.78659 113.03363,415.54441 113.03364,415.27097 C 113.03363,414.95066 112.9516,414.67331 112.78754,414.43893 C 112.62347,414.20066 112.39496,414.03464 112.102,413.94089 C 111.81293,413.84324 111.39496,413.79441 110.84809,413.7944 L 108.86176,413.7944 L 108.86176,416.74753"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11404"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 115.2602,414.64987 C 115.2602,413.49753 115.58051,412.64402 116.22114,412.08932 C 116.75629,411.62839 117.40863,411.39793 118.17817,411.39792 C 119.03363,411.39793 119.73285,411.67917 120.27582,412.24167 C 120.81879,412.80027 121.09027,413.5737 121.09028,414.56198 C 121.09027,415.36276 120.96918,415.99362 120.72699,416.45456 C 120.48871,416.91159 120.1391,417.26706 119.67817,417.52097 C 119.22113,417.77487 118.72113,417.90182 118.17817,417.90182 C 117.30707,417.90182 116.60199,417.62253 116.06293,417.06393 C 115.52778,416.50534 115.2602,415.70066 115.2602,414.64987 M 116.34418,414.64987 C 116.34418,415.44675 116.51801,416.0444 116.86567,416.44284 C 117.21332,416.83737 117.65082,417.03464 118.17817,417.03464 C 118.7016,417.03464 119.13715,416.83542 119.48481,416.43698 C 119.83246,416.03855 120.00629,415.43112 120.00629,414.61472 C 120.00629,413.84519 119.83051,413.26316 119.47895,412.86862 C 119.13129,412.47019 118.69769,412.27097 118.17817,412.27097 C 117.65082,412.27097 117.21332,412.46824 116.86567,412.86276 C 116.51801,413.2573 116.34418,413.853 116.34418,414.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11406"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 126.39301,416.99362 C 126.00238,417.32565 125.62543,417.56003 125.26215,417.69675 C 124.90277,417.83347 124.51605,417.90182 124.10199,417.90182 C 123.4184,417.90182 122.89301,417.73581 122.52582,417.40378 C 122.15863,417.06784 121.97504,416.64011 121.97504,416.12057 C 121.97504,415.81589 122.0434,415.53855 122.18012,415.28854 C 122.32074,415.03464 122.50238,414.83152 122.72504,414.67917 C 122.9516,414.52683 123.20551,414.41159 123.48676,414.33347 C 123.69379,414.27878 124.00629,414.22605 124.42426,414.17526 C 125.27582,414.0737 125.90277,413.95261 126.30512,413.81198 C 126.30902,413.66745 126.31097,413.57566 126.31098,413.53659 C 126.31097,413.10691 126.21137,412.80417 126.01215,412.62839 C 125.74262,412.39011 125.34223,412.27097 124.81098,412.27097 C 124.31488,412.27097 123.9477,412.35886 123.70942,412.53464 C 123.47504,412.70652 123.30121,413.01316 123.18793,413.45456 L 122.15668,413.31393 C 122.25043,412.87253 122.40473,412.51706 122.61957,412.24753 C 122.83442,411.9741 123.14496,411.76511 123.55121,411.62057 C 123.95746,411.47214 124.42816,411.39793 124.96332,411.39792 C 125.49457,411.39793 125.92621,411.46043 126.25824,411.58542 C 126.59027,411.71042 126.83441,411.86863 126.99067,412.06003 C 127.14691,412.24753 127.25629,412.48581 127.31879,412.77487 C 127.35394,412.95456 127.37152,413.27878 127.37153,413.74753 L 127.37153,415.15378 C 127.37152,416.13425 127.393,416.75534 127.43598,417.01706 C 127.48285,417.27487 127.57269,417.52292 127.70551,417.7612 L 126.60395,417.7612 C 126.49457,417.54245 126.42426,417.28659 126.39301,416.99362 M 126.30512,414.63815 C 125.9223,414.79441 125.34808,414.92722 124.58246,415.03659 C 124.14887,415.09909 123.84223,415.16941 123.66254,415.24753 C 123.48285,415.32566 123.34418,415.44089 123.24653,415.59323 C 123.14887,415.74167 123.10004,415.90769 123.10004,416.09128 C 123.10004,416.37253 123.20551,416.6069 123.41645,416.7944 C 123.63129,416.9819 123.94379,417.07565 124.35395,417.07565 C 124.76019,417.07565 125.12152,416.98776 125.43793,416.81198 C 125.75433,416.63229 125.98676,416.38815 126.1352,416.07956 C 126.24847,415.84128 126.30512,415.48972 126.30512,415.02487 L 126.30512,414.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11408"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 129.00043,417.7612 L 129.00043,411.53854 L 129.94965,411.53854 L 129.94965,412.4819 C 130.19184,412.0405 130.41449,411.74949 130.61762,411.60886 C 130.82465,411.46824 131.05121,411.39793 131.29731,411.39792 C 131.65277,411.39793 132.0141,411.51121 132.38129,411.73776 L 132.01801,412.71628 C 131.76019,412.56394 131.50238,412.48777 131.24457,412.48776 C 131.0141,412.48777 130.80707,412.55808 130.62348,412.6987 C 130.43988,412.83542 130.30902,413.02683 130.2309,413.27292 C 130.11371,413.64792 130.05512,414.05808 130.05512,414.50339 L 130.05512,417.7612 L 129.00043,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11410"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 137.05707,417.7612 L 137.05707,416.97604 C 136.66254,417.59323 136.08246,417.90182 135.31684,417.90182 C 134.82074,417.90182 134.36371,417.76511 133.94574,417.49167 C 133.53168,417.21823 133.20942,416.83737 132.97895,416.34909 C 132.75239,415.8569 132.6391,415.29245 132.6391,414.65573 C 132.6391,414.03464 132.74262,413.47214 132.94965,412.96823 C 133.15668,412.46042 133.46723,412.07175 133.88129,411.80222 C 134.29535,411.53269 134.75824,411.39793 135.26996,411.39792 C 135.64496,411.39793 135.97894,411.478 136.27192,411.63815 C 136.56488,411.79441 136.80316,411.99949 136.98676,412.25339 L 136.98676,409.17136 L 138.03559,409.17136 L 138.03559,417.7612 L 137.05707,417.7612 M 133.72309,414.65573 C 133.72309,415.45261 133.89106,416.04831 134.22699,416.44284 C 134.56293,416.83737 134.95941,417.03464 135.41645,417.03464 C 135.87738,417.03464 136.26801,416.84714 136.58832,416.47214 C 136.91254,416.09323 137.07465,415.51706 137.07465,414.74362 C 137.07465,413.89206 136.91058,413.26706 136.58246,412.86862 C 136.25433,412.47019 135.85004,412.27097 135.36957,412.27097 C 134.90082,412.27097 134.50824,412.46238 134.19184,412.84518 C 133.87934,413.228 133.72309,413.83152 133.72309,414.65573"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11412"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-gps-type">
|
||||
<path
|
||||
d="M 83.756292,432.7612 L 83.756292,424.17136 L 86.996526,424.17136 C 87.566834,424.17136 88.00238,424.19871 88.303167,424.25339 C 88.725036,424.32371 89.078551,424.45847 89.363714,424.65768 C 89.648863,424.853 89.877379,425.1284 90.049261,425.48386 C 90.225034,425.83933 90.312925,426.22996 90.312932,426.65573 C 90.312925,427.38621 90.080503,428.00535 89.615667,428.51315 C 89.150817,429.01706 88.310974,429.26902 87.096136,429.26901 L 84.893011,429.26901 L 84.893011,432.7612 L 83.756292,432.7612 M 84.893011,428.25534 L 87.113714,428.25534 C 87.848084,428.25535 88.369568,428.11863 88.678167,427.84518 C 88.986754,427.57175 89.141051,427.18699 89.141057,426.69089 C 89.141051,426.33152 89.049254,426.02488 88.865667,425.77097 C 88.685974,425.51316 88.447692,425.34324 88.150823,425.2612 C 87.959412,425.21043 87.605896,425.18504 87.090276,425.18503 L 84.893011,425.18503 L 84.893011,428.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11422"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 91.613714,432.7612 L 91.613714,424.17136 L 92.668401,424.17136 L 92.668401,432.7612 L 91.613714,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11424"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 98.369573,431.99362 C 97.978944,432.32565 97.601991,432.56003 97.238714,432.69675 C 96.879335,432.83347 96.492617,432.90182 96.078557,432.90182 C 95.394962,432.90182 94.869572,432.73581 94.502386,432.40378 C 94.135197,432.06784 93.951604,431.64011 93.951604,431.12057 C 93.951604,430.81589 94.019963,430.53855 94.156682,430.28854 C 94.297307,430.03464 94.478947,429.83152 94.701604,429.67917 C 94.928165,429.52683 95.182071,429.41159 95.463323,429.33347 C 95.670352,429.27878 95.982852,429.22605 96.400823,429.17526 C 97.252382,429.0737 97.879334,428.95261 98.281682,428.81198 C 98.285584,428.66745 98.287537,428.57566 98.287542,428.53659 C 98.287537,428.10691 98.187928,427.80417 97.988714,427.62839 C 97.719178,427.39011 97.318788,427.27097 96.787542,427.27097 C 96.291445,427.27097 95.924258,427.35886 95.685979,427.53464 C 95.451602,427.70652 95.277774,428.01316 95.164495,428.45456 L 94.133245,428.31393 C 94.226994,427.87253 94.381291,427.51706 94.596136,427.24753 C 94.810978,426.9741 95.121525,426.76511 95.527776,426.62057 C 95.934024,426.47214 96.404726,426.39793 96.939886,426.39792 C 97.471132,426.39793 97.902772,426.46043 98.234807,426.58542 C 98.566834,426.71042 98.810974,426.86863 98.967229,427.06003 C 99.123474,427.24753 99.232849,427.48581 99.295354,427.77487 C 99.330505,427.95456 99.348083,428.27878 99.348089,428.74753 L 99.348089,430.15378 C 99.348083,431.13425 99.369567,431.75534 99.412542,432.01706 C 99.459411,432.27487 99.549255,432.52292 99.682073,432.7612 L 98.580511,432.7612 C 98.471131,432.54245 98.400818,432.28659 98.369573,431.99362 M 98.281682,429.63815 C 97.898866,429.79441 97.324647,429.92722 96.559026,430.03659 C 96.12543,430.09909 95.81879,430.16941 95.639104,430.24753 C 95.459415,430.32566 95.320743,430.44089 95.223089,430.59323 C 95.125431,430.74167 95.076603,430.90769 95.076604,431.09128 C 95.076603,431.37253 95.182071,431.6069 95.393011,431.7944 C 95.607852,431.9819 95.920352,432.07565 96.330511,432.07565 C 96.736757,432.07565 97.098085,431.98776 97.414495,431.81198 C 97.730897,431.63229 97.963319,431.38815 98.111761,431.07956 C 98.225037,430.84128 98.281678,430.48972 98.281682,430.02487 L 98.281682,429.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11426"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 103.29145,431.81784 L 103.44379,432.74948 C 103.14691,432.81198 102.88129,432.84323 102.64692,432.84323 C 102.2641,432.84323 101.96723,432.78268 101.75629,432.66159 C 101.54535,432.5405 101.39692,432.38229 101.31098,432.18698 C 101.22504,431.98776 101.18207,431.57175 101.18207,430.93893 L 101.18207,427.35886 L 100.40864,427.35886 L 100.40864,426.53854 L 101.18207,426.53854 L 101.18207,424.99753 L 102.2309,424.36472 L 102.2309,426.53854 L 103.29145,426.53854 L 103.29145,427.35886 L 102.2309,427.35886 L 102.2309,430.99753 C 102.2309,431.29831 102.24848,431.49167 102.28364,431.57761 C 102.3227,431.66354 102.38324,431.7319 102.46528,431.78268 C 102.55121,431.83347 102.6723,431.85886 102.82856,431.85886 C 102.94574,431.85886 103.10004,431.84519 103.29145,431.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11428"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 104.3227,425.38425 L 104.3227,424.17136 L 105.37739,424.17136 L 105.37739,425.38425 L 104.3227,425.38425 M 104.3227,432.7612 L 104.3227,426.53854 L 105.37739,426.53854 L 105.37739,432.7612 L 104.3227,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11430"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 106.98871,432.7612 L 106.98871,426.53854 L 107.93793,426.53854 L 107.93793,427.42331 C 108.39496,426.73972 109.05512,426.39793 109.9184,426.39792 C 110.2934,426.39793 110.63715,426.46628 110.94965,426.603 C 111.26605,426.73582 111.50238,426.9116 111.65864,427.13034 C 111.81488,427.3491 111.92425,427.60886 111.98676,427.90964 C 112.02582,428.10495 112.04535,428.44675 112.04535,428.93503 L 112.04535,432.7612 L 110.99067,432.7612 L 110.99067,428.97604 C 110.99066,428.54636 110.94965,428.22605 110.86762,428.01511 C 110.78558,427.80027 110.6391,427.63035 110.42817,427.50534 C 110.22113,427.37644 109.97699,427.31199 109.69575,427.31198 C 109.24652,427.31199 108.85785,427.45456 108.52973,427.73972 C 108.20551,428.02488 108.0434,428.56589 108.0434,429.36276 L 108.0434,432.7612 L 106.98871,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11432"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 117.74653,432.7612 L 117.74653,431.84714 C 117.26215,432.55026 116.60394,432.90182 115.77192,432.90182 C 115.40473,432.90182 115.06098,432.83151 114.74067,432.69089 C 114.42426,432.55026 114.18793,432.37448 114.03168,432.16354 C 113.87934,431.9487 113.77192,431.68698 113.70942,431.37839 C 113.66645,431.17136 113.64496,430.84323 113.64496,430.39401 L 113.64496,426.53854 L 114.69965,426.53854 L 114.69965,429.98972 C 114.69965,430.5405 114.72113,430.91159 114.7641,431.103 C 114.83051,431.38034 114.97113,431.59909 115.18598,431.75925 C 115.40082,431.9155 115.66645,431.99362 115.98285,431.99362 C 116.29926,431.99362 116.59613,431.91354 116.87348,431.75339 C 117.15082,431.58933 117.34613,431.36862 117.45942,431.09128 C 117.5766,430.81003 117.63519,430.40378 117.6352,429.87253 L 117.6352,426.53854 L 118.68989,426.53854 L 118.68989,432.7612 L 117.74653,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11434"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 120.34809,432.7612 L 120.34809,426.53854 L 121.29145,426.53854 L 121.29145,427.41159 C 121.48676,427.10691 121.74652,426.86277 122.07074,426.67917 C 122.39496,426.49167 122.7641,426.39793 123.17817,426.39792 C 123.6391,426.39793 124.01605,426.49363 124.30903,426.68503 C 124.6059,426.87644 124.81488,427.14402 124.93598,427.48776 C 125.42816,426.76121 126.06879,426.39793 126.85785,426.39792 C 127.47503,426.39793 127.94964,426.5698 128.28168,426.91354 C 128.6137,427.25339 128.77972,427.77878 128.77973,428.48972 L 128.77973,432.7612 L 127.7309,432.7612 L 127.7309,428.84128 C 127.73089,428.41941 127.69574,428.11667 127.62543,427.93307 C 127.55902,427.74558 127.43597,427.59519 127.25629,427.4819 C 127.0766,427.36863 126.86566,427.31199 126.62348,427.31198 C 126.18597,427.31199 125.82269,427.45847 125.53364,427.75143 C 125.24457,428.0405 125.10004,428.50534 125.10004,429.14597 L 125.10004,432.7612 L 124.04535,432.7612 L 124.04535,428.71823 C 124.04535,428.24949 123.95941,427.89792 123.78754,427.66354 C 123.61566,427.42917 123.33441,427.31199 122.94379,427.31198 C 122.64691,427.31199 122.37152,427.39011 122.11762,427.54636 C 121.86762,427.70261 121.68598,427.93113 121.5727,428.2319 C 121.45941,428.53269 121.40277,428.96628 121.40278,429.53268 L 121.40278,432.7612 L 120.34809,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11436"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 129.40668,435.14597 L 129.40668,434.38425 L 136.39692,434.38425 L 136.39692,435.14597 L 129.40668,435.14597"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11438"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 138.78754,432.7612 L 136.42035,426.53854 L 137.53364,426.53854 L 138.86957,430.26511 C 139.0141,430.66745 139.14691,431.08542 139.26801,431.51901 C 139.36176,431.19089 139.49262,430.79636 139.66059,430.33542 L 141.0434,426.53854 L 142.12739,426.53854 L 139.77192,432.7612 L 138.78754,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11440"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 142.9477,430.77487 L 143.96137,430.68112 C 144.04731,431.15769 144.21137,431.50339 144.45356,431.71823 C 144.69574,431.93308 145.00629,432.0405 145.3852,432.0405 C 145.70941,432.0405 145.99262,431.96628 146.23481,431.81784 C 146.4809,431.6694 146.68207,431.47214 146.83832,431.22604 C 146.99457,430.97605 147.12543,430.64011 147.2309,430.21823 C 147.33636,429.79636 147.3891,429.36667 147.3891,428.92917 C 147.3891,428.8823 147.38715,428.81199 147.38324,428.71823 C 147.1723,429.05417 146.88324,429.32761 146.51606,429.53854 C 146.15277,429.74558 145.75824,429.84909 145.33246,429.84909 C 144.62152,429.84909 144.01996,429.59128 143.52778,429.07565 C 143.03559,428.56003 142.78949,427.88035 142.78949,427.03659 C 142.78949,426.1655 143.04535,425.46433 143.55707,424.93307 C 144.0727,424.40183 144.71723,424.13621 145.49067,424.1362 C 146.04926,424.13621 146.55902,424.2866 147.01996,424.58737 C 147.4848,424.88816 147.83636,425.31785 148.07465,425.87643 C 148.31683,426.43113 148.43793,427.23581 148.43793,428.2905 C 148.43793,429.38816 148.31879,430.26316 148.08051,430.9155 C 147.84222,431.56394 147.48676,432.05808 147.0141,432.39792 C 146.54535,432.73776 145.99457,432.90768 145.36176,432.90768 C 144.68988,432.90768 144.14106,432.72214 143.71528,432.35104 C 143.28949,431.97604 143.03363,431.45065 142.9477,430.77487 M 147.26606,426.98386 C 147.26605,426.37839 147.10394,425.89793 146.77973,425.54245 C 146.45941,425.18699 146.07269,425.00925 145.61957,425.00925 C 145.15082,425.00925 144.74262,425.20066 144.39496,425.58347 C 144.04731,425.96628 143.87348,426.46238 143.87348,427.07175 C 143.87348,427.61863 144.03754,428.06394 144.36567,428.40768 C 144.6977,428.74753 145.1059,428.91745 145.59028,428.91745 C 146.07855,428.91745 146.47894,428.74753 146.79145,428.40768 C 147.10785,428.06394 147.26605,427.58933 147.26606,426.98386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11442"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
@ -2146,7 +2570,8 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer45"
|
||||
inkscape:label="oplm-panel"
|
||||
style="display:none">
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer54"
|
||||
@ -2159,7 +2584,7 @@
|
||||
<path
|
||||
sodipodi:nodetypes="ssssccsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 0,-69.01372 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19247 c 0,-2.84918 -2.22975,-5.14293 -5,-5.14293 l -14,0 L 150,311.85494 c 0,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,391.9863 L 163.99993,391.9863 C 166.76993,391.9863 168.99993,389.69255 168.99993,386.84337 L 168.99993,362.6509 C 168.99993,359.80172 166.77018,357.50797 163.99993,357.50797 L 149.99993,357.50797 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="path3908"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -2168,12 +2593,12 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5784"
|
||||
d="m 186.75,341.5 c 0,0.9665 -0.7835,1.75 -1.75,1.75 c -0.9665,0 -1.75,-0.7835 -1.75,-1.75 c 0,-0.9665 0.7835,-1.75 1.75,-1.75 c 0.9665,0 1.75,0.7835 1.75,1.75 z"
|
||||
d="M 186.75,341.5 C 186.75,342.4665 185.9665,343.25 185,343.25 C 184.0335,343.25 183.25,342.4665 183.25,341.5 C 183.25,340.5335 184.0335,339.75 185,339.75 C 185.9665,339.75 186.75,340.5335 186.75,341.5 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
transform="matrix(0.86211044,0,0,0.86194421,0.05837255,65.309165)" />
|
||||
<path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.89999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="m 158.74058,359.8786 l -0.86168,16.16145 l 3.33981,0 l -0.86168,-16.16145 z"
|
||||
d="M 158.74058,359.8786 L 157.8789,376.04005 L 161.21871,376.04005 L 160.35703,359.8786 z"
|
||||
id="path5787"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -2182,7 +2607,7 @@
|
||||
sodipodi:end="7.1558499"
|
||||
sodipodi:start="2.268928"
|
||||
transform="matrix(0.86211044,0,0,0.86194421,-20.308987,63.354658)"
|
||||
d="m 206.05385,346.92456 a 4,4.0625 0 1 1 5.1423,0"
|
||||
d="M 206.05385,346.92456 A 4,4.0625 0 1 1 211.19615,346.92456"
|
||||
sodipodi:ry="4.0625"
|
||||
sodipodi:rx="4"
|
||||
sodipodi:cy="343.8125"
|
||||
@ -2198,7 +2623,7 @@
|
||||
sodipodi:cy="343.8125"
|
||||
sodipodi:rx="4"
|
||||
sodipodi:ry="4.0625"
|
||||
d="m 206.625,347.33073 a 4,4.0625 0 1 1 4,0"
|
||||
d="M 206.625,347.33073 A 4,4.0625 0 1 1 210.625,347.33073"
|
||||
transform="matrix(1.4009295,0,0,1.4098503,-132.61235,-125.01936)"
|
||||
sodipodi:start="2.0943951"
|
||||
sodipodi:end="7.3303829"
|
||||
@ -2243,7 +2668,7 @@
|
||||
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)" />
|
||||
<path
|
||||
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
|
||||
d="m 50.19341,295.51093 a 52.5,52.5 0 0 1 48.677155,19.66684"
|
||||
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
sodipodi:ry="52.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:cy="347.5"
|
||||
@ -2258,11 +2683,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4781"
|
||||
d="m 114.48102,306.62821 l -1.06067,8.65276"
|
||||
d="M 114.48102,306.62821 L 113.42035,315.28097"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 124.20875,308.70221 l -2.54265,8.3358"
|
||||
d="M 124.20875,308.70221 L 121.6661,317.03801"
|
||||
id="path4783"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2270,11 +2695,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4785"
|
||||
d="m 133.42882,312.44292 l -3.95142,7.77485"
|
||||
d="M 133.42882,312.44292 L 129.4774,320.21777"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 141.8612,317.73671 l -5.24019,6.97278"
|
||||
d="M 141.8612,317.73671 L 136.62101,324.70949"
|
||||
id="path4787"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2282,11 +2707,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4789"
|
||||
d="m 149.24954,324.42277 l -6.3686,5.9558"
|
||||
d="M 149.24954,324.42277 L 142.88094,330.37857"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 155.36948,332.29788 l -7.3231,4.72998"
|
||||
d="M 155.36948,332.29788 L 148.04638,337.02786"
|
||||
id="path4791"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2305,7 +2730,7 @@
|
||||
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 104.54096,306.2803 l 0.45466,8.7165"
|
||||
d="M 104.54096,306.2803 L 104.99562,314.9968"
|
||||
id="path4795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2313,11 +2738,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4797"
|
||||
d="m 98.60121,306.91389 l 1.360788,8.62041"
|
||||
d="M 98.60121,306.91389 L 99.961998,315.5343"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 92.75868,308.1648 l 2.252127,8.43016"
|
||||
d="M 92.75868,308.1648 L 95.010807,316.59496"
|
||||
id="path4799"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2325,11 +2750,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4801"
|
||||
d="m 87.076675,310.01949 l 3.118798,8.1479"
|
||||
d="M 87.076675,310.01949 L 90.195473,318.16739"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 81.62074,312.46734 l 3.94777,7.76874"
|
||||
d="M 81.62074,312.46734 L 85.56851,320.23608"
|
||||
id="path4803"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2337,11 +2762,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4805"
|
||||
d="m 76.44715,315.47142 l 4.734393,7.30915"
|
||||
d="M 76.44715,315.47142 L 81.181543,322.78057"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 71.613793,319.00235 l 5.470653,6.77253"
|
||||
d="M 71.613793,319.00235 L 77.084446,325.77488"
|
||||
id="path4807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2349,11 +2774,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4809"
|
||||
d="m 67.173673,323.02142 l 6.15024,6.165"
|
||||
d="M 67.173673,323.02142 L 73.323913,329.18642"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 63.175388,327.48461 l 6.765776,5.49142"
|
||||
d="M 63.175388,327.48461 L 69.941164,332.97603"
|
||||
id="path4811"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2361,7 +2786,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4813"
|
||||
d="m 59.662758,332.34302 l 7.329767,4.72019"
|
||||
d="M 59.662758,332.34302 L 66.992525,337.06321"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:open="true"
|
||||
@ -2384,7 +2809,7 @@
|
||||
sodipodi:cy="347.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:ry="52.5"
|
||||
d="m 11.14525,322.85275 a 52.5,52.5 0 0 1 87.725315,-7.67498"
|
||||
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
transform="matrix(0.9168972,0.08021811,-0.08062108,0.92150318,82.802213,38.659321)"
|
||||
sodipodi:start="3.6302848"
|
||||
sodipodi:end="5.6199602"
|
||||
@ -2392,60 +2817,60 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4856"
|
||||
d="m 66.992525,337.06321 l -3.413447,-2.19817"
|
||||
d="M 66.992525,337.06321 L 63.579078,334.86504"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4858"
|
||||
d="m 105,315.00001 l -0.21402,-4.06432"
|
||||
d="M 105,315.00001 L 104.78598,310.93569"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 57.090277,332.13336 l 0.294929,-0.57231 c 0.459228,0.22297 0.800482,0.16895 1.023755,-0.16212 c 0.110621,-0.16403 0.155152,-0.32165 0.133502,-0.47294 c -0.02312,-0.15227 -0.09805,-0.27116 -0.224804,-0.35664 c -0.07455,-0.0503 -0.148988,-0.0766 -0.223299,-0.079 c -0.07424,-0.002 -0.150552,0.0186 -0.228557,0.0639 c -0.07939,0.0443 -0.245849,0.16827 -0.49886,0.37294 c -0.225949,0.18388 -0.416194,0.30177 -0.570595,0.35384 c -0.154335,0.0523 -0.319671,0.0651 -0.495577,0.0399 c -0.176438,-0.0278 -0.341456,-0.0936 -0.495044,-0.19724 c -0.178933,-0.12069 -0.312815,-0.26957 -0.401646,-0.44664 c -0.08784,-0.17857 -0.119963,-0.36408 -0.09651,-0.55649 c 0.02348,-0.19244 0.106139,-0.39376 0.247948,-0.60401 c 0.213233,-0.3161 0.465429,-0.50505 0.756576,-0.56683 c 0.291183,-0.0618 0.599809,0.01 0.925942,0.21451 l -0.337512,0.56312 c -0.192037,-0.0948 -0.34975,-0.12635 -0.473143,-0.0946 c -0.123372,0.0318 -0.234415,0.12061 -0.332905,0.26685 c -0.0986,0.14608 -0.143923,0.27933 -0.136108,0.39958 c 0.0079,0.12028 0.05723,0.21109 0.148183,0.27243 c 0.08948,0.0604 0.188908,0.0754 0.298315,0.045 c 0.10935,-0.0305 0.287661,-0.14982 0.534695,-0.35855 c 0.263114,-0.21954 0.479354,-0.36005 0.648768,-0.42154 c 0.168943,-0.064 0.34439,-0.0812 0.526303,-0.0519 c 0.180439,0.0284 0.369061,0.10901 0.565882,0.24177 c 0.284805,0.19211 0.464781,0.4415 0.539933,0.7482 c 0.07617,0.30521 -0.01147,0.6442 -0.262907,1.01697 c -0.444548,0.65907 -1.06711,0.77276 -1.867298,0.34156"
|
||||
d="M 57.090277,332.13336 L 57.385206,331.56105 C 57.844434,331.78402 58.185688,331.73 58.408961,331.39893 C 58.519582,331.2349 58.564113,331.07728 58.542463,330.92599 C 58.519343,330.77372 58.444413,330.65483 58.317659,330.56935 C 58.243109,330.51905 58.168671,330.49275 58.09436,330.49035 C 58.02012,330.48835 57.943808,330.50895 57.865803,330.55425 C 57.786413,330.59855 57.619954,330.72252 57.366943,330.92719 C 57.140994,331.11107 56.950749,331.22896 56.796348,331.28103 C 56.642013,331.33333 56.476677,331.34613 56.300771,331.32093 C 56.124333,331.29313 55.959315,331.22733 55.805727,331.12369 C 55.626794,331.003 55.492912,330.85412 55.404081,330.67705 C 55.316241,330.49848 55.284118,330.31297 55.307571,330.12056 C 55.331051,329.92812 55.41371,329.7268 55.555519,329.51655 C 55.768752,329.20045 56.020948,329.0115 56.312095,328.94972 C 56.603278,328.88792 56.911904,328.95972 57.238037,329.16423 L 56.900525,329.72735 C 56.708488,329.63255 56.550775,329.601 56.427382,329.63275 C 56.30401,329.66455 56.192967,329.75336 56.094477,329.8996 C 55.995877,330.04568 55.950554,330.17893 55.958369,330.29918 C 55.966269,330.41946 56.015599,330.51027 56.106552,330.57161 C 56.196032,330.63201 56.29546,330.64701 56.404867,330.61661 C 56.514217,330.58611 56.692528,330.46679 56.939562,330.25806 C 57.202676,330.03852 57.418916,329.89801 57.58833,329.83652 C 57.757273,329.77252 57.93272,329.75532 58.114633,329.78462 C 58.295072,329.81302 58.483694,329.89363 58.680515,330.02639 C 58.96532,330.2185 59.145296,330.46789 59.220448,330.77459 C 59.296618,331.0798 59.208978,331.41879 58.957541,331.79156 C 58.512993,332.45063 57.890431,332.56432 57.090243,332.13312"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5127"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 62.731555,326.47947 l -0.57751,0.68823 l -3.168915,-2.65904 c 0.07334,0.50008 0.03638,0.97559 -0.110872,1.42655 l -0.763056,-0.64027 c 0.0829,-0.25679 0.110817,-0.57162 0.08375,-0.94448 c -0.02908,-0.37454 -0.140809,-0.71137 -0.335152,-1.01045 l 0.467031,-0.55658 l 4.404754,3.69603"
|
||||
d="M 62.731555,326.47947 L 62.154045,327.1677 L 58.98513,324.50866 C 59.05847,325.00874 59.02151,325.48425 58.874258,325.93521 L 58.111202,325.29494 C 58.194102,325.03815 58.222019,324.72332 58.194952,324.35046 C 58.165872,323.97592 58.054143,323.63909 57.8598,323.34001 L 58.326831,322.78343 L 62.731585,326.47946"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5129"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 67.130182,320.50533 l 0.708236,0.7334 l -2.270422,2.19251 c -0.243386,-0.30076 -0.423557,-0.63542 -0.540517,-1.00397 c -0.116947,-0.3722 -0.191741,-0.93525 -0.224668,-1.68907 c -0.02821,-0.59905 -0.06472,-0.98736 -0.10951,-1.16496 c -0.06361,-0.26076 -0.176788,-0.47546 -0.339607,-0.64407 c -0.173666,-0.17982 -0.345081,-0.27673 -0.51428,-0.29074 c -0.169191,-0.014 -0.319312,0.0426 -0.450475,0.16895 c -0.286603,0.27678 -0.234027,0.64051 0.157755,1.0912 l -0.719438,0.54273 c -0.36588,-0.45761 -0.54731,-0.87791 -0.544315,-1.26093 c 0.0049,-0.38484 0.168412,-0.73283 0.490624,-1.04397 c 0.354043,-0.34191 0.732218,-0.48451 1.134578,-0.42774 c 0.402347,0.0568 0.747335,0.23405 1.034967,0.5319 c 0.162815,0.16861 0.297672,0.35513 0.404591,0.5596 c 0.107021,0.20076 0.190516,0.42784 0.250543,0.6812 c 0.05826,0.25147 0.09617,0.60942 0.113863,1.07386 c 0.01819,0.43495 0.03537,0.71704 0.05153,0.84624 c 0.01811,0.12738 0.04459,0.24297 0.07963,0.3467 l 1.28694,-1.2428"
|
||||
d="M 67.130182,320.50533 L 67.838418,321.23873 L 65.567996,323.43124 C 65.32461,323.13048 65.144439,322.79582 65.027479,322.42727 C 64.910532,322.05507 64.835738,321.49202 64.802811,320.7382 C 64.774601,320.13915 64.738091,319.75084 64.693301,319.57324 C 64.629691,319.31248 64.516513,319.09778 64.353694,318.92917 C 64.180028,318.74935 64.008613,318.65244 63.839414,318.63843 C 63.670223,318.62443 63.520102,318.68103 63.388939,318.80738 C 63.102336,319.08416 63.154912,319.44789 63.546694,319.89858 L 62.827256,320.44131 C 62.461376,319.9837 62.279946,319.5634 62.282941,319.18038 C 62.287841,318.79554 62.451353,318.44755 62.773565,318.13641 C 63.127608,317.7945 63.505783,317.6519 63.908143,317.70867 C 64.31049,317.76547 64.655478,317.94272 64.94311,318.24057 C 65.105925,318.40918 65.240782,318.5957 65.347701,318.80017 C 65.454722,319.00093 65.538217,319.22801 65.598244,319.48137 C 65.656504,319.73284 65.694414,320.09079 65.712107,320.55523 C 65.730297,320.99018 65.747477,321.27227 65.763637,321.40147 C 65.781747,321.52885 65.808227,321.64444 65.843267,321.74817 L 67.130207,320.50537"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5131"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 68.69671,318.05921 l 0.607069,-0.63788 c 0.185212,0.199 0.371153,0.31645 0.557842,0.35236 c 0.186671,0.0359 0.346717,0.002 0.480104,-0.10245 c 0.145722,-0.11375 0.216738,-0.2767 0.213056,-0.48867 c -0.0037,-0.21194 -0.09767,-0.43592 -0.282059,-0.67192 c -0.171545,-0.21956 -0.354449,-0.35427 -0.548701,-0.4041 c -0.194241,-0.0498 -0.360108,-0.021 -0.497595,0.0865 c -0.09028,0.0706 -0.181154,0.17632 -0.272724,0.31713 l -0.473764,-0.76503 c 0.185745,-0.13865 0.292037,-0.30086 0.318585,-0.48685 c 0.02449,-0.18436 -0.03617,-0.36993 -0.182139,-0.55667 c -0.121844,-0.15594 -0.255208,-0.24839 -0.400073,-0.27731 c -0.144884,-0.0289 -0.276816,0.003 -0.395836,0.0961 c -0.119063,0.0929 -0.182578,0.22525 -0.190644,0.39683 c -0.0076,0.16788 0.0581,0.35776 0.197205,0.56964 l -0.76147,0.3768 c -0.254534,-0.4654 -0.356256,-0.8684 -0.305161,-1.20908 c 0.05111,-0.34064 0.226467,-0.62801 0.526077,-0.86209 c 0.336566,-0.2629 0.69711,-0.35131 1.081708,-0.26509 c 0.386637,0.0846 0.693794,0.27258 0.921458,0.56397 c 0.153912,0.19701 0.24745,0.40979 0.280592,0.63834 c 0.03522,0.22697 0.01004,0.46969 -0.0755,0.7282 c 0.250707,-0.10619 0.51431,-0.11549 0.791001,-0.0281 c 0.278838,0.0862 0.528887,0.27089 0.750136,0.55406 c 0.322263,0.41247 0.466072,0.85035 0.431452,1.31364 c -0.03417,0.45961 -0.220561,0.82169 -0.559158,1.08623 c -0.324208,0.25336 -0.68821,0.35424 -1.091895,0.30284 c -0.40164,-0.053 -0.774859,-0.26213 -1.119624,-0.62726"
|
||||
d="M 68.69671,318.05921 L 69.303779,317.42133 C 69.488991,317.62033 69.674932,317.73778 69.861621,317.77369 C 70.048292,317.80959 70.208338,317.77569 70.341725,317.67124 C 70.487447,317.55749 70.558463,317.39454 70.554781,317.18257 C 70.551081,316.97063 70.457111,316.74665 70.272722,316.51065 C 70.101177,316.29109 69.918273,316.15638 69.724021,316.10655 C 69.52978,316.05675 69.363913,316.08555 69.226426,316.19305 C 69.136146,316.26365 69.045272,316.36937 68.953702,316.51018 L 68.479938,315.74515 C 68.665683,315.6065 68.771975,315.44429 68.798523,315.2583 C 68.823013,315.07394 68.762353,314.88837 68.616384,314.70163 C 68.49454,314.54569 68.361176,314.45324 68.216311,314.42432 C 68.071427,314.39542 67.939495,314.42732 67.820475,314.52042 C 67.701412,314.61332 67.637897,314.74567 67.629831,314.91725 C 67.622231,315.08513 67.687931,315.27501 67.827036,315.48689 L 67.065566,315.86369 C 66.811032,315.39829 66.70931,314.99529 66.760405,314.65461 C 66.811515,314.31397 66.986872,314.0266 67.286482,313.79252 C 67.623048,313.52962 67.983592,313.44121 68.36819,313.52743 C 68.754827,313.61203 69.061984,313.80001 69.289648,314.0914 C 69.44356,314.28841 69.537098,314.50119 69.57024,314.72974 C 69.60546,314.95671 69.58028,315.19943 69.49474,315.45794 C 69.745447,315.35175 70.00905,315.34245 70.285741,315.42984 C 70.564579,315.51604 70.814628,315.70073 71.035877,315.9839 C 71.35814,316.39637 71.501949,316.83425 71.467329,317.29754 C 71.433159,317.75715 71.246768,318.11923 70.908171,318.38377 C 70.583963,318.63713 70.219961,318.73801 69.816276,318.68661 C 69.414636,318.63361 69.041417,318.42448 68.696652,318.05935"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5133"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 75.542127,314.84946 l -0.61065,-0.97724 l -1.629846,1.01842 l -0.509218,-0.81492 l -0.201255,-4.16257 l 0.642661,-0.40159 l 1.925098,3.08081 l 0.493592,-0.30842 l 0.511288,0.81823 l -0.493594,0.30842 l 0.610652,0.97724 l -0.738728,0.46162 m -1.121939,-1.79548 l -1.037068,-1.65966 l 0.122766,2.23098 l 0.914302,-0.57132"
|
||||
d="M 75.542127,314.84946 L 74.931477,313.87222 L 73.301631,314.89064 L 72.792413,314.07572 L 72.591158,309.91315 L 73.233819,309.51156 L 75.158917,312.59237 L 75.652509,312.28395 L 76.163797,313.10218 L 75.670203,313.4106 L 76.280855,314.38784 L 75.542127,314.84946 M 74.420188,313.05398 L 73.38312,311.39432 L 73.505886,313.6253 L 74.420188,313.05398"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5135"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 79.003498,310.83481 l 0.757855,-0.49565 c 0.130665,0.21442 0.285892,0.35745 0.465712,0.42911 c 0.179821,0.0717 0.339947,0.0732 0.480379,0.005 c 0.166193,-0.081 0.268982,-0.23266 0.308466,-0.45467 c 0.03831,-0.22442 -0.02587,-0.50748 -0.192528,-0.84921 c -0.157547,-0.323 -0.333669,-0.53263 -0.528382,-0.62889 c -0.192378,-0.0974 -0.379847,-0.10157 -0.562421,-0.0126 c -0.231714,0.11304 -0.378958,0.33985 -0.441716,0.68048 l -0.713058,0.20432 l -0.892267,-2.8809 l 2.138145,-1.04285 l 0.450355,0.92336 l -1.523734,0.74318 l 0.296443,0.93759 c 0.128918,-0.19903 0.286995,-0.34423 0.474241,-0.43556 c 0.332353,-0.16215 0.678354,-0.16853 1.037915,-0.0195 c 0.455824,0.19201 0.817302,0.56187 1.084437,1.10957 c 0.22033,0.45175 0.297723,0.92827 0.232236,1.42961 c -0.06317,0.50017 -0.326476,0.86328 -0.789913,1.08932 c -0.374495,0.18267 -0.747515,0.21389 -1.119013,0.0938 c -0.370316,-0.12362 -0.691382,-0.39874 -0.9632,-0.82535"
|
||||
d="M 79.003498,310.83481 L 79.761353,310.33916 C 79.892018,310.55358 80.047245,310.69661 80.227065,310.76827 C 80.406886,310.83997 80.567012,310.84147 80.707444,310.77327 C 80.873637,310.69227 80.976426,310.54061 81.01591,310.3186 C 81.05422,310.09418 80.99004,309.81112 80.823382,309.46939 C 80.665835,309.14639 80.489713,308.93676 80.295,308.8405 C 80.102622,308.7431 79.915153,308.73893 79.732579,308.8279 C 79.500865,308.94094 79.353621,309.16775 79.290863,309.50838 L 78.577805,309.7127 L 77.685538,306.8318 L 79.823683,305.78895 L 80.274038,306.71231 L 78.750304,307.45549 L 79.046747,308.39308 C 79.175665,308.19405 79.333742,308.04885 79.520988,307.95752 C 79.853341,307.79537 80.199342,307.78899 80.558903,307.93802 C 81.014727,308.13003 81.376205,308.49989 81.64334,309.04759 C 81.86367,309.49934 81.941063,309.97586 81.875576,310.4772 C 81.812406,310.97737 81.5491,311.34048 81.085663,311.56652 C 80.711168,311.74919 80.338148,311.78041 79.96665,311.66032 C 79.596334,311.5367 79.275268,311.26158 79.00345,310.83497"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5137"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 86.417599,304.43696 l -0.778484,0.40804 c -0.185223,-0.38706 -0.418547,-0.5294 -0.699963,-0.42697 c -0.183528,0.0668 -0.299961,0.2228 -0.349281,0.468 c -0.04687,0.2443 0.02467,0.67692 0.214645,1.29782 c 0.05001,-0.19001 0.126048,-0.34656 0.228136,-0.46963 c 0.1021,-0.12302 0.231437,-0.21309 0.388054,-0.2701 c 0.345044,-0.12556 0.704815,-0.0736 1.079338,0.15587 c 0.373624,0.22705 0.657521,0.60732 0.851691,1.14078 c 0.206634,0.56773 0.232906,1.06255 0.07887,1.48442 c -0.154062,0.4219 -0.431758,0.70587 -0.833082,0.85194 c -0.440491,0.16028 -0.88243,0.0847 -1.325991,-0.22822 c -0.441953,-0.31579 -0.839732,-0.95946 -1.19333,-1.93096 c -0.358945,-0.98619 -0.466747,-1.75063 -0.3234,-2.29333 c 0.143346,-0.54268 0.451165,-0.89998 0.923461,-1.07188 c 0.325463,-0.11847 0.64006,-0.10689 0.943804,0.0347 c 0.305295,0.13831 0.570474,0.42146 0.795541,0.84947 m -1.093445,2.94617 c 0.123804,0.34015 0.281056,0.57806 0.471775,0.71373 c 0.192268,0.13232 0.36916,0.1691 0.530672,0.11031 c 0.156615,-0.057 0.259153,-0.17882 0.307591,-0.36553 c 0.05089,-0.18758 0.01444,-0.45145 -0.109372,-0.79159 c -0.128256,-0.35237 -0.278065,-0.58884 -0.449412,-0.70938 c -0.171355,-0.12054 -0.340233,-0.15052 -0.506637,-0.09 c -0.161511,0.0588 -0.270503,0.18572 -0.326948,0.38088 c -0.05645,0.19515 -0.02901,0.44566 0.08231,0.75154"
|
||||
d="M 86.417599,304.43696 L 85.639115,304.845 C 85.453892,304.45794 85.220568,304.3156 84.939152,304.41803 C 84.755624,304.48483 84.639191,304.64083 84.589871,304.88603 C 84.543001,305.13033 84.614541,305.56295 84.804516,306.18385 C 84.854526,305.99384 84.930564,305.83729 85.032652,305.71422 C 85.134752,305.5912 85.264089,305.50113 85.420706,305.44412 C 85.76575,305.31856 86.125521,305.37052 86.500044,305.59999 C 86.873668,305.82704 87.157565,306.20731 87.351735,306.74077 C 87.558369,307.3085 87.584641,307.80332 87.430605,308.22519 C 87.276543,308.64709 86.998847,308.93106 86.597523,309.07713 C 86.157032,309.23741 85.715093,309.16183 85.271532,308.84891 C 84.829579,308.53312 84.4318,307.88945 84.078202,306.91795 C 83.719257,305.93176 83.611455,305.16732 83.754802,304.62462 C 83.898148,304.08194 84.205967,303.72464 84.678263,303.55274 C 85.003726,303.43427 85.318323,303.44585 85.622067,303.58744 C 85.927362,303.72575 86.192541,304.0089 86.417608,304.43691 M 85.324163,307.38308 C 85.447967,307.72323 85.605219,307.96114 85.795938,308.09681 C 85.988206,308.22913 86.165098,308.26591 86.32661,308.20712 C 86.483225,308.15012 86.585763,308.0283 86.634201,307.84159 C 86.685091,307.65401 86.648641,307.39014 86.524829,307.05 C 86.396573,306.69763 86.246764,306.46116 86.075417,306.34062 C 85.904062,306.22008 85.735184,306.1901 85.56878,306.25062 C 85.407269,306.30942 85.298277,306.43634 85.241832,306.6315 C 85.185382,306.82665 85.212822,307.07716 85.324142,307.38304"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5139"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 90.208876,302.71697 l -0.246646,-0.98925 l 2.98669,-0.74466 l 0.19278,0.7732 c -0.171393,0.35674 -0.315386,0.83952 -0.431986,1.4483 c -0.114704,0.60564 -0.163737,1.23785 -0.147098,1.89662 c 0.01853,0.65562 0.09112,1.23737 0.217753,1.74527 l -0.841429,0.20978 c -0.176349,-0.7934 -0.241203,-1.61326 -0.194563,-2.45958 c 0.04664,-0.84632 0.196833,-1.63794 0.450573,-2.37486 l -1.986074,0.49518"
|
||||
d="M 90.208876,302.71697 L 89.96223,301.72772 L 92.94892,300.98306 L 93.1417,301.75626 C 92.970307,302.113 92.826314,302.59578 92.709714,303.20456 C 92.59501,303.8102 92.545977,304.44241 92.562616,305.10118 C 92.581146,305.7568 92.653736,306.33855 92.780369,306.84645 L 91.93894,307.05623 C 91.762591,306.26283 91.697737,305.44297 91.744377,304.59665 C 91.791017,303.75033 91.94121,302.95871 92.19495,302.22179 L 90.208876,302.71697"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5141"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 97.182972,302.64934 c -0.235143,-0.0827 -0.421936,-0.21419 -0.560371,-0.39459 c -0.138433,-0.1804 -0.227039,-0.40857 -0.26582,-0.6845 c -0.0627,-0.44615 0.01383,-0.81849 0.229583,-1.11705 c 0.215397,-0.30114 0.537134,-0.48178 0.965221,-0.54195 c 0.45387,-0.0638 0.819365,0.0295 1.096486,0.27981 c 0.276754,0.24775 0.443585,0.57406 0.500488,0.97894 c 0.03878,0.27592 0.01446,0.52392 -0.07296,0.74395 c -0.0852,0.21709 -0.219654,0.39246 -0.403362,0.5261 c 0.283742,0.0916 0.507859,0.24552 0.672361,0.4617 c 0.164136,0.21361 0.270132,0.49061 0.317972,0.83102 c 0.04931,0.35072 0.02697,0.66942 -0.06681,0.9561 c -0.09133,0.28631 -0.241666,0.51653 -0.451248,0.69061 c -0.209582,0.17409 -0.457497,0.28126 -0.743745,0.32149 c -0.448716,0.0631 -0.841812,-0.0395 -1.179289,-0.30762 c -0.335262,-0.27109 -0.539859,-0.66967 -0.613794,-1.19575 c -0.04784,-0.3404 -0.02192,-0.64251 0.07774,-0.90636 c 0.09967,-0.26383 0.265511,-0.47779 0.497536,-0.6419 m 0.02796,-1.12025 c 0.03117,0.22177 0.106663,0.38473 0.226492,0.48886 c 0.122402,0.10376 0.263546,0.14442 0.423438,0.12193 c 0.162467,-0.0228 0.288226,-0.101 0.377289,-0.23449 c 0.08906,-0.13348 0.118007,-0.31112 0.08684,-0.5329 c -0.03008,-0.21404 -0.106329,-0.37294 -0.228727,-0.47671 c -0.11983,-0.1041 -0.258394,-0.14514 -0.415701,-0.12303 c -0.165044,0.0232 -0.291917,0.10283 -0.380614,0.2389 c -0.08906,0.13349 -0.118733,0.30596 -0.08901,0.51742 m 0.260178,2.44066 c 0.04277,0.3043 0.140215,0.52992 0.292356,0.67684 c 0.152133,0.14693 0.318461,0.20771 0.49898,0.18234 c 0.180513,-0.0254 0.320327,-0.12521 0.419421,-0.29958 c 0.101668,-0.1747 0.1304,-0.41937 0.08619,-0.73397 c -0.03806,-0.27079 -0.131325,-0.47595 -0.27979,-0.61549 c -0.145892,-0.13992 -0.310387,-0.19701 -0.493481,-0.17127 c -0.180517,0.0254 -0.322728,0.12685 -0.426614,0.30452 c -0.101679,0.17471 -0.134034,0.39358 -0.09706,0.65661"
|
||||
d="M 97.182972,302.64934 C 96.947829,302.56664 96.761036,302.43515 96.622601,302.25475 C 96.484168,302.07435 96.395562,301.84618 96.356781,301.57025 C 96.294081,301.1241 96.370611,300.75176 96.586364,300.4532 C 96.801761,300.15206 97.123498,299.97142 97.551585,299.91125 C 98.005455,299.84745 98.37095,299.94075 98.648071,300.19106 C 98.924825,300.43881 99.091656,300.76512 99.148559,301.17 C 99.187339,301.44592 99.163019,301.69392 99.075599,301.91395 C 98.990399,302.13104 98.855945,302.30641 98.672237,302.44005 C 98.955979,302.53165 99.180096,302.68557 99.344598,302.90175 C 99.508734,303.11536 99.61473,303.39236 99.66257,303.73277 C 99.71188,304.08349 99.68954,304.40219 99.59576,304.68887 C 99.50443,304.97518 99.354094,305.2054 99.144512,305.37948 C 98.93493,305.55357 98.687015,305.66074 98.400767,305.70097 C 97.952051,305.76407 97.558955,305.66147 97.221478,305.39335 C 96.886216,305.12226 96.681619,304.72368 96.607684,304.1976 C 96.559844,303.8572 96.585764,303.55509 96.685424,303.29124 C 96.785094,303.02741 96.950935,302.81345 97.18296,302.64934 M 97.21092,301.52909 C 97.24209,301.75086 97.317583,301.91382 97.437412,302.01795 C 97.559814,302.12171 97.700958,302.16237 97.86085,302.13988 C 98.023317,302.11708 98.149076,302.03888 98.238139,301.90539 C 98.327199,301.77191 98.356146,301.59427 98.324979,301.37249 C 98.294899,301.15845 98.21865,300.99955 98.096252,300.89578 C 97.976422,300.79168 97.837858,300.75064 97.680551,300.77275 C 97.515507,300.79595 97.388634,300.87558 97.299937,301.01165 C 97.210877,301.14514 97.181204,301.31761 97.210927,301.52907 M 97.471105,303.96973 C 97.513875,304.27403 97.61132,304.49965 97.763461,304.64657 C 97.915594,304.7935 98.081922,304.85428 98.262441,304.82891 C 98.442954,304.80351 98.582768,304.7037 98.681862,304.52933 C 98.78353,304.35463 98.812262,304.10996 98.768052,303.79536 C 98.729992,303.52457 98.636727,303.31941 98.488262,303.17987 C 98.34237,303.03995 98.177875,302.98286 97.994781,303.0086 C 97.814264,303.034 97.672053,303.13545 97.568167,303.31312 C 97.466488,303.48783 97.434133,303.7067 97.471107,303.96973"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5143"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 103.11145,303.7907 l 0.86647,-0.14752 c 0.0566,0.42278 0.23302,0.62899 0.52971,0.61863 c 0.20042,-0.007 0.3607,-0.11813 0.48086,-0.33341 c 0.12004,-0.21786 0.18698,-0.65145 0.20087,-1.30076 c -0.1064,0.16267 -0.22841,0.2868 -0.36614,0.37236 c -0.13772,0.0856 -0.29248,0.13141 -0.46424,0.1374 c -0.35655,0.0125 -0.67872,-0.1469 -0.96652,-0.47829 c -0.28519,-0.33139 -0.43766,-0.77947 -0.45737,-1.34423 c -0.0211,-0.60378 0.10689,-1.0838 0.38357,-1.44004 c 0.2768,-0.35621 0.62732,-0.54174 1.05153,-0.55657 c 0.47366,-0.0166 0.87187,0.19362 1.19462,0.63056 c 0.32263,0.43433 0.502,1.1681 0.53807,2.20133 c 0.0367,1.05145 -0.0969,1.81307 -0.401,2.28489 c -0.30404,0.47183 -0.71111,0.71668 -1.22121,0.73448 c -0.35394,0.0124 -0.65076,-0.0935 -0.89049,-0.31677 c -0.23721,-0.22623 -0.39679,-0.58024 -0.47876,-1.06206 m 1.95411,-2.46814 c -0.0125,-0.35914 -0.0899,-0.63265 -0.23191,-0.82053 c -0.14207,-0.18787 -0.29898,-0.27881 -0.47074,-0.27281 c -0.16655,0.006 -0.30304,0.09 -0.40939,0.25273 c -0.10384,0.16258 -0.14922,0.42863 -0.13633,0.79822 c 0.013,0.36959 0.0822,0.63815 0.20795,0.80571 c 0.12831,0.1675 0.28098,0.24817 0.45794,0.242 c 0.16917,-0.006 0.31075,-0.0929 0.42476,-0.26109 c 0.11661,-0.1682 0.16914,-0.4163 0.15775,-0.74424"
|
||||
d="M 103.11145,303.7907 L 103.97792,303.64318 C 104.03452,304.06596 104.21094,304.27217 104.50763,304.26181 C 104.70805,304.25481 104.86833,304.14368 104.98849,303.9284 C 105.10853,303.71054 105.17547,303.27695 105.18936,302.62764 C 105.08296,302.79031 104.96095,302.91444 104.82322,303 C 104.6855,303.0856 104.53074,303.13141 104.35898,303.1374 C 104.00243,303.1499 103.68026,302.9905 103.39246,302.65911 C 103.10727,302.32772 102.9548,301.87964 102.93509,301.31488 C 102.91399,300.7111 103.04198,300.23108 103.31866,299.87484 C 103.59546,299.51863 103.94598,299.3331 104.37019,299.31827 C 104.84385,299.30167 105.24206,299.51189 105.56481,299.94883 C 105.88744,300.38316 106.06681,301.11693 106.10288,302.15016 C 106.13958,303.20161 106.00598,303.96323 105.70188,304.43505 C 105.39784,304.90688 104.99077,305.15173 104.48067,305.16953 C 104.12673,305.18193 103.82991,305.07603 103.59018,304.85276 C 103.35297,304.62653 103.19339,304.27252 103.11142,303.7907 M 105.06553,301.32256 C 105.05303,300.96342 104.97563,300.68991 104.83362,300.50203 C 104.69155,300.31416 104.53464,300.22322 104.36288,300.22922 C 104.19633,300.23522 104.05984,300.31922 103.95349,300.48195 C 103.84965,300.64453 103.80427,300.91058 103.81716,301.28017 C 103.83016,301.64976 103.89936,301.91832 104.02511,302.08588 C 104.15342,302.25338 104.30609,302.33405 104.48305,302.32788 C 104.65222,302.32188 104.7938,302.23498 104.90781,302.06679 C 105.02442,301.89859 105.07695,301.65049 105.06556,301.32255"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5145"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2456,17 +2881,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5240"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 84.037888,342.20654 l 0,-1.11621 l -0.922852,0 l 0,-0.77051 l 0.922852,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925781,0 l 0,0.77051 l -0.925781,0 l 0,1.11621 l -0.615234,0" />
|
||||
d="M 84.037888,342.20654 L 84.037888,341.09033 L 83.115036,341.09033 L 83.115036,340.31982 L 84.037888,340.31982 L 84.037888,339.20361 L 84.653122,339.20361 L 84.653122,340.31982 L 85.578903,340.31982 L 85.578903,341.09033 L 84.653122,341.09033 L 84.653122,342.20654 L 84.037888,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5242"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 87.720505,342.82471 l -0.673828,0 l 0,-3.10254 c -0.251954,0.2832 -0.54297,0.49121 -0.873047,0.62402 l 0,-0.74707 c 0.187499,-0.0762 0.381835,-0.21191 0.583008,-0.40723 c 0.20117,-0.19726 0.340819,-0.42382 0.418945,-0.67968 l 0.544922,0 l 0,4.3125" />
|
||||
d="M 87.720505,342.82471 L 87.046677,342.82471 L 87.046677,339.72217 C 86.794723,340.00537 86.503707,340.21338 86.17363,340.34619 L 86.17363,339.59912 C 86.361129,339.52292 86.555465,339.38721 86.756638,339.19189 C 86.957808,338.99463 87.097457,338.76807 87.175583,338.51221 L 87.720505,338.51221 L 87.720505,342.82471" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5244"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 89.876755,338.51221 c 0.341795,0 0.618162,0.16309 0.829101,0.48925 c 0.210935,0.32423 0.316404,0.89259 0.316407,1.70508 c -3e-6,0.81055 -0.105472,1.37891 -0.316407,1.70508 c -0.210939,0.32422 -0.486329,0.48633 -0.826172,0.48633 c -0.341797,0 -0.618164,-0.16113 -0.829101,-0.4834 c -0.210938,-0.32226 -0.316407,-0.89453 -0.316406,-1.7168 c -10e-7,-0.80663 0.105468,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486327,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132814,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117189,0.5918 -0.117188,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117188,1.24805 c 0.08008,0.17383 0.186522,0.26074 0.319336,0.26074 c 0.134764,0 0.241209,-0.0879 0.319336,-0.26367 c 0.07812,-0.17578 0.117185,-0.59082 0.117187,-1.24512 c -2e-6,-0.65624 -0.03906,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
|
||||
d="M 89.876755,338.51221 C 90.21855,338.51221 90.494917,338.6753 90.705856,339.00146 C 90.916791,339.32569 91.02226,339.89405 91.022263,340.70654 C 91.02226,341.51709 90.916791,342.08545 90.705856,342.41162 C 90.494917,342.73584 90.219527,342.89795 89.879684,342.89795 C 89.537887,342.89795 89.26152,342.73682 89.050583,342.41455 C 88.839645,342.09229 88.734176,341.52002 88.734177,340.69775 C 88.734176,339.89112 88.839645,339.32569 89.050583,339.00146 C 89.26152,338.6753 89.53691,338.51221 89.876755,338.51221 M 89.876755,339.19482 C 89.743941,339.19483 89.637496,339.28272 89.557419,339.4585 C 89.479289,339.63428 89.44023,340.0503 89.440231,340.70654 C 89.44023,341.36279 89.479291,341.77881 89.557419,341.95459 C 89.637499,342.12842 89.743941,342.21533 89.876755,342.21533 C 90.011519,342.21533 90.117964,342.12743 90.196091,341.95166 C 90.274211,341.77588 90.313276,341.36084 90.313278,340.70654 C 90.313276,340.0503 90.274218,339.63428 90.196091,339.4585 C 90.117961,339.28272 90.011519,339.19483 89.876755,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.95105651,0.309017,-0.309017,0.95105651,138.48632,-48.310565)"
|
||||
@ -2475,17 +2900,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5246"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 93.76445,342.20654 l 0,-1.11621 l -0.922851,0 l 0,-0.77051 l 0.922851,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925782,0 l 0,0.77051 l -0.925782,0 l 0,1.11621 l -0.615234,0" />
|
||||
d="M 93.76445,342.20654 L 93.76445,341.09033 L 92.841599,341.09033 L 92.841599,340.31982 L 93.76445,340.31982 L 93.76445,339.20361 L 94.379684,339.20361 L 94.379684,340.31982 L 95.305466,340.31982 L 95.305466,341.09033 L 94.379684,341.09033 L 94.379684,342.20654 L 93.76445,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5248"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 98.000778,342.06006 l 0,0.76465 l -2.367187,0 c 0.02539,-0.28907 0.102539,-0.56348 0.231445,-0.82325 c 0.130859,-0.26171 0.383788,-0.60449 0.758789,-1.02832 c 0.296874,-0.33788 0.479491,-0.5664 0.547852,-0.68554 c 0.10156,-0.17383 0.152342,-0.34863 0.152343,-0.52442 c -10e-7,-0.18749 -0.04199,-0.32909 -0.125976,-0.4248 c -0.08399,-0.0957 -0.194338,-0.14355 -0.331055,-0.14356 c -0.298829,1e-5 -0.459962,0.22364 -0.483398,0.6709 l -0.670899,-0.082 c 0.04102,-0.4375 0.162109,-0.75878 0.363282,-0.96387 c 0.203124,-0.20507 0.472655,-0.30761 0.808593,-0.30761 c 0.369139,0 0.647459,0.12012 0.834961,0.36035 c 0.187498,0.24024 0.281248,0.51563 0.28125,0.82617 c -2e-6,0.17578 -0.02442,0.34668 -0.07324,0.5127 c -0.04688,0.16406 -0.120119,0.33008 -0.219727,0.49804 c -0.09961,0.16602 -0.265626,0.37891 -0.498046,0.63867 c -0.216799,0.24415 -0.354494,0.40528 -0.413086,0.4834 c -0.05664,0.0781 -0.102541,0.1543 -0.137696,0.22852 l 1.341797,0" />
|
||||
d="M 98.000778,342.06006 L 98.000778,342.82471 L 95.633591,342.82471 C 95.658981,342.53564 95.73613,342.26123 95.865036,342.00146 C 95.995895,341.73975 96.248824,341.39697 96.623825,340.97314 C 96.920699,340.63526 97.103316,340.40674 97.171677,340.2876 C 97.273237,340.11377 97.324019,339.93897 97.32402,339.76318 C 97.324019,339.57569 97.28203,339.43409 97.198044,339.33838 C 97.114054,339.24268 97.003706,339.19483 96.866989,339.19482 C 96.56816,339.19483 96.407027,339.41846 96.383591,339.86572 L 95.712692,339.78372 C 95.753712,339.34622 95.874801,339.02494 96.075974,338.81985 C 96.279098,338.61478 96.548629,338.51224 96.884567,338.51224 C 97.253706,338.51224 97.532026,338.63236 97.719528,338.87259 C 97.907026,339.11283 98.000776,339.38822 98.000778,339.69876 C 98.000776,339.87454 97.976358,340.04544 97.927538,340.21146 C 97.880658,340.37552 97.807419,340.54154 97.707811,340.7095 C 97.608201,340.87552 97.442185,341.08841 97.209765,341.34817 C 96.992966,341.59232 96.855271,341.75345 96.796679,341.83157 C 96.740039,341.90967 96.694138,341.98587 96.658983,342.06009 L 98.00078,342.06009" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5251"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 99.603317,338.51221 c 0.341795,0 0.618163,0.16309 0.829103,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.486331,0.48633 -0.826173,0.48633 c -0.341798,0 -0.618165,-0.16113 -0.829102,-0.4834 c -0.210937,-0.32226 -0.316406,-0.89453 -0.316406,-1.7168 c 0,-0.80663 0.105469,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486328,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132813,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117188,0.5918 -0.117187,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117187,1.24805 c 0.08008,0.17383 0.186523,0.26074 0.319336,0.26074 c 0.134764,0 0.24121,-0.0879 0.319336,-0.26367 c 0.07813,-0.17578 0.117187,-0.59082 0.117187,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
|
||||
d="M 99.603317,338.51221 C 99.945112,338.51221 100.22148,338.6753 100.43242,339.00146 C 100.64335,339.32569 100.74882,339.89405 100.74883,340.70654 C 100.74882,341.51709 100.64335,342.08545 100.43242,342.41162 C 100.22148,342.73584 99.946089,342.89795 99.606247,342.89795 C 99.264449,342.89795 98.988082,342.73682 98.777145,342.41455 C 98.566208,342.09229 98.460739,341.52002 98.460739,340.69775 C 98.460739,339.89112 98.566208,339.32569 98.777145,339.00146 C 98.988082,338.6753 99.263473,338.51221 99.603317,338.51221 M 99.603317,339.19482 C 99.470504,339.19483 99.364058,339.28272 99.283981,339.4585 C 99.205851,339.63428 99.166793,340.0503 99.166794,340.70654 C 99.166793,341.36279 99.205854,341.77881 99.283981,341.95459 C 99.364061,342.12842 99.470504,342.21533 99.603317,342.21533 C 99.738081,342.21533 99.844527,342.12743 99.922653,341.95166 C 100.00078,341.77588 100.03984,341.36084 100.03984,340.70654 C 100.03984,340.0503 100.00074,339.63428 99.922653,339.4585 C 99.844523,339.28272 99.738081,339.19483 99.603317,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.89879403,0.43837115,-0.43837115,0.89879403,188.46813,-43.413613)"
|
||||
@ -2494,17 +2919,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5253"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 103.49101,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61524,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61524,0" />
|
||||
d="M 103.49101,342.20654 L 103.49101,341.09033 L 102.56816,341.09033 L 102.56816,340.31982 L 103.49101,340.31982 L 103.49101,339.20361 L 104.10625,339.20361 L 104.10625,340.31982 L 105.03203,340.31982 L 105.03203,341.09033 L 104.10625,341.09033 L 104.10625,342.20654 L 103.49101,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5255"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 105.42168,341.68506 l 0.65332,-0.0967 c 0.0176,0.20312 0.0732,0.3584 0.16699,0.46582 c 0.0937,0.10742 0.2041,0.16113 0.33105,0.16113 c 0.13867,0 0.25586,-0.0635 0.35157,-0.19043 c 0.0957,-0.12695 0.14355,-0.30273 0.14355,-0.52734 c 0,-0.20898 -0.0459,-0.37305 -0.13769,-0.49219 c -0.0918,-0.11914 -0.20313,-0.17871 -0.33399,-0.17871 c -0.0859,0 -0.18848,0.0205 -0.30762,0.0615 l 0.0733,-0.67089 c 0.17382,0.004 0.31152,-0.043 0.41308,-0.14063 c 0.0996,-0.0976 0.14941,-0.23535 0.14942,-0.41309 c -1e-5,-0.14843 -0.0361,-0.26464 -0.1084,-0.34863 c -0.0723,-0.084 -0.16504,-0.12597 -0.27832,-0.12598 c -0.11328,1e-5 -0.21192,0.0488 -0.2959,0.14649 c -0.082,0.0957 -0.13086,0.23828 -0.14649,0.42773 l -0.62402,-0.1289 c 0.0644,-0.39258 0.19043,-0.67773 0.37793,-0.85547 c 0.1875,-0.17773 0.42383,-0.2666 0.70899,-0.2666 c 0.32031,0 0.57421,0.11426 0.76171,0.34277 c 0.18945,0.22852 0.28418,0.48145 0.28418,0.75879 c 0,0.1875 -0.043,0.35645 -0.1289,0.50684 c -0.084,0.15039 -0.21094,0.28222 -0.38086,0.3955 c 0.19726,0.0527 0.35742,0.16895 0.48047,0.34864 c 0.12499,0.17969 0.18749,0.40429 0.1875,0.67382 c -1e-5,0.39258 -0.11719,0.71778 -0.35157,0.97559 c -0.23242,0.25586 -0.50976,0.38379 -0.83203,0.38379 c -0.30859,0 -0.57031,-0.1084 -0.78515,-0.3252 c -0.21289,-0.21679 -0.33692,-0.51269 -0.37207,-0.88769" />
|
||||
d="M 105.42168,341.68506 L 106.075,341.58836 C 106.0926,341.79148 106.1482,341.94676 106.24199,342.05418 C 106.33569,342.1616 106.44609,342.21531 106.57304,342.21531 C 106.71171,342.21531 106.8289,342.15181 106.92461,342.02488 C 107.02031,341.89793 107.06816,341.72215 107.06816,341.49754 C 107.06816,341.28856 107.02226,341.12449 106.93047,341.00535 C 106.83867,340.88621 106.72734,340.82664 106.59648,340.82664 C 106.51058,340.82664 106.408,340.84714 106.28886,340.88814 L 106.36216,340.21725 C 106.53598,340.22125 106.67368,340.17425 106.77524,340.07662 C 106.87484,339.97902 106.92465,339.84127 106.92466,339.66353 C 106.92465,339.5151 106.88856,339.39889 106.81626,339.3149 C 106.74396,339.2309 106.65122,339.18893 106.53794,339.18892 C 106.42466,339.18893 106.32602,339.23772 106.24204,339.33541 C 106.16004,339.43111 106.11118,339.57369 106.09555,339.76314 L 105.47153,339.63424 C 105.53593,339.24166 105.66196,338.95651 105.84946,338.77877 C 106.03696,338.60104 106.27329,338.51217 106.55845,338.51217 C 106.87876,338.51217 107.13266,338.62643 107.32016,338.85494 C 107.50961,339.08346 107.60434,339.33639 107.60434,339.61373 C 107.60434,339.80123 107.56134,339.97018 107.47544,340.12057 C 107.39144,340.27096 107.2645,340.40279 107.09458,340.51607 C 107.29184,340.56877 107.452,340.68502 107.57505,340.86471 C 107.70004,341.0444 107.76254,341.269 107.76255,341.53853 C 107.76254,341.93111 107.64536,342.25631 107.41098,342.51412 C 107.17856,342.76998 106.90122,342.89791 106.57895,342.89791 C 106.27036,342.89791 106.00864,342.78951 105.7938,342.57271 C 105.58091,342.35592 105.45688,342.06002 105.42173,341.68502" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5257"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 109.32988,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11718,0.5918 -0.11718,1.24804 c 0,0.65625 0.0391,1.07227 0.11718,1.24805 c 0.0801,0.17383 0.18653,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11718,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11718,-1.24804 c -0.0781,-0.17578 -0.18458,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 109.32988,338.51221 C 109.67167,338.51221 109.94804,338.6753 110.15898,339.00146 C 110.36992,339.32569 110.47539,339.89405 110.47539,340.70654 C 110.47539,341.51709 110.36992,342.08545 110.15898,342.41162 C 109.94804,342.73584 109.67265,342.89795 109.33281,342.89795 C 108.99101,342.89795 108.71464,342.73682 108.50371,342.41455 C 108.29277,342.09229 108.1873,341.52002 108.1873,340.69775 C 108.1873,339.89112 108.29277,339.32569 108.50371,339.00146 C 108.71464,338.6753 108.99004,338.51221 109.32988,338.51221 M 109.32988,339.19482 C 109.19707,339.19483 109.09062,339.28272 109.01054,339.4585 C 108.93244,339.63428 108.89336,340.0503 108.89336,340.70654 C 108.89336,341.36279 108.93246,341.77881 109.01054,341.95459 C 109.09064,342.12842 109.19707,342.21533 109.32988,342.21533 C 109.46464,342.21533 109.57109,342.12743 109.64922,341.95166 C 109.72732,341.77588 109.7664,341.36084 109.7664,340.70654 C 109.7664,340.0503 109.7273,339.63428 109.64922,339.4585 C 109.57112,339.28272 109.46464,339.19483 109.32988,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.80901698,0.58778526,-0.58778526,0.80901698,249.43971,-29.011822)"
|
||||
@ -2513,17 +2938,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5259"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 113.21758,342.20654 l 0,-1.11621 l -0.92286,0 l 0,-0.77051 l 0.92286,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 113.21758,342.20654 L 113.21758,341.09033 L 112.29472,341.09033 L 112.29472,340.31982 L 113.21758,340.31982 L 113.21758,339.20361 L 113.83281,339.20361 L 113.83281,340.31982 L 114.75859,340.31982 L 114.75859,341.09033 L 113.83281,341.09033 L 113.83281,342.20654 L 113.21758,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5261"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 116.4959,342.82471 l 0,-0.86426 l -1.44141,0 l 0,-0.7207 l 1.52637,-2.72754 l 0.56836,0 l 0,2.72461 l 0.43652,0 l 0,0.72363 l -0.43652,0 l 0,0.86426 l -0.65332,0 m 0,-1.58789 l 0,-1.46778 l -0.8086,1.46778 l 0.8086,0" />
|
||||
d="M 116.4959,342.82471 L 116.4959,341.96045 L 115.05449,341.96045 L 115.05449,341.23975 L 116.58086,338.51221 L 117.14922,338.51221 L 117.14922,341.23682 L 117.58574,341.23682 L 117.58574,341.96045 L 117.14922,341.96045 L 117.14922,342.82471 L 116.4959,342.82471 M 116.4959,341.23682 L 116.4959,339.76904 L 115.6873,341.23682 L 116.4959,341.23682" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5263"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 119.05644,338.51221 c 0.3418,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11719,-1.24512 c -1e-5,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 119.05644,338.51221 C 119.39824,338.51221 119.6746,338.6753 119.88554,339.00146 C 120.09648,339.32569 120.20195,339.89405 120.20195,340.70654 C 120.20195,341.51709 120.09648,342.08545 119.88554,342.41162 C 119.6746,342.73584 119.39921,342.89795 119.05937,342.89795 C 118.71757,342.89795 118.44121,342.73682 118.23027,342.41455 C 118.01933,342.09229 117.91386,341.52002 117.91386,340.69775 C 117.91386,339.89112 118.01933,339.32569 118.23027,339.00146 C 118.44121,338.6753 118.7166,338.51221 119.05644,338.51221 M 119.05644,339.19482 C 118.92363,339.19483 118.81718,339.28272 118.73711,339.4585 C 118.65901,339.63428 118.61992,340.0503 118.61992,340.70654 C 118.61992,341.36279 118.65902,341.77881 118.73711,341.95459 C 118.81721,342.12842 118.92363,342.21533 119.05644,342.21533 C 119.19121,342.21533 119.29765,342.12743 119.37578,341.95166 C 119.45388,341.77588 119.49296,341.36084 119.49297,340.70654 C 119.49296,340.0503 119.45387,339.63428 119.37578,339.4585 C 119.29768,339.28272 119.19121,339.19483 119.05644,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.69465835,0.7193398,-0.7193398,0.69465835,308.98322,-5.1409073)"
|
||||
@ -2532,17 +2957,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5265"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 122.94414,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 122.94414,342.20654 L 122.94414,341.09033 L 122.02129,341.09033 L 122.02129,340.31982 L 122.94414,340.31982 L 122.94414,339.20361 L 123.55937,339.20361 L 123.55937,340.31982 L 124.48515,340.31982 L 124.48515,341.09033 L 123.55937,341.09033 L 123.55937,342.20654 L 122.94414,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5267"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 124.90996,341.72021 l 0.67383,-0.085 c 0.0176,0.1875 0.0752,0.33497 0.17285,0.44239 c 0.0977,0.10742 0.20507,0.16113 0.32226,0.16113 c 0.13867,0 0.25781,-0.0684 0.35743,-0.20508 c 0.0996,-0.13867 0.14941,-0.35058 0.14941,-0.63574 c 0,-0.26953 -0.0498,-0.46875 -0.14941,-0.59766 c -0.0977,-0.1289 -0.22266,-0.19335 -0.375,-0.19336 c -0.19337,10e-6 -0.36719,0.1045 -0.52149,0.31348 l -0.54785,-0.0967 l 0.3457,-2.23535 l 1.78418,0 l 0,0.77051 l -1.27148,0 l -0.1084,0.72949 c 0.15234,-0.0918 0.30664,-0.13769 0.46289,-0.1377 c 0.27734,10e-6 0.51269,0.10938 0.70605,0.32813 c 0.24414,0.2793 0.36621,0.64746 0.36622,1.10449 c -1e-5,0.37695 -0.1045,0.72363 -0.31348,1.04004 c -0.20703,0.31641 -0.50391,0.47461 -0.89063,0.47461 c -0.3125,0 -0.57422,-0.10156 -0.78515,-0.30469 c -0.20899,-0.20508 -0.33496,-0.49609 -0.37793,-0.87305" />
|
||||
d="M 124.90996,341.72021 L 125.58379,341.63521 C 125.60139,341.82271 125.65899,341.97018 125.75664,342.0776 C 125.85434,342.18502 125.96171,342.23873 126.0789,342.23873 C 126.21757,342.23873 126.33671,342.17033 126.43633,342.03365 C 126.53593,341.89498 126.58574,341.68307 126.58574,341.39791 C 126.58574,341.12838 126.53594,340.92916 126.43633,340.80025 C 126.33863,340.67135 126.21367,340.6069 126.06133,340.60689 C 125.86796,340.6069 125.69414,340.71139 125.53984,340.92037 L 124.99199,340.82367 L 125.33769,338.58832 L 127.12187,338.58832 L 127.12187,339.35883 L 125.85039,339.35883 L 125.74199,340.08832 C 125.89433,339.99652 126.04863,339.95063 126.20488,339.95062 C 126.48222,339.95063 126.71757,340.06 126.91093,340.27875 C 127.15507,340.55805 127.27714,340.92621 127.27715,341.38324 C 127.27714,341.76019 127.17265,342.10687 126.96367,342.42328 C 126.75664,342.73969 126.45976,342.89789 126.07304,342.89789 C 125.76054,342.89789 125.49882,342.79633 125.28789,342.5932 C 125.0789,342.38812 124.95293,342.09711 124.90996,341.72015" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5269"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 128.783,338.51221 c 0.3418,0 0.61817,0.16309 0.82911,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.3164,1.70508 c 0,0.81055 -0.10547,1.37891 -0.3164,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82618,0.48633 c -0.34179,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21093,-0.32226 -0.3164,-0.89453 -0.3164,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.3164,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23925,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 128.783,338.51221 C 129.1248,338.51221 129.40117,338.6753 129.61211,339.00146 C 129.82304,339.32569 129.92851,339.89405 129.92851,340.70654 C 129.92851,341.51709 129.82304,342.08545 129.61211,342.41162 C 129.40117,342.73584 129.12578,342.89795 128.78593,342.89795 C 128.44414,342.89795 128.16777,342.73682 127.95683,342.41455 C 127.7459,342.09229 127.64043,341.52002 127.64043,340.69775 C 127.64043,339.89112 127.7459,339.32569 127.95683,339.00146 C 128.16777,338.6753 128.44316,338.51221 128.783,338.51221 M 128.783,339.19482 C 128.65019,339.19483 128.54375,339.28272 128.46367,339.4585 C 128.38557,339.63428 128.34648,340.0503 128.34648,340.70654 C 128.34648,341.36279 128.38558,341.77881 128.46367,341.95459 C 128.54377,342.12842 128.65019,342.21533 128.783,342.21533 C 128.91777,342.21533 129.02421,342.12743 129.10234,341.95166 C 129.18044,341.77588 129.21953,341.36084 129.21953,340.70654 C 129.21953,340.0503 129.18043,339.63428 129.10234,339.4585 C 129.02424,339.28272 128.91777,339.19483 128.783,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.58778524,0.80901699,-0.80901699,0.58778524,353.69519,20.372443)"
|
||||
@ -2551,50 +2976,50 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5271"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 132.6707,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92579,0 l 0,0.77051 l -0.92579,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 132.6707,342.20654 L 132.6707,341.09033 L 131.74785,341.09033 L 131.74785,340.31982 L 132.6707,340.31982 L 132.6707,339.20361 L 133.28593,339.20361 L 133.28593,340.31982 L 134.21172,340.31982 L 134.21172,341.09033 L 133.28593,341.09033 L 133.28593,342.20654 L 132.6707,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5273"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 136.91289,339.58154 l -0.65332,0.0879 c -0.0312,-0.32031 -0.15918,-0.48046 -0.38379,-0.48047 c -0.14649,1e-5 -0.26856,0.0801 -0.36621,0.24024 c -0.0957,0.16016 -0.15625,0.4834 -0.18164,0.96973 c 0.084,-0.1211 0.17773,-0.21192 0.28125,-0.27247 c 0.10351,-0.0605 0.21777,-0.0908 0.34277,-0.0908 c 0.27539,1e-5 0.51562,0.12891 0.7207,0.38672 c 0.20508,0.25586 0.30762,0.59668 0.30762,1.02246 c 0,0.45313 -0.1084,0.8086 -0.32519,1.06641 c -0.2168,0.25781 -0.48536,0.38672 -0.80567,0.38672 c -0.35156,0 -0.64355,-0.16699 -0.87598,-0.50098 c -0.23046,-0.33593 -0.3457,-0.8916 -0.3457,-1.66699 c 0,-0.78711 0.12012,-1.35351 0.36035,-1.69922 c 0.24024,-0.3457 0.54883,-0.51855 0.92578,-0.51855 c 0.25977,0 0.47852,0.0889 0.65625,0.2666 c 0.17969,0.17578 0.29395,0.44336 0.34278,0.80273 m -1.52637,1.7959 c 0,0.27149 0.0498,0.47949 0.14941,0.62402 c 0.10157,0.14258 0.2168,0.21387 0.34571,0.21387 c 0.125,0 0.22851,-0.0596 0.31054,-0.17871 c 0.084,-0.11914 0.12598,-0.31445 0.12598,-0.58594 c 0,-0.28124 -0.0449,-0.48632 -0.13476,-0.61523 c -0.0899,-0.1289 -0.20118,-0.19336 -0.33399,-0.19336 c -0.12891,0 -0.23828,0.0615 -0.32812,0.18457 c -0.0898,0.12305 -0.13477,0.30664 -0.13477,0.55078" />
|
||||
d="M 136.91289,339.58154 L 136.25957,339.66944 C 136.22837,339.34913 136.10039,339.18898 135.87578,339.18897 C 135.72929,339.18898 135.60722,339.26907 135.50957,339.42921 C 135.41387,339.58937 135.35332,339.91261 135.32793,340.39894 C 135.41193,340.27784 135.50566,340.18702 135.60918,340.12647 C 135.71269,340.06597 135.82695,340.03567 135.95195,340.03567 C 136.22734,340.03568 136.46757,340.16458 136.67265,340.42239 C 136.87773,340.67825 136.98027,341.01907 136.98027,341.44485 C 136.98027,341.89798 136.87187,342.25345 136.65508,342.51126 C 136.43828,342.76907 136.16972,342.89798 135.84941,342.89798 C 135.49785,342.89798 135.20586,342.73099 134.97343,342.397 C 134.74297,342.06107 134.62773,341.5054 134.62773,340.73001 C 134.62773,339.9429 134.74785,339.3765 134.98808,339.03079 C 135.22832,338.68509 135.53691,338.51224 135.91386,338.51224 C 136.17363,338.51224 136.39238,338.60114 136.57011,338.77884 C 136.7498,338.95462 136.86406,339.2222 136.91289,339.58157 M 135.38652,341.37747 C 135.38652,341.64896 135.43632,341.85696 135.53593,342.00149 C 135.6375,342.14407 135.75273,342.21536 135.88164,342.21536 C 136.00664,342.21536 136.11015,342.15576 136.19218,342.03665 C 136.27618,341.91751 136.31816,341.7222 136.31816,341.45071 C 136.31816,341.16947 136.27326,340.96439 136.1834,340.83548 C 136.0935,340.70658 135.98222,340.64212 135.84941,340.64212 C 135.7205,340.64212 135.61113,340.70362 135.52129,340.82669 C 135.43149,340.94974 135.38652,341.13333 135.38652,341.37747" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5275"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 138.50957,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48632,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13282,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31933,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31933,-0.26368" />
|
||||
d="M 138.50957,338.51221 C 138.85136,338.51221 139.12773,338.6753 139.33867,339.00146 C 139.5496,339.32569 139.65507,339.89405 139.65508,340.70654 C 139.65507,341.51709 139.5496,342.08545 139.33867,342.41162 C 139.12773,342.73584 138.85234,342.89795 138.5125,342.89795 C 138.1707,342.89795 137.89433,342.73682 137.6834,342.41455 C 137.47246,342.09229 137.36699,341.52002 137.36699,340.69775 C 137.36699,339.89112 137.47246,339.32569 137.6834,339.00146 C 137.89433,338.6753 138.16972,338.51221 138.50957,338.51221 M 138.50957,339.19482 C 138.37675,339.19483 138.27031,339.28272 138.19023,339.4585 C 138.11213,339.63428 138.07304,340.0503 138.07304,340.70654 C 138.07304,341.36279 138.11214,341.77881 138.19023,341.95459 C 138.27033,342.12842 138.37675,342.21533 138.50957,342.21533 C 138.64433,342.21533 138.75078,342.12743 138.8289,341.95166 C 138.907,341.77588 138.94609,341.36084 138.94609,340.70654 C 138.94609,340.0503 138.90699,339.63428 138.8289,339.4585 C 138.7508,339.28272 138.64433,339.19483 138.50957,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
|
||||
id="text5399">
|
||||
<path
|
||||
d="m 83.861328,334.1709 l 1.40625,-0.13672 c 0.08463,0.47201 0.255532,0.81869 0.512695,1.04004 c 0.260415,0.22135 0.610349,0.33203 1.049805,0.33203 c 0.465491,0 0.815426,-0.0977 1.049805,-0.29297 c 0.237625,-0.19856 0.35644,-0.42968 0.356445,-0.69336 c -5e-6,-0.16927 -0.05046,-0.3125 -0.151367,-0.42969 c -0.09766,-0.12044 -0.270187,-0.2246 -0.517578,-0.3125 c -0.169275,-0.0586 -0.555017,-0.16275 -1.157227,-0.3125 c -0.774741,-0.19205 -1.318361,-0.42805 -1.630859,-0.708 c -0.439454,-0.39388 -0.65918,-0.87402 -0.65918,-1.44043 c 0,-0.36458 0.102539,-0.70475 0.307617,-1.02051 c 0.208333,-0.319 0.506184,-0.56152 0.893555,-0.72754 c 0.390623,-0.16601 0.861,-0.24902 1.411133,-0.24902 c 0.898433,0 1.573888,0.19694 2.026367,0.59082 c 0.455724,0.39388 0.694981,0.9196 0.717773,1.57715 l -1.445312,0.0635 c -0.06185,-0.36783 -0.195317,-0.6315 -0.400391,-0.79101 c -0.201826,-0.16276 -0.506188,-0.24414 -0.913086,-0.24414 c -0.419924,0 -0.7487,0.0863 -0.986328,0.25878 c -0.152997,0.11069 -0.229494,0.2588 -0.229492,0.44434 c -2e-6,0.16928 0.07161,0.31413 0.214844,0.43457 c 0.182289,0.153 0.624997,0.31251 1.328125,0.47852 c 0.703121,0.16602 1.222326,0.33854 1.557617,0.51757 c 0.338536,0.17579 0.602208,0.4183 0.791016,0.72754 c 0.192051,0.306 0.288079,0.68523 0.288086,1.1377 c -7e-6,0.41016 -0.113939,0.79427 -0.341797,1.15234 c -0.22787,0.35808 -0.550136,0.625 -0.966797,0.80078 c -0.416671,0.17253 -0.935876,0.25879 -1.557617,0.25879 c -0.904951,0 -1.599937,-0.20833 -2.084961,-0.625 c -0.485027,-0.41992 -0.77474,-1.03027 -0.869141,-1.83105"
|
||||
d="M 83.861328,334.1709 L 85.267578,334.03418 C 85.352208,334.50619 85.52311,334.85287 85.780273,335.07422 C 86.040688,335.29557 86.390622,335.40625 86.830078,335.40625 C 87.295569,335.40625 87.645504,335.30855 87.879883,335.11328 C 88.117508,334.91472 88.236323,334.6836 88.236328,334.41992 C 88.236323,334.25065 88.185868,334.10742 88.084961,333.99023 C 87.987301,333.86979 87.814774,333.76563 87.567383,333.67773 C 87.398108,333.61913 87.012366,333.51498 86.410156,333.36523 C 85.635415,333.17318 85.091795,332.93718 84.779297,332.65723 C 84.339843,332.26335 84.120117,331.78321 84.120117,331.2168 C 84.120117,330.85222 84.222656,330.51205 84.427734,330.19629 C 84.636067,329.87729 84.933918,329.63477 85.321289,329.46875 C 85.711912,329.30274 86.182289,329.21973 86.732422,329.21973 C 87.630855,329.21973 88.30631,329.41667 88.758789,329.81055 C 89.214513,330.20443 89.45377,330.73015 89.476562,331.3877 L 88.03125,331.4512 C 87.9694,331.08337 87.835933,330.8197 87.630859,330.66019 C 87.429033,330.49743 87.124671,330.41605 86.717773,330.41605 C 86.297849,330.41605 85.969073,330.50235 85.731445,330.67483 C 85.578448,330.78552 85.501951,330.93363 85.501953,331.11917 C 85.501951,331.28845 85.573563,331.4333 85.716797,331.55374 C 85.899086,331.70674 86.341794,331.86625 87.044922,332.03226 C 87.748043,332.19828 88.267248,332.3708 88.602539,332.54983 C 88.941075,332.72562 89.204747,332.96813 89.393555,333.27737 C 89.585606,333.58337 89.681634,333.9626 89.681641,334.41507 C 89.681634,334.82523 89.567702,335.20934 89.339844,335.56741 C 89.111974,335.92549 88.789708,336.19241 88.373047,336.36819 C 87.956376,336.54072 87.437171,336.62698 86.81543,336.62698 C 85.910479,336.62698 85.215493,336.41865 84.730469,336.00198 C 84.245442,335.58206 83.955729,334.97171 83.861328,334.17093"
|
||||
id="path5592"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 93.661133,336.5 l 0,-7.1582 l 2.163086,0 l 1.298828,4.88281 l 1.28418,-4.88281 l 2.167973,0 l 0,7.1582 l -1.342778,0 l 0,-5.63477 L 97.811523,336.5 l -1.391601,0 l -1.416016,-5.63477 l 0,5.63477 l -1.342773,0"
|
||||
d="M 93.661133,336.5 L 93.661133,329.3418 L 95.824219,329.3418 L 97.123047,334.22461 L 98.407227,329.3418 L 100.5752,329.3418 L 100.5752,336.5 L 99.232422,336.5 L 99.232422,330.86523 L 97.811523,336.5 L 96.419922,336.5 L 95.003906,330.86523 L 95.003906,336.5 L 93.661133,336.5"
|
||||
id="path5594"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 102.02051,336.5 l 0,-7.1582 l 5.30762,0 l 0,1.21093 l -3.86231,0 l 0,1.58692 l 3.59375,0 l 0,1.20605 l -3.59375,0 l 0,1.94825 l 3.99902,0 l 0,1.20605 l -5.44433,0"
|
||||
d="M 102.02051,336.5 L 102.02051,329.3418 L 107.32813,329.3418 L 107.32813,330.55273 L 103.46582,330.55273 L 103.46582,332.13965 L 107.05957,332.13965 L 107.05957,333.3457 L 103.46582,333.3457 L 103.46582,335.29395 L 107.46484,335.29395 L 107.46484,336.5 L 102.02051,336.5"
|
||||
id="path5596"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 110.31152,336.5 l 0,-5.94727 l -2.12402,0 l 0,-1.21093 l 5.68848,0 l 0,1.21093 l -2.11914,0 l 0,5.94727 l -1.44532,0"
|
||||
d="M 110.31152,336.5 L 110.31152,330.55273 L 108.1875,330.55273 L 108.1875,329.3418 L 113.87598,329.3418 L 113.87598,330.55273 L 111.75684,330.55273 L 111.75684,336.5 L 110.31152,336.5"
|
||||
id="path5598"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 114.79395,336.5 l 0,-7.1582 l 5.30761,0 l 0,1.21093 l -3.8623,0 l 0,1.58692 l 3.59375,0 l 0,1.20605 l -3.59375,0 l 0,1.94825 l 3.99902,0 l 0,1.20605 l -5.44433,0"
|
||||
d="M 114.79395,336.5 L 114.79395,329.3418 L 120.10156,329.3418 L 120.10156,330.55273 L 116.23926,330.55273 L 116.23926,332.13965 L 119.83301,332.13965 L 119.83301,333.3457 L 116.23926,333.3457 L 116.23926,335.29395 L 120.23828,335.29395 L 120.23828,336.5 L 114.79395,336.5"
|
||||
id="path5600"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 121.47852,336.5 l 0,-7.1582 l 3.04199,0 c 0.76497,0 1.31998,0.0651 1.66504,0.19531 c 0.3483,0.12696 0.62662,0.35482 0.83496,0.68359 c 0.20832,0.32879 0.31249,0.70476 0.3125,1.12793 c -1e-5,0.53712 -0.15789,0.98145 -0.47363,1.33301 c -0.31577,0.34831 -0.78777,0.56804 -1.41602,0.65918 c 0.31249,0.18229 0.56966,0.38249 0.77148,0.60059 c 0.20508,0.2181 0.48014,0.60547 0.8252,1.16211 l 0.87402,1.39648 l -1.72851,0 l -1.04492,-1.55762 c -0.3711,-0.55664 -0.62501,-0.90657 -0.76172,-1.0498 c -0.13673,-0.14648 -0.28158,-0.24577 -0.43457,-0.29785 c -0.153,-0.0553 -0.39551,-0.083 -0.72754,-0.083 l -0.29297,0 l 0,2.98828 l -1.44531,0 m 1.44531,-4.13086 l 1.06933,0 c 0.69336,0 1.1263,-0.0293 1.29883,-0.0879 c 0.17252,-0.0586 0.30761,-0.1595 0.40528,-0.30273 c 0.0977,-0.14323 0.14647,-0.32227 0.14648,-0.53711 c -1e-5,-0.24088 -0.0651,-0.43457 -0.19531,-0.58106 c -0.12696,-0.14973 -0.30762,-0.24413 -0.54199,-0.2832 c -0.1172,-0.0163 -0.46876,-0.0244 -1.05469,-0.0244 l -1.12793,0 l 0,1.81641"
|
||||
d="M 121.47852,336.5 L 121.47852,329.3418 L 124.52051,329.3418 C 125.28548,329.3418 125.84049,329.4069 126.18555,329.53711 C 126.53385,329.66407 126.81217,329.89193 127.02051,330.2207 C 127.22883,330.54949 127.333,330.92546 127.33301,331.34863 C 127.333,331.88575 127.17512,332.33008 126.85938,332.68164 C 126.54361,333.02995 126.07161,333.24968 125.44336,333.34082 C 125.75585,333.52311 126.01302,333.72331 126.21484,333.94141 C 126.41992,334.15951 126.69498,334.54688 127.04004,335.10352 L 127.91406,336.5 L 126.18555,336.5 L 125.14063,334.94238 C 124.76953,334.38574 124.51562,334.03581 124.37891,333.89258 C 124.24218,333.7461 124.09733,333.64681 123.94434,333.59473 C 123.79134,333.53943 123.54883,333.51173 123.2168,333.51173 L 122.92383,333.51173 L 122.92383,336.50001 L 121.47852,336.50001 M 122.92383,332.36915 L 123.99316,332.36915 C 124.68652,332.36915 125.11946,332.33985 125.29199,332.28125 C 125.46451,332.22265 125.5996,332.12175 125.69727,331.97852 C 125.79497,331.83529 125.84374,331.65625 125.84375,331.44141 C 125.84374,331.20053 125.77865,331.00684 125.64844,330.86035 C 125.52148,330.71062 125.34082,330.61622 125.10645,330.57715 C 124.98925,330.56085 124.63769,330.55275 124.05176,330.55275 L 122.92383,330.55275 L 122.92383,332.36916"
|
||||
id="path5602"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:open="true"
|
||||
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)"
|
||||
d="m 50.19341,295.51093 a 52.5,52.5 0 0 1 48.677155,19.66684"
|
||||
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
sodipodi:ry="52.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:cy="347.5"
|
||||
@ -2619,11 +3044,11 @@
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5524"
|
||||
d="m 105.81964,316.81754 l -1.74737,-6.03282 l -1.25263,6.18907 l 1.25,24.24219 l 2.75,24.16408 l 0.25,-24.32031 z"
|
||||
d="M 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 L 104.06964,341.21598 L 106.81964,365.38006 L 107.06964,341.05975 z"
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:0.44444445;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
|
||||
<path
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 103.23134,324.95812 l 1.42067,-1.60503 l 1.56976,1.26333 l -0.40213,-7.79888 l -1.74737,-6.03282 l -1.25263,6.18907 z"
|
||||
d="M 103.23134,324.95812 L 104.65201,323.35309 L 106.22177,324.61642 L 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 z"
|
||||
id="path5604"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
@ -2631,7 +3056,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5528"
|
||||
d="m 104.08793,312.53421 l 2.73969,52.85567"
|
||||
d="M 104.08793,312.53421 L 106.82762,365.38988"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.22222222;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
@ -2646,7 +3071,7 @@
|
||||
transform="matrix(1.35,0,0,1.35,-60.425521,-102.76587)">
|
||||
<path
|
||||
style="fill:#2c2929;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 64.869231,345.74074 l 88.888879,0 l 0,22.22222 c -33.90002,-4.98213 -63.368747,-4.79441 -88.888879,0 z"
|
||||
d="M 64.869231,345.74074 L 153.75811,345.74074 L 153.75811,367.96296 C 119.85809,362.98083 90.389363,363.16855 64.869231,367.96296 z"
|
||||
id="rect5536"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -2771,31 +3196,31 @@
|
||||
style="font-size:13.50032997px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="oplm-id-label">
|
||||
<path
|
||||
d="m 10.736446,402.06507 c -1e-6,-1.60404 0.430674,-2.8587 1.292024,-3.76401 c 0.861346,-0.90968 1.973189,-1.36452 3.335531,-1.36453 c 0.892105,10e-6 1.696323,0.21315 2.412656,0.63942 c 0.716318,0.42629 1.261253,1.02176 1.634806,1.78642 c 0.377929,0.76028 0.566898,1.62382 0.566908,2.59064 c -10e-6,0.98001 -0.197768,1.85674 -0.593276,2.63019 c -0.395526,0.77346 -0.955842,1.36014 -1.680949,1.76005 c -0.725123,0.39552 -1.507367,0.59328 -2.346737,0.59328 c -0.909695,0 -1.722702,-0.21973 -2.439025,-0.6592 c -0.716328,-0.43946 -1.259065,-1.03933 -1.628213,-1.7996 c -0.369151,-0.76027 -0.553726,-1.56449 -0.553725,-2.41266 m 1.318392,0.0198 c -2e-6,1.16458 0.312017,2.08306 0.936058,2.75543 c 0.62843,0.66799 1.415069,1.00198 2.359921,1.00198 c 0.962419,0 1.753454,-0.33838 2.373105,-1.01516 c 0.62403,-0.67677 0.936049,-1.637 0.936058,-2.88068 c -9e-6,-0.78664 -0.134045,-1.4722 -0.40211,-2.0567 c -0.263686,-0.58887 -0.652611,-1.04371 -1.166776,-1.36453 c -0.509785,-0.3252 -1.083285,-0.4878 -1.720501,-0.48781 c -0.9053,1e-5 -1.685348,0.31203 -2.340145,0.93606 c -0.650409,0.61965 -0.975612,1.65679 -0.97561,3.11141"
|
||||
d="M 10.736446,402.06507 C 10.736445,400.46103 11.16712,399.20637 12.02847,398.30106 C 12.889816,397.39138 14.001659,396.93654 15.364001,396.93653 C 16.256106,396.93654 17.060324,397.14968 17.776657,397.57595 C 18.492975,398.00224 19.03791,398.59771 19.411463,399.36237 C 19.789392,400.12265 19.978361,400.98619 19.978371,401.95301 C 19.978361,402.93302 19.780603,403.80975 19.385095,404.5832 C 18.989569,405.35666 18.429253,405.94334 17.704146,406.34325 C 16.979023,406.73877 16.196779,406.93653 15.357409,406.93653 C 14.447714,406.93653 13.634707,406.7168 12.918384,406.27733 C 12.202056,405.83787 11.659319,405.238 11.290171,404.47773 C 10.92102,403.71746 10.736445,402.91324 10.736446,402.06507 M 12.054838,402.08487 C 12.054836,403.24945 12.366855,404.16793 12.990896,404.8403 C 13.619326,405.50829 14.405965,405.84228 15.350817,405.84228 C 16.313236,405.84228 17.104271,405.5039 17.723922,404.82712 C 18.347952,404.15035 18.659971,403.19012 18.65998,401.94644 C 18.659971,401.1598 18.525935,400.47424 18.25787,399.88974 C 17.994184,399.30087 17.605259,398.84603 17.091094,398.52521 C 16.581309,398.20001 16.007809,398.03741 15.370593,398.0374 C 14.465293,398.03741 13.685245,398.34943 13.030448,398.97346 C 12.380039,399.59311 12.054836,400.63025 12.054838,402.08487"
|
||||
id="path5847"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 21.619769,406.77173 l 0,-9.66381 l 3.645353,0 c 0.641611,1e-5 1.131613,0.0308 1.470006,0.0923 c 0.474615,0.0791 0.872329,0.23072 1.193145,0.45484 c 0.320801,0.21974 0.577887,0.52956 0.771259,0.92947 c 0.19775,0.39992 0.296629,0.83938 0.296638,1.31839 c -9e-6,0.8218 -0.261489,1.51835 -0.784443,2.08965 c -0.522969,0.56691 -1.467816,0.85037 -2.834542,0.85036 l -2.478576,0 l 0,3.92881 l -1.27884,0 m 1.27884,-5.06922 l 2.498352,0 c 0.826186,1e-5 1.41287,-0.1538 1.760053,-0.46143 c 0.347169,-0.30762 0.520757,-0.74049 0.520764,-1.29862 c -7e-6,-0.4043 -0.103281,-0.74928 -0.309822,-1.03494 c -0.20216,-0.29004 -0.470232,-0.4812 -0.804219,-0.5735 c -0.215343,-0.0571 -0.613057,-0.0857 -1.193144,-0.0857 l -2.471984,0 l 0,3.45418"
|
||||
d="M 21.619769,406.77173 L 21.619769,397.10792 L 25.265122,397.10792 C 25.906733,397.10793 26.396735,397.13872 26.735128,397.20022 C 27.209743,397.27932 27.607457,397.43094 27.928273,397.65506 C 28.249074,397.8748 28.50616,398.18462 28.699532,398.58453 C 28.897282,398.98445 28.996161,399.42391 28.99617,399.90292 C 28.996161,400.72472 28.734681,401.42127 28.211727,401.99257 C 27.688758,402.55948 26.743911,402.84294 25.377185,402.84293 L 22.898609,402.84293 L 22.898609,406.77174 L 21.619769,406.77174 M 22.898609,401.70252 L 25.396961,401.70252 C 26.223147,401.70253 26.809831,401.54872 27.157014,401.24109 C 27.504183,400.93347 27.677771,400.5006 27.677778,399.94247 C 27.677771,399.53817 27.574497,399.19319 27.367956,398.90753 C 27.165796,398.61749 26.897724,398.42633 26.563737,398.33403 C 26.348394,398.27693 25.95068,398.24833 25.370593,398.24833 L 22.898609,398.24833 L 22.898609,401.70251"
|
||||
id="path5849"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 30.584832,406.77173 l 0,-9.66381 l 1.278839,0 l 0,8.5234 l 4.759394,0 l 0,1.14041 l -6.038233,0"
|
||||
d="M 30.584832,406.77173 L 30.584832,397.10792 L 31.863671,397.10792 L 31.863671,405.63132 L 36.623065,405.63132 L 36.623065,406.77173 L 30.584832,406.77173"
|
||||
id="path5851"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 38.112847,406.77173 l 0,-9.66381 l 1.924852,0 l 2.287409,6.84245 c 0.210937,0.63723 0.36475,1.11404 0.461437,1.43046 c 0.10986,-0.35157 0.281251,-0.86794 0.514173,-1.54911 l 2.313777,-6.7238 l 1.720501,0 l 0,9.66381 l -1.232696,0 l 0,-8.08833 l -2.808174,8.08833 l -1.153593,0 l -2.79499,-8.22677 l 0,8.22677 l -1.232696,0"
|
||||
d="M 38.112847,406.77173 L 38.112847,397.10792 L 40.037699,397.10792 L 42.325108,403.95037 C 42.536045,404.5876 42.689858,405.06441 42.786545,405.38083 C 42.896405,405.02926 43.067796,404.51289 43.300718,403.83172 L 45.614495,397.10792 L 47.334996,397.10792 L 47.334996,406.77173 L 46.1023,406.77173 L 46.1023,398.6834 L 43.294126,406.77173 L 42.140533,406.77173 L 39.345543,398.54496 L 39.345543,406.77173 L 38.112847,406.77173"
|
||||
id="path5853"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 53.373229,406.77173 l 0,-9.66381 l 1.27884,0 l 0,9.66381 l -1.27884,0"
|
||||
d="M 53.373229,406.77173 L 53.373229,397.10792 L 54.652069,397.10792 L 54.652069,406.77173 L 53.373229,406.77173"
|
||||
id="path5855"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 56.899927,406.77173 l 0,-9.66381 l 3.328939,0 c 0.751478,1e-5 1.324977,0.0462 1.720501,0.13843 c 0.553717,0.12745 1.026141,0.35817 1.417271,0.69215 c 0.50977,0.43069 0.889906,0.98221 1.140408,1.65459 c 0.254881,0.66799 0.382325,1.43265 0.382334,2.294 c -9e-6,0.73391 -0.0857,1.38431 -0.257086,1.95122 c -0.1714,0.56691 -0.391132,1.03713 -0.659196,1.41068 c -0.268081,0.36915 -0.562522,0.66139 -0.883323,0.87673 c -0.31642,0.21094 -0.700951,0.37134 -1.153592,0.48121 c -0.448259,0.10987 -0.964629,0.1648 -1.54911,0.1648 l -3.487146,0 m 1.27884,-1.14041 l 2.063283,0 c 0.637217,0 1.136008,-0.0593 1.496374,-0.17798 c 0.364749,-0.11866 0.654795,-0.28565 0.870138,-0.50099 c 0.303223,-0.30323 0.538336,-0.70973 0.70534,-1.21951 c 0.171383,-0.51417 0.257079,-1.13601 0.257086,-1.86553 c -7e-6,-1.01076 -0.167003,-1.78641 -0.500988,-2.32696 c -0.329605,-0.54493 -0.731714,-0.90968 -1.206329,-1.09426 c -0.342787,-0.13184 -0.894314,-0.19775 -1.654581,-0.19776 l -2.030323,0 l 0,7.38299"
|
||||
d="M 56.899927,406.77173 L 56.899927,397.10792 L 60.228866,397.10792 C 60.980344,397.10793 61.553843,397.15412 61.949367,397.24635 C 62.503084,397.3738 62.975508,397.60452 63.366638,397.9385 C 63.876408,398.36919 64.256544,398.92071 64.507046,399.59309 C 64.761927,400.26108 64.889371,401.02574 64.88938,401.88709 C 64.889371,402.621 64.80368,403.2714 64.632294,403.83831 C 64.460894,404.40522 64.241162,404.87544 63.973098,405.24899 C 63.705017,405.61814 63.410576,405.91038 63.089775,406.12572 C 62.773355,406.33666 62.388824,406.49706 61.936183,406.60693 C 61.487924,406.7168 60.971554,406.77173 60.387073,406.77173 L 56.899927,406.77173 M 58.178767,405.63132 L 60.24205,405.63132 C 60.879267,405.63132 61.378058,405.57202 61.738424,405.45334 C 62.103173,405.33468 62.393219,405.16769 62.608562,404.95235 C 62.911785,404.64912 63.146898,404.24262 63.313902,403.73284 C 63.485285,403.21867 63.570981,402.59683 63.570988,401.86731 C 63.570981,400.85655 63.403985,400.0809 63.07,399.54035 C 62.740395,398.99542 62.338286,398.63067 61.863671,398.44609 C 61.520884,398.31425 60.969357,398.24834 60.20909,398.24833 L 58.178767,398.24833 L 58.178767,405.63132"
|
||||
id="path5857"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 70.578242,401.12242 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0 m 0,5.64931 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0"
|
||||
d="M 70.578242,401.12242 L 70.578242,399.77107 L 71.929593,399.77107 L 71.929593,401.12242 L 70.578242,401.12242 M 70.578242,406.77173 L 70.578242,405.42038 L 71.929593,405.42038 L 71.929593,406.77173 L 70.578242,406.77173"
|
||||
id="path5859"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -2809,27 +3234,27 @@
|
||||
id="oplm-id-text"
|
||||
transform="translate(6,0)">
|
||||
<path
|
||||
d="m 80.143175,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421886,-0.64601 c -0.215341,0.35158 -0.369153,0.59328 -0.461437,0.72512 l -2.42584,3.36849 l -1.535926,0"
|
||||
d="M 80.143175,406.77173 L 83.880815,401.73547 L 80.584836,397.10792 L 82.107578,397.10792 L 83.861039,399.58649 C 84.22579,400.10067 84.485073,400.49619 84.63889,400.77305 C 84.854223,400.42148 85.109111,400.05453 85.403557,399.67219 L 87.348185,397.10792 L 88.739088,397.10792 L 85.34423,401.66296 L 89.002766,406.77173 L 87.420696,406.77173 L 84.988264,403.32413 C 84.852025,403.12638 84.711397,402.91104 84.566378,402.67812 C 84.351037,403.0297 84.197225,403.2714 84.104941,403.40324 L 81.679101,406.77173 L 80.143175,406.77173"
|
||||
id="path5862"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 89.108238,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421885,-0.64601 c -0.215342,0.35158 -0.369154,0.59328 -0.461437,0.72512 l -2.425841,3.36849 l -1.535926,0"
|
||||
d="M 89.108238,406.77173 L 92.845878,401.73547 L 89.549899,397.10792 L 91.072641,397.10792 L 92.826102,399.58649 C 93.190853,400.10067 93.450136,400.49619 93.603953,400.77305 C 93.819286,400.42148 94.074174,400.05453 94.36862,399.67219 L 96.313248,397.10792 L 97.704151,397.10792 L 94.309293,401.66296 L 97.967829,406.77173 L 96.385759,406.77173 L 93.953327,403.32413 C 93.817088,403.12638 93.67646,402.91104 93.531442,402.67812 C 93.3161,403.0297 93.162288,403.2714 93.070005,403.40324 L 90.644164,406.77173 L 89.108238,406.77173"
|
||||
id="path5864"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 98.073301,406.77173 l 3.737639,-5.03626 l -3.295978,-4.62755 l 1.522738,0 l 1.75347,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39485,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46143,0.72512 l -2.425843,3.36849 l -1.535926,0"
|
||||
d="M 98.073301,406.77173 L 101.81094,401.73547 L 98.514962,397.10792 L 100.0377,397.10792 L 101.79117,399.58649 C 102.15592,400.10067 102.4152,400.49619 102.56902,400.77305 C 102.78435,400.42148 103.03924,400.05453 103.33368,399.67219 L 105.27831,397.10792 L 106.66921,397.10792 L 103.27436,401.66296 L 106.93289,406.77173 L 105.35082,406.77173 L 102.91839,403.32413 C 102.78215,403.12638 102.64152,402.91104 102.4965,402.67812 C 102.28116,403.0297 102.12735,403.2714 102.03507,403.40324 L 99.609227,406.77173 L 98.073301,406.77173"
|
||||
id="path5866"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 107.03836,406.77173 l 3.73764,-5.03626 l -3.29597,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94462,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43244,-3.4476 c -0.13624,-0.19775 -0.27686,-0.41309 -0.42188,-0.64601 c -0.21534,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
|
||||
d="M 107.03836,406.77173 L 110.776,401.73547 L 107.48003,397.10792 L 109.00277,397.10792 L 110.75623,399.58649 C 111.12098,400.10067 111.38026,400.49619 111.53408,400.77305 C 111.74941,400.42148 112.0043,400.05453 112.29875,399.67219 L 114.24337,397.10792 L 115.63428,397.10792 L 112.23942,401.66296 L 115.89796,406.77173 L 114.31589,406.77173 L 111.88345,403.32413 C 111.74721,403.12638 111.60659,402.91104 111.46157,402.67812 C 111.24623,403.0297 111.09241,403.2714 111.00013,403.40324 L 108.57429,406.77173 L 107.03836,406.77173"
|
||||
id="path5868"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 116.00343,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62404,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53592,0"
|
||||
d="M 116.00343,406.77173 L 119.74107,401.73547 L 116.44509,397.10792 L 117.96783,397.10792 L 119.72129,399.58649 C 120.08604,400.10067 120.34533,400.49619 120.49914,400.77305 C 120.71447,400.42148 120.96936,400.05453 121.26381,399.67219 L 123.20844,397.10792 L 124.59934,397.10792 L 121.20448,401.66296 L 124.86302,406.77173 L 123.28095,406.77173 L 120.84852,403.32413 C 120.71228,403.12638 120.57165,402.91104 120.42663,402.67812 C 120.21129,403.0297 120.05748,403.2714 119.96519,403.40324 L 117.53935,406.77173 L 116.00343,406.77173"
|
||||
id="path5870"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 124.96849,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52275,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42188,-0.64601 c -0.21535,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
|
||||
d="M 124.96849,406.77173 L 128.70613,401.73547 L 125.41015,397.10792 L 126.9329,397.10792 L 128.68636,399.58649 C 129.05111,400.10067 129.31039,400.49619 129.46421,400.77305 C 129.67954,400.42148 129.93443,400.05453 130.22887,399.67219 L 132.1735,397.10792 L 133.56441,397.10792 L 130.16955,401.66296 L 133.82808,406.77173 L 132.24601,406.77173 L 129.81358,403.32413 C 129.67734,403.12638 129.53671,402.91104 129.3917,402.67812 C 129.17635,403.0297 129.02254,403.2714 128.93026,403.40324 L 126.50442,406.77173 L 124.96849,406.77173"
|
||||
id="path5872"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -3050,7 +3475,7 @@
|
||||
sodipodi:cy="-18"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:ry="9"
|
||||
d="m 86,-18 c 0,4.970563 -4.029437,9 -9,9 c -1.57983,0 -3.131827,-0.4158564 -4.5,-1.205771"
|
||||
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
|
||||
transform="matrix(0.59409,-0.16048456,0.16048456,0.59409,-14.282595,58.387875)"
|
||||
sodipodi:start="0"
|
||||
sodipodi:end="2.0943951"
|
||||
@ -3060,7 +3485,7 @@
|
||||
sodipodi:end="2.0943951"
|
||||
sodipodi:start="0"
|
||||
transform="matrix(0.94346447,-0.22256175,0.2922493,0.96228953,-38.3717,70.240727)"
|
||||
d="m 86,-18 c 0,4.970563 -4.029437,9 -9,9 c -1.57983,0 -3.131827,-0.4158564 -4.5,-1.205771"
|
||||
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
|
||||
sodipodi:ry="9"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:cy="-18"
|
||||
@ -3663,7 +4088,7 @@
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="5.5477076"
|
||||
sodipodi:start="3.8773293"
|
||||
d="M 238.84479,91.530033 C 279.42114,46.70925 348.64918,43.268451 393.46997,83.844794 c 2.69442,2.439265 5.26569,5.011203 7.70426,7.706256"
|
||||
d="M 238.84479,91.530033 C 279.42114,46.70925 348.64918,43.268451 393.46997,83.844794 C 396.16439,86.284059 398.73566,88.855997 401.17423,91.55105"
|
||||
sodipodi:ry="109.47147"
|
||||
sodipodi:rx="109.47147"
|
||||
sodipodi:cy="165"
|
||||
@ -3837,7 +4262,7 @@
|
||||
transform="translate(0,78)">
|
||||
<path
|
||||
transform="matrix(0.84971585,0,0,0.84971585,73.153736,57.627199)"
|
||||
d="m 381.49999,370 c 0,50.26377 -40.74684,91.01061 -91.01061,91.01061 c -50.26377,0 -91.01061,-40.74684 -91.01061,-91.01061 c 0,-50.26377 40.74684,-91.01061 91.01061,-91.01061 c 50.26377,0 91.01061,40.74684 91.01061,91.01061 z"
|
||||
d="M 381.49999,370 C 381.49999,420.26377 340.75315,461.01061 290.48938,461.01061 C 240.22561,461.01061 199.47877,420.26377 199.47877,370 C 199.47877,319.73623 240.22561,278.98939 290.48938,278.98939 C 340.75315,278.98939 381.49999,319.73623 381.49999,370 z"
|
||||
sodipodi:ry="91.010612"
|
||||
sodipodi:rx="91.010612"
|
||||
sodipodi:cy="370"
|
||||
@ -5602,7 +6027,7 @@
|
||||
sodipodi:cy="205"
|
||||
sodipodi:rx="46.352551"
|
||||
sodipodi:ry="75"
|
||||
d="m 582.79539,230.65151 c -3.7272,-16.56932 -3.7272,-34.7337 0,-51.30302"
|
||||
d="M 582.79539,230.65151 C 579.06819,214.08219 579.06819,195.91781 582.79539,179.34849"
|
||||
transform="matrix(6.4484046,0,0,3.9853333,-3146.0425,-599.99333)"
|
||||
sodipodi:start="2.7925268"
|
||||
sodipodi:end="3.4906585"
|
||||
|
Before Width: | Height: | Size: 517 KiB After Width: | Height: | Size: 631 KiB |
Loading…
x
Reference in New Issue
Block a user