File: anatomy_of_a_node.svg

package info (click to toggle)
dpdk 24.11.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 121,148 kB
  • sloc: ansic: 2,206,055; python: 11,866; sh: 4,627; makefile: 2,025; awk: 70
file content (1292 lines) | stat: -rw-r--r-- 109,399 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<!-- SPDX-License-Identifier: BSD-3-Clause -->
<!-- Copyright(C) 2020 Marvell International Ltd. -->
<svg
   version="1.1"
   viewBox="0.0 0.0 960.0 540.0"
   fill="none"
   stroke="none"
   stroke-linecap="square"
   stroke-miterlimit="10"
   id="svg419"
   sodipodi:docname="anatomy_of_a_node.svg"
   inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/">
  <metadata
     id="metadata425">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <defs
     id="defs423">
    <linearGradient
       id="swatch11"
       inkscape:swatch="solid">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop11" />
    </linearGradient>
    <rect
       x="482.92147"
       y="348.09308"
       width="49.727583"
       height="14.867009"
       id="rect6" />
    <rect
       x="483.43413"
       y="352.19432"
       width="50.752894"
       height="13.329043"
       id="rect5" />
    <rect
       x="408.07377"
       y="492.14927"
       width="83.562845"
       height="15.379665"
       id="rect4" />
    <rect
       x="486.51006"
       y="514.19346"
       width="78.948946"
       height="13.841698"
       id="rect3" />
    <rect
       x="564.94635"
       y="507.01628"
       width="157.38524"
       height="28.196052"
       id="rect2" />
  </defs>
  <sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1920"
     inkscape:window-height="1057"
     id="namedview421"
     showgrid="false"
     inkscape:zoom="3.9012555"
     inkscape:cx="612.2388"
     inkscape:cy="326.6897"
     inkscape:window-x="-8"
     inkscape:window-y="-8"
     inkscape:window-maximized="1"
     inkscape:current-layer="g417"
     inkscape:showpageshadow="2"
     inkscape:pagecheckerboard="0"
     inkscape:deskcolor="#d1d1d1"
     inkscape:lockguides="true" />
  <clipPath
     id="p.0">
    <path
       d="m0 0l960.0 0l0 540.0l-960.0 0l0 -540.0z"
       clip-rule="nonzero"
       id="path10" />
  </clipPath>
  <g
     clip-path="url(#p.0)"
     id="g417"
     transform="matrix(1.0160138,0,0,1.0169275,-5.7394334,-5.6337913)">
    <path
       d="M 0,0 H 960 V 540 H 0 Z"
       id="path13"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd;fill-opacity:1" />
    <path
       d="m 99.11286,61.721786 h 812.126 V 487.95799 h -812.126 z"
       id="path15"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 99.11286,61.721786 h 812.126 V 487.95799 h -812.126 z"
       id="path17"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#741b47;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 140.58167,88.51181 h 541.57477 v 372.8504 H 140.58167 Z"
       id="path19"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 139.76378,88.51181 h 541.57477 v 372.8504 H 139.76378 Z"
       id="path21"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#c27ba0;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:4, 3, 1, 3" />
    <path
       d="M 564.47216,124.07151 V 301.05314"
       id="path23"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:0.99953708;stroke-linecap:butt;stroke-dasharray:none" />
    <path
       d="M 643.28056,124.07151 V 301.05314"
       id="path25"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,124.57019 h 79.80579"
       id="path27"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,159.76702 h 79.80579"
       id="path29"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,194.9639 h 79.80579"
       id="path31"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,230.16074 h 79.80579"
       id="path33"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,265.35758 h 79.80579"
       id="path35"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 563.97346,300.55445 h 79.80579"
       id="path37"
       inkscape:connector-curvature="0"
       style="fill-rule:nonzero;stroke:#1155cc;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 583.40296,146.37018 v -9.54686 h 1.29687 l 5.01563,7.49998 v -7.49998 h 1.20312 v 9.54686 h -1.29687 l -5.01563,-7.49998 v 7.49998 z m 9.04706,-3.45312 q 0,-1.92186 1.07812,-2.84374 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57811 0,1.32812 -0.40625,2.09375 -0.39062,0.76562 -1.15625,1.1875 -0.76562,0.42187 -1.67187,0.42187 -1.45313,0 -2.35938,-0.92187 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32812 0.57813,1.98437 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67187 0.57813,-2.03125 0,-1.28123 -0.59375,-1.93748 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98436 z m 11.13123,3.45312 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45312 -0.6875,-0.45313 -1.07812,-1.26563 -0.375,-0.82812 -0.375,-1.89062 0,-1.03124 0.34375,-1.87499 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54686 z m -3.70313,-3.45312 q 0,1.32812 0.5625,1.98437 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42186 -0.54687,-2.07811 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,1.99999 z m 11.3656,1.23437 1.20313,0.14063 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57812 -1.96875,0.57812 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60937 0,-1.74999 0.89063,-2.70311 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65623 0,0.10938 0,0.3125 h -5.15625 q 0.0625,1.14063 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32812 0.45313,-0.34375 0.71875,-1.07813 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85936 -0.4375,-1.29686 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.43748 z m 9.89667,-0.57811 q 0,-1.6875 0.34375,-2.71875 0.35938,-1.03125 1.04688,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35937,0.3125 0.57813,0.29688 0.95313,0.89063 0.375,0.57812 0.59375,1.42187 0.21875,0.82813 0.21875,2.25 0,1.67186 -0.35938,2.70311 -0.34375,1.03125 -1.03125,1.59375 -0.67187,0.5625 -1.73437,0.5625 -1.375,0 -2.15625,-0.98438 -0.95313,-1.1875 -0.95313,-3.87498 z m 1.20313,0 q 0,2.34373 0.54687,3.12498 0.5625,0.78125 1.35938,0.78125 0.8125,0 1.35937,-0.78125 0.5625,-0.78125 0.5625,-3.12498 0,-2.35937 -0.5625,-3.125 -0.54687,-0.78125 -1.35937,-0.78125 -0.8125,0 -1.29688,0.6875 -0.60937,0.875 -0.60937,3.21875 z"
       id="path39"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 583.40296,216.76389 v -9.54687 h 1.29687 l 5.01563,7.5 v -7.5 h 1.20312 v 9.54687 h -1.29687 l -5.01563,-7.5 v 7.5 z m 9.04706,-3.45312 q 0,-1.92188 1.07812,-2.84375 0.89063,-0.76563 2.17188,-0.76563 1.42187,0 2.32812,0.9375 0.90625,0.92188 0.90625,2.57813 0,1.32812 -0.40625,2.09375 -0.39062,0.76562 -1.15625,1.1875 -0.76562,0.42187 -1.67187,0.42187 -1.45313,0 -2.35938,-0.92187 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32812 0.57813,1.98437 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67187 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98438 z m 11.13123,3.45312 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45312 -0.6875,-0.45313 -1.07812,-1.26563 -0.375,-0.82812 -0.375,-1.89062 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45313 1.54687,-0.45313 0.625,0 1.10938,0.26563 0.5,0.25 0.79687,0.67187 v -3.42187 h 1.17188 v 9.54687 z m -3.70313,-3.45312 q 0,1.32812 0.5625,1.98437 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42187 -0.54687,-2.07812 -0.54688,-0.67188 -1.34375,-0.67188 -0.78125,0 -1.3125,0.64063 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23437 1.20313,0.14063 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57812 -1.96875,0.57812 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60937 0,-1.75 0.89063,-2.70313 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10938 0,0.3125 h -5.15625 q 0.0625,1.14063 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32812 0.45313,-0.34375 0.71875,-1.07813 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85937 -0.4375,-1.29687 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54687 -0.54688,0.53125 -0.60938,1.4375 z m 16.05292,3 v 1.125 h -6.29687 q -0.0156,-0.42187 0.14062,-0.8125 0.23438,-0.64062 0.76563,-1.26562 0.53125,-0.625 1.53125,-1.45313 1.5625,-1.26562 2.10937,-2.01562 0.54688,-0.75 0.54688,-1.40625 0,-0.70313 -0.5,-1.17188 -0.5,-0.48437 -1.29688,-0.48437 -0.85937,0 -1.375,0.51562 -0.5,0.5 -0.5,1.39063 l -1.20312,-0.10938 q 0.125,-1.35937 0.92187,-2.0625 0.8125,-0.70312 2.17188,-0.70312 1.375,0 2.17187,0.76562 0.8125,0.75 0.8125,1.875 0,0.57813 -0.23437,1.14063 -0.23438,0.54687 -0.78125,1.15625 -0.54688,0.60937 -1.8125,1.67187 -1.04688,0.89063 -1.35938,1.21875 -0.29687,0.3125 -0.48437,0.625 z"
       id="path43"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 601.37646,251.96072 v -1.32813 h 1.34375 v 1.32813 z m 3.703,0 v -1.32813 h 1.34375 v 1.32813 z"
       id="path45"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 586.11026,406.46112 v -1.32813 h 1.34375 v 1.32813 z m 3.703,0 v -1.32813 h 1.34375 v 1.32813 z"
       id="path45-8"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 583.40296,181.56705 v -9.54688 h 1.29687 l 5.01563,7.5 v -7.5 h 1.20312 v 9.54688 h -1.29687 l -5.01563,-7.5 v 7.5 z m 9.04706,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23438 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 14.31855,4.125 h -1.17188 v -7.46875 q -0.42187,0.40625 -1.10937,0.8125 -0.6875,0.40625 -1.23438,0.60937 v -1.14062 q 0.98438,-0.45313 1.71875,-1.10938 0.73438,-0.67187 1.03125,-1.28125 h 0.76563 z"
       id="path41"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 583.40296,287.1576 v -9.54687 h 1.29687 l 5.01563,7.5 v -7.5 h 1.20312 v 9.54687 h -1.29687 l -5.01563,-7.5 v 7.5 z m 9.04706,-3.45312 q 0,-1.92188 1.07812,-2.84375 0.89063,-0.76563 2.17188,-0.76563 1.42187,0 2.32812,0.9375 0.90625,0.92188 0.90625,2.57813 0,1.32812 -0.40625,2.09375 -0.39062,0.76562 -1.15625,1.1875 -0.76562,0.42187 -1.67187,0.42187 -1.45313,0 -2.35938,-0.92187 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32812 0.57813,1.98437 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67187 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98438 z m 11.13123,3.45312 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45312 -0.6875,-0.45313 -1.07812,-1.26563 -0.375,-0.82812 -0.375,-1.89062 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45313 1.54687,-0.45313 0.625,0 1.10938,0.26563 0.5,0.25 0.79687,0.67187 v -3.42187 h 1.17188 v 9.54687 z m -3.70313,-3.45312 q 0,1.32812 0.5625,1.98437 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42187 -0.54687,-2.07812 -0.54688,-0.67188 -1.34375,-0.67188 -0.78125,0 -1.3125,0.64063 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23437 1.20313,0.14063 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57812 -1.96875,0.57812 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60937 0,-1.75 0.89063,-2.70313 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10938 0,0.3125 h -5.15625 q 0.0625,1.14063 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32812 0.45313,-0.34375 0.71875,-1.07813 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85937 -0.4375,-1.29687 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54687 -0.54688,0.53125 -0.60938,1.4375 z m 10.2248,4.125 v -6.90625 h 1.0625 v 0.98438 q 0.75,-1.14063 2.1875,-1.14063 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35938 0.375,0.85938 0.0625,0.32812 0.0625,1.14062 v 4.25 h -1.17188 v -4.20312 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35938 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79687 v 3.78125 z"
       id="path47"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="M 429.60375,98.218964 H 515.588 v 35.212596 h -85.98425 z"
       id="path49"
       inkscape:connector-curvature="0"
       style="fill:#fdf8f8;fill-rule:evenodd" />
    <path
       d="m 430.31733,98.218968 h 85.98425 v 35.212602 h -85.98425 z"
       id="path51"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 458.3938,111.91233 v -9.54688 h 1.29688 l 5.01562,7.5 v -7.5 h 1.20313 v 9.54688 h -1.29688 l -5.01562,-7.5 v 7.5 z m 9.047,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23438 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z"
       id="path53"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 455.83528,127.91233 v -9.54688 h 1.29687 l 5.01563,7.5 v -7.5 h 1.20312 v 9.54688 h -1.29687 l -5.01563,-7.5 v 7.5 z m 14.00012,-0.85938 q -0.65625,0.5625 -1.26562,0.79688 -0.59375,0.21875 -1.28125,0.21875 -1.14063,0 -1.75,-0.54688 -0.60938,-0.5625 -0.60938,-1.4375 0,-0.5 0.21875,-0.92187 0.23438,-0.42188 0.60938,-0.67188 0.375,-0.25 0.84375,-0.39062 0.34375,-0.0781 1.04687,-0.17188 1.42188,-0.17187 2.09375,-0.40625 0,-0.23437 0,-0.29687 0,-0.71875 -0.32812,-1.01563 -0.45313,-0.39062 -1.34375,-0.39062 -0.8125,0 -1.21875,0.29687 -0.39063,0.28125 -0.57813,1.01563 l -1.14062,-0.15625 q 0.15625,-0.73438 0.51562,-1.1875 0.35938,-0.45313 1.03125,-0.6875 0.67188,-0.25 1.5625,-0.25 0.89063,0 1.4375,0.20312 0.5625,0.20313 0.8125,0.53125 0.26563,0.3125 0.375,0.79688 0.0469,0.29687 0.0469,1.07812 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29688,0.82813 h -1.21875 q -0.1875,-0.35938 -0.23438,-0.85938 z m -0.0937,-2.60937 q -0.64062,0.26562 -1.92187,0.4375 -0.71875,0.10937 -1.01563,0.25 -0.29687,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54687 0,0.46875 0.34375,0.78125 0.35938,0.3125 1.04688,0.3125 0.67187,0 1.20312,-0.29687 0.53125,-0.29688 0.78125,-0.8125 0.1875,-0.39063 0.1875,-1.17188 z m 2.9906,3.46875 v -6.90625 h 1.04688 v 0.96875 q 0.32812,-0.51563 0.85937,-0.8125 0.54688,-0.3125 1.23438,-0.3125 0.78125,0 1.26562,0.3125 0.48438,0.3125 0.6875,0.89062 0.82813,-1.20312 2.14063,-1.20312 1.03125,0 1.57812,0.57812 0.5625,0.5625 0.5625,1.73438 v 4.75 h -1.17187 v -4.35938 q 0,-0.70312 -0.125,-1 -0.10938,-0.3125 -0.40625,-0.5 -0.29688,-0.1875 -0.70313,-0.1875 -0.71875,0 -1.20312,0.48438 -0.48438,0.48437 -0.48438,1.54687 v 4.01563 h -1.17187 v -4.48438 q 0,-0.78125 -0.29688,-1.17187 -0.28125,-0.39063 -0.92187,-0.39063 -0.5,0 -0.92188,0.26563 -0.42187,0.25 -0.60937,0.75 -0.1875,0.5 -0.1875,1.45312 v 3.57813 z m 15.83686,-2.21875 1.20312,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.57813 -1.96875,0.57813 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.60938 0,-1.75 0.89062,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.32813 0.45312,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.54688 -0.54687,0.53125 -0.60937,1.4375 z"
       id="path55"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="M 164.11023,161.09973 H 272.51968 V 416.65878 H 164.11023 Z"
       id="path57"
       inkscape:connector-curvature="0"
       style="fill:#d9ead3;fill-rule:evenodd" />
    <path
       d="M 164.11023,161.09973 H 272.51968 V 416.65878 H 164.11023 Z"
       id="path59"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 186.03761,297.92676 v -11.48438 h 1.28125 v 1.07813 q 0.45312,-0.64063 1.01562,-0.95313 0.57813,-0.3125 1.39063,-0.3125 1.0625,0 1.875,0.54688 0.8125,0.54687 1.21875,1.54687 0.42187,0.98438 0.42187,2.17188 0,1.28125 -0.46875,2.29687 -0.45312,1.01563 -1.32812,1.5625 -0.85938,0.54688 -1.82813,0.54688 -0.70312,0 -1.26562,-0.29688 -0.54688,-0.29687 -0.90625,-0.75 v 4.04688 z m 1.26562,-7.29688 q 0,1.60938 0.64063,2.375 0.65625,0.76563 1.57812,0.76563 0.9375,0 1.60938,-0.79688 0.67187,-0.79687 0.67187,-2.45312 0,-1.59375 -0.65625,-2.375 -0.65625,-0.79688 -1.5625,-0.79688 -0.89062,0 -1.59375,0.84375 -0.6875,0.84375 -0.6875,2.4375 z m 7.61719,4.10938 v -8.29688 h 1.26563 v 1.25 q 0.48437,-0.875 0.89062,-1.15625 0.40625,-0.28125 0.90625,-0.28125 0.70313,0 1.4375,0.45313 l -0.48437,1.29687 q -0.51563,-0.29687 -1.03125,-0.29687 -0.45313,0 -0.82813,0.28125 -0.35937,0.26562 -0.51562,0.76562 -0.23438,0.75 -0.23438,1.64063 v 4.34375 z m 4.8125,-4.15625 q 0,-2.29688 1.28125,-3.40625 1.07813,-0.92188 2.60938,-0.92188 1.71875,0 2.79687,1.125 1.09375,1.10938 1.09375,3.09375 0,1.59375 -0.48437,2.51563 -0.48438,0.92187 -1.40625,1.4375 -0.90625,0.5 -2,0.5 -1.73438,0 -2.8125,-1.10938 -1.07813,-1.125 -1.07813,-3.23437 z m 1.45313,0 q 0,1.59375 0.6875,2.39062 0.70312,0.79688 1.75,0.79688 1.04687,0 1.73437,-0.79688 0.70313,-0.79687 0.70313,-2.4375 0,-1.53125 -0.70313,-2.32812 -0.6875,-0.79688 -1.73437,-0.79688 -1.04688,0 -1.75,0.79688 -0.6875,0.78125 -0.6875,2.375 z m 13.38281,1.10937 1.39062,0.1875 q -0.23437,1.42188 -1.17187,2.23438 -0.92188,0.8125 -2.28125,0.8125 -1.70313,0 -2.75,-1.10938 -1.03125,-1.125 -1.03125,-3.20312 0,-1.34375 0.4375,-2.34375 0.45312,-1.01563 1.35937,-1.51563 0.92188,-0.5 1.98438,-0.5 1.35937,0 2.21875,0.6875 0.85937,0.67188 1.09375,1.9375 l -1.35938,0.20313 q -0.20312,-0.82813 -0.70312,-1.25 -0.48438,-0.42188 -1.1875,-0.42188 -1.0625,0 -1.73438,0.76563 -0.65625,0.75 -0.65625,2.40625 0,1.67187 0.64063,2.4375 0.64062,0.75 1.67187,0.75 0.82813,0 1.375,-0.5 0.5625,-0.51563 0.70313,-1.57813 z m 8.26562,0.375 1.45313,0.17188 q -0.34375,1.28125 -1.28125,1.98437 -0.92188,0.70313 -2.35938,0.70313 -1.82812,0 -2.89062,-1.125 -1.0625,-1.125 -1.0625,-3.14063 0,-2.09375 1.07812,-3.25 1.07813,-1.15625 2.79688,-1.15625 1.65625,0 2.70312,1.14063 1.0625,1.125 1.0625,3.17187 0,0.125 0,0.375 h -6.1875 q 0.0781,1.375 0.76563,2.10938 0.70312,0.71875 1.73437,0.71875 0.78125,0 1.32813,-0.40625 0.54687,-0.40625 0.85937,-1.29688 z m -4.60937,-2.28125 h 4.625 q -0.0937,-1.04687 -0.53125,-1.5625 -0.67188,-0.8125 -1.73438,-0.8125 -0.96875,0 -1.64062,0.65625 -0.65625,0.64063 -0.71875,1.71875 z m 7.27344,2.46875 1.39062,-0.21875 q 0.10938,0.84375 0.64063,1.29688 0.54687,0.4375 1.5,0.4375 0.96875,0 1.4375,-0.39063 0.46875,-0.40625 0.46875,-0.9375 0,-0.46875 -0.40625,-0.75 -0.29688,-0.1875 -1.4375,-0.46875 -1.54688,-0.39062 -2.15625,-0.67187 -0.59375,-0.29688 -0.90625,-0.79688 -0.29688,-0.5 -0.29688,-1.10937 0,-0.5625 0.25,-1.03125 0.25,-0.46875 0.6875,-0.78125 0.32813,-0.25 0.89063,-0.40625 0.57812,-0.17188 1.21875,-0.17188 0.98437,0 1.71875,0.28125 0.73437,0.28125 1.07812,0.76563 0.35938,0.46875 0.5,1.28125 l -1.375,0.1875 q -0.0937,-0.64063 -0.54687,-1 -0.45313,-0.35938 -1.26563,-0.35938 -0.96875,0 -1.39062,0.32813 -0.40625,0.3125 -0.40625,0.73437 0,0.28125 0.17187,0.5 0.17188,0.21875 0.53125,0.375 0.21875,0.0781 1.25,0.35938 1.48438,0.39062 2.07813,0.65625 0.59375,0.25 0.92187,0.73437 0.34375,0.48438 0.34375,1.20313 0,0.70312 -0.42187,1.32812 -0.40625,0.60938 -1.1875,0.95313 -0.76563,0.34375 -1.73438,0.34375 -1.625,0 -2.46875,-0.67188 -0.84375,-0.67187 -1.07812,-2 z m 8,0 1.39062,-0.21875 q 0.10938,0.84375 0.64063,1.29688 0.54687,0.4375 1.5,0.4375 0.96875,0 1.4375,-0.39063 0.46875,-0.40625 0.46875,-0.9375 0,-0.46875 -0.40625,-0.75 -0.29688,-0.1875 -1.4375,-0.46875 -1.54688,-0.39062 -2.15625,-0.67187 -0.59375,-0.29688 -0.90625,-0.79688 -0.29688,-0.5 -0.29688,-1.10937 0,-0.5625 0.25,-1.03125 0.25,-0.46875 0.6875,-0.78125 0.32813,-0.25 0.89063,-0.40625 0.57812,-0.17188 1.21875,-0.17188 0.98437,0 1.71875,0.28125 0.73437,0.28125 1.07812,0.76563 0.35938,0.46875 0.5,1.28125 l -1.375,0.1875 q -0.0937,-0.64063 -0.54687,-1 -0.45313,-0.35938 -1.26563,-0.35938 -0.96875,0 -1.39062,0.32813 -0.40625,0.3125 -0.40625,0.73437 0,0.28125 0.17187,0.5 0.17188,0.21875 0.53125,0.375 0.21875,0.0781 1.25,0.35938 1.48438,0.39062 2.07813,0.65625 0.59375,0.25 0.92187,0.73437 0.34375,0.48438 0.34375,1.20313 0,0.70312 -0.42187,1.32812 -0.40625,0.60938 -1.1875,0.95313 -0.76563,0.34375 -1.73438,0.34375 -1.625,0 -2.46875,-0.67188 -0.84375,-0.67187 -1.07812,-2 z m 11.25,5.85938 q -1.17188,-1.46875 -1.98438,-3.4375 -0.79687,-1.98438 -0.79687,-4.09375 0,-1.85938 0.60937,-3.5625 0.70313,-1.96875 2.17188,-3.9375 h 1 q -0.9375,1.625 -1.25,2.32812 -0.46875,1.07813 -0.75,2.25 -0.32813,1.45313 -0.32813,2.9375 0,3.75 2.32813,7.51563 z m 3.5625,0 h -1.01563 q 2.34375,-3.76563 2.34375,-7.51563 0,-1.46875 -0.34375,-2.92187 -0.26562,-1.17188 -0.73437,-2.25 -0.3125,-0.70313 -1.26563,-2.34375 h 1.01563 q 1.46875,1.96875 2.17187,3.9375 0.59375,1.70312 0.59375,3.5625 0,2.10937 -0.8125,4.09375 -0.79687,1.96875 -1.95312,3.4375 z"
       id="path61"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 308.11023,161.09973 h 161.48032 v 141.7008 H 308.11023 Z"
       id="path63"
       inkscape:connector-curvature="0"
       style="fill:#cfe2f3;fill-rule:evenodd" />
    <path
       d="m 308.11023,161.09973 h 161.48032 v 141.7008 H 308.11023 Z"
       id="path65"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 372.79996,224.29451 1.51562,0.375 q -0.46875,1.875 -1.71875,2.85937 -1.23437,0.98438 -3.01562,0.98438 -1.85938,0 -3.01563,-0.75 -1.15625,-0.76563 -1.76562,-2.1875 -0.60938,-1.4375 -0.60938,-3.07813 0,-1.79687 0.6875,-3.125 0.6875,-1.32812 1.9375,-2.01562 1.26563,-0.70313 2.78125,-0.70313 1.71875,0 2.89063,0.875 1.17187,0.875 1.64062,2.46875 l -1.5,0.34375 q -0.39062,-1.25 -1.15625,-1.8125 -0.75,-0.57812 -1.90625,-0.57812 -1.3125,0 -2.20312,0.64062 -0.89063,0.625 -1.25,1.70313 -0.35938,1.0625 -0.35938,2.1875 0,1.46875 0.42188,2.5625 0.4375,1.07812 1.32812,1.625 0.90625,0.53125 1.95313,0.53125 1.26562,0 2.14062,-0.73438 0.89063,-0.73437 1.20313,-2.17187 z m 2.67969,-0.14063 q 0,-2.29687 1.28125,-3.40625 1.07812,-0.92187 2.60937,-0.92187 1.71875,0 2.79688,1.125 1.09375,1.10937 1.09375,3.09375 0,1.59375 -0.48438,2.51562 -0.48437,0.92188 -1.40625,1.4375 -0.90625,0.5 -2,0.5 -1.73437,0 -2.8125,-1.10937 -1.07812,-1.125 -1.07812,-3.23438 z m 1.45312,0 q 0,1.59375 0.6875,2.39063 0.70313,0.79687 1.75,0.79687 1.04688,0 1.73438,-0.79687 0.70312,-0.79688 0.70312,-2.4375 0,-1.53125 -0.70312,-2.32813 -0.6875,-0.79687 -1.73438,-0.79687 -1.04687,0 -1.75,0.79687 -0.6875,0.78125 -0.6875,2.375 z m 7.97656,4.15625 v -8.29687 h 1.26563 v 1.17187 q 0.90625,-1.35937 2.64062,-1.35937 0.75,0 1.375,0.26562 0.625,0.26563 0.9375,0.70313 0.3125,0.4375 0.4375,1.04687 0.0781,0.39063 0.0781,1.35938 v 5.10937 h -1.40625 v -5.04687 q 0,-0.85938 -0.17188,-1.28125 -0.15625,-0.4375 -0.57812,-0.6875 -0.40625,-0.25 -0.96875,-0.25 -0.90625,0 -1.5625,0.57812 -0.64063,0.5625 -0.64063,2.15625 v 4.53125 z m 11.96094,-1.26562 0.20313,1.25 q -0.59375,0.125 -1.0625,0.125 -0.76563,0 -1.1875,-0.23438 -0.42188,-0.25 -0.59375,-0.64062 -0.17188,-0.40625 -0.17188,-1.67188 v -4.76562 h -1.03125 v -1.09375 h 1.03125 v -2.0625 l 1.40625,-0.84375 v 2.90625 h 1.40625 v 1.09375 h -1.40625 v 4.84375 q 0,0.60937 0.0625,0.78125 0.0781,0.17187 0.25,0.28125 0.17188,0.0937 0.48438,0.0937 0.23437,0 0.60937,-0.0625 z m 7.05469,-1.40625 1.45312,0.17187 q -0.34375,1.28125 -1.28125,1.98438 -0.92187,0.70312 -2.35937,0.70312 -1.82813,0 -2.89063,-1.125 -1.0625,-1.125 -1.0625,-3.14062 0,-2.09375 1.07813,-3.25 1.07812,-1.15625 2.79687,-1.15625 1.65625,0 2.70313,1.14062 1.0625,1.125 1.0625,3.17188 0,0.125 0,0.375 h -6.1875 q 0.0781,1.375 0.76562,2.10937 0.70313,0.71875 1.73438,0.71875 0.78125,0 1.32812,-0.40625 0.54688,-0.40625 0.85938,-1.29687 z m -4.60938,-2.28125 h 4.625 q -0.0937,-1.04688 -0.53125,-1.5625 -0.67187,-0.8125 -1.73437,-0.8125 -0.96875,0 -1.64063,0.65625 -0.65625,0.64062 -0.71875,1.71875 z m 6.89844,4.95312 3.03125,-4.3125 -2.8125,-3.98437 h 1.76563 l 1.26562,1.9375 q 0.35938,0.5625 0.57813,0.9375 0.34375,-0.51563 0.64062,-0.92188 l 1.39063,-1.95312 h 1.6875 l -2.875,3.90625 3.09375,4.39062 h -1.73438 l -1.70312,-2.57812 -0.45313,-0.70313 -2.17187,3.28125 z m 12,-1.26562 0.20313,1.25 q -0.59375,0.125 -1.0625,0.125 -0.76563,0 -1.1875,-0.23438 -0.42188,-0.25 -0.59375,-0.64062 -0.17188,-0.40625 -0.17188,-1.67188 v -4.76562 h -1.03125 v -1.09375 h 1.03125 v -2.0625 l 1.40625,-0.84375 v 2.90625 h 1.40625 v 1.09375 h -1.40625 v 4.84375 q 0,0.60937 0.0625,0.78125 0.0781,0.17187 0.25,0.28125 0.17188,0.0937 0.48438,0.0937 0.23437,0 0.60937,-0.0625 z"
       id="path67"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="M 364.5812,247.31013 V 235.857 h 2.28125 l 2.71875,8.10938 q 0.375,1.125 0.54688,1.6875 0.1875,-0.625 0.60937,-1.82813 l 2.73438,-7.96875 h 2.04687 v 11.45313 h -1.46875 v -9.59375 l -3.32812,9.59375 h -1.35938 l -3.3125,-9.75 v 9.75 z m 18.875,-2.67188 1.45313,0.17188 q -0.34375,1.28125 -1.28125,1.98437 -0.92188,0.70313 -2.35938,0.70313 -1.82812,0 -2.89062,-1.125 -1.0625,-1.125 -1.0625,-3.14063 0,-2.09375 1.07812,-3.25 1.07813,-1.15625 2.79688,-1.15625 1.65625,0 2.70312,1.14063 1.0625,1.125 1.0625,3.17187 0,0.125 0,0.375 h -6.1875 q 0.0781,1.375 0.76563,2.10938 0.70312,0.71875 1.73437,0.71875 0.78125,0 1.32813,-0.40625 0.54687,-0.40625 0.85937,-1.29688 z m -4.60937,-2.28125 h 4.625 q -0.0937,-1.04687 -0.53125,-1.5625 -0.67188,-0.8125 -1.73438,-0.8125 -0.96875,0 -1.64062,0.65625 -0.65625,0.64063 -0.71875,1.71875 z m 7.83593,4.95313 v -8.29688 h 1.25 v 1.15625 q 0.39063,-0.60937 1.03125,-0.96875 0.65625,-0.375 1.48438,-0.375 0.92187,0 1.51562,0.39063 0.59375,0.375 0.82813,1.0625 0.98437,-1.45313 2.5625,-1.45313 1.23437,0 1.89062,0.6875 0.67188,0.67188 0.67188,2.09375 v 5.70313 h -1.39063 v -5.23438 q 0,-0.84375 -0.14062,-1.20312 -0.14063,-0.375 -0.5,-0.59375 -0.35938,-0.23438 -0.84375,-0.23438 -0.875,0 -1.45313,0.57813 -0.57812,0.57812 -0.57812,1.85937 v 4.82813 h -1.40625 v -5.39063 q 0,-0.9375 -0.34375,-1.40625 -0.34375,-0.46875 -1.125,-0.46875 -0.59375,0 -1.09375,0.3125 -0.5,0.3125 -0.73438,0.92188 -0.21875,0.59375 -0.21875,1.71875 v 4.3125 z m 12.79688,-4.15625 q 0,-2.29688 1.28125,-3.40625 1.07812,-0.92188 2.60937,-0.92188 1.71875,0 2.79688,1.125 1.09375,1.10938 1.09375,3.09375 0,1.59375 -0.48438,2.51563 -0.48437,0.92187 -1.40625,1.4375 -0.90625,0.5 -2,0.5 -1.73437,0 -2.8125,-1.10938 -1.07812,-1.125 -1.07812,-3.23437 z m 1.45312,0 q 0,1.59375 0.6875,2.39062 0.70313,0.79688 1.75,0.79688 1.04688,0 1.73438,-0.79688 0.70312,-0.79687 0.70312,-2.4375 0,-1.53125 -0.70312,-2.32812 -0.6875,-0.79688 -1.73438,-0.79688 -1.04687,0 -1.75,0.79688 -0.6875,0.78125 -0.6875,2.375 z m 7.96094,4.15625 v -8.29688 h 1.26563 v 1.25 q 0.48437,-0.875 0.89062,-1.15625 0.40625,-0.28125 0.90625,-0.28125 0.70313,0 1.4375,0.45313 l -0.48437,1.29687 q -0.51563,-0.29687 -1.03125,-0.29687 -0.45313,0 -0.82813,0.28125 -0.35937,0.26562 -0.51562,0.76562 -0.23438,0.75 -0.23438,1.64063 v 4.34375 z m 5.28125,3.20312 -0.15625,-1.32812 q 0.45313,0.125 0.79688,0.125 0.46875,0 0.75,-0.15625 0.28125,-0.15625 0.46875,-0.4375 0.125,-0.20313 0.42187,-1.04688 0.0469,-0.10937 0.125,-0.34375 l -3.14062,-8.3125 h 1.51562 l 1.71875,4.79688 q 0.34375,0.92187 0.60938,1.92187 0.23437,-0.96875 0.57812,-1.89062 l 1.76563,-4.82813 h 1.40625 l -3.15625,8.4375 q -0.5,1.375 -0.78125,1.89063 -0.375,0.6875 -0.85938,1.01562 -0.48437,0.32813 -1.15625,0.32813 -0.40625,0 -0.90625,-0.17188 z"
       id="path69"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 308.11023,334.86877 h 74.4567 v 80.97638 h -74.4567 z"
       id="path71"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 308.11023,334.86877 h 74.4567 v 80.97638 h -74.4567 z"
       id="path73"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 330.8464,371.3732 v -1.60938 h 1.40625 v 1.60938 z m 0,9.84375 v -8.29688 h 1.40625 v 8.29688 z m 3.55469,0 v -8.29688 h 1.26562 v 1.17188 q 0.90625,-1.35938 2.64063,-1.35938 0.75,0 1.375,0.26563 0.625,0.26562 0.9375,0.70312 0.3125,0.4375 0.4375,1.04688 0.0781,0.39062 0.0781,1.35937 v 5.10938 h -1.40625 v -5.04688 q 0,-0.85937 -0.17187,-1.28125 -0.15625,-0.4375 -0.57813,-0.6875 -0.40625,-0.25 -0.96875,-0.25 -0.90625,0 -1.5625,0.57813 -0.64062,0.5625 -0.64062,2.15625 v 4.53125 z m 8.89844,-9.84375 v -1.60938 h 1.40625 v 1.60938 z m 0,9.84375 v -8.29688 h 1.40625 v 8.29688 z m 6.61718,-1.26563 0.20313,1.25 q -0.59375,0.125 -1.0625,0.125 -0.76563,0 -1.1875,-0.23437 -0.42188,-0.25 -0.59375,-0.64063 -0.17188,-0.40625 -0.17188,-1.67187 v -4.76563 h -1.03125 v -1.09375 h 1.03125 v -2.0625 l 1.40625,-0.84375 v 2.90625 h 1.40625 v 1.09375 h -1.40625 v 4.84375 q 0,0.60938 0.0625,0.78125 0.0781,0.17188 0.25,0.28125 0.17188,0.0937 0.48438,0.0937 0.23437,0 0.60937,-0.0625 z m 4.07032,4.64063 q -1.17188,-1.46875 -1.98438,-3.4375 -0.79687,-1.98438 -0.79687,-4.09375 0,-1.85938 0.60937,-3.5625 0.70313,-1.96875 2.17188,-3.9375 h 1 q -0.9375,1.625 -1.25,2.32812 -0.46875,1.07813 -0.75,2.25 -0.32813,1.45313 -0.32813,2.9375 0,3.75 2.32813,7.51563 z m 3.5625,0 h -1.01563 q 2.34375,-3.76563 2.34375,-7.51563 0,-1.46875 -0.34375,-2.92187 -0.26562,-1.17188 -0.73437,-2.25 -0.3125,-0.70313 -1.26563,-2.34375 h 1.01563 q 1.46875,1.96875 2.17187,3.9375 0.59375,1.70312 0.59375,3.5625 0,2.10937 -0.8125,4.09375 -0.79687,1.96875 -1.95312,3.4375 z"
       id="path75"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 395.14435,334.86877 h 74.4567 v 80.97638 h -74.4567 z"
       id="path77"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 395.14435,334.86877 h 74.4567 v 80.97638 h -74.4567 z"
       id="path79"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 418.20865,381.21695 v -7.20313 h -1.23438 v -1.09375 h 1.23438 v -0.89062 q 0,-0.82813 0.15625,-1.23438 0.20312,-0.54687 0.70312,-0.89062 0.51563,-0.34375 1.4375,-0.34375 0.59375,0 1.3125,0.14062 l -0.20312,1.23438 q -0.4375,-0.0781 -0.82813,-0.0781 -0.64062,0 -0.90625,0.28125 -0.26562,0.26563 -0.26562,1.01563 v 0.76562 h 1.60937 v 1.09375 h -1.60937 v 7.20313 z m 4.11719,-9.84375 v -1.60938 h 1.40625 v 1.60938 z m 0,9.84375 v -8.29688 h 1.40625 v 8.29688 z m 3.55468,0 v -8.29688 h 1.26563 v 1.17188 q 0.90625,-1.35938 2.64062,-1.35938 0.75,0 1.375,0.26563 0.625,0.26562 0.9375,0.70312 0.3125,0.4375 0.4375,1.04688 0.0781,0.39062 0.0781,1.35937 v 5.10938 h -1.40625 v -5.04688 q 0,-0.85937 -0.17188,-1.28125 -0.15625,-0.4375 -0.57812,-0.6875 -0.40625,-0.25 -0.96875,-0.25 -0.90625,0 -1.5625,0.57813 -0.64063,0.5625 -0.64063,2.15625 v 4.53125 z m 8.89844,-9.84375 v -1.60938 h 1.40625 v 1.60938 z m 0,9.84375 v -8.29688 h 1.40625 v 8.29688 z m 6.24219,3.375 q -1.17188,-1.46875 -1.98438,-3.4375 -0.79687,-1.98438 -0.79687,-4.09375 0,-1.85938 0.60937,-3.5625 0.70313,-1.96875 2.17188,-3.9375 h 1 q -0.9375,1.625 -1.25,2.32812 -0.46875,1.07813 -0.75,2.25 -0.32813,1.45313 -0.32813,2.9375 0,3.75 2.32813,7.51563 z m 3.5625,0 h -1.01563 q 2.34375,-3.76563 2.34375,-7.51563 0,-1.46875 -0.34375,-2.92187 -0.26562,-1.17188 -0.73437,-2.25 -0.3125,-0.70313 -1.26563,-2.34375 h 1.01563 q 1.46875,1.96875 2.17187,3.9375 0.59375,1.70312 0.59375,3.5625 0,2.10937 -0.8125,4.09375 -0.79687,1.96875 -1.95312,3.4375 z"
       id="path81"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 272.51968,240.83989 6.33072,-6.3307 v 3.16536 h 22.92914 v -3.16536 l 6.33069,6.3307 -6.33069,6.33072 v -3.16536 H 278.8504 v 3.16536 z"
       id="path83"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 272.51968,240.83989 6.33072,-6.3307 v 3.16536 h 22.92914 v -3.16536 l 6.33069,6.3307 -6.33069,6.33072 v -3.16536 H 278.8504 v 3.16536 z"
       id="path85"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 344.71915,308.78217 3.16537,-3.16537 3.16535,3.16537 h -1.58267 v 18.86612 h 1.58267 l -3.16535,3.16537 -3.16537,-3.16537 h 1.5827 v -18.86612 z"
       id="path87"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 344.71915,308.78217 3.16537,-3.16537 3.16535,3.16537 h -1.58267 v 18.86612 h 1.58267 l -3.16535,3.16537 -3.16537,-3.16537 h 1.5827 v -18.86612 z"
       id="path89"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 424.71915,308.78217 3.16537,-3.16537 3.16535,3.16537 h -1.58267 v 18.86612 h 1.58267 l -3.16535,3.16537 -3.16537,-3.16537 h 1.5827 v -18.86612 z"
       id="path91"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 424.71915,308.78217 3.16537,-3.16537 3.16535,3.16537 h -1.58267 v 18.86612 h 1.58267 l -3.16535,3.16537 -3.16537,-3.16537 h 1.5827 v -18.86612 z"
       id="path93"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 532.8373,210.97375 h 99.40155 v 27.46457 H 532.8373 Z"
       id="path95"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 566.33406,118.70458 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17187 v -4.20313 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35937 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79688 v 3.78125 z m 12.14685,-2.21875 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 5.7406,4.125 2.53125,-3.59375 -2.34375,-3.3125 h 1.46875 l 1.0625,1.60937 q 0.29688,0.46875 0.48438,0.78125 0.28125,-0.4375 0.51562,-0.76562 l 1.17188,-1.625 h 1.40625 l -2.39063,3.25 2.5625,3.65625 h -1.4375 l -1.42187,-2.14063 -0.375,-0.59375 -1.8125,2.73438 z m 10.00781,-1.04688 0.17188,1.03125 q -0.5,0.10938 -0.89063,0.10938 -0.64062,0 -1,-0.20313 -0.34375,-0.20312 -0.48437,-0.53125 -0.14063,-0.32812 -0.14063,-1.39062 v -3.96875 h -0.85937 v -0.90625 h 0.85937 v -1.71875 l 1.17188,-0.70313 v 2.42188 h 1.17187 v 0.90625 h -1.17187 v 4.04687 q 0,0.5 0.0469,0.64063 0.0625,0.14062 0.20313,0.23437 0.14062,0.0781 0.40625,0.0781 0.20312,0 0.51562,-0.0469 z m 0.0624,3.70313 v -0.85938 h 7.76563 v 0.85938 z m 8.4906,-2.65625 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17187 v -4.20313 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35937 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79688 v 3.78125 z m 6.97498,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.36561,1.23438 1.20312,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.57813 -1.96875,0.57813 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.60938 0,-1.75 0.89062,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.32813 0.45312,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.54688 -0.54687,0.53125 -0.60937,1.4375 z m 6.0531,2.0625 1.15625,-0.1875 q 0.10937,0.70312 0.54687,1.07812 0.45313,0.35938 1.25,0.35938 0.8125,0 1.20313,-0.32813 0.39062,-0.32812 0.39062,-0.76562 0,-0.39063 -0.35937,-0.625 -0.23438,-0.15625 -1.1875,-0.39063 -1.29688,-0.32812 -1.79688,-0.5625 -0.48437,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20313,-0.84375 0.21875,-0.40625 0.57812,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01563,-0.14062 0.8125,0 1.42187,0.23437 0.60938,0.23438 0.90625,0.64063 0.29688,0.39062 0.40625,1.0625 l -1.14062,0.15625 q -0.0781,-0.53125 -0.45313,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14063,0.42187 0.15625,0.1875 0.45312,0.3125 0.17188,0.0625 1.03125,0.29688 1.25,0.32812 1.73438,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64063,0.28125 -1.45313,0.28125 -1.34375,0 -2.04687,-0.5625 -0.70313,-0.5625 -0.90625,-1.65625 z m 7.16406,4.71875 V 109.1577 h 2.57812 v 0.96875 h -1.40625 v 10.25 h 1.40625 v 0.98438 z m 5.64044,0 h -2.59375 v -0.98438 h 1.42188 v -10.25 h -1.42188 v -0.96875 h 2.59375 z"
       id="path97"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 550.19,301.78385 c -7.18402,0 -13.00787,-0.97061 -13.00787,-2.16791 v -85.33349 c 0,-1.1973 -5.82383,-2.16791 -13.00788,-2.16791 v 0 c 7.18405,0 13.00788,-0.97058 13.00788,-2.16788 v -85.33351 0 c 0,-1.19729 5.82385,-2.16789 13.00787,-2.16789 z"
       id="path99"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 550.19,301.78385 c -7.18402,0 -13.00787,-0.97061 -13.00787,-2.16791 v -85.33349 c 0,-1.1973 -5.82383,-2.16791 -13.00788,-2.16791 v 0 c 7.18405,0 13.00788,-0.97058 13.00788,-2.16788 v -85.33351 0 c 0,-1.19729 5.82385,-2.16789 13.00787,-2.16789"
       id="path101"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 550.19,301.78385 c -7.18402,0 -13.00787,-0.97061 -13.00787,-2.16791 v -85.33349 c 0,-1.1973 -5.82383,-2.16791 -13.00788,-2.16791 v 0 c 7.18405,0 13.00788,-0.97058 13.00788,-2.16788 v -85.33351 0 c 0,-1.19729 5.82385,-2.16789 13.00787,-2.16789"
       id="path103"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 549.8691,439.93725 c -7.21183,0 -13.05824,-0.71218 -13.05824,-1.59066 v -62.61163 c 0,-0.8785 -5.84638,-1.59067 -13.05824,-1.59067 v 0 c 7.21186,0 13.05824,-0.71213 13.05824,-1.59063 v -62.61166 0 c 0,-0.87849 5.84641,-1.59065 13.05824,-1.59065"
       id="path103-6"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:0.858236;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 445.60104,298.39108 h 99.40158 v 27.46457 h -99.40158 z"
       id="path105"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 474.0375,231.22862 v -6.21875 h 0.9375 v 0.875 q 0.6875,-1.01563 1.98437,-1.01563 0.5625,0 1.03125,0.20313 0.48438,0.20312 0.71875,0.53125 0.23438,0.32812 0.32813,0.76562 0.0469,0.29688 0.0469,1.03125 v 3.82813 h -1.04687 v -3.78125 q 0,-0.65625 -0.125,-0.96875 -0.125,-0.3125 -0.4375,-0.5 -0.3125,-0.20313 -0.73438,-0.20313 -0.67187,0 -1.17187,0.4375 -0.48438,0.42188 -0.48438,1.60938 v 3.40625 z m 7.64258,0 h -0.98438 v -8.59375 h 1.0625 v 3.0625 q 0.67188,-0.82813 1.70313,-0.82813 0.57812,0 1.07812,0.23438 0.51563,0.21875 0.84375,0.64062 0.34375,0.42188 0.53125,1.01563 0.1875,0.59375 0.1875,1.26562 0,1.59375 -0.79687,2.46875 -0.79688,0.875 -1.89063,0.875 -1.10937,0 -1.73437,-0.92187 z m -0.0156,-3.15625 q 0,1.10937 0.3125,1.60937 0.5,0.8125 1.34375,0.8125 0.6875,0 1.1875,-0.59375 0.51563,-0.59375 0.51563,-1.79687 0,-1.21875 -0.48438,-1.79688 -0.48437,-0.57812 -1.17187,-0.57812 -0.6875,0 -1.20313,0.60937 -0.5,0.59375 -0.5,1.73438 z m 4.73633,5.54687 v -0.76562 h 7 v 0.76562 z m 11.9082,-4.39062 1.09375,0.125 q -0.25,0.95312 -0.95312,1.48437 -0.70313,0.53125 -1.78125,0.53125 -1.35938,0 -2.17188,-0.84375 -0.79687,-0.84375 -0.79687,-2.35937 0,-1.5625 0.8125,-2.42188 0.8125,-0.875 2.09375,-0.875 1.25,0 2.03125,0.84375 0.79687,0.84375 0.79687,2.39063 0,0.0937 0,0.28125 h -4.64062 q 0.0625,1.03125 0.57812,1.57812 0.51563,0.53125 1.29688,0.53125 0.57812,0 0.98437,-0.29687 0.42188,-0.3125 0.65625,-0.96875 z m -3.45312,-1.70313 h 3.46875 q -0.0625,-0.79687 -0.39063,-1.1875 -0.51562,-0.60937 -1.3125,-0.60937 -0.73437,0 -1.23437,0.48437 -0.48438,0.48438 -0.53125,1.3125 z m 9.9082,3.70313 v -0.78125 q -0.59375,0.92187 -1.73437,0.92187 -0.75,0 -1.375,-0.40625 -0.625,-0.42187 -0.96875,-1.15625 -0.34375,-0.73437 -0.34375,-1.6875 0,-0.92187 0.3125,-1.6875 0.3125,-0.76562 0.9375,-1.15625 0.625,-0.40625 1.39062,-0.40625 0.5625,0 1,0.23438 0.4375,0.23437 0.71875,0.60937 v -3.07812 h 1.04688 v 8.59375 z m -3.32812,-3.10938 q 0,1.20313 0.5,1.79688 0.5,0.57812 1.1875,0.57812 0.6875,0 1.17187,-0.5625 0.48438,-0.5625 0.48438,-1.71875 0,-1.28125 -0.5,-1.875 -0.48438,-0.59375 -1.20313,-0.59375 -0.70312,0 -1.17187,0.57813 -0.46875,0.5625 -0.46875,1.79687 z m 5.76758,3.625 1.03125,0.15625 q 0.0625,0.46875 0.35937,0.6875 0.39063,0.29688 1.0625,0.29688 0.73438,0 1.125,-0.29688 0.40625,-0.29687 0.54688,-0.8125 0.0937,-0.32812 0.0781,-1.35937 -0.6875,0.8125 -1.71875,0.8125 -1.28125,0 -1.98437,-0.92188 -0.70313,-0.9375 -0.70313,-2.21875 0,-0.89062 0.3125,-1.64062 0.32813,-0.76563 0.9375,-1.17188 0.60938,-0.40625 1.4375,-0.40625 1.10938,0 1.82813,0.89063 v -0.75 h 0.96875 v 5.375 q 0,1.45312 -0.29688,2.0625 -0.29687,0.60937 -0.9375,0.95312 -0.64062,0.35938 -1.57812,0.35938 -1.10938,0 -1.79688,-0.5 -0.6875,-0.5 -0.67187,-1.51563 z m 0.875,-3.73437 q 0,1.21875 0.48437,1.78125 0.48438,0.5625 1.21875,0.5625 0.73438,0 1.21875,-0.5625 0.5,-0.5625 0.5,-1.75 0,-1.14063 -0.51562,-1.71875 -0.5,-0.57813 -1.21875,-0.57813 -0.70313,0 -1.20313,0.57813 -0.48437,0.5625 -0.48437,1.6875 z m 10.25195,1.21875 1.09375,0.125 q -0.25,0.95312 -0.95313,1.48437 -0.70312,0.53125 -1.78125,0.53125 -1.35937,0 -2.17187,-0.84375 -0.79688,-0.84375 -0.79688,-2.35937 0,-1.5625 0.8125,-2.42188 0.8125,-0.875 2.09375,-0.875 1.25,0 2.03125,0.84375 0.79688,0.84375 0.79688,2.39063 0,0.0937 0,0.28125 h -4.64063 q 0.0625,1.03125 0.57813,1.57812 0.51562,0.53125 1.29687,0.53125 0.57813,0 0.98438,-0.29687 0.42187,-0.3125 0.65625,-0.96875 z m -3.45313,-1.70313 h 3.46875 q -0.0625,-0.79687 -0.39062,-1.1875 -0.51563,-0.60937 -1.3125,-0.60937 -0.73438,0 -1.23438,0.48437 -0.48437,0.48438 -0.53125,1.3125 z m 5.45508,1.84375 1.03125,-0.15625 q 0.0937,0.625 0.48438,0.95313 0.40625,0.32812 1.14062,0.32812 0.71875,0 1.0625,-0.28125 0.35938,-0.29687 0.35938,-0.70312 0,-0.35938 -0.3125,-0.5625 -0.21875,-0.14063 -1.07813,-0.35938 -1.15625,-0.29687 -1.60937,-0.5 -0.4375,-0.21875 -0.67188,-0.59375 -0.23437,-0.375 -0.23437,-0.84375 0,-0.40625 0.1875,-0.76562 0.1875,-0.35938 0.51562,-0.59375 0.25,-0.17188 0.67188,-0.29688 0.42187,-0.125 0.92187,-0.125 0.71875,0 1.26563,0.21875 0.5625,0.20313 0.82812,0.5625 0.26563,0.35938 0.35938,0.95313 l -1.03125,0.14062 q -0.0625,-0.46875 -0.40625,-0.73437 -0.32813,-0.28125 -0.95313,-0.28125 -0.71875,0 -1.03125,0.25 -0.3125,0.23437 -0.3125,0.5625 0,0.20312 0.125,0.35937 0.14063,0.17188 0.40625,0.28125 0.15625,0.0625 0.9375,0.26563 1.125,0.3125 1.5625,0.5 0.4375,0.1875 0.6875,0.54687 0.25,0.35938 0.25,0.90625 0,0.53125 -0.3125,1 -0.29687,0.45313 -0.875,0.71875 -0.57812,0.25 -1.3125,0.25 -1.21875,0 -1.85937,-0.5 -0.625,-0.51562 -0.79688,-1.5 z"
       id="path107"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="M 89.115486,28.062992 H 289.55644 V 55.527557 H 89.115486 Z"
       id="path109"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 784.2409,84.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path113"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 784.2409,84.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path115"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 854.0783,92.15187 h 12.664 v 7.173988 h -12.664 z"
       id="path117"
       inkscape:connector-curvature="0"
       style="fill:#fdf8f8;fill-rule:evenodd" />
    <path
       d="m 854.0783,92.15187 h 12.664 v 7.173988 h -12.664 z"
       id="path119"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 796.6742,97.166214 h 15.94489 V 149.21876 H 796.6742 Z"
       id="path121"
       inkscape:connector-curvature="0"
       style="fill:#d9ead3;fill-rule:evenodd" />
    <path
       d="m 796.6742,97.166214 h 15.94489 V 149.21876 H 796.6742 Z"
       id="path123"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,97.166214 h 23.76062 v 28.860576 h -23.76062 z"
       id="path125"
       inkscape:connector-curvature="0"
       style="fill:#cfe2f3;fill-rule:evenodd" />
    <path
       d="m 817.86584,97.166214 h 23.76062 v 28.860576 h -23.76062 z"
       id="path127"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,132.55469 h 10.95038 v 16.4884 h -10.95038 z"
       id="path129"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 817.86584,132.55469 h 10.95038 v 16.4884 h -10.95038 z"
       id="path131"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 830.6742,132.55469 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path133"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 830.6742,132.55469 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path135"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 812.6282,113.40989 1.2937,-1.29367 v 0.64683 h 2.65796 v -0.64683 l 1.29364,1.29367 -1.29364,1.29367 v -0.64683 h -2.65796 v 0.64683 z"
       id="path137"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 812.6282,113.40989 1.2937,-1.29367 v 0.64683 h 2.65796 v -0.64683 l 1.29364,1.29367 -1.29364,1.29367 v -0.64683 h -2.65796 v 0.64683 z"
       id="path139"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 823.25336,127.06765 0.47021,-0.4702 0.47022,0.4702 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.4702 -0.47021,-0.4702 h 0.23511 v -4.18723 z"
       id="path141"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 823.25336,127.06765 0.47021,-0.4702 0.47022,0.4702 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.4702 -0.47021,-0.4702 h 0.23511 v -4.18723 z"
       id="path143"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 835.02655,127.06765 0.47015,-0.4702 0.47022,0.4702 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.4702 -0.47015,-0.4702 h 0.23505 v -4.18723 z"
       id="path145"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 835.02655,127.06765 0.47015,-0.4702 0.47022,0.4702 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.4702 -0.47015,-0.4702 h 0.23505 v -4.18723 z"
       id="path147"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 850.9376,107.32317 h 14.62836 v 5.59806 H 850.9376 Z"
       id="path149"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,149.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02659 0 c 0,-1.1702 0.85608,-2.11884 1.91211,-2.11884 z"
       id="path151"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,149.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02659 0 c 0,-1.1702 0.85608,-2.11884 1.91211,-2.11884"
       id="path153"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,149.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02659 0 c 0,-1.1702 0.85608,-2.11884 1.91211,-2.11884"
       id="path155"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 838.0996,125.12592 h 14.62836 v 5.59805 H 838.0996 Z"
       id="path157"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 855.78827,115.21598 h 7.92023 v 7.17398 h -7.92023 z"
       id="path159"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,115.21598 h 7.92023 v 7.17398 h -7.92023 z"
       id="path161"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,121.19038 h 7.92023 v 7.17399 h -7.92023 z"
       id="path163"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,121.19038 h 7.92023 v 7.17399 h -7.92023 z"
       id="path165"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,127.16478 h 7.92023 v 7.17398 h -7.92023 z"
       id="path167"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,127.16478 h 7.92023 v 7.17398 h -7.92023 z"
       id="path169"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,133.13918 h 7.92023 v 7.17398 h -7.92023 z"
       id="path171"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,133.13918 h 7.92023 v 7.17398 h -7.92023 z"
       id="path173"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,139.11357 h 7.92023 v 7.174 h -7.92023 z"
       id="path175"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,139.11357 h 7.92023 v 7.174 h -7.92023 z"
       id="path177"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 784.2409,188.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path179"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 784.2409,188.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path181"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 854.0783,196.15187 h 12.664 v 7.17398 h -12.664 z"
       id="path183"
       inkscape:connector-curvature="0"
       style="fill:#fdf8f8;fill-rule:evenodd" />
    <path
       d="m 854.0783,196.15187 h 12.664 v 7.17398 h -12.664 z"
       id="path185"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 796.6742,201.16621 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path187"
       inkscape:connector-curvature="0"
       style="fill:#d9ead3;fill-rule:evenodd" />
    <path
       d="m 796.6742,201.16621 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path189"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,201.16621 h 23.76062 v 28.86058 h -23.76062 z"
       id="path191"
       inkscape:connector-curvature="0"
       style="fill:#cfe2f3;fill-rule:evenodd" />
    <path
       d="m 817.86584,201.16621 h 23.76062 v 28.86058 h -23.76062 z"
       id="path193"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,236.55469 h 10.95038 v 16.4884 h -10.95038 z"
       id="path195"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 817.86584,236.55469 h 10.95038 v 16.4884 h -10.95038 z"
       id="path197"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 830.6742,236.55469 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path199"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 830.6742,236.55469 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path201"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 812.6282,217.40988 1.2937,-1.29367 v 0.64683 h 2.65796 v -0.64683 l 1.29364,1.29367 -1.29364,1.29367 v -0.64683 h -2.65796 v 0.64683 z"
       id="path203"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 812.6282,217.40988 1.2937,-1.29367 v 0.64683 h 2.65796 v -0.64683 l 1.29364,1.29367 -1.29364,1.29367 v -0.64683 h -2.65796 v 0.64683 z"
       id="path205"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 823.25336,231.06764 0.47021,-0.47018 0.47022,0.47018 h -0.23511 v 4.18724 h 0.23511 l -0.47022,0.4702 -0.47021,-0.4702 h 0.23511 v -4.18724 z"
       id="path207"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 823.25336,231.06764 0.47021,-0.47018 0.47022,0.47018 h -0.23511 v 4.18724 h 0.23511 l -0.47022,0.4702 -0.47021,-0.4702 h 0.23511 v -4.18724 z"
       id="path209"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 835.02655,231.06764 0.47015,-0.47018 0.47022,0.47018 h -0.23511 v 4.18724 h 0.23511 l -0.47022,0.4702 -0.47015,-0.4702 h 0.23505 v -4.18724 z"
       id="path211"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 835.02655,231.06764 0.47015,-0.47018 0.47022,0.47018 h -0.23511 v 4.18724 h 0.23511 l -0.47022,0.4702 -0.47015,-0.4702 h 0.23505 v -4.18724 z"
       id="path213"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 850.9376,211.32317 h 14.62836 v 5.59807 H 850.9376 Z"
       id="path215"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,253.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02658 0 c 0,-1.17021 0.85608,-2.11884 1.91211,-2.11884 z"
       id="path217"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,253.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02658 0 c 0,-1.17021 0.85608,-2.11884 1.91211,-2.11884"
       id="path219"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,253.05312 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02659 c 0,-1.1702 -0.85614,-2.11884 -1.91217,-2.11884 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11883 v -14.02658 0 c 0,-1.17021 0.85608,-2.11884 1.91211,-2.11884"
       id="path221"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 838.0996,229.12592 h 14.62836 v 5.59805 H 838.0996 Z"
       id="path223"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 855.78827,219.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path225"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,219.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path227"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,225.19038 h 7.92023 v 7.17398 h -7.92023 z"
       id="path229"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,225.19038 h 7.92023 v 7.17398 h -7.92023 z"
       id="path231"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,231.16478 h 7.92023 v 7.17398 h -7.92023 z"
       id="path233"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,231.16478 h 7.92023 v 7.17398 h -7.92023 z"
       id="path235"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,237.13918 h 7.92023 v 7.17398 h -7.92023 z"
       id="path237"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,237.13918 h 7.92023 v 7.17398 h -7.92023 z"
       id="path239"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,243.11357 h 7.92023 v 7.174 h -7.92023 z"
       id="path241"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,243.11357 h 7.92023 v 7.174 h -7.92023 z"
       id="path243"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 784.2409,284.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path245"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 784.2409,284.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path247"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 854.0783,292.1519 h 12.664 v 7.17398 h -12.664 z"
       id="path249"
       inkscape:connector-curvature="0"
       style="fill:#fdf8f8;fill-rule:evenodd" />
    <path
       d="m 854.0783,292.1519 h 12.664 v 7.17398 h -12.664 z"
       id="path251"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 796.6742,297.1662 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path253"
       inkscape:connector-curvature="0"
       style="fill:#d9ead3;fill-rule:evenodd" />
    <path
       d="m 796.6742,297.1662 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path255"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,297.1662 h 23.76062 v 28.8606 h -23.76062 z"
       id="path257"
       inkscape:connector-curvature="0"
       style="fill:#cfe2f3;fill-rule:evenodd" />
    <path
       d="m 817.86584,297.1662 h 23.76062 v 28.8606 h -23.76062 z"
       id="path259"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,332.5547 h 10.95038 v 16.4884 h -10.95038 z"
       id="path261"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 817.86584,332.5547 h 10.95038 v 16.4884 h -10.95038 z"
       id="path263"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 830.6742,332.5547 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path265"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 830.6742,332.5547 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path267"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 812.6282,313.40988 1.2937,-1.29367 v 0.64685 h 2.65796 v -0.64685 l 1.29364,1.29367 -1.29364,1.29367 v -0.64682 h -2.65796 v 0.64682 z"
       id="path269"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 812.6282,313.40988 1.2937,-1.29367 v 0.64685 h 2.65796 v -0.64685 l 1.29364,1.29367 -1.29364,1.29367 v -0.64682 h -2.65796 v 0.64682 z"
       id="path271"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 823.25336,327.06766 0.47021,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47021,-0.47021 h 0.23511 v -4.18723 z"
       id="path273"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 823.25336,327.06766 0.47021,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47021,-0.47021 h 0.23511 v -4.18723 z"
       id="path275"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 835.02655,327.06766 0.47015,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47015,-0.47021 h 0.23505 v -4.18723 z"
       id="path277"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 835.02655,327.06766 0.47015,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47015,-0.47021 h 0.23505 v -4.18723 z"
       id="path279"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 850.9376,307.32318 h 14.62836 v 5.59805 H 850.9376 Z"
       id="path281"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,349.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883 z"
       id="path283"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,349.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883"
       id="path285"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,349.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883"
       id="path287"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 838.0996,325.12592 h 14.62836 v 5.59805 H 838.0996 Z"
       id="path289"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 855.78827,315.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path291"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,315.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path293"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,321.19037 h 7.92023 v 7.17398 h -7.92023 z"
       id="path295"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,321.19037 h 7.92023 v 7.17398 h -7.92023 z"
       id="path297"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,327.16476 h 7.92023 v 7.17401 h -7.92023 z"
       id="path299"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,327.16476 h 7.92023 v 7.17401 h -7.92023 z"
       id="path301"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,333.1392 h 7.92023 v 7.17398 h -7.92023 z"
       id="path303"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,333.1392 h 7.92023 v 7.17398 h -7.92023 z"
       id="path305"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,339.1136 h 7.92023 v 7.17398 h -7.92023 z"
       id="path307"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,339.1136 h 7.92023 v 7.17398 h -7.92023 z"
       id="path309"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 784.2409,380.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path311"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 784.2409,380.97754 h 86.01471 v 74.04492 H 784.2409 Z"
       id="path313"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 854.0783,388.1519 h 12.664 v 7.17398 h -12.664 z"
       id="path315"
       inkscape:connector-curvature="0"
       style="fill:#fdf8f8;fill-rule:evenodd" />
    <path
       d="m 854.0783,388.1519 h 12.664 v 7.17398 h -12.664 z"
       id="path317"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 796.6742,393.1662 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path319"
       inkscape:connector-curvature="0"
       style="fill:#d9ead3;fill-rule:evenodd" />
    <path
       d="m 796.6742,393.1662 h 15.94489 v 52.05255 H 796.6742 Z"
       id="path321"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,393.1662 h 23.76062 v 28.8606 h -23.76062 z"
       id="path323"
       inkscape:connector-curvature="0"
       style="fill:#cfe2f3;fill-rule:evenodd" />
    <path
       d="m 817.86584,393.1662 h 23.76062 v 28.8606 h -23.76062 z"
       id="path325"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 817.86584,428.5547 h 10.95038 v 16.4884 h -10.95038 z"
       id="path327"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 817.86584,428.5547 h 10.95038 v 16.4884 h -10.95038 z"
       id="path329"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 830.6742,428.5547 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path331"
       inkscape:connector-curvature="0"
       style="fill:#f4cccc;fill-rule:evenodd" />
    <path
       d="m 830.6742,428.5547 h 10.95032 v 16.4884 H 830.6742 Z"
       id="path333"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 812.6282,409.40988 1.2937,-1.29367 v 0.64685 h 2.65796 v -0.64685 l 1.29364,1.29367 -1.29364,1.29367 v -0.64682 h -2.65796 v 0.64682 z"
       id="path335"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 812.6282,409.40988 1.2937,-1.29367 v 0.64685 h 2.65796 v -0.64685 l 1.29364,1.29367 -1.29364,1.29367 v -0.64682 h -2.65796 v 0.64682 z"
       id="path337"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 823.25336,423.06766 0.47021,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47021,-0.47021 h 0.23511 v -4.18723 z"
       id="path339"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 823.25336,423.06766 0.47021,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47021,-0.47021 h 0.23511 v -4.18723 z"
       id="path341"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 835.02655,423.06766 0.47015,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47015,-0.47021 h 0.23505 v -4.18723 z"
       id="path343"
       inkscape:connector-curvature="0"
       style="fill:#eeeeee;fill-rule:evenodd" />
    <path
       d="m 835.02655,423.06766 0.47015,-0.47021 0.47022,0.47021 h -0.23511 v 4.18723 h 0.23511 l -0.47022,0.47021 -0.47015,-0.47021 h 0.23505 v -4.18723 z"
       id="path345"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 850.9376,403.32318 h 14.62836 v 5.59805 H 850.9376 Z"
       id="path347"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,445.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883 z"
       id="path349"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,445.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883"
       id="path351"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 850.01074,445.0531 c -1.05603,0 -1.91211,-0.94864 -1.91211,-2.11884 v -14.02658 c 0,-1.17019 -0.85614,-2.11883 -1.91217,-2.11883 v 0 c 1.05603,0 1.91217,-0.94864 1.91217,-2.11884 v -14.02658 0 c 0,-1.17019 0.85608,-2.11883 1.91211,-2.11883"
       id="path353"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 838.0996,421.12592 h 14.62836 v 5.59805 H 838.0996 Z"
       id="path355"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 855.78827,411.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path357"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,411.21597 h 7.92023 v 7.17398 h -7.92023 z"
       id="path359"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,417.19037 h 7.92023 v 7.17398 h -7.92023 z"
       id="path361"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,417.19037 h 7.92023 v 7.17398 h -7.92023 z"
       id="path363"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,423.16476 h 7.92023 v 7.17401 h -7.92023 z"
       id="path365"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,423.16476 h 7.92023 v 7.17401 h -7.92023 z"
       id="path367"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,429.1392 h 7.92023 v 7.17398 h -7.92023 z"
       id="path369"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,429.1392 h 7.92023 v 7.17398 h -7.92023 z"
       id="path371"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 855.78827,435.1136 h 7.92023 v 7.17398 h -7.92023 z"
       id="path373"
       inkscape:connector-curvature="0"
       style="fill:#ffffff;fill-rule:evenodd" />
    <path
       d="m 855.78827,435.1136 h 7.92023 v 7.17398 h -7.92023 z"
       id="path375"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#4a86e8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round" />
    <path
       d="m 618.7606,261.25125 c 40.95276,0 61.42914,-35.92914 81.90552,-71.85828 20.47638,-35.92914 40.95276,-71.85827 81.90552,-71.85827"
       id="path377"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 642.30961,141.99862 c 34.76774,0 62.46908,12.08471 83.17155,-0.94343 4.32986,-2.72477 36.84931,-19.66804 41.74204,-21.12774 2.44632,-0.72986 4.96838,-1.28941 7.57172,-1.66651 1.30163,-0.18854 2.62362,-0.33146 3.96655,-0.42725 l 0.38313,-0.0239"
       id="path379"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1.2253;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:9.80238, 3.67589"
       sodipodi:nodetypes="cssscc" />
    <path
       d="m 779.1456,117.62166 -1.0957,1.15275 3.06024,-1.20262 -3.11731,-1.04582 z"
       id="path381"
       inkscape:connector-curvature="0"
       style="fill:#595959;fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 618.7606,293.24408 c 41.37006,0 62.05511,-16.81101 82.74017,-33.62204 C 722.18577,242.81102 742.87083,226 784.24088,226"
       id="path383"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 643.06551,178.00049 c 29.0839,-2.06143 63.92542,18.22869 90.86854,38.05605 17.59807,14.05232 31.15699,11.19116 35.72224,10.69865 2.28265,-0.24626 4.63592,-0.43506 7.06506,-0.5623 1.21448,-0.0636 2.448,-0.11184 3.70105,-0.14415 l 0.39166,-0.009"
       id="path385"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:8, 3"
       sodipodi:nodetypes="cssscc" />
    <path
       d="m 780.814,226.03992 -1.11139,1.1376 3.07648,-1.16049 -3.10266,-1.08851 z"
       id="path387"
       inkscape:connector-curvature="0"
       style="fill:#595959;fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 618.7606,333.24408 c 39.72443,0 59.58661,3.52759 79.44879,7.05515 19.86224,3.52755 39.72443,7.05511 79.44885,7.05511"
       id="path389"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 643.02223,212.75788 c 35.83787,0 52.3841,18.5171 82.89185,52.92855 11.04758,12.4612 23.41839,42.11484 34.77095,54.12353 2.81846,2.98134 10.26775,5.71511 18.37016,5.54731"
       id="path391"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:8, 3"
       sodipodi:nodetypes="cssc" />
    <path
       d="m 779.93976,325.2441 -1.12762,1.12155 3.09283,-1.11627 -3.08673,-1.1329 z"
       id="path393"
       inkscape:connector-curvature="0"
       style="fill:#595959;fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 618.7606,397.24408 c 40.95276,0 61.42914,11.07877 81.90552,22.1575 20.47638,11.07874 40.95276,22.15747 81.90552,22.15747"
       id="path395"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 643.7358,281.74843 c 40.95276,0 61.81295,60.99657 64.77961,76.34064 2.10897,10.90797 14.76776,51.00317 24.71118,65.13881 3.86867,5.49973 14.1512,15.21527 22.1498,16.42703 3.99933,0.60583 8.23858,1.08188 12.75781,1.40649 2.25958,0.16226 4.58911,0.28668 6.99371,0.37052 1.20227,0.0419 2.42334,0.0737 3.66376,0.095 l 0.35291,0.005"
       id="path397"
       inkscape:connector-curvature="0"
       style="fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:8, 3"
       sodipodi:nodetypes="cssssscc" />
    <path
       d="m 779.1446,441.53223 -1.1333,1.11575 3.09845,-1.10037 -3.08087,-1.14874 z"
       id="path399"
       inkscape:connector-curvature="0"
       style="fill:#595959;fill-rule:evenodd;stroke:#595959;stroke-width:1;stroke-linecap:butt" />
    <path
       d="m 780.8373,58.973755 h 99.40155 v 27.46457 H 780.8373 Z"
       id="path401"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="M 811.0304,80.77375 V 73.8675 h 1.0625 v 0.984375 q 0.75,-1.140625 2.1875,-1.140625 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.359375 0.375,0.859375 0.0625,0.328125 0.0625,1.140625 v 4.25 h -1.17188 v -4.203125 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.359375 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.796875 v 3.78125 z m 6.97498,-3.453125 q 0,-1.921875 1.07812,-2.84375 0.89063,-0.765625 2.17188,-0.765625 1.42187,0 2.32812,0.9375 0.90625,0.921875 0.90625,2.578125 0,1.328125 -0.40625,2.09375 -0.39062,0.765625 -1.15625,1.1875 -0.76562,0.421875 -1.67187,0.421875 -1.45313,0 -2.35938,-0.921875 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.328125 0.57813,1.984375 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.671875 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.984375 z m 11.13123,3.453125 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.453125 -0.6875,-0.453125 -1.07812,-1.265625 -0.375,-0.828125 -0.375,-1.890625 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.453125 1.54687,-0.453125 0.625,0 1.10938,0.265625 0.5,0.25 0.79687,0.671875 v -3.421875 h 1.17188 v 9.546875 z m -3.70313,-3.453125 q 0,1.328125 0.5625,1.984375 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.421875 -0.54687,-2.078125 Q 829.2616,74.68 828.46473,74.68 q -0.78125,0 -1.3125,0.640625 -0.51563,0.625 -0.51563,2 z m 11.3656,1.234375 1.20313,0.140625 q -0.28125,1.0625 -1.0625,1.65625 Q 837.3772,80.93 836.17408,80.93 q -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.609375 0,-1.75 0.89063,-2.703125 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.109375 0,0.3125 h -5.15625 q 0.0625,1.140625 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.328125 0.45313,-0.34375 0.71875,-1.078125 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.859375 -0.4375,-1.296875 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.546875 -0.54688,0.53125 -0.60938,1.4375 z m 9.89667,-0.578125 q 0,-1.6875 0.34375,-2.71875 0.35938,-1.03125 1.04688,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35937,0.3125 0.57813,0.296875 0.95313,0.890625 0.375,0.578125 0.59375,1.421875 0.21875,0.828125 0.21875,2.25 0,1.671875 -0.35938,2.703125 -0.34375,1.03125 -1.03125,1.59375 -0.67187,0.5625 -1.73437,0.5625 -1.375,0 -2.15625,-0.984375 -0.95313,-1.1875 -0.95313,-3.875 z m 1.20313,0 q 0,2.34375 0.54687,3.125 0.5625,0.78125 1.35938,0.78125 0.8125,0 1.35937,-0.78125 0.5625,-0.78125 0.5625,-3.125 0,-2.359375 -0.5625,-3.125 -0.54687,-0.78125 -1.35937,-0.78125 -0.8125,0 -1.29688,0.6875 -0.60937,0.875 -0.60937,3.21875 z"
       id="path403"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 780.8373,162.97375 h 99.40155 v 27.46457 H 780.8373 Z"
       id="path405"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 811.0304,184.77376 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17188 v -4.20313 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35937 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79688 v 3.78125 z m 6.97498,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23438 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 14.31855,4.125 h -1.17188 v -7.46875 q -0.42187,0.40625 -1.10937,0.8125 -0.6875,0.40625 -1.23438,0.60937 v -1.14062 q 0.98438,-0.45313 1.71875,-1.10938 0.73438,-0.67187 1.03125,-1.28125 h 0.76563 z"
       id="path407"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 780.8373,258.97375 h 99.40155 v 27.46457 H 780.8373 Z"
       id="path409"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 811.0304,280.77374 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17188 v -4.20313 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35937 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79688 v 3.78125 z m 6.97498,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23438 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 16.05292,3 v 1.125 h -6.29688 q -0.0156,-0.42188 0.14063,-0.8125 0.23437,-0.64063 0.76562,-1.26563 0.53125,-0.625 1.53125,-1.45312 1.5625,-1.26563 2.10938,-2.01563 0.54687,-0.75 0.54687,-1.40625 0,-0.70312 -0.5,-1.17187 -0.5,-0.48438 -1.29687,-0.48438 -0.85938,0 -1.375,0.51563 -0.5,0.5 -0.5,1.39062 l -1.20313,-0.10937 q 0.125,-1.35938 0.92188,-2.0625 0.8125,-0.70313 2.17187,-0.70313 1.375,0 2.17188,0.76563 0.8125,0.75 0.8125,1.875 0,0.57812 -0.23438,1.14062 -0.23437,0.54688 -0.78125,1.15625 -0.54687,0.60938 -1.8125,1.67188 -1.04687,0.89062 -1.35937,1.21875 -0.29688,0.3125 -0.48438,0.625 z"
       id="path411"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <path
       d="m 780.8373,354.97375 h 99.40155 v 27.46457 H 780.8373 Z"
       id="path413"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-opacity:0;fill-rule:evenodd" />
    <path
       d="m 811.0304,376.77374 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17188 v -4.20313 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35937 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79688 v 3.78125 z m 6.97498,-3.45313 q 0,-1.92187 1.07812,-2.84375 0.89063,-0.76562 2.17188,-0.76562 1.42187,0 2.32812,0.9375 0.90625,0.92187 0.90625,2.57812 0,1.32813 -0.40625,2.09375 -0.39062,0.76563 -1.15625,1.1875 -0.76562,0.42188 -1.67187,0.42188 -1.45313,0 -2.35938,-0.92188 -0.89062,-0.9375 -0.89062,-2.6875 z m 1.20312,0 q 0,1.32813 0.57813,1.98438 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45312,-0.65625 0.57813,-0.67188 0.57813,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57813,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57813,0.65625 -0.57813,1.98437 z m 11.13123,3.45313 v -0.875 q -0.65625,1.03125 -1.9375,1.03125 -0.8125,0 -1.51563,-0.45313 -0.6875,-0.45312 -1.07812,-1.26562 -0.375,-0.82813 -0.375,-1.89063 0,-1.03125 0.34375,-1.875 0.34375,-0.84375 1.03125,-1.28125 0.70312,-0.45312 1.54687,-0.45312 0.625,0 1.10938,0.26562 0.5,0.25 0.79687,0.67188 v -3.42188 h 1.17188 v 9.54688 z m -3.70313,-3.45313 q 0,1.32813 0.5625,1.98438 0.5625,0.65625 1.32813,0.65625 0.76562,0 1.29687,-0.625 0.53125,-0.625 0.53125,-1.90625 0,-1.42188 -0.54687,-2.07813 -0.54688,-0.67187 -1.34375,-0.67187 -0.78125,0 -1.3125,0.64062 -0.51563,0.625 -0.51563,2 z m 11.3656,1.23438 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 10.2248,4.125 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17188 v -4.20313 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35937 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79688 v 3.78125 z"
       id="path415"
       inkscape:connector-curvature="0"
       style="fill:#000000;fill-rule:nonzero" />
    <text
       xml:space="preserve"
       style="font-size:11.8056px;fill:#000000;stroke-width:0.983796"
       x="439.89059"
       y="514.93457"
       id="text1"
       transform="scale(1.0004495,0.99955065)"><tspan
         sodipodi:role="line"
         id="tspan1"
         style="stroke-width:0.983796"
         x="439.89059"
         y="514.93457" /><tspan
         sodipodi:role="line"
         style="stroke-width:0.983796"
         x="439.89059"
         y="529.69159"
         id="tspan2" /></text>
    <text
       xml:space="preserve"
       transform="matrix(0.9842386,0,0,0.98335427,5.6489719,5.5400127)"
       id="text2"
       style="fill:#000000;white-space:pre;shape-inside:url(#rect2)" />
    <text
       xml:space="preserve"
       transform="matrix(0.9842386,0,0,0.98335427,5.6489719,5.5400127)"
       id="text3"
       style="fill:#000000;white-space:pre;shape-inside:url(#rect3)" />
    <text
       xml:space="preserve"
       transform="matrix(0.9842386,0,0,0.98335427,5.6489719,5.5400127)"
       id="text4"
       style="fill:#000000;white-space:pre;shape-inside:url(#rect4)" />
    <text
       xml:space="preserve"
       transform="matrix(0.9842386,0,0,0.98335427,5.6489719,5.5400127)"
       id="text5"
       style="white-space:pre;shape-inside:url(#rect5);fill:#000000" />
    <text
       xml:space="preserve"
       transform="matrix(0.9842386,0,0,0.98335427,5.6489719,5.5400127)"
       id="text6"
       style="fill:#000000;white-space:pre;shape-inside:url(#rect6)" />
    <text
       xml:space="preserve"
       style="font-size:11.8056px;fill:#000000;stroke-width:0.983796;-inkscape-font-specification:'Arial, Normal';font-family:Arial;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
       x="473.17755"
       y="364.63867"
       id="text8"
       transform="scale(1.0004495,0.99955068)"><tspan
         sodipodi:role="line"
         id="tspan8"
         style="stroke-width:0.983796;-inkscape-font-specification:'Arial, Normal';font-family:Arial;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:11.80555616px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
         x="473.17755"
         y="364.63867">nb_xstats</tspan><tspan
         sodipodi:role="line"
         style="stroke-width:0.983796;-inkscape-font-specification:'Arial, Normal';font-family:Arial;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-size:11.80555616px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
         x="473.17755"
         y="379.39566"
         id="tspan9" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.912352"
       x="563.54681"
       y="327.16193"
       id="text8-9"
       transform="scale(1.0097219,0.9903717)"><tspan
         sodipodi:role="line"
         id="tspan8-1"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="563.54681"
         y="327.16193">xstat 1</tspan><tspan
         sodipodi:role="line"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="563.54681"
         y="341.91888"
         id="tspan9-4" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.912352"
       x="562.97314"
       y="354.35504"
       id="text8-9-7"
       transform="scale(1.0097219,0.9903717)"><tspan
         sodipodi:role="line"
         id="tspan8-1-7"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="562.97314"
         y="354.35504">xstat 2</tspan><tspan
         sodipodi:role="line"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="562.97314"
         y="369.112"
         id="tspan9-4-7" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.912352"
       x="562.96088"
       y="381.96033"
       id="text8-9-7-6"
       transform="scale(1.0097219,0.9903717)"><tspan
         sodipodi:role="line"
         id="tspan8-1-7-5"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="562.96088"
         y="381.96033">xstat 3</tspan><tspan
         sodipodi:role="line"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="562.96088"
         y="396.71729"
         id="tspan9-4-7-2" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.912352"
       x="563.58228"
       y="436.49628"
       id="text8-9-7-6-7"
       transform="scale(1.0097219,0.9903717)"><tspan
         sodipodi:role="line"
         id="tspan8-1-7-5-6"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="563.58228"
         y="436.49628">xstat n</tspan><tspan
         sodipodi:role="line"
         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.8056px;font-family:Arial;-inkscape-font-specification:'Arial, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:0.912352"
         x="563.58228"
         y="451.25323"
         id="tspan9-4-7-2-6" /></text>
    <rect
       style="fill:none;stroke-width:0.983796;stroke:#1155cc;stroke-opacity:1"
       id="rect10"
       width="44.907204"
       height="134.09645"
       x="563.70923"
       y="307.50906" />
    <path
       style="fill:none;stroke:#1155cc;stroke-width:0.992666;stroke-dasharray:none;stroke-opacity:1"
       d="m 564.08087,333.62068 c 44.41632,0 44.41632,0 44.41632,0 v 0"
       id="path14" />
    <path
       style="fill:none;stroke:#1155cc;stroke-width:0.992666;stroke-dasharray:none;stroke-opacity:1"
       d="m 563.67507,360.19112 c 44.41632,0 44.41632,0 44.41632,0 v 0"
       id="path14-7" />
    <path
       style="fill:none;stroke:#1155cc;stroke-width:0.992666;stroke-dasharray:none;stroke-opacity:1"
       d="m 563.53966,387.52856 c 44.41632,0 44.41632,0 44.41632,0 v 0"
       id="path14-7-6" />
    <path
       style="fill:none;stroke:#1155cc;stroke-width:0.992666;stroke-dasharray:none;stroke-opacity:1"
       d="m 564.16711,415.00113 c 44.41632,0 44.41632,0 44.41632,0 v 0"
       id="path14-7-6-1" />
    <text
       xml:space="preserve"
       style="font-size:11.8056px;fill:none;stroke:#1155cc;stroke-width:0.999537;stroke-dasharray:none;stroke-opacity:1"
       x="574.112"
       y="320.44531"
       id="text14"
       transform="scale(1.0004495,0.99955065)"><tspan
         sodipodi:role="line"
         id="tspan14"
         style="stroke-width:0.999537"
         x="574.112"
         y="320.44531" /></text>
  </g>
</svg>