aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/resources/image/oobe.svg
blob: 30842c1fba21adf097cf24032e6c73ddc5b61918 (plain)
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
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" viewBox="0 0 27991 15748" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
 <defs class="ClipPathGroup">
  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
   <rect x="0" y="0" width="27991" height="15748"/>
  </clipPath>
  <clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
   <rect x="27" y="15" width="27936" height="15717"/>
  </clipPath>
 </defs>
 <defs>
  <g id="ooo:meta_slides" ooo:number-of-slides="1" ooo:start-slide-number="0">
   <g id="ooo:meta_dummy_slide" ooo:slide="dummy-slide" ooo:master="dummy-master-page" ooo:background-visibility="hidden" ooo:master-objects-visibility="hidden" ooo:has-transition="false"/>
   <g id="ooo:meta_slide_0" ooo:slide="id1" ooo:master="id2" ooo:has-transition="true"/>
  </g>
 </defs>
 <defs id="presentation-animations"/>
 <defs>
  <font id="EmbeddedFont_1" horiz-adv-x="2048">
   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
   <glyph unicode="x" horiz-adv-x="1006" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
   <glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
   <glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
   <glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
   <glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
   <glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
   <glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
   <glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
   <glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
   <glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
   <glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
   <glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
   <glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
   <glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
   <glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
   <glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
   <glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
   <glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
   <glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,564 1467,435 1411,324 1354,213 1273,128 1168,69 1063,10 938,-20 795,-20 650,-20 526,9 421,68 316,127 235,212 180,323 125,434 97,563 97,711 97,936 159,1113 282,1240 405,1367 577,1430 797,1430 940,1430 1065,1402 1170,1345 1275,1288 1356,1205 1412,1096 1467,987 1495,859 1495,711 Z M 1300,711 C 1300,886 1256,1024 1169,1124 1081,1224 957,1274 797,1274 636,1274 511,1225 423,1126 335,1027 291,889 291,711 291,534 336,394 425,291 514,187 637,135 795,135 958,135 1083,185 1170,286 1257,386 1300,528 1300,711 Z"/>
   <glyph unicode="L" horiz-adv-x="927" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
   <glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
   <glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 636,1274 515,1224 428,1124 341,1023 298,886 298,711 298,538 343,400 434,295 524,190 646,137 800,137 997,137 1146,235 1245,430 L 1401,352 C 1343,231 1262,138 1157,75 1052,12 930,-20 791,-20 649,-20 526,10 423,69 319,128 240,212 186,322 131,431 104,561 104,711 104,936 165,1112 286,1239 407,1366 575,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1174,1103 1122,1166 1050,1209 977,1252 891,1274 792,1274 Z"/>
   <glyph unicode=" " horiz-adv-x="556"/>
  </font>
 </defs>
 <defs>
  <font id="EmbeddedFont_2" horiz-adv-x="2048">
   <font-face font-family="Liberation Serif embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1826" descent="450"/>
   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
   <glyph unicode="u" horiz-adv-x="980" d="M 313,268 C 313,153 366,96 473,96 556,96 633,106 705,127 L 705,870 563,895 563,940 870,940 870,70 989,45 989,0 715,0 707,76 C 660,50 605,28 543,9 481,-10 429,-20 387,-20 227,-20 147,72 147,256 L 147,870 27,895 27,940 313,940 313,268 Z"/>
   <glyph unicode="t" horiz-adv-x="557" d="M 334,-20 C 270,-20 222,-1 191,37 159,75 143,128 143,197 L 143,856 20,856 20,901 145,940 246,1153 309,1153 309,940 524,940 524,856 309,856 309,215 C 309,172 319,139 339,117 358,95 384,84 416,84 455,84 502,89 557,100 L 557,35 C 534,19 500,6 456,-5 412,-15 371,-20 334,-20 Z"/>
   <glyph unicode="r" horiz-adv-x="636" d="M 664,965 L 664,711 621,711 563,821 C 530,821 490,817 445,808 399,799 359,787 326,772 L 326,70 487,45 487,0 41,0 41,45 160,70 160,870 41,895 41,940 315,940 324,823 C 364,856 418,888 487,919 555,950 609,965 649,965 L 664,965 Z"/>
   <glyph unicode="o" horiz-adv-x="901" d="M 946,475 C 946,145 799,-20 506,-20 365,-20 258,22 186,107 114,192 78,314 78,475 78,634 114,755 186,839 258,923 367,965 514,965 657,965 764,924 837,842 910,759 946,637 946,475 Z M 766,475 C 766,619 745,723 703,788 661,853 595,885 506,885 419,885 356,854 317,792 278,730 258,624 258,475 258,324 278,217 318,154 357,91 420,59 506,59 594,59 659,92 702,157 745,222 766,328 766,475 Z"/>
   <glyph unicode="n" horiz-adv-x="980" d="M 324,864 C 375,893 430,918 488,937 546,956 594,965 633,965 714,965 776,941 817,894 858,847 879,778 879,688 L 879,70 993,45 993,0 588,0 588,45 713,70 713,670 C 713,725 700,769 673,801 646,832 604,848 547,848 487,848 413,838 326,819 L 326,70 453,45 453,0 47,0 47,45 160,70 160,870 47,895 47,940 315,940 324,864 Z"/>
   <glyph unicode="m" horiz-adv-x="1536" d="M 326,864 C 376,893 429,917 485,936 541,955 590,965 633,965 679,965 722,956 761,939 800,922 829,894 848,856 899,885 960,910 1029,932 1098,954 1155,965 1200,965 1360,965 1440,873 1440,688 L 1440,70 1561,45 1561,0 1134,0 1134,45 1274,70 1274,670 C 1274,785 1221,842 1114,842 1097,842 1077,841 1054,838 1031,835 1008,832 985,829 962,826 940,822 919,818 898,813 880,810 866,807 877,771 883,731 883,688 L 883,70 1024,45 1024,0 578,0 578,45 717,70 717,670 C 717,725 703,768 675,798 646,827 604,842 547,842 488,842 415,832 328,813 L 328,70 469,45 469,0 43,0 43,45 162,70 162,870 43,895 43,940 318,940 326,864 Z"/>
   <glyph unicode="i" horiz-adv-x="504" d="M 379,1247 C 379,1218 368,1192 347,1171 326,1150 300,1139 270,1139 241,1139 215,1150 194,1171 173,1192 162,1218 162,1247 162,1277 173,1303 194,1324 215,1345 241,1356 270,1356 300,1356 326,1345 347,1324 368,1303 379,1277 379,1247 Z M 369,70 L 530,45 530,0 43,0 43,45 203,70 203,870 70,895 70,940 369,940 369,70 Z"/>
   <glyph unicode="f" horiz-adv-x="636" d="M 225,856 L 63,856 63,905 225,944 225,1010 C 225,1149 253,1255 308,1330 363,1405 440,1442 539,1442 590,1442 638,1436 682,1423 L 682,1218 633,1218 588,1341 C 565,1355 538,1362 506,1362 464,1362 434,1343 417,1306 400,1269 391,1199 391,1096 L 391,940 641,940 641,856 391,856 391,78 594,45 594,0 86,0 86,45 225,78 225,856 Z"/>
   <glyph unicode="e" horiz-adv-x="769" d="M 260,473 L 260,455 C 260,363 270,292 291,241 311,190 342,151 385,124 427,97 482,84 551,84 587,84 630,87 679,93 728,99 769,106 801,113 L 801,57 C 769,36 726,18 671,3 616,-12 559,-20 502,-20 356,-20 249,19 182,98 114,177 80,303 80,477 80,641 114,763 183,844 252,925 350,965 477,965 718,965 838,828 838,555 L 838,473 260,473 Z M 477,885 C 408,885 355,857 318,801 281,745 262,662 262,553 L 664,553 C 664,672 649,758 618,809 587,860 540,885 477,885 Z"/>
   <glyph unicode="d" horiz-adv-x="953" d="M 723,70 C 648,10 560,-20 459,-20 202,-20 74,140 74,461 74,626 110,751 183,837 256,922 363,965 504,965 576,965 649,957 723,942 719,964 717,1019 717,1108 L 717,1352 559,1376 559,1421 883,1421 883,70 999,45 999,0 735,0 723,70 Z M 254,461 C 254,334 275,240 318,178 361,115 426,84 514,84 589,84 657,97 717,123 L 717,866 C 658,877 590,883 514,883 341,883 254,742 254,461 Z"/>
   <glyph unicode="b" horiz-adv-x="954" d="M 766,496 C 766,619 745,710 702,770 659,830 593,860 504,860 465,860 426,857 387,850 348,843 320,835 303,827 L 303,82 C 359,71 426,66 504,66 596,66 663,102 704,174 745,246 766,353 766,496 Z M 137,1352 L 0,1376 0,1421 303,1421 303,1085 C 303,1049 301,983 297,887 364,939 448,965 549,965 677,965 775,926 844,849 912,771 946,653 946,496 946,327 909,199 834,112 759,24 650,-20 508,-20 451,-20 388,-14 319,-1 250,12 189,28 137,49 L 137,1352 Z"/>
   <glyph unicode="a" horiz-adv-x="848" d="M 465,961 C 568,961 643,940 692,898 740,856 764,792 764,705 L 764,70 881,45 881,0 623,0 604,94 C 528,18 431,-20 313,-20 152,-20 72,73 72,260 72,323 84,375 109,416 133,457 172,488 225,510 278,531 356,543 457,545 L 598,549 598,696 C 598,761 586,808 563,839 539,870 502,885 453,885 386,885 325,869 270,838 L 236,721 180,721 180,926 C 288,949 383,961 465,961 Z M 598,479 L 467,475 C 378,472 317,454 286,423 254,392 238,339 238,266 238,149 286,90 381,90 426,90 466,95 499,106 532,116 565,129 598,145 L 598,479 Z"/>
   <glyph unicode="&gt;" horiz-adv-x="980" d="M 104,186 L 104,289 913,680 104,1071 104,1174 1057,705 1057,655 104,186 Z"/>
   <glyph unicode="&lt;" horiz-adv-x="980" d="M 102,655 L 102,705 1055,1174 1055,1071 246,680 1055,289 1055,186 102,655 Z"/>
   <glyph unicode="/" horiz-adv-x="583" d="M 100,-20 L 0,-20 471,1350 569,1350 100,-20 Z"/>
  </font>
 </defs>
 <defs>
  <font id="EmbeddedFont_3" horiz-adv-x="2048">
   <font-face font-family="StarSymbol embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1402" descent="450"/>
   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
   <glyph unicode="●" horiz-adv-x="1191" d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
   <glyph unicode="–" horiz-adv-x="1165" d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
  </font>
 </defs>
 <defs class="TextShapeIndex">
  <g ooo:slide="id1" ooo:id-list="id6 id7 id8 id9 id10 id11 id12 id13 id14 id15"/>
 </defs>
 <defs class="EmbeddedBulletChars">
  <g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
  </g>
  <g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
  </g>
  <g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
  </g>
  <g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
  </g>
  <g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
  </g>
  <g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
  </g>
  <g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
  </g>
  <g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
  </g>
  <g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
  </g>
  <g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
   <path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
  </g>
 </defs>
 <defs class="TextEmbeddedBitmaps"/>
 <defs>
  <g id="dummy-master-page" ooo:name="dummy-master-page" class="Master_Slide">
   <g id="bg-dummy-master-page" class="Background" visibility="hidden"/>
   <g id="bo-dummy-master-page" class="BackgroundObjects" visibility="hidden"/>
  </g>
  <g id="id2" ooo:name="Default" class="Master_Slide">
   <g id="bg-id2" class="Background"/>
   <g id="bo-id2" class="BackgroundObjects">
    <g visibility="hidden" ooo:text-adjust="left" class="Date/Time">
     <g id="id3">
      <rect class="BoundingBox" stroke="none" fill="none" x="1399" y="14346" width="6522" height="1086"/>
      <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Serif, serif" font-size="493px" font-weight="400"><tspan class="TextPosition" x="1399" y="14782"><tspan class="PlaceholderText" fill="rgb(0,0,0)" stroke="none">&lt;date/time&gt;</tspan></tspan></tspan></text>
     </g>
    </g>
    <g visibility="hidden" ooo:text-adjust="center" class="Footer">
     <g id="id4">
      <rect class="BoundingBox" stroke="none" fill="none" x="9572" y="14346" width="8873" height="1086"/>
      <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Serif, serif" font-size="493px" font-weight="400"><tspan class="TextPosition" x="13147" y="14782"><tspan class="PlaceholderText" fill="rgb(0,0,0)" stroke="none">&lt;footer&gt;</tspan></tspan></tspan></text>
     </g>
    </g>
    <g visibility="hidden" ooo:text-adjust="right" class="Slide_Number">
     <g id="id5">
      <rect class="BoundingBox" stroke="none" fill="none" x="20069" y="14346" width="6522" height="1086"/>
      <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Serif, serif" font-size="493px" font-weight="400"><tspan class="TextPosition" x="24542" y="14782"><tspan class="PlaceholderText" fill="rgb(0,0,0)" stroke="none">&lt;number&gt;</tspan></tspan></tspan></text>
     </g>
    </g>
   </g>
  </g>
 </defs>
 <g class="DummySlide">
  <g>
   <g id="dummy-slide" class="Slide" clip-path="url(#presentation_clip_path)">
    <g ooo:name="dummy-page" class="Page"/>
   </g>
  </g>
 </g>
 <g class="SlideGroup">
  <g visibility="hidden">
   <g id="container-id1">
    <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
     <g ooo:name="page1" class="Page">
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id6">
        <rect class="BoundingBox" stroke="none" fill="none" x="19304" y="1270" width="12194" height="3304"/>
        <g>
         <defs>
          <linearGradient id="gradient1" x1="23161" y1="-957" x2="27640" y2="6800" gradientUnits="userSpaceOnUse">
           <stop offset="0" style="stop-color:rgb(27,117,188)"/>
           <stop offset="1" style="stop-color:rgb(0,89,157)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient1)" d="M 20051,1270 L 19981,1274 19912,1287 19843,1307 19777,1334 19712,1368 19650,1408 19592,1453 19537,1503 19487,1558 19442,1616 19402,1678 19368,1742 19341,1809 19321,1877 19308,1946 19304,2016 19304,3826 19308,3896 19321,3965 19341,4033 19368,4100 19402,4165 19442,4226 19487,4285 19537,4339 19592,4390 19650,4435 19712,4475 19777,4509 19843,4536 19912,4556 19981,4569 20051,4573 30750,4573 30820,4569 30889,4556 30957,4536 31024,4509 31089,4475 31150,4435 31209,4390 31263,4339 31314,4285 31359,4226 31399,4165 31433,4100 31460,4033 31480,3965 31493,3896 31497,3826 31497,2016 31493,1946 31480,1877 31460,1809 31433,1742 31399,1678 31359,1616 31314,1558 31263,1503 31209,1453 31150,1408 31089,1368 31024,1334 30957,1307 30889,1287 30820,1274 30750,1270 20051,1270 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id7">
        <rect class="BoundingBox" stroke="none" fill="none" x="-3556" y="10414" width="12194" height="3304"/>
        <g>
         <defs>
          <linearGradient id="gradient2" x1="301" y1="8187" x2="4780" y2="15944" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(0,178,116)"/>
           <stop offset="0.015625" style="stop-color:rgb(0,178,116)"/>
           <stop offset="0.03125" style="stop-color:rgb(0,178,116)"/>
           <stop offset="0.03125" style="stop-color:rgb(0,178,115)"/>
           <stop offset="0.046875" style="stop-color:rgb(0,178,115)"/>
           <stop offset="0.046875" style="stop-color:rgb(0,177,115)"/>
           <stop offset="0.0625" style="stop-color:rgb(0,177,115)"/>
           <stop offset="0.0625" style="stop-color:rgb(0,177,114)"/>
           <stop offset="0.078125" style="stop-color:rgb(0,177,114)"/>
           <stop offset="0.078125" style="stop-color:rgb(0,176,114)"/>
           <stop offset="0.09375" style="stop-color:rgb(0,176,114)"/>
           <stop offset="0.09375" style="stop-color:rgb(0,176,113)"/>
           <stop offset="0.109375" style="stop-color:rgb(0,176,113)"/>
           <stop offset="0.109375" style="stop-color:rgb(0,175,113)"/>
           <stop offset="0.125" style="stop-color:rgb(0,175,113)"/>
           <stop offset="0.125" style="stop-color:rgb(0,175,112)"/>
           <stop offset="0.140625" style="stop-color:rgb(0,175,112)"/>
           <stop offset="0.140625" style="stop-color:rgb(0,174,112)"/>
           <stop offset="0.15625" style="stop-color:rgb(0,174,112)"/>
           <stop offset="0.15625" style="stop-color:rgb(0,174,111)"/>
           <stop offset="0.171875" style="stop-color:rgb(0,174,111)"/>
           <stop offset="0.171875" style="stop-color:rgb(0,173,111)"/>
           <stop offset="0.1875" style="stop-color:rgb(0,173,111)"/>
           <stop offset="0.1875" style="stop-color:rgb(0,173,110)"/>
           <stop offset="0.203125" style="stop-color:rgb(0,173,110)"/>
           <stop offset="0.203125" style="stop-color:rgb(0,172,110)"/>
           <stop offset="0.21875" style="stop-color:rgb(0,172,110)"/>
           <stop offset="0.21875" style="stop-color:rgb(0,172,109)"/>
           <stop offset="0.234375" style="stop-color:rgb(0,172,109)"/>
           <stop offset="0.234375" style="stop-color:rgb(0,171,109)"/>
           <stop offset="0.25" style="stop-color:rgb(0,171,109)"/>
           <stop offset="0.25" style="stop-color:rgb(0,171,108)"/>
           <stop offset="0.265625" style="stop-color:rgb(0,171,108)"/>
           <stop offset="0.265625" style="stop-color:rgb(0,170,108)"/>
           <stop offset="0.28125" style="stop-color:rgb(0,170,108)"/>
           <stop offset="0.28125" style="stop-color:rgb(0,170,107)"/>
           <stop offset="0.296875" style="stop-color:rgb(0,170,107)"/>
           <stop offset="0.296875" style="stop-color:rgb(0,169,107)"/>
           <stop offset="0.3125" style="stop-color:rgb(0,169,107)"/>
           <stop offset="0.3125" style="stop-color:rgb(0,169,106)"/>
           <stop offset="0.328125" style="stop-color:rgb(0,169,106)"/>
           <stop offset="0.328125" style="stop-color:rgb(0,168,106)"/>
           <stop offset="0.34375" style="stop-color:rgb(0,168,106)"/>
           <stop offset="0.34375" style="stop-color:rgb(0,168,105)"/>
           <stop offset="0.359375" style="stop-color:rgb(0,168,105)"/>
           <stop offset="0.359375" style="stop-color:rgb(0,167,105)"/>
           <stop offset="0.375" style="stop-color:rgb(0,167,105)"/>
           <stop offset="0.375" style="stop-color:rgb(0,167,104)"/>
           <stop offset="0.390625" style="stop-color:rgb(0,167,104)"/>
           <stop offset="0.390625" style="stop-color:rgb(0,166,104)"/>
           <stop offset="0.40625" style="stop-color:rgb(0,166,104)"/>
           <stop offset="0.40625" style="stop-color:rgb(0,166,103)"/>
           <stop offset="0.421875" style="stop-color:rgb(0,166,103)"/>
           <stop offset="0.421875" style="stop-color:rgb(0,165,103)"/>
           <stop offset="0.4375" style="stop-color:rgb(0,165,103)"/>
           <stop offset="0.4375" style="stop-color:rgb(0,165,102)"/>
           <stop offset="0.453125" style="stop-color:rgb(0,165,102)"/>
           <stop offset="0.453125" style="stop-color:rgb(0,164,102)"/>
           <stop offset="0.46875" style="stop-color:rgb(0,164,102)"/>
           <stop offset="0.46875" style="stop-color:rgb(0,164,101)"/>
           <stop offset="0.484375" style="stop-color:rgb(0,164,101)"/>
           <stop offset="0.484375" style="stop-color:rgb(0,163,101)"/>
           <stop offset="0.5" style="stop-color:rgb(0,163,101)"/>
           <stop offset="0.5" style="stop-color:rgb(0,163,100)"/>
           <stop offset="0.515625" style="stop-color:rgb(0,163,100)"/>
           <stop offset="0.515625" style="stop-color:rgb(0,163,99)"/>
           <stop offset="0.53125" style="stop-color:rgb(0,163,99)"/>
           <stop offset="0.53125" style="stop-color:rgb(0,162,99)"/>
           <stop offset="0.546875" style="stop-color:rgb(0,162,99)"/>
           <stop offset="0.546875" style="stop-color:rgb(0,162,98)"/>
           <stop offset="0.5625" style="stop-color:rgb(0,162,98)"/>
           <stop offset="0.5625" style="stop-color:rgb(0,161,98)"/>
           <stop offset="0.578125" style="stop-color:rgb(0,161,98)"/>
           <stop offset="0.578125" style="stop-color:rgb(0,161,97)"/>
           <stop offset="0.59375" style="stop-color:rgb(0,161,97)"/>
           <stop offset="0.59375" style="stop-color:rgb(0,160,97)"/>
           <stop offset="0.609375" style="stop-color:rgb(0,160,97)"/>
           <stop offset="0.609375" style="stop-color:rgb(0,160,96)"/>
           <stop offset="0.625" style="stop-color:rgb(0,160,96)"/>
           <stop offset="0.625" style="stop-color:rgb(0,159,96)"/>
           <stop offset="0.640625" style="stop-color:rgb(0,159,96)"/>
           <stop offset="0.640625" style="stop-color:rgb(0,159,95)"/>
           <stop offset="0.65625" style="stop-color:rgb(0,159,95)"/>
           <stop offset="0.65625" style="stop-color:rgb(0,158,95)"/>
           <stop offset="0.671875" style="stop-color:rgb(0,158,95)"/>
           <stop offset="0.671875" style="stop-color:rgb(0,158,94)"/>
           <stop offset="0.6875" style="stop-color:rgb(0,158,94)"/>
           <stop offset="0.6875" style="stop-color:rgb(0,157,94)"/>
           <stop offset="0.703125" style="stop-color:rgb(0,157,94)"/>
           <stop offset="0.703125" style="stop-color:rgb(0,157,93)"/>
           <stop offset="0.71875" style="stop-color:rgb(0,157,93)"/>
           <stop offset="0.71875" style="stop-color:rgb(0,156,93)"/>
           <stop offset="0.734375" style="stop-color:rgb(0,156,93)"/>
           <stop offset="0.734375" style="stop-color:rgb(0,156,92)"/>
           <stop offset="0.75" style="stop-color:rgb(0,156,92)"/>
           <stop offset="0.75" style="stop-color:rgb(0,155,92)"/>
           <stop offset="0.765625" style="stop-color:rgb(0,155,92)"/>
           <stop offset="0.765625" style="stop-color:rgb(0,155,91)"/>
           <stop offset="0.78125" style="stop-color:rgb(0,155,91)"/>
           <stop offset="0.78125" style="stop-color:rgb(0,154,91)"/>
           <stop offset="0.796875" style="stop-color:rgb(0,154,91)"/>
           <stop offset="0.796875" style="stop-color:rgb(0,154,90)"/>
           <stop offset="0.8125" style="stop-color:rgb(0,154,90)"/>
           <stop offset="0.8125" style="stop-color:rgb(0,153,90)"/>
           <stop offset="0.828125" style="stop-color:rgb(0,153,90)"/>
           <stop offset="0.828125" style="stop-color:rgb(0,153,89)"/>
           <stop offset="0.84375" style="stop-color:rgb(0,153,89)"/>
           <stop offset="0.84375" style="stop-color:rgb(0,152,89)"/>
           <stop offset="0.859375" style="stop-color:rgb(0,152,89)"/>
           <stop offset="0.859375" style="stop-color:rgb(0,152,88)"/>
           <stop offset="0.875" style="stop-color:rgb(0,152,88)"/>
           <stop offset="0.875" style="stop-color:rgb(0,151,88)"/>
           <stop offset="0.890625" style="stop-color:rgb(0,151,88)"/>
           <stop offset="0.890625" style="stop-color:rgb(0,151,87)"/>
           <stop offset="0.90625" style="stop-color:rgb(0,151,87)"/>
           <stop offset="0.90625" style="stop-color:rgb(0,150,87)"/>
           <stop offset="0.921875" style="stop-color:rgb(0,150,87)"/>
           <stop offset="0.921875" style="stop-color:rgb(0,150,86)"/>
           <stop offset="0.9375" style="stop-color:rgb(0,150,86)"/>
           <stop offset="0.9375" style="stop-color:rgb(0,149,86)"/>
           <stop offset="0.953125" style="stop-color:rgb(0,149,86)"/>
           <stop offset="0.953125" style="stop-color:rgb(0,149,85)"/>
           <stop offset="0.96875" style="stop-color:rgb(0,149,85)"/>
           <stop offset="0.96875" style="stop-color:rgb(0,148,85)"/>
           <stop offset="0.984375" style="stop-color:rgb(0,148,85)"/>
           <stop offset="0.984375" style="stop-color:rgb(0,148,84)"/>
           <stop offset="1" style="stop-color:rgb(0,148,84)"/>
           <stop offset="1" style="stop-color:rgb(0,147,83)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient2)" d="M -2809,10414 L -2879,10418 -2948,10431 -3017,10451 -3084,10478 -3148,10512 -3210,10552 -3268,10597 -3323,10647 -3373,10702 -3418,10760 -3458,10822 -3492,10886 -3519,10953 -3539,11021 -3552,11090 -3556,11160 -3556,12970 -3552,13040 -3539,13109 -3519,13177 -3492,13244 -3458,13309 -3418,13370 -3373,13429 -3323,13483 -3268,13534 -3210,13579 -3148,13619 -3084,13653 -3017,13680 -2948,13700 -2879,13713 -2809,13717 7890,13717 7960,13713 8029,13700 8097,13680 8164,13653 8229,13619 8290,13579 8349,13534 8403,13483 8454,13429 8499,13370 8539,13309 8573,13244 8600,13177 8620,13109 8633,13040 8637,12970 8637,11160 8633,11090 8620,11021 8600,10953 8573,10886 8539,10822 8499,10760 8454,10702 8403,10647 8349,10597 8290,10552 8229,10512 8164,10478 8097,10451 8029,10431 7960,10418 7890,10414 -2809,10414 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id8">
        <rect class="BoundingBox" stroke="none" fill="none" x="9396" y="-6600" width="3382" height="12206"/>
        <g>
         <defs>
          <linearGradient id="gradient3" x1="8022" y1="-5804" x2="14150" y2="4809" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(137,199,101)"/>
           <stop offset="0.015625" style="stop-color:rgb(137,199,101)"/>
           <stop offset="0.03125" style="stop-color:rgb(137,199,101)"/>
           <stop offset="0.03125" style="stop-color:rgb(136,198,100)"/>
           <stop offset="0.046875" style="stop-color:rgb(136,198,100)"/>
           <stop offset="0.046875" style="stop-color:rgb(136,198,100)"/>
           <stop offset="0.0625" style="stop-color:rgb(136,198,100)"/>
           <stop offset="0.0625" style="stop-color:rgb(135,197,99)"/>
           <stop offset="0.078125" style="stop-color:rgb(135,197,99)"/>
           <stop offset="0.078125" style="stop-color:rgb(134,197,98)"/>
           <stop offset="0.09375" style="stop-color:rgb(134,197,98)"/>
           <stop offset="0.09375" style="stop-color:rgb(134,196,98)"/>
           <stop offset="0.109375" style="stop-color:rgb(134,196,98)"/>
           <stop offset="0.109375" style="stop-color:rgb(133,196,97)"/>
           <stop offset="0.125" style="stop-color:rgb(133,196,97)"/>
           <stop offset="0.125" style="stop-color:rgb(133,195,96)"/>
           <stop offset="0.140625" style="stop-color:rgb(133,195,96)"/>
           <stop offset="0.140625" style="stop-color:rgb(132,195,96)"/>
           <stop offset="0.15625" style="stop-color:rgb(132,195,96)"/>
           <stop offset="0.15625" style="stop-color:rgb(131,194,95)"/>
           <stop offset="0.171875" style="stop-color:rgb(131,194,95)"/>
           <stop offset="0.171875" style="stop-color:rgb(131,194,94)"/>
           <stop offset="0.1875" style="stop-color:rgb(131,194,94)"/>
           <stop offset="0.1875" style="stop-color:rgb(130,193,94)"/>
           <stop offset="0.203125" style="stop-color:rgb(130,193,94)"/>
           <stop offset="0.203125" style="stop-color:rgb(130,193,93)"/>
           <stop offset="0.21875" style="stop-color:rgb(130,193,93)"/>
           <stop offset="0.21875" style="stop-color:rgb(129,192,92)"/>
           <stop offset="0.234375" style="stop-color:rgb(129,192,92)"/>
           <stop offset="0.234375" style="stop-color:rgb(128,192,92)"/>
           <stop offset="0.25" style="stop-color:rgb(128,192,92)"/>
           <stop offset="0.25" style="stop-color:rgb(128,191,91)"/>
           <stop offset="0.265625" style="stop-color:rgb(128,191,91)"/>
           <stop offset="0.265625" style="stop-color:rgb(127,191,90)"/>
           <stop offset="0.28125" style="stop-color:rgb(127,191,90)"/>
           <stop offset="0.28125" style="stop-color:rgb(127,190,90)"/>
           <stop offset="0.296875" style="stop-color:rgb(127,190,90)"/>
           <stop offset="0.296875" style="stop-color:rgb(126,190,89)"/>
           <stop offset="0.3125" style="stop-color:rgb(126,190,89)"/>
           <stop offset="0.3125" style="stop-color:rgb(125,189,88)"/>
           <stop offset="0.328125" style="stop-color:rgb(125,189,88)"/>
           <stop offset="0.328125" style="stop-color:rgb(125,189,88)"/>
           <stop offset="0.34375" style="stop-color:rgb(125,189,88)"/>
           <stop offset="0.34375" style="stop-color:rgb(124,188,87)"/>
           <stop offset="0.359375" style="stop-color:rgb(124,188,87)"/>
           <stop offset="0.359375" style="stop-color:rgb(123,188,86)"/>
           <stop offset="0.375" style="stop-color:rgb(123,188,86)"/>
           <stop offset="0.375" style="stop-color:rgb(123,187,86)"/>
           <stop offset="0.390625" style="stop-color:rgb(123,187,86)"/>
           <stop offset="0.390625" style="stop-color:rgb(122,187,85)"/>
           <stop offset="0.40625" style="stop-color:rgb(122,187,85)"/>
           <stop offset="0.40625" style="stop-color:rgb(122,186,84)"/>
           <stop offset="0.421875" style="stop-color:rgb(122,186,84)"/>
           <stop offset="0.421875" style="stop-color:rgb(121,186,84)"/>
           <stop offset="0.4375" style="stop-color:rgb(121,186,84)"/>
           <stop offset="0.4375" style="stop-color:rgb(120,185,83)"/>
           <stop offset="0.453125" style="stop-color:rgb(120,185,83)"/>
           <stop offset="0.453125" style="stop-color:rgb(120,185,82)"/>
           <stop offset="0.46875" style="stop-color:rgb(120,185,82)"/>
           <stop offset="0.46875" style="stop-color:rgb(119,184,82)"/>
           <stop offset="0.484375" style="stop-color:rgb(119,184,82)"/>
           <stop offset="0.484375" style="stop-color:rgb(119,184,81)"/>
           <stop offset="0.5" style="stop-color:rgb(119,184,81)"/>
           <stop offset="0.5" style="stop-color:rgb(118,183,80)"/>
           <stop offset="0.515625" style="stop-color:rgb(118,183,80)"/>
           <stop offset="0.515625" style="stop-color:rgb(117,183,80)"/>
           <stop offset="0.53125" style="stop-color:rgb(117,183,80)"/>
           <stop offset="0.53125" style="stop-color:rgb(117,182,79)"/>
           <stop offset="0.546875" style="stop-color:rgb(117,182,79)"/>
           <stop offset="0.546875" style="stop-color:rgb(116,182,79)"/>
           <stop offset="0.5625" style="stop-color:rgb(116,182,79)"/>
           <stop offset="0.5625" style="stop-color:rgb(116,181,78)"/>
           <stop offset="0.578125" style="stop-color:rgb(116,181,78)"/>
           <stop offset="0.578125" style="stop-color:rgb(115,181,77)"/>
           <stop offset="0.59375" style="stop-color:rgb(115,181,77)"/>
           <stop offset="0.59375" style="stop-color:rgb(114,180,77)"/>
           <stop offset="0.609375" style="stop-color:rgb(114,180,77)"/>
           <stop offset="0.609375" style="stop-color:rgb(114,180,76)"/>
           <stop offset="0.625" style="stop-color:rgb(114,180,76)"/>
           <stop offset="0.625" style="stop-color:rgb(113,179,75)"/>
           <stop offset="0.640625" style="stop-color:rgb(113,179,75)"/>
           <stop offset="0.640625" style="stop-color:rgb(113,179,75)"/>
           <stop offset="0.65625" style="stop-color:rgb(113,179,75)"/>
           <stop offset="0.65625" style="stop-color:rgb(112,178,74)"/>
           <stop offset="0.671875" style="stop-color:rgb(112,178,74)"/>
           <stop offset="0.671875" style="stop-color:rgb(111,178,73)"/>
           <stop offset="0.6875" style="stop-color:rgb(111,178,73)"/>
           <stop offset="0.6875" style="stop-color:rgb(111,177,73)"/>
           <stop offset="0.703125" style="stop-color:rgb(111,177,73)"/>
           <stop offset="0.703125" style="stop-color:rgb(110,177,72)"/>
           <stop offset="0.71875" style="stop-color:rgb(110,177,72)"/>
           <stop offset="0.71875" style="stop-color:rgb(109,176,71)"/>
           <stop offset="0.734375" style="stop-color:rgb(109,176,71)"/>
           <stop offset="0.734375" style="stop-color:rgb(109,176,71)"/>
           <stop offset="0.75" style="stop-color:rgb(109,176,71)"/>
           <stop offset="0.75" style="stop-color:rgb(108,175,70)"/>
           <stop offset="0.765625" style="stop-color:rgb(108,175,70)"/>
           <stop offset="0.765625" style="stop-color:rgb(108,175,69)"/>
           <stop offset="0.78125" style="stop-color:rgb(108,175,69)"/>
           <stop offset="0.78125" style="stop-color:rgb(107,174,69)"/>
           <stop offset="0.796875" style="stop-color:rgb(107,174,69)"/>
           <stop offset="0.796875" style="stop-color:rgb(106,174,68)"/>
           <stop offset="0.8125" style="stop-color:rgb(106,174,68)"/>
           <stop offset="0.8125" style="stop-color:rgb(106,173,67)"/>
           <stop offset="0.828125" style="stop-color:rgb(106,173,67)"/>
           <stop offset="0.828125" style="stop-color:rgb(105,173,67)"/>
           <stop offset="0.84375" style="stop-color:rgb(105,173,67)"/>
           <stop offset="0.84375" style="stop-color:rgb(105,172,66)"/>
           <stop offset="0.859375" style="stop-color:rgb(105,172,66)"/>
           <stop offset="0.859375" style="stop-color:rgb(104,172,65)"/>
           <stop offset="0.875" style="stop-color:rgb(104,172,65)"/>
           <stop offset="0.875" style="stop-color:rgb(103,171,65)"/>
           <stop offset="0.890625" style="stop-color:rgb(103,171,65)"/>
           <stop offset="0.890625" style="stop-color:rgb(103,171,64)"/>
           <stop offset="0.90625" style="stop-color:rgb(103,171,64)"/>
           <stop offset="0.90625" style="stop-color:rgb(102,170,63)"/>
           <stop offset="0.921875" style="stop-color:rgb(102,170,63)"/>
           <stop offset="0.921875" style="stop-color:rgb(102,170,63)"/>
           <stop offset="0.9375" style="stop-color:rgb(102,170,63)"/>
           <stop offset="0.9375" style="stop-color:rgb(101,169,62)"/>
           <stop offset="0.953125" style="stop-color:rgb(101,169,62)"/>
           <stop offset="0.953125" style="stop-color:rgb(100,169,61)"/>
           <stop offset="0.96875" style="stop-color:rgb(100,169,61)"/>
           <stop offset="0.96875" style="stop-color:rgb(100,168,61)"/>
           <stop offset="0.984375" style="stop-color:rgb(100,168,61)"/>
           <stop offset="0.984375" style="stop-color:rgb(99,168,60)"/>
           <stop offset="1" style="stop-color:rgb(99,168,60)"/>
           <stop offset="1" style="stop-color:rgb(98,167,59)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient3)" d="M 12772,-5837 L 12768,-5907 12756,-5976 12736,-6045 12709,-6111 12676,-6176 12636,-6238 12592,-6297 12542,-6352 12487,-6402 12429,-6448 12368,-6488 12304,-6522 12237,-6550 12169,-6571 12100,-6583 12030,-6588 10220,-6600 10150,-6596 10081,-6584 10013,-6564 9946,-6537 9881,-6504 9819,-6464 9760,-6419 9705,-6370 9655,-6315 9609,-6257 9569,-6196 9535,-6131 9507,-6065 9486,-5997 9473,-5927 9469,-5857 9401,4842 9405,4911 9417,4981 9437,5049 9464,5116 9497,5181 9537,5243 9582,5301 9632,5356 9686,5407 9744,5453 9806,5493 9870,5527 9936,5555 10005,5576 10074,5588 10144,5593 11954,5605 12024,5601 12093,5589 12161,5569 12228,5542 12293,5509 12354,5469 12413,5424 12468,5374 12519,5320 12564,5262 12604,5200 12639,5136 12666,5069 12687,5001 12700,4932 12704,4862 12772,-5837 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id9">
        <rect class="BoundingBox" stroke="none" fill="none" x="17955" y="7370" width="3382" height="12206"/>
        <g>
         <defs>
          <linearGradient id="gradient4" x1="16581" y1="8166" x2="22709" y2="18779" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(0,182,189)"/>
           <stop offset="0.015625" style="stop-color:rgb(0,182,189)"/>
           <stop offset="0.03125" style="stop-color:rgb(0,182,189)"/>
           <stop offset="0.03125" style="stop-color:rgb(0,181,188)"/>
           <stop offset="0.046875" style="stop-color:rgb(0,181,188)"/>
           <stop offset="0.046875" style="stop-color:rgb(0,181,188)"/>
           <stop offset="0.0625" style="stop-color:rgb(0,181,188)"/>
           <stop offset="0.0625" style="stop-color:rgb(0,180,187)"/>
           <stop offset="0.078125" style="stop-color:rgb(0,180,187)"/>
           <stop offset="0.078125" style="stop-color:rgb(0,180,187)"/>
           <stop offset="0.09375" style="stop-color:rgb(0,180,187)"/>
           <stop offset="0.09375" style="stop-color:rgb(0,179,186)"/>
           <stop offset="0.109375" style="stop-color:rgb(0,179,186)"/>
           <stop offset="0.109375" style="stop-color:rgb(0,179,185)"/>
           <stop offset="0.125" style="stop-color:rgb(0,179,185)"/>
           <stop offset="0.125" style="stop-color:rgb(0,178,185)"/>
           <stop offset="0.140625" style="stop-color:rgb(0,178,185)"/>
           <stop offset="0.140625" style="stop-color:rgb(0,178,184)"/>
           <stop offset="0.15625" style="stop-color:rgb(0,178,184)"/>
           <stop offset="0.15625" style="stop-color:rgb(0,177,184)"/>
           <stop offset="0.171875" style="stop-color:rgb(0,177,184)"/>
           <stop offset="0.171875" style="stop-color:rgb(0,177,183)"/>
           <stop offset="0.1875" style="stop-color:rgb(0,177,183)"/>
           <stop offset="0.1875" style="stop-color:rgb(0,176,183)"/>
           <stop offset="0.203125" style="stop-color:rgb(0,176,183)"/>
           <stop offset="0.203125" style="stop-color:rgb(0,176,182)"/>
           <stop offset="0.21875" style="stop-color:rgb(0,176,182)"/>
           <stop offset="0.21875" style="stop-color:rgb(0,175,181)"/>
           <stop offset="0.234375" style="stop-color:rgb(0,175,181)"/>
           <stop offset="0.234375" style="stop-color:rgb(0,175,181)"/>
           <stop offset="0.25" style="stop-color:rgb(0,175,181)"/>
           <stop offset="0.25" style="stop-color:rgb(0,174,180)"/>
           <stop offset="0.265625" style="stop-color:rgb(0,174,180)"/>
           <stop offset="0.265625" style="stop-color:rgb(0,174,180)"/>
           <stop offset="0.28125" style="stop-color:rgb(0,174,180)"/>
           <stop offset="0.28125" style="stop-color:rgb(0,173,179)"/>
           <stop offset="0.296875" style="stop-color:rgb(0,173,179)"/>
           <stop offset="0.296875" style="stop-color:rgb(0,173,179)"/>
           <stop offset="0.3125" style="stop-color:rgb(0,173,179)"/>
           <stop offset="0.3125" style="stop-color:rgb(0,172,178)"/>
           <stop offset="0.328125" style="stop-color:rgb(0,172,178)"/>
           <stop offset="0.328125" style="stop-color:rgb(0,172,177)"/>
           <stop offset="0.34375" style="stop-color:rgb(0,172,177)"/>
           <stop offset="0.34375" style="stop-color:rgb(0,171,177)"/>
           <stop offset="0.359375" style="stop-color:rgb(0,171,177)"/>
           <stop offset="0.359375" style="stop-color:rgb(0,171,176)"/>
           <stop offset="0.375" style="stop-color:rgb(0,171,176)"/>
           <stop offset="0.375" style="stop-color:rgb(0,170,176)"/>
           <stop offset="0.390625" style="stop-color:rgb(0,170,176)"/>
           <stop offset="0.390625" style="stop-color:rgb(0,170,175)"/>
           <stop offset="0.40625" style="stop-color:rgb(0,170,175)"/>
           <stop offset="0.40625" style="stop-color:rgb(0,169,174)"/>
           <stop offset="0.421875" style="stop-color:rgb(0,169,174)"/>
           <stop offset="0.421875" style="stop-color:rgb(0,169,174)"/>
           <stop offset="0.4375" style="stop-color:rgb(0,169,174)"/>
           <stop offset="0.4375" style="stop-color:rgb(0,168,173)"/>
           <stop offset="0.453125" style="stop-color:rgb(0,168,173)"/>
           <stop offset="0.453125" style="stop-color:rgb(0,168,173)"/>
           <stop offset="0.46875" style="stop-color:rgb(0,168,173)"/>
           <stop offset="0.46875" style="stop-color:rgb(0,167,172)"/>
           <stop offset="0.484375" style="stop-color:rgb(0,167,172)"/>
           <stop offset="0.484375" style="stop-color:rgb(0,167,172)"/>
           <stop offset="0.5" style="stop-color:rgb(0,167,172)"/>
           <stop offset="0.5" style="stop-color:rgb(0,166,171)"/>
           <stop offset="0.515625" style="stop-color:rgb(0,166,171)"/>
           <stop offset="0.515625" style="stop-color:rgb(0,165,170)"/>
           <stop offset="0.53125" style="stop-color:rgb(0,165,170)"/>
           <stop offset="0.53125" style="stop-color:rgb(0,165,170)"/>
           <stop offset="0.546875" style="stop-color:rgb(0,165,170)"/>
           <stop offset="0.546875" style="stop-color:rgb(0,164,169)"/>
           <stop offset="0.5625" style="stop-color:rgb(0,164,169)"/>
           <stop offset="0.5625" style="stop-color:rgb(0,164,169)"/>
           <stop offset="0.578125" style="stop-color:rgb(0,164,169)"/>
           <stop offset="0.578125" style="stop-color:rgb(0,163,168)"/>
           <stop offset="0.59375" style="stop-color:rgb(0,163,168)"/>
           <stop offset="0.59375" style="stop-color:rgb(0,163,168)"/>
           <stop offset="0.609375" style="stop-color:rgb(0,163,168)"/>
           <stop offset="0.609375" style="stop-color:rgb(0,162,167)"/>
           <stop offset="0.625" style="stop-color:rgb(0,162,167)"/>
           <stop offset="0.625" style="stop-color:rgb(0,162,166)"/>
           <stop offset="0.640625" style="stop-color:rgb(0,162,166)"/>
           <stop offset="0.640625" style="stop-color:rgb(0,161,166)"/>
           <stop offset="0.65625" style="stop-color:rgb(0,161,166)"/>
           <stop offset="0.65625" style="stop-color:rgb(0,161,165)"/>
           <stop offset="0.671875" style="stop-color:rgb(0,161,165)"/>
           <stop offset="0.671875" style="stop-color:rgb(0,160,165)"/>
           <stop offset="0.6875" style="stop-color:rgb(0,160,165)"/>
           <stop offset="0.6875" style="stop-color:rgb(0,160,164)"/>
           <stop offset="0.703125" style="stop-color:rgb(0,160,164)"/>
           <stop offset="0.703125" style="stop-color:rgb(0,159,163)"/>
           <stop offset="0.71875" style="stop-color:rgb(0,159,163)"/>
           <stop offset="0.71875" style="stop-color:rgb(0,159,163)"/>
           <stop offset="0.734375" style="stop-color:rgb(0,159,163)"/>
           <stop offset="0.734375" style="stop-color:rgb(0,158,162)"/>
           <stop offset="0.75" style="stop-color:rgb(0,158,162)"/>
           <stop offset="0.75" style="stop-color:rgb(0,158,162)"/>
           <stop offset="0.765625" style="stop-color:rgb(0,158,162)"/>
           <stop offset="0.765625" style="stop-color:rgb(0,157,161)"/>
           <stop offset="0.78125" style="stop-color:rgb(0,157,161)"/>
           <stop offset="0.78125" style="stop-color:rgb(0,157,161)"/>
           <stop offset="0.796875" style="stop-color:rgb(0,157,161)"/>
           <stop offset="0.796875" style="stop-color:rgb(0,156,160)"/>
           <stop offset="0.8125" style="stop-color:rgb(0,156,160)"/>
           <stop offset="0.8125" style="stop-color:rgb(0,156,159)"/>
           <stop offset="0.828125" style="stop-color:rgb(0,156,159)"/>
           <stop offset="0.828125" style="stop-color:rgb(0,155,159)"/>
           <stop offset="0.84375" style="stop-color:rgb(0,155,159)"/>
           <stop offset="0.84375" style="stop-color:rgb(0,155,158)"/>
           <stop offset="0.859375" style="stop-color:rgb(0,155,158)"/>
           <stop offset="0.859375" style="stop-color:rgb(0,154,158)"/>
           <stop offset="0.875" style="stop-color:rgb(0,154,158)"/>
           <stop offset="0.875" style="stop-color:rgb(0,154,157)"/>
           <stop offset="0.890625" style="stop-color:rgb(0,154,157)"/>
           <stop offset="0.890625" style="stop-color:rgb(0,153,157)"/>
           <stop offset="0.90625" style="stop-color:rgb(0,153,157)"/>
           <stop offset="0.90625" style="stop-color:rgb(0,153,156)"/>
           <stop offset="0.921875" style="stop-color:rgb(0,153,156)"/>
           <stop offset="0.921875" style="stop-color:rgb(0,152,155)"/>
           <stop offset="0.9375" style="stop-color:rgb(0,152,155)"/>
           <stop offset="0.9375" style="stop-color:rgb(0,152,155)"/>
           <stop offset="0.953125" style="stop-color:rgb(0,152,155)"/>
           <stop offset="0.953125" style="stop-color:rgb(0,151,154)"/>
           <stop offset="0.96875" style="stop-color:rgb(0,151,154)"/>
           <stop offset="0.96875" style="stop-color:rgb(0,151,154)"/>
           <stop offset="0.984375" style="stop-color:rgb(0,151,154)"/>
           <stop offset="0.984375" style="stop-color:rgb(0,150,153)"/>
           <stop offset="1" style="stop-color:rgb(0,150,153)"/>
           <stop offset="1" style="stop-color:rgb(0,149,152)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient4)" d="M 21331,8133 L 21327,8063 21315,7994 21295,7925 21268,7859 21235,7794 21195,7732 21151,7673 21101,7618 21046,7568 20988,7522 20927,7482 20863,7448 20796,7420 20728,7399 20659,7387 20589,7382 18779,7370 18709,7374 18640,7386 18572,7406 18505,7433 18440,7466 18378,7506 18319,7551 18264,7600 18214,7655 18168,7713 18128,7774 18094,7839 18066,7905 18045,7973 18032,8043 18028,8113 17960,18812 17964,18881 17976,18951 17996,19019 18023,19086 18056,19151 18096,19213 18141,19271 18191,19326 18245,19377 18303,19423 18365,19463 18429,19497 18495,19525 18564,19546 18633,19558 18703,19563 20513,19575 20583,19571 20652,19559 20720,19539 20787,19512 20852,19479 20913,19439 20972,19394 21027,19344 21078,19290 21123,19232 21163,19170 21198,19106 21225,19039 21246,18971 21259,18902 21263,18832 21331,8133 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id10">
        <rect class="BoundingBox" stroke="none" fill="none" x="-6350" y="3047" width="12194" height="3305"/>
        <g>
         <defs>
          <linearGradient id="gradient5" x1="-2493" y1="821" x2="1986" y2="8578" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(116,72,157)"/>
           <stop offset="0.015625" style="stop-color:rgb(116,72,157)"/>
           <stop offset="0.03125" style="stop-color:rgb(116,72,157)"/>
           <stop offset="0.03125" style="stop-color:rgb(115,71,157)"/>
           <stop offset="0.046875" style="stop-color:rgb(115,71,157)"/>
           <stop offset="0.046875" style="stop-color:rgb(115,71,156)"/>
           <stop offset="0.0625" style="stop-color:rgb(115,71,156)"/>
           <stop offset="0.0625" style="stop-color:rgb(114,70,156)"/>
           <stop offset="0.078125" style="stop-color:rgb(114,70,156)"/>
           <stop offset="0.078125" style="stop-color:rgb(114,70,155)"/>
           <stop offset="0.09375" style="stop-color:rgb(114,70,155)"/>
           <stop offset="0.09375" style="stop-color:rgb(113,69,155)"/>
           <stop offset="0.109375" style="stop-color:rgb(113,69,155)"/>
           <stop offset="0.109375" style="stop-color:rgb(113,69,154)"/>
           <stop offset="0.125" style="stop-color:rgb(113,69,154)"/>
           <stop offset="0.125" style="stop-color:rgb(112,68,154)"/>
           <stop offset="0.140625" style="stop-color:rgb(112,68,154)"/>
           <stop offset="0.140625" style="stop-color:rgb(112,67,153)"/>
           <stop offset="0.15625" style="stop-color:rgb(112,67,153)"/>
           <stop offset="0.15625" style="stop-color:rgb(111,67,153)"/>
           <stop offset="0.171875" style="stop-color:rgb(111,67,153)"/>
           <stop offset="0.171875" style="stop-color:rgb(110,66,153)"/>
           <stop offset="0.1875" style="stop-color:rgb(110,66,153)"/>
           <stop offset="0.1875" style="stop-color:rgb(110,66,152)"/>
           <stop offset="0.203125" style="stop-color:rgb(110,66,152)"/>
           <stop offset="0.203125" style="stop-color:rgb(109,65,152)"/>
           <stop offset="0.21875" style="stop-color:rgb(109,65,152)"/>
           <stop offset="0.21875" style="stop-color:rgb(109,65,151)"/>
           <stop offset="0.234375" style="stop-color:rgb(109,65,151)"/>
           <stop offset="0.234375" style="stop-color:rgb(108,64,151)"/>
           <stop offset="0.25" style="stop-color:rgb(108,64,151)"/>
           <stop offset="0.25" style="stop-color:rgb(108,63,150)"/>
           <stop offset="0.265625" style="stop-color:rgb(108,63,150)"/>
           <stop offset="0.265625" style="stop-color:rgb(107,63,150)"/>
           <stop offset="0.28125" style="stop-color:rgb(107,63,150)"/>
           <stop offset="0.28125" style="stop-color:rgb(107,62,149)"/>
           <stop offset="0.296875" style="stop-color:rgb(107,62,149)"/>
           <stop offset="0.296875" style="stop-color:rgb(106,62,149)"/>
           <stop offset="0.3125" style="stop-color:rgb(106,62,149)"/>
           <stop offset="0.3125" style="stop-color:rgb(106,61,148)"/>
           <stop offset="0.328125" style="stop-color:rgb(106,61,148)"/>
           <stop offset="0.328125" style="stop-color:rgb(105,61,148)"/>
           <stop offset="0.34375" style="stop-color:rgb(105,61,148)"/>
           <stop offset="0.34375" style="stop-color:rgb(104,60,148)"/>
           <stop offset="0.359375" style="stop-color:rgb(104,60,148)"/>
           <stop offset="0.359375" style="stop-color:rgb(104,60,147)"/>
           <stop offset="0.375" style="stop-color:rgb(104,60,147)"/>
           <stop offset="0.375" style="stop-color:rgb(103,59,147)"/>
           <stop offset="0.390625" style="stop-color:rgb(103,59,147)"/>
           <stop offset="0.390625" style="stop-color:rgb(103,58,146)"/>
           <stop offset="0.40625" style="stop-color:rgb(103,58,146)"/>
           <stop offset="0.40625" style="stop-color:rgb(102,58,146)"/>
           <stop offset="0.421875" style="stop-color:rgb(102,58,146)"/>
           <stop offset="0.421875" style="stop-color:rgb(102,57,145)"/>
           <stop offset="0.4375" style="stop-color:rgb(102,57,145)"/>
           <stop offset="0.4375" style="stop-color:rgb(101,57,145)"/>
           <stop offset="0.453125" style="stop-color:rgb(101,57,145)"/>
           <stop offset="0.453125" style="stop-color:rgb(101,56,144)"/>
           <stop offset="0.46875" style="stop-color:rgb(101,56,144)"/>
           <stop offset="0.46875" style="stop-color:rgb(100,56,144)"/>
           <stop offset="0.484375" style="stop-color:rgb(100,56,144)"/>
           <stop offset="0.484375" style="stop-color:rgb(100,55,143)"/>
           <stop offset="0.5" style="stop-color:rgb(100,55,143)"/>
           <stop offset="0.5" style="stop-color:rgb(99,54,143)"/>
           <stop offset="0.515625" style="stop-color:rgb(99,54,143)"/>
           <stop offset="0.515625" style="stop-color:rgb(98,54,143)"/>
           <stop offset="0.53125" style="stop-color:rgb(98,54,143)"/>
           <stop offset="0.53125" style="stop-color:rgb(98,53,142)"/>
           <stop offset="0.546875" style="stop-color:rgb(98,53,142)"/>
           <stop offset="0.546875" style="stop-color:rgb(97,53,142)"/>
           <stop offset="0.5625" style="stop-color:rgb(97,53,142)"/>
           <stop offset="0.5625" style="stop-color:rgb(97,52,141)"/>
           <stop offset="0.578125" style="stop-color:rgb(97,52,141)"/>
           <stop offset="0.578125" style="stop-color:rgb(96,52,141)"/>
           <stop offset="0.59375" style="stop-color:rgb(96,52,141)"/>
           <stop offset="0.59375" style="stop-color:rgb(96,51,140)"/>
           <stop offset="0.609375" style="stop-color:rgb(96,51,140)"/>
           <stop offset="0.609375" style="stop-color:rgb(95,51,140)"/>
           <stop offset="0.625" style="stop-color:rgb(95,51,140)"/>
           <stop offset="0.625" style="stop-color:rgb(95,50,139)"/>
           <stop offset="0.640625" style="stop-color:rgb(95,50,139)"/>
           <stop offset="0.640625" style="stop-color:rgb(94,49,139)"/>
           <stop offset="0.65625" style="stop-color:rgb(94,49,139)"/>
           <stop offset="0.65625" style="stop-color:rgb(94,49,138)"/>
           <stop offset="0.671875" style="stop-color:rgb(94,49,138)"/>
           <stop offset="0.671875" style="stop-color:rgb(93,48,138)"/>
           <stop offset="0.6875" style="stop-color:rgb(93,48,138)"/>
           <stop offset="0.6875" style="stop-color:rgb(92,48,138)"/>
           <stop offset="0.703125" style="stop-color:rgb(92,48,138)"/>
           <stop offset="0.703125" style="stop-color:rgb(92,47,137)"/>
           <stop offset="0.71875" style="stop-color:rgb(92,47,137)"/>
           <stop offset="0.71875" style="stop-color:rgb(91,47,137)"/>
           <stop offset="0.734375" style="stop-color:rgb(91,47,137)"/>
           <stop offset="0.734375" style="stop-color:rgb(91,46,136)"/>
           <stop offset="0.75" style="stop-color:rgb(91,46,136)"/>
           <stop offset="0.75" style="stop-color:rgb(90,45,136)"/>
           <stop offset="0.765625" style="stop-color:rgb(90,45,136)"/>
           <stop offset="0.765625" style="stop-color:rgb(90,45,135)"/>
           <stop offset="0.78125" style="stop-color:rgb(90,45,135)"/>
           <stop offset="0.78125" style="stop-color:rgb(89,44,135)"/>
           <stop offset="0.796875" style="stop-color:rgb(89,44,135)"/>
           <stop offset="0.796875" style="stop-color:rgb(89,44,134)"/>
           <stop offset="0.8125" style="stop-color:rgb(89,44,134)"/>
           <stop offset="0.8125" style="stop-color:rgb(88,43,134)"/>
           <stop offset="0.828125" style="stop-color:rgb(88,43,134)"/>
           <stop offset="0.828125" style="stop-color:rgb(88,43,133)"/>
           <stop offset="0.84375" style="stop-color:rgb(88,43,133)"/>
           <stop offset="0.84375" style="stop-color:rgb(87,42,133)"/>
           <stop offset="0.859375" style="stop-color:rgb(87,42,133)"/>
           <stop offset="0.859375" style="stop-color:rgb(86,42,133)"/>
           <stop offset="0.875" style="stop-color:rgb(86,42,133)"/>
           <stop offset="0.875" style="stop-color:rgb(86,41,132)"/>
           <stop offset="0.890625" style="stop-color:rgb(86,41,132)"/>
           <stop offset="0.890625" style="stop-color:rgb(85,40,132)"/>
           <stop offset="0.90625" style="stop-color:rgb(85,40,132)"/>
           <stop offset="0.90625" style="stop-color:rgb(85,40,131)"/>
           <stop offset="0.921875" style="stop-color:rgb(85,40,131)"/>
           <stop offset="0.921875" style="stop-color:rgb(84,39,131)"/>
           <stop offset="0.9375" style="stop-color:rgb(84,39,131)"/>
           <stop offset="0.9375" style="stop-color:rgb(84,39,130)"/>
           <stop offset="0.953125" style="stop-color:rgb(84,39,130)"/>
           <stop offset="0.953125" style="stop-color:rgb(83,38,130)"/>
           <stop offset="0.96875" style="stop-color:rgb(83,38,130)"/>
           <stop offset="0.96875" style="stop-color:rgb(83,38,129)"/>
           <stop offset="0.984375" style="stop-color:rgb(83,38,129)"/>
           <stop offset="0.984375" style="stop-color:rgb(82,37,129)"/>
           <stop offset="1" style="stop-color:rgb(82,37,129)"/>
           <stop offset="1" style="stop-color:rgb(81,36,128)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient5)" d="M -5603,3048 L -5673,3052 -5742,3065 -5811,3085 -5878,3112 -5942,3146 -6004,3186 -6062,3231 -6117,3281 -6167,3336 -6212,3394 -6252,3456 -6286,3520 -6313,3587 -6333,3655 -6346,3724 -6350,3794 -6350,5604 -6346,5674 -6333,5743 -6313,5811 -6286,5878 -6252,5943 -6212,6004 -6167,6063 -6117,6117 -6062,6168 -6004,6213 -5942,6253 -5878,6287 -5811,6314 -5742,6334 -5673,6347 -5603,6351 5096,6351 5166,6347 5235,6334 5303,6314 5370,6287 5435,6253 5496,6213 5555,6168 5609,6117 5660,6063 5705,6004 5745,5943 5779,5878 5806,5811 5826,5743 5839,5674 5843,5604 5843,3794 5839,3724 5826,3655 5806,3587 5779,3520 5745,3456 5705,3394 5660,3336 5609,3281 5555,3231 5496,3186 5435,3146 5370,3112 5303,3085 5235,3065 5166,3052 5096,3048 -5603,3048 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id11">
        <rect class="BoundingBox" stroke="none" fill="none" x="11799" y="11174" width="3328" height="12202"/>
        <g>
         <defs>
          <linearGradient id="gradient6" x1="10406" y1="11981" x2="16519" y2="22568" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(170,85,161)"/>
           <stop offset="0.015625" style="stop-color:rgb(170,85,161)"/>
           <stop offset="0.03125" style="stop-color:rgb(170,85,161)"/>
           <stop offset="0.03125" style="stop-color:rgb(170,84,160)"/>
           <stop offset="0.046875" style="stop-color:rgb(170,84,160)"/>
           <stop offset="0.046875" style="stop-color:rgb(169,83,160)"/>
           <stop offset="0.0625" style="stop-color:rgb(169,83,160)"/>
           <stop offset="0.0625" style="stop-color:rgb(169,82,159)"/>
           <stop offset="0.078125" style="stop-color:rgb(169,82,159)"/>
           <stop offset="0.078125" style="stop-color:rgb(168,81,159)"/>
           <stop offset="0.09375" style="stop-color:rgb(168,81,159)"/>
           <stop offset="0.09375" style="stop-color:rgb(168,80,158)"/>
           <stop offset="0.109375" style="stop-color:rgb(168,80,158)"/>
           <stop offset="0.109375" style="stop-color:rgb(168,79,157)"/>
           <stop offset="0.125" style="stop-color:rgb(168,79,157)"/>
           <stop offset="0.125" style="stop-color:rgb(167,78,157)"/>
           <stop offset="0.140625" style="stop-color:rgb(167,78,157)"/>
           <stop offset="0.140625" style="stop-color:rgb(167,77,156)"/>
           <stop offset="0.15625" style="stop-color:rgb(167,77,156)"/>
           <stop offset="0.15625" style="stop-color:rgb(166,76,156)"/>
           <stop offset="0.171875" style="stop-color:rgb(166,76,156)"/>
           <stop offset="0.171875" style="stop-color:rgb(166,75,155)"/>
           <stop offset="0.1875" style="stop-color:rgb(166,75,155)"/>
           <stop offset="0.1875" style="stop-color:rgb(165,74,155)"/>
           <stop offset="0.203125" style="stop-color:rgb(165,74,155)"/>
           <stop offset="0.203125" style="stop-color:rgb(165,73,154)"/>
           <stop offset="0.21875" style="stop-color:rgb(165,73,154)"/>
           <stop offset="0.21875" style="stop-color:rgb(165,72,153)"/>
           <stop offset="0.234375" style="stop-color:rgb(165,72,153)"/>
           <stop offset="0.234375" style="stop-color:rgb(164,71,153)"/>
           <stop offset="0.25" style="stop-color:rgb(164,71,153)"/>
           <stop offset="0.25" style="stop-color:rgb(164,70,152)"/>
           <stop offset="0.265625" style="stop-color:rgb(164,70,152)"/>
           <stop offset="0.265625" style="stop-color:rgb(163,69,152)"/>
           <stop offset="0.28125" style="stop-color:rgb(163,69,152)"/>
           <stop offset="0.28125" style="stop-color:rgb(163,68,151)"/>
           <stop offset="0.296875" style="stop-color:rgb(163,68,151)"/>
           <stop offset="0.296875" style="stop-color:rgb(162,67,151)"/>
           <stop offset="0.3125" style="stop-color:rgb(162,67,151)"/>
           <stop offset="0.3125" style="stop-color:rgb(162,66,150)"/>
           <stop offset="0.328125" style="stop-color:rgb(162,66,150)"/>
           <stop offset="0.328125" style="stop-color:rgb(162,65,149)"/>
           <stop offset="0.34375" style="stop-color:rgb(162,65,149)"/>
           <stop offset="0.34375" style="stop-color:rgb(161,65,149)"/>
           <stop offset="0.359375" style="stop-color:rgb(161,65,149)"/>
           <stop offset="0.359375" style="stop-color:rgb(161,64,148)"/>
           <stop offset="0.375" style="stop-color:rgb(161,64,148)"/>
           <stop offset="0.375" style="stop-color:rgb(160,63,148)"/>
           <stop offset="0.390625" style="stop-color:rgb(160,63,148)"/>
           <stop offset="0.390625" style="stop-color:rgb(160,62,147)"/>
           <stop offset="0.40625" style="stop-color:rgb(160,62,147)"/>
           <stop offset="0.40625" style="stop-color:rgb(160,61,146)"/>
           <stop offset="0.421875" style="stop-color:rgb(160,61,146)"/>
           <stop offset="0.421875" style="stop-color:rgb(159,60,146)"/>
           <stop offset="0.4375" style="stop-color:rgb(159,60,146)"/>
           <stop offset="0.4375" style="stop-color:rgb(159,59,145)"/>
           <stop offset="0.453125" style="stop-color:rgb(159,59,145)"/>
           <stop offset="0.453125" style="stop-color:rgb(158,58,145)"/>
           <stop offset="0.46875" style="stop-color:rgb(158,58,145)"/>
           <stop offset="0.46875" style="stop-color:rgb(158,57,144)"/>
           <stop offset="0.484375" style="stop-color:rgb(158,57,144)"/>
           <stop offset="0.484375" style="stop-color:rgb(157,56,144)"/>
           <stop offset="0.5" style="stop-color:rgb(157,56,144)"/>
           <stop offset="0.5" style="stop-color:rgb(157,55,143)"/>
           <stop offset="0.515625" style="stop-color:rgb(157,55,143)"/>
           <stop offset="0.515625" style="stop-color:rgb(157,54,142)"/>
           <stop offset="0.53125" style="stop-color:rgb(157,54,142)"/>
           <stop offset="0.53125" style="stop-color:rgb(156,53,142)"/>
           <stop offset="0.546875" style="stop-color:rgb(156,53,142)"/>
           <stop offset="0.546875" style="stop-color:rgb(156,52,141)"/>
           <stop offset="0.5625" style="stop-color:rgb(156,52,141)"/>
           <stop offset="0.5625" style="stop-color:rgb(155,51,141)"/>
           <stop offset="0.578125" style="stop-color:rgb(155,51,141)"/>
           <stop offset="0.578125" style="stop-color:rgb(155,50,140)"/>
           <stop offset="0.59375" style="stop-color:rgb(155,50,140)"/>
           <stop offset="0.59375" style="stop-color:rgb(154,49,140)"/>
           <stop offset="0.609375" style="stop-color:rgb(154,49,140)"/>
           <stop offset="0.609375" style="stop-color:rgb(154,48,139)"/>
           <stop offset="0.625" style="stop-color:rgb(154,48,139)"/>
           <stop offset="0.625" style="stop-color:rgb(154,47,138)"/>
           <stop offset="0.640625" style="stop-color:rgb(154,47,138)"/>
           <stop offset="0.640625" style="stop-color:rgb(153,46,138)"/>
           <stop offset="0.65625" style="stop-color:rgb(153,46,138)"/>
           <stop offset="0.65625" style="stop-color:rgb(153,45,137)"/>
           <stop offset="0.671875" style="stop-color:rgb(153,45,137)"/>
           <stop offset="0.671875" style="stop-color:rgb(152,45,137)"/>
           <stop offset="0.6875" style="stop-color:rgb(152,45,137)"/>
           <stop offset="0.6875" style="stop-color:rgb(152,44,136)"/>
           <stop offset="0.703125" style="stop-color:rgb(152,44,136)"/>
           <stop offset="0.703125" style="stop-color:rgb(152,43,135)"/>
           <stop offset="0.71875" style="stop-color:rgb(152,43,135)"/>
           <stop offset="0.71875" style="stop-color:rgb(151,42,135)"/>
           <stop offset="0.734375" style="stop-color:rgb(151,42,135)"/>
           <stop offset="0.734375" style="stop-color:rgb(151,41,134)"/>
           <stop offset="0.75" style="stop-color:rgb(151,41,134)"/>
           <stop offset="0.75" style="stop-color:rgb(150,40,134)"/>
           <stop offset="0.765625" style="stop-color:rgb(150,40,134)"/>
           <stop offset="0.765625" style="stop-color:rgb(150,39,133)"/>
           <stop offset="0.78125" style="stop-color:rgb(150,39,133)"/>
           <stop offset="0.78125" style="stop-color:rgb(149,38,133)"/>
           <stop offset="0.796875" style="stop-color:rgb(149,38,133)"/>
           <stop offset="0.796875" style="stop-color:rgb(149,37,132)"/>
           <stop offset="0.8125" style="stop-color:rgb(149,37,132)"/>
           <stop offset="0.8125" style="stop-color:rgb(149,36,131)"/>
           <stop offset="0.828125" style="stop-color:rgb(149,36,131)"/>
           <stop offset="0.828125" style="stop-color:rgb(148,35,131)"/>
           <stop offset="0.84375" style="stop-color:rgb(148,35,131)"/>
           <stop offset="0.84375" style="stop-color:rgb(148,34,130)"/>
           <stop offset="0.859375" style="stop-color:rgb(148,34,130)"/>
           <stop offset="0.859375" style="stop-color:rgb(147,33,130)"/>
           <stop offset="0.875" style="stop-color:rgb(147,33,130)"/>
           <stop offset="0.875" style="stop-color:rgb(147,32,129)"/>
           <stop offset="0.890625" style="stop-color:rgb(147,32,129)"/>
           <stop offset="0.890625" style="stop-color:rgb(146,31,129)"/>
           <stop offset="0.90625" style="stop-color:rgb(146,31,129)"/>
           <stop offset="0.90625" style="stop-color:rgb(146,30,128)"/>
           <stop offset="0.921875" style="stop-color:rgb(146,30,128)"/>
           <stop offset="0.921875" style="stop-color:rgb(146,29,127)"/>
           <stop offset="0.9375" style="stop-color:rgb(146,29,127)"/>
           <stop offset="0.9375" style="stop-color:rgb(145,28,127)"/>
           <stop offset="0.953125" style="stop-color:rgb(145,28,127)"/>
           <stop offset="0.953125" style="stop-color:rgb(145,27,126)"/>
           <stop offset="0.96875" style="stop-color:rgb(145,27,126)"/>
           <stop offset="0.96875" style="stop-color:rgb(144,26,126)"/>
           <stop offset="0.984375" style="stop-color:rgb(144,26,126)"/>
           <stop offset="0.984375" style="stop-color:rgb(144,25,125)"/>
           <stop offset="1" style="stop-color:rgb(144,25,125)"/>
           <stop offset="1" style="stop-color:rgb(143,24,124)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient6)" d="M 11822,22627 L 11827,22697 11839,22767 11860,22835 11887,22902 11921,22966 11961,23028 12006,23086 12056,23141 12111,23191 12170,23236 12231,23276 12296,23309 12362,23336 12431,23356 12500,23369 12570,23373 14380,23369 14450,23365 14519,23352 14587,23332 14654,23304 14718,23270 14780,23231 14838,23185 14893,23135 14943,23080 14988,23022 15028,22960 15062,22895 15089,22828 15109,22760 15121,22691 15125,22621 15103,11922 15098,11852 15086,11782 15065,11714 15038,11648 15004,11583 14964,11522 14918,11463 14868,11409 14813,11359 14755,11313 14693,11274 14628,11240 14562,11213 14493,11193 14424,11180 14354,11176 12544,11180 12474,11184 12405,11197 12337,11217 12270,11245 12206,11279 12145,11319 12086,11364 12032,11415 11982,11469 11937,11528 11897,11590 11863,11654 11836,11721 11816,11789 11804,11859 11800,11928 11822,22627 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id12">
        <rect class="BoundingBox" stroke="none" fill="none" x="6605" y="6326" width="12198" height="3328"/>
        <g>
         <defs>
          <linearGradient id="gradient7" x1="10459" y1="4102" x2="14948" y2="11877" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(240,78,77)"/>
           <stop offset="0.015625" style="stop-color:rgb(240,78,77)"/>
           <stop offset="0.03125" style="stop-color:rgb(240,78,77)"/>
           <stop offset="0.03125" style="stop-color:rgb(239,77,76)"/>
           <stop offset="0.046875" style="stop-color:rgb(239,77,76)"/>
           <stop offset="0.046875" style="stop-color:rgb(239,76,75)"/>
           <stop offset="0.0625" style="stop-color:rgb(239,76,75)"/>
           <stop offset="0.0625" style="stop-color:rgb(238,75,75)"/>
           <stop offset="0.078125" style="stop-color:rgb(238,75,75)"/>
           <stop offset="0.078125" style="stop-color:rgb(238,74,74)"/>
           <stop offset="0.09375" style="stop-color:rgb(238,74,74)"/>
           <stop offset="0.09375" style="stop-color:rgb(237,73,73)"/>
           <stop offset="0.109375" style="stop-color:rgb(237,73,73)"/>
           <stop offset="0.109375" style="stop-color:rgb(237,73,72)"/>
           <stop offset="0.125" style="stop-color:rgb(237,73,72)"/>
           <stop offset="0.125" style="stop-color:rgb(236,72,72)"/>
           <stop offset="0.140625" style="stop-color:rgb(236,72,72)"/>
           <stop offset="0.140625" style="stop-color:rgb(236,71,71)"/>
           <stop offset="0.15625" style="stop-color:rgb(236,71,71)"/>
           <stop offset="0.15625" style="stop-color:rgb(235,70,70)"/>
           <stop offset="0.171875" style="stop-color:rgb(235,70,70)"/>
           <stop offset="0.171875" style="stop-color:rgb(235,69,69)"/>
           <stop offset="0.1875" style="stop-color:rgb(235,69,69)"/>
           <stop offset="0.1875" style="stop-color:rgb(234,68,69)"/>
           <stop offset="0.203125" style="stop-color:rgb(234,68,69)"/>
           <stop offset="0.203125" style="stop-color:rgb(234,68,68)"/>
           <stop offset="0.21875" style="stop-color:rgb(234,68,68)"/>
           <stop offset="0.21875" style="stop-color:rgb(233,67,67)"/>
           <stop offset="0.234375" style="stop-color:rgb(233,67,67)"/>
           <stop offset="0.234375" style="stop-color:rgb(233,66,66)"/>
           <stop offset="0.25" style="stop-color:rgb(233,66,66)"/>
           <stop offset="0.25" style="stop-color:rgb(232,65,66)"/>
           <stop offset="0.265625" style="stop-color:rgb(232,65,66)"/>
           <stop offset="0.265625" style="stop-color:rgb(231,64,65)"/>
           <stop offset="0.28125" style="stop-color:rgb(231,64,65)"/>
           <stop offset="0.28125" style="stop-color:rgb(231,63,64)"/>
           <stop offset="0.296875" style="stop-color:rgb(231,63,64)"/>
           <stop offset="0.296875" style="stop-color:rgb(230,62,64)"/>
           <stop offset="0.3125" style="stop-color:rgb(230,62,64)"/>
           <stop offset="0.3125" style="stop-color:rgb(230,62,63)"/>
           <stop offset="0.328125" style="stop-color:rgb(230,62,63)"/>
           <stop offset="0.328125" style="stop-color:rgb(229,61,62)"/>
           <stop offset="0.34375" style="stop-color:rgb(229,61,62)"/>
           <stop offset="0.34375" style="stop-color:rgb(229,60,61)"/>
           <stop offset="0.359375" style="stop-color:rgb(229,60,61)"/>
           <stop offset="0.359375" style="stop-color:rgb(228,59,61)"/>
           <stop offset="0.375" style="stop-color:rgb(228,59,61)"/>
           <stop offset="0.375" style="stop-color:rgb(228,58,60)"/>
           <stop offset="0.390625" style="stop-color:rgb(228,58,60)"/>
           <stop offset="0.390625" style="stop-color:rgb(227,57,59)"/>
           <stop offset="0.40625" style="stop-color:rgb(227,57,59)"/>
           <stop offset="0.40625" style="stop-color:rgb(227,57,58)"/>
           <stop offset="0.421875" style="stop-color:rgb(227,57,58)"/>
           <stop offset="0.421875" style="stop-color:rgb(226,56,58)"/>
           <stop offset="0.4375" style="stop-color:rgb(226,56,58)"/>
           <stop offset="0.4375" style="stop-color:rgb(226,55,57)"/>
           <stop offset="0.453125" style="stop-color:rgb(226,55,57)"/>
           <stop offset="0.453125" style="stop-color:rgb(225,54,56)"/>
           <stop offset="0.46875" style="stop-color:rgb(225,54,56)"/>
           <stop offset="0.46875" style="stop-color:rgb(225,53,55)"/>
           <stop offset="0.484375" style="stop-color:rgb(225,53,55)"/>
           <stop offset="0.484375" style="stop-color:rgb(224,52,55)"/>
           <stop offset="0.5" style="stop-color:rgb(224,52,55)"/>
           <stop offset="0.5" style="stop-color:rgb(223,51,54)"/>
           <stop offset="0.515625" style="stop-color:rgb(223,51,54)"/>
           <stop offset="0.515625" style="stop-color:rgb(223,51,53)"/>
           <stop offset="0.53125" style="stop-color:rgb(223,51,53)"/>
           <stop offset="0.53125" style="stop-color:rgb(222,50,53)"/>
           <stop offset="0.546875" style="stop-color:rgb(222,50,53)"/>
           <stop offset="0.546875" style="stop-color:rgb(222,49,52)"/>
           <stop offset="0.5625" style="stop-color:rgb(222,49,52)"/>
           <stop offset="0.5625" style="stop-color:rgb(221,48,51)"/>
           <stop offset="0.578125" style="stop-color:rgb(221,48,51)"/>
           <stop offset="0.578125" style="stop-color:rgb(221,47,50)"/>
           <stop offset="0.59375" style="stop-color:rgb(221,47,50)"/>
           <stop offset="0.59375" style="stop-color:rgb(220,46,50)"/>
           <stop offset="0.609375" style="stop-color:rgb(220,46,50)"/>
           <stop offset="0.609375" style="stop-color:rgb(220,46,49)"/>
           <stop offset="0.625" style="stop-color:rgb(220,46,49)"/>
           <stop offset="0.625" style="stop-color:rgb(219,45,48)"/>
           <stop offset="0.640625" style="stop-color:rgb(219,45,48)"/>
           <stop offset="0.640625" style="stop-color:rgb(219,44,47)"/>
           <stop offset="0.65625" style="stop-color:rgb(219,44,47)"/>
           <stop offset="0.65625" style="stop-color:rgb(218,43,47)"/>
           <stop offset="0.671875" style="stop-color:rgb(218,43,47)"/>
           <stop offset="0.671875" style="stop-color:rgb(218,42,46)"/>
           <stop offset="0.6875" style="stop-color:rgb(218,42,46)"/>
           <stop offset="0.6875" style="stop-color:rgb(217,41,45)"/>
           <stop offset="0.703125" style="stop-color:rgb(217,41,45)"/>
           <stop offset="0.703125" style="stop-color:rgb(217,41,44)"/>
           <stop offset="0.71875" style="stop-color:rgb(217,41,44)"/>
           <stop offset="0.71875" style="stop-color:rgb(216,40,44)"/>
           <stop offset="0.734375" style="stop-color:rgb(216,40,44)"/>
           <stop offset="0.734375" style="stop-color:rgb(216,39,43)"/>
           <stop offset="0.75" style="stop-color:rgb(216,39,43)"/>
           <stop offset="0.75" style="stop-color:rgb(215,38,42)"/>
           <stop offset="0.765625" style="stop-color:rgb(215,38,42)"/>
           <stop offset="0.765625" style="stop-color:rgb(214,37,42)"/>
           <stop offset="0.78125" style="stop-color:rgb(214,37,42)"/>
           <stop offset="0.78125" style="stop-color:rgb(214,36,41)"/>
           <stop offset="0.796875" style="stop-color:rgb(214,36,41)"/>
           <stop offset="0.796875" style="stop-color:rgb(213,35,40)"/>
           <stop offset="0.8125" style="stop-color:rgb(213,35,40)"/>
           <stop offset="0.8125" style="stop-color:rgb(213,35,39)"/>
           <stop offset="0.828125" style="stop-color:rgb(213,35,39)"/>
           <stop offset="0.828125" style="stop-color:rgb(212,34,39)"/>
           <stop offset="0.84375" style="stop-color:rgb(212,34,39)"/>
           <stop offset="0.84375" style="stop-color:rgb(212,33,38)"/>
           <stop offset="0.859375" style="stop-color:rgb(212,33,38)"/>
           <stop offset="0.859375" style="stop-color:rgb(211,32,37)"/>
           <stop offset="0.875" style="stop-color:rgb(211,32,37)"/>
           <stop offset="0.875" style="stop-color:rgb(211,31,36)"/>
           <stop offset="0.890625" style="stop-color:rgb(211,31,36)"/>
           <stop offset="0.890625" style="stop-color:rgb(210,30,36)"/>
           <stop offset="0.90625" style="stop-color:rgb(210,30,36)"/>
           <stop offset="0.90625" style="stop-color:rgb(210,30,35)"/>
           <stop offset="0.921875" style="stop-color:rgb(210,30,35)"/>
           <stop offset="0.921875" style="stop-color:rgb(209,29,34)"/>
           <stop offset="0.9375" style="stop-color:rgb(209,29,34)"/>
           <stop offset="0.9375" style="stop-color:rgb(209,28,33)"/>
           <stop offset="0.953125" style="stop-color:rgb(209,28,33)"/>
           <stop offset="0.953125" style="stop-color:rgb(208,27,33)"/>
           <stop offset="0.96875" style="stop-color:rgb(208,27,33)"/>
           <stop offset="0.96875" style="stop-color:rgb(208,26,32)"/>
           <stop offset="0.984375" style="stop-color:rgb(208,26,32)"/>
           <stop offset="0.984375" style="stop-color:rgb(207,25,31)"/>
           <stop offset="1" style="stop-color:rgb(207,25,31)"/>
           <stop offset="1" style="stop-color:rgb(206,24,30)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient7)" d="M 7357,6328 L 7287,6332 7218,6344 7149,6364 7083,6391 7018,6425 6956,6465 6898,6510 6843,6560 6793,6614 6747,6673 6707,6734 6673,6798 6646,6865 6626,6933 6613,7002 6609,7072 6605,8882 6609,8952 6622,9022 6642,9090 6669,9156 6703,9221 6742,9283 6787,9341 6838,9396 6892,9446 6950,9492 7012,9532 7076,9566 7143,9593 7211,9614 7281,9626 7351,9631 18050,9651 18120,9647 18189,9635 18257,9615 18324,9588 18389,9554 18450,9514 18509,9469 18564,9419 18614,9364 18659,9306 18699,9244 18733,9180 18761,9113 18781,9045 18794,8976 18798,8906 18802,7096 18798,7026 18785,6957 18765,6888 18738,6822 18704,6757 18664,6695 18619,6637 18569,6582 18515,6532 18456,6487 18395,6447 18330,6413 18264,6386 18195,6365 18126,6353 18056,6348 7357,6328 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id13">
        <rect class="BoundingBox" stroke="none" fill="none" x="1417" y="992" width="3412" height="12210"/>
        <g>
         <defs>
          <linearGradient id="gradient8" x1="54" y1="1782" x2="6191" y2="12411" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(243,113,90)"/>
           <stop offset="0.015625" style="stop-color:rgb(243,113,90)"/>
           <stop offset="0.03125" style="stop-color:rgb(243,113,90)"/>
           <stop offset="0.03125" style="stop-color:rgb(242,112,89)"/>
           <stop offset="0.046875" style="stop-color:rgb(242,112,89)"/>
           <stop offset="0.046875" style="stop-color:rgb(242,111,89)"/>
           <stop offset="0.0625" style="stop-color:rgb(242,111,89)"/>
           <stop offset="0.0625" style="stop-color:rgb(241,110,88)"/>
           <stop offset="0.078125" style="stop-color:rgb(241,110,88)"/>
           <stop offset="0.078125" style="stop-color:rgb(241,109,88)"/>
           <stop offset="0.09375" style="stop-color:rgb(241,109,88)"/>
           <stop offset="0.09375" style="stop-color:rgb(240,108,87)"/>
           <stop offset="0.109375" style="stop-color:rgb(240,108,87)"/>
           <stop offset="0.109375" style="stop-color:rgb(240,107,86)"/>
           <stop offset="0.125" style="stop-color:rgb(240,107,86)"/>
           <stop offset="0.125" style="stop-color:rgb(239,106,86)"/>
           <stop offset="0.140625" style="stop-color:rgb(239,106,86)"/>
           <stop offset="0.140625" style="stop-color:rgb(238,105,85)"/>
           <stop offset="0.15625" style="stop-color:rgb(238,105,85)"/>
           <stop offset="0.15625" style="stop-color:rgb(238,105,85)"/>
           <stop offset="0.171875" style="stop-color:rgb(238,105,85)"/>
           <stop offset="0.171875" style="stop-color:rgb(237,104,84)"/>
           <stop offset="0.1875" style="stop-color:rgb(237,104,84)"/>
           <stop offset="0.1875" style="stop-color:rgb(237,103,83)"/>
           <stop offset="0.203125" style="stop-color:rgb(237,103,83)"/>
           <stop offset="0.203125" style="stop-color:rgb(236,102,83)"/>
           <stop offset="0.21875" style="stop-color:rgb(236,102,83)"/>
           <stop offset="0.21875" style="stop-color:rgb(236,101,82)"/>
           <stop offset="0.234375" style="stop-color:rgb(236,101,82)"/>
           <stop offset="0.234375" style="stop-color:rgb(235,100,82)"/>
           <stop offset="0.25" style="stop-color:rgb(235,100,82)"/>
           <stop offset="0.25" style="stop-color:rgb(234,99,81)"/>
           <stop offset="0.265625" style="stop-color:rgb(234,99,81)"/>
           <stop offset="0.265625" style="stop-color:rgb(234,98,80)"/>
           <stop offset="0.28125" style="stop-color:rgb(234,98,80)"/>
           <stop offset="0.28125" style="stop-color:rgb(233,97,80)"/>
           <stop offset="0.296875" style="stop-color:rgb(233,97,80)"/>
           <stop offset="0.296875" style="stop-color:rgb(233,97,79)"/>
           <stop offset="0.3125" style="stop-color:rgb(233,97,79)"/>
           <stop offset="0.3125" style="stop-color:rgb(232,96,79)"/>
           <stop offset="0.328125" style="stop-color:rgb(232,96,79)"/>
           <stop offset="0.328125" style="stop-color:rgb(232,95,78)"/>
           <stop offset="0.34375" style="stop-color:rgb(232,95,78)"/>
           <stop offset="0.34375" style="stop-color:rgb(231,94,77)"/>
           <stop offset="0.359375" style="stop-color:rgb(231,94,77)"/>
           <stop offset="0.359375" style="stop-color:rgb(231,93,77)"/>
           <stop offset="0.375" style="stop-color:rgb(231,93,77)"/>
           <stop offset="0.375" style="stop-color:rgb(230,92,76)"/>
           <stop offset="0.390625" style="stop-color:rgb(230,92,76)"/>
           <stop offset="0.390625" style="stop-color:rgb(229,91,76)"/>
           <stop offset="0.40625" style="stop-color:rgb(229,91,76)"/>
           <stop offset="0.40625" style="stop-color:rgb(229,90,75)"/>
           <stop offset="0.421875" style="stop-color:rgb(229,90,75)"/>
           <stop offset="0.421875" style="stop-color:rgb(228,89,74)"/>
           <stop offset="0.4375" style="stop-color:rgb(228,89,74)"/>
           <stop offset="0.4375" style="stop-color:rgb(228,89,74)"/>
           <stop offset="0.453125" style="stop-color:rgb(228,89,74)"/>
           <stop offset="0.453125" style="stop-color:rgb(227,88,73)"/>
           <stop offset="0.46875" style="stop-color:rgb(227,88,73)"/>
           <stop offset="0.46875" style="stop-color:rgb(227,87,73)"/>
           <stop offset="0.484375" style="stop-color:rgb(227,87,73)"/>
           <stop offset="0.484375" style="stop-color:rgb(226,86,72)"/>
           <stop offset="0.5" style="stop-color:rgb(226,86,72)"/>
           <stop offset="0.5" style="stop-color:rgb(225,85,71)"/>
           <stop offset="0.515625" style="stop-color:rgb(225,85,71)"/>
           <stop offset="0.515625" style="stop-color:rgb(225,84,71)"/>
           <stop offset="0.53125" style="stop-color:rgb(225,84,71)"/>
           <stop offset="0.53125" style="stop-color:rgb(224,83,70)"/>
           <stop offset="0.546875" style="stop-color:rgb(224,83,70)"/>
           <stop offset="0.546875" style="stop-color:rgb(224,82,70)"/>
           <stop offset="0.5625" style="stop-color:rgb(224,82,70)"/>
           <stop offset="0.5625" style="stop-color:rgb(223,81,69)"/>
           <stop offset="0.578125" style="stop-color:rgb(223,81,69)"/>
           <stop offset="0.578125" style="stop-color:rgb(223,81,69)"/>
           <stop offset="0.59375" style="stop-color:rgb(223,81,69)"/>
           <stop offset="0.59375" style="stop-color:rgb(222,80,68)"/>
           <stop offset="0.609375" style="stop-color:rgb(222,80,68)"/>
           <stop offset="0.609375" style="stop-color:rgb(222,79,67)"/>
           <stop offset="0.625" style="stop-color:rgb(222,79,67)"/>
           <stop offset="0.625" style="stop-color:rgb(221,78,67)"/>
           <stop offset="0.640625" style="stop-color:rgb(221,78,67)"/>
           <stop offset="0.640625" style="stop-color:rgb(220,77,66)"/>
           <stop offset="0.65625" style="stop-color:rgb(220,77,66)"/>
           <stop offset="0.65625" style="stop-color:rgb(220,76,66)"/>
           <stop offset="0.671875" style="stop-color:rgb(220,76,66)"/>
           <stop offset="0.671875" style="stop-color:rgb(219,75,65)"/>
           <stop offset="0.6875" style="stop-color:rgb(219,75,65)"/>
           <stop offset="0.6875" style="stop-color:rgb(219,74,64)"/>
           <stop offset="0.703125" style="stop-color:rgb(219,74,64)"/>
           <stop offset="0.703125" style="stop-color:rgb(218,73,64)"/>
           <stop offset="0.71875" style="stop-color:rgb(218,73,64)"/>
           <stop offset="0.71875" style="stop-color:rgb(218,73,63)"/>
           <stop offset="0.734375" style="stop-color:rgb(218,73,63)"/>
           <stop offset="0.734375" style="stop-color:rgb(217,72,63)"/>
           <stop offset="0.75" style="stop-color:rgb(217,72,63)"/>
           <stop offset="0.75" style="stop-color:rgb(216,71,62)"/>
           <stop offset="0.765625" style="stop-color:rgb(216,71,62)"/>
           <stop offset="0.765625" style="stop-color:rgb(216,70,61)"/>
           <stop offset="0.78125" style="stop-color:rgb(216,70,61)"/>
           <stop offset="0.78125" style="stop-color:rgb(215,69,61)"/>
           <stop offset="0.796875" style="stop-color:rgb(215,69,61)"/>
           <stop offset="0.796875" style="stop-color:rgb(215,68,60)"/>
           <stop offset="0.8125" style="stop-color:rgb(215,68,60)"/>
           <stop offset="0.8125" style="stop-color:rgb(214,67,60)"/>
           <stop offset="0.828125" style="stop-color:rgb(214,67,60)"/>
           <stop offset="0.828125" style="stop-color:rgb(214,66,59)"/>
           <stop offset="0.84375" style="stop-color:rgb(214,66,59)"/>
           <stop offset="0.84375" style="stop-color:rgb(213,65,58)"/>
           <stop offset="0.859375" style="stop-color:rgb(213,65,58)"/>
           <stop offset="0.859375" style="stop-color:rgb(213,65,58)"/>
           <stop offset="0.875" style="stop-color:rgb(213,65,58)"/>
           <stop offset="0.875" style="stop-color:rgb(212,64,57)"/>
           <stop offset="0.890625" style="stop-color:rgb(212,64,57)"/>
           <stop offset="0.890625" style="stop-color:rgb(211,63,57)"/>
           <stop offset="0.90625" style="stop-color:rgb(211,63,57)"/>
           <stop offset="0.90625" style="stop-color:rgb(211,62,56)"/>
           <stop offset="0.921875" style="stop-color:rgb(211,62,56)"/>
           <stop offset="0.921875" style="stop-color:rgb(210,61,55)"/>
           <stop offset="0.9375" style="stop-color:rgb(210,61,55)"/>
           <stop offset="0.9375" style="stop-color:rgb(210,60,55)"/>
           <stop offset="0.953125" style="stop-color:rgb(210,60,55)"/>
           <stop offset="0.953125" style="stop-color:rgb(209,59,54)"/>
           <stop offset="0.96875" style="stop-color:rgb(209,59,54)"/>
           <stop offset="0.96875" style="stop-color:rgb(209,58,54)"/>
           <stop offset="0.984375" style="stop-color:rgb(209,58,54)"/>
           <stop offset="0.984375" style="stop-color:rgb(208,57,53)"/>
           <stop offset="1" style="stop-color:rgb(208,57,53)"/>
           <stop offset="1" style="stop-color:rgb(207,56,52)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient8)" d="M 1424,12431 L 1428,12501 1440,12571 1459,12640 1486,12706 1519,12771 1559,12833 1603,12892 1653,12947 1707,12998 1765,13044 1826,13084 1890,13118 1957,13146 2025,13167 2094,13180 2164,13185 3974,13201 4044,13197 4113,13185 4182,13166 4248,13139 4313,13106 4375,13066 4434,13022 4489,12972 4540,12918 4586,12860 4626,12798 4661,12734 4688,12668 4709,12600 4722,12530 4727,12460 4821,1762 4817,1692 4805,1622 4785,1554 4759,1487 4725,1422 4686,1360 4641,1301 4591,1246 4537,1195 4479,1150 4418,1109 4354,1075 4287,1047 4219,1026 4150,1013 4080,1008 2270,992 2200,996 2131,1008 2063,1027 1996,1054 1931,1088 1869,1127 1810,1172 1755,1221 1705,1276 1659,1334 1619,1395 1584,1459 1556,1526 1536,1594 1523,1663 1518,1733 1424,12431 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id14">
        <rect class="BoundingBox" stroke="none" fill="none" x="9912" y="134" width="12212" height="3424"/>
        <g>
         <defs>
          <linearGradient id="gradient9" x1="13753" y1="-2076" x2="18282" y2="5767" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(247,148,72)"/>
           <stop offset="0.015625" style="stop-color:rgb(247,148,72)"/>
           <stop offset="0.03125" style="stop-color:rgb(247,148,72)"/>
           <stop offset="0.03125" style="stop-color:rgb(246,147,71)"/>
           <stop offset="0.046875" style="stop-color:rgb(246,147,71)"/>
           <stop offset="0.046875" style="stop-color:rgb(246,147,70)"/>
           <stop offset="0.0625" style="stop-color:rgb(246,147,70)"/>
           <stop offset="0.0625" style="stop-color:rgb(245,146,70)"/>
           <stop offset="0.078125" style="stop-color:rgb(245,146,70)"/>
           <stop offset="0.078125" style="stop-color:rgb(245,146,69)"/>
           <stop offset="0.09375" style="stop-color:rgb(245,146,69)"/>
           <stop offset="0.09375" style="stop-color:rgb(244,145,68)"/>
           <stop offset="0.109375" style="stop-color:rgb(244,145,68)"/>
           <stop offset="0.109375" style="stop-color:rgb(244,145,67)"/>
           <stop offset="0.125" style="stop-color:rgb(244,145,67)"/>
           <stop offset="0.125" style="stop-color:rgb(243,144,67)"/>
           <stop offset="0.140625" style="stop-color:rgb(243,144,67)"/>
           <stop offset="0.140625" style="stop-color:rgb(243,144,66)"/>
           <stop offset="0.15625" style="stop-color:rgb(243,144,66)"/>
           <stop offset="0.15625" style="stop-color:rgb(242,143,65)"/>
           <stop offset="0.171875" style="stop-color:rgb(242,143,65)"/>
           <stop offset="0.171875" style="stop-color:rgb(241,142,65)"/>
           <stop offset="0.1875" style="stop-color:rgb(241,142,65)"/>
           <stop offset="0.1875" style="stop-color:rgb(241,142,64)"/>
           <stop offset="0.203125" style="stop-color:rgb(241,142,64)"/>
           <stop offset="0.203125" style="stop-color:rgb(240,141,63)"/>
           <stop offset="0.21875" style="stop-color:rgb(240,141,63)"/>
           <stop offset="0.21875" style="stop-color:rgb(240,141,62)"/>
           <stop offset="0.234375" style="stop-color:rgb(240,141,62)"/>
           <stop offset="0.234375" style="stop-color:rgb(239,140,62)"/>
           <stop offset="0.25" style="stop-color:rgb(239,140,62)"/>
           <stop offset="0.25" style="stop-color:rgb(239,140,61)"/>
           <stop offset="0.265625" style="stop-color:rgb(239,140,61)"/>
           <stop offset="0.265625" style="stop-color:rgb(238,139,60)"/>
           <stop offset="0.28125" style="stop-color:rgb(238,139,60)"/>
           <stop offset="0.28125" style="stop-color:rgb(238,139,60)"/>
           <stop offset="0.296875" style="stop-color:rgb(238,139,60)"/>
           <stop offset="0.296875" style="stop-color:rgb(237,138,59)"/>
           <stop offset="0.3125" style="stop-color:rgb(237,138,59)"/>
           <stop offset="0.3125" style="stop-color:rgb(237,138,58)"/>
           <stop offset="0.328125" style="stop-color:rgb(237,138,58)"/>
           <stop offset="0.328125" style="stop-color:rgb(236,137,57)"/>
           <stop offset="0.34375" style="stop-color:rgb(236,137,57)"/>
           <stop offset="0.34375" style="stop-color:rgb(235,136,57)"/>
           <stop offset="0.359375" style="stop-color:rgb(235,136,57)"/>
           <stop offset="0.359375" style="stop-color:rgb(235,136,56)"/>
           <stop offset="0.375" style="stop-color:rgb(235,136,56)"/>
           <stop offset="0.375" style="stop-color:rgb(234,135,55)"/>
           <stop offset="0.390625" style="stop-color:rgb(234,135,55)"/>
           <stop offset="0.390625" style="stop-color:rgb(234,135,55)"/>
           <stop offset="0.40625" style="stop-color:rgb(234,135,55)"/>
           <stop offset="0.40625" style="stop-color:rgb(233,134,54)"/>
           <stop offset="0.421875" style="stop-color:rgb(233,134,54)"/>
           <stop offset="0.421875" style="stop-color:rgb(233,134,53)"/>
           <stop offset="0.4375" style="stop-color:rgb(233,134,53)"/>
           <stop offset="0.4375" style="stop-color:rgb(232,133,52)"/>
           <stop offset="0.453125" style="stop-color:rgb(232,133,52)"/>
           <stop offset="0.453125" style="stop-color:rgb(232,133,52)"/>
           <stop offset="0.46875" style="stop-color:rgb(232,133,52)"/>
           <stop offset="0.46875" style="stop-color:rgb(231,132,51)"/>
           <stop offset="0.484375" style="stop-color:rgb(231,132,51)"/>
           <stop offset="0.484375" style="stop-color:rgb(231,132,50)"/>
           <stop offset="0.5" style="stop-color:rgb(231,132,50)"/>
           <stop offset="0.5" style="stop-color:rgb(230,131,49)"/>
           <stop offset="0.515625" style="stop-color:rgb(230,131,49)"/>
           <stop offset="0.515625" style="stop-color:rgb(229,130,49)"/>
           <stop offset="0.53125" style="stop-color:rgb(229,130,49)"/>
           <stop offset="0.53125" style="stop-color:rgb(229,130,48)"/>
           <stop offset="0.546875" style="stop-color:rgb(229,130,48)"/>
           <stop offset="0.546875" style="stop-color:rgb(228,129,47)"/>
           <stop offset="0.5625" style="stop-color:rgb(228,129,47)"/>
           <stop offset="0.5625" style="stop-color:rgb(228,129,47)"/>
           <stop offset="0.578125" style="stop-color:rgb(228,129,47)"/>
           <stop offset="0.578125" style="stop-color:rgb(227,128,46)"/>
           <stop offset="0.59375" style="stop-color:rgb(227,128,46)"/>
           <stop offset="0.59375" style="stop-color:rgb(227,128,45)"/>
           <stop offset="0.609375" style="stop-color:rgb(227,128,45)"/>
           <stop offset="0.609375" style="stop-color:rgb(226,127,44)"/>
           <stop offset="0.625" style="stop-color:rgb(226,127,44)"/>
           <stop offset="0.625" style="stop-color:rgb(226,127,44)"/>
           <stop offset="0.640625" style="stop-color:rgb(226,127,44)"/>
           <stop offset="0.640625" style="stop-color:rgb(225,126,43)"/>
           <stop offset="0.65625" style="stop-color:rgb(225,126,43)"/>
           <stop offset="0.65625" style="stop-color:rgb(225,126,42)"/>
           <stop offset="0.671875" style="stop-color:rgb(225,126,42)"/>
           <stop offset="0.671875" style="stop-color:rgb(224,125,42)"/>
           <stop offset="0.6875" style="stop-color:rgb(224,125,42)"/>
           <stop offset="0.6875" style="stop-color:rgb(223,124,41)"/>
           <stop offset="0.703125" style="stop-color:rgb(223,124,41)"/>
           <stop offset="0.703125" style="stop-color:rgb(223,124,40)"/>
           <stop offset="0.71875" style="stop-color:rgb(223,124,40)"/>
           <stop offset="0.71875" style="stop-color:rgb(222,123,39)"/>
           <stop offset="0.734375" style="stop-color:rgb(222,123,39)"/>
           <stop offset="0.734375" style="stop-color:rgb(222,123,39)"/>
           <stop offset="0.75" style="stop-color:rgb(222,123,39)"/>
           <stop offset="0.75" style="stop-color:rgb(221,122,38)"/>
           <stop offset="0.765625" style="stop-color:rgb(221,122,38)"/>
           <stop offset="0.765625" style="stop-color:rgb(221,122,37)"/>
           <stop offset="0.78125" style="stop-color:rgb(221,122,37)"/>
           <stop offset="0.78125" style="stop-color:rgb(220,121,37)"/>
           <stop offset="0.796875" style="stop-color:rgb(220,121,37)"/>
           <stop offset="0.796875" style="stop-color:rgb(220,121,36)"/>
           <stop offset="0.8125" style="stop-color:rgb(220,121,36)"/>
           <stop offset="0.8125" style="stop-color:rgb(219,120,35)"/>
           <stop offset="0.828125" style="stop-color:rgb(219,120,35)"/>
           <stop offset="0.828125" style="stop-color:rgb(219,120,34)"/>
           <stop offset="0.84375" style="stop-color:rgb(219,120,34)"/>
           <stop offset="0.84375" style="stop-color:rgb(218,119,34)"/>
           <stop offset="0.859375" style="stop-color:rgb(218,119,34)"/>
           <stop offset="0.859375" style="stop-color:rgb(217,118,33)"/>
           <stop offset="0.875" style="stop-color:rgb(217,118,33)"/>
           <stop offset="0.875" style="stop-color:rgb(217,118,32)"/>
           <stop offset="0.890625" style="stop-color:rgb(217,118,32)"/>
           <stop offset="0.890625" style="stop-color:rgb(216,117,32)"/>
           <stop offset="0.90625" style="stop-color:rgb(216,117,32)"/>
           <stop offset="0.90625" style="stop-color:rgb(216,117,31)"/>
           <stop offset="0.921875" style="stop-color:rgb(216,117,31)"/>
           <stop offset="0.921875" style="stop-color:rgb(215,116,30)"/>
           <stop offset="0.9375" style="stop-color:rgb(215,116,30)"/>
           <stop offset="0.9375" style="stop-color:rgb(215,116,29)"/>
           <stop offset="0.953125" style="stop-color:rgb(215,116,29)"/>
           <stop offset="0.953125" style="stop-color:rgb(214,115,29)"/>
           <stop offset="0.96875" style="stop-color:rgb(214,115,29)"/>
           <stop offset="0.96875" style="stop-color:rgb(214,115,28)"/>
           <stop offset="0.984375" style="stop-color:rgb(214,115,28)"/>
           <stop offset="0.984375" style="stop-color:rgb(213,114,27)"/>
           <stop offset="1" style="stop-color:rgb(213,114,27)"/>
           <stop offset="1" style="stop-color:rgb(212,113,26)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient9)" d="M 10684,142 L 10614,145 10545,157 10476,177 10409,203 10344,236 10282,276 10223,320 10168,370 10118,424 10072,482 10031,543 9997,607 9969,673 9948,741 9935,811 9930,880 9912,2690 9916,2760 9928,2830 9947,2898 9974,2965 10007,3030 10046,3092 10091,3151 10141,3206 10195,3257 10253,3303 10314,3343 10378,3378 10445,3406 10513,3426 10582,3440 10652,3445 21351,3549 21420,3546 21490,3534 21558,3514 21625,3488 21690,3454 21752,3415 21811,3370 21866,3321 21917,3266 21963,3208 22003,3147 22038,3083 22066,3017 22087,2949 22100,2879 22105,2810 22123,1000 22119,930 22107,860 22088,792 22061,725 22028,660 21988,598 21944,540 21894,484 21840,434 21782,388 21720,348 21656,313 21590,285 21522,264 21453,251 21383,246 10684,142 Z"/>
        </g>
       </g>
      </g>
      <g class="com.sun.star.drawing.CustomShape">
       <g id="id15">
        <rect class="BoundingBox" stroke="none" fill="none" x="22568" y="3811" width="3344" height="12200"/>
        <g>
         <defs>
          <linearGradient id="gradient10" x1="21181" y1="4613" x2="27298" y2="15207" gradientUnits="userSpaceOnUse">
           <stop offset="0.015625" style="stop-color:rgb(253,185,77)"/>
           <stop offset="0.015625" style="stop-color:rgb(253,185,77)"/>
           <stop offset="0.03125" style="stop-color:rgb(253,185,77)"/>
           <stop offset="0.03125" style="stop-color:rgb(252,184,76)"/>
           <stop offset="0.046875" style="stop-color:rgb(252,184,76)"/>
           <stop offset="0.046875" style="stop-color:rgb(252,184,75)"/>
           <stop offset="0.0625" style="stop-color:rgb(252,184,75)"/>
           <stop offset="0.0625" style="stop-color:rgb(251,183,74)"/>
           <stop offset="0.078125" style="stop-color:rgb(251,183,74)"/>
           <stop offset="0.078125" style="stop-color:rgb(251,182,73)"/>
           <stop offset="0.09375" style="stop-color:rgb(251,182,73)"/>
           <stop offset="0.09375" style="stop-color:rgb(250,182,72)"/>
           <stop offset="0.109375" style="stop-color:rgb(250,182,72)"/>
           <stop offset="0.109375" style="stop-color:rgb(250,181,71)"/>
           <stop offset="0.125" style="stop-color:rgb(250,181,71)"/>
           <stop offset="0.125" style="stop-color:rgb(249,180,71)"/>
           <stop offset="0.140625" style="stop-color:rgb(249,180,71)"/>
           <stop offset="0.140625" style="stop-color:rgb(248,180,70)"/>
           <stop offset="0.15625" style="stop-color:rgb(248,180,70)"/>
           <stop offset="0.15625" style="stop-color:rgb(248,179,69)"/>
           <stop offset="0.171875" style="stop-color:rgb(248,179,69)"/>
           <stop offset="0.171875" style="stop-color:rgb(247,179,68)"/>
           <stop offset="0.1875" style="stop-color:rgb(247,179,68)"/>
           <stop offset="0.1875" style="stop-color:rgb(247,178,67)"/>
           <stop offset="0.203125" style="stop-color:rgb(247,178,67)"/>
           <stop offset="0.203125" style="stop-color:rgb(246,177,66)"/>
           <stop offset="0.21875" style="stop-color:rgb(246,177,66)"/>
           <stop offset="0.21875" style="stop-color:rgb(246,177,65)"/>
           <stop offset="0.234375" style="stop-color:rgb(246,177,65)"/>
           <stop offset="0.234375" style="stop-color:rgb(245,176,65)"/>
           <stop offset="0.25" style="stop-color:rgb(245,176,65)"/>
           <stop offset="0.25" style="stop-color:rgb(244,175,64)"/>
           <stop offset="0.265625" style="stop-color:rgb(244,175,64)"/>
           <stop offset="0.265625" style="stop-color:rgb(244,175,63)"/>
           <stop offset="0.28125" style="stop-color:rgb(244,175,63)"/>
           <stop offset="0.28125" style="stop-color:rgb(243,174,62)"/>
           <stop offset="0.296875" style="stop-color:rgb(243,174,62)"/>
           <stop offset="0.296875" style="stop-color:rgb(243,174,61)"/>
           <stop offset="0.3125" style="stop-color:rgb(243,174,61)"/>
           <stop offset="0.3125" style="stop-color:rgb(242,173,60)"/>
           <stop offset="0.328125" style="stop-color:rgb(242,173,60)"/>
           <stop offset="0.328125" style="stop-color:rgb(242,172,59)"/>
           <stop offset="0.34375" style="stop-color:rgb(242,172,59)"/>
           <stop offset="0.34375" style="stop-color:rgb(241,172,59)"/>
           <stop offset="0.359375" style="stop-color:rgb(241,172,59)"/>
           <stop offset="0.359375" style="stop-color:rgb(241,171,58)"/>
           <stop offset="0.375" style="stop-color:rgb(241,171,58)"/>
           <stop offset="0.375" style="stop-color:rgb(240,170,57)"/>
           <stop offset="0.390625" style="stop-color:rgb(240,170,57)"/>
           <stop offset="0.390625" style="stop-color:rgb(239,170,56)"/>
           <stop offset="0.40625" style="stop-color:rgb(239,170,56)"/>
           <stop offset="0.40625" style="stop-color:rgb(239,169,55)"/>
           <stop offset="0.421875" style="stop-color:rgb(239,169,55)"/>
           <stop offset="0.421875" style="stop-color:rgb(238,169,54)"/>
           <stop offset="0.4375" style="stop-color:rgb(238,169,54)"/>
           <stop offset="0.4375" style="stop-color:rgb(238,168,53)"/>
           <stop offset="0.453125" style="stop-color:rgb(238,168,53)"/>
           <stop offset="0.453125" style="stop-color:rgb(237,167,53)"/>
           <stop offset="0.46875" style="stop-color:rgb(237,167,53)"/>
           <stop offset="0.46875" style="stop-color:rgb(237,167,52)"/>
           <stop offset="0.484375" style="stop-color:rgb(237,167,52)"/>
           <stop offset="0.484375" style="stop-color:rgb(236,166,51)"/>
           <stop offset="0.5" style="stop-color:rgb(236,166,51)"/>
           <stop offset="0.5" style="stop-color:rgb(235,165,50)"/>
           <stop offset="0.515625" style="stop-color:rgb(235,165,50)"/>
           <stop offset="0.515625" style="stop-color:rgb(235,165,49)"/>
           <stop offset="0.53125" style="stop-color:rgb(235,165,49)"/>
           <stop offset="0.53125" style="stop-color:rgb(234,164,48)"/>
           <stop offset="0.546875" style="stop-color:rgb(234,164,48)"/>
           <stop offset="0.546875" style="stop-color:rgb(234,164,47)"/>
           <stop offset="0.5625" style="stop-color:rgb(234,164,47)"/>
           <stop offset="0.5625" style="stop-color:rgb(233,163,47)"/>
           <stop offset="0.578125" style="stop-color:rgb(233,163,47)"/>
           <stop offset="0.578125" style="stop-color:rgb(233,162,46)"/>
           <stop offset="0.59375" style="stop-color:rgb(233,162,46)"/>
           <stop offset="0.59375" style="stop-color:rgb(232,162,45)"/>
           <stop offset="0.609375" style="stop-color:rgb(232,162,45)"/>
           <stop offset="0.609375" style="stop-color:rgb(232,161,44)"/>
           <stop offset="0.625" style="stop-color:rgb(232,161,44)"/>
           <stop offset="0.625" style="stop-color:rgb(231,160,43)"/>
           <stop offset="0.640625" style="stop-color:rgb(231,160,43)"/>
           <stop offset="0.640625" style="stop-color:rgb(230,160,42)"/>
           <stop offset="0.65625" style="stop-color:rgb(230,160,42)"/>
           <stop offset="0.65625" style="stop-color:rgb(230,159,41)"/>
           <stop offset="0.671875" style="stop-color:rgb(230,159,41)"/>
           <stop offset="0.671875" style="stop-color:rgb(229,159,41)"/>
           <stop offset="0.6875" style="stop-color:rgb(229,159,41)"/>
           <stop offset="0.6875" style="stop-color:rgb(229,158,40)"/>
           <stop offset="0.703125" style="stop-color:rgb(229,158,40)"/>
           <stop offset="0.703125" style="stop-color:rgb(228,157,39)"/>
           <stop offset="0.71875" style="stop-color:rgb(228,157,39)"/>
           <stop offset="0.71875" style="stop-color:rgb(228,157,38)"/>
           <stop offset="0.734375" style="stop-color:rgb(228,157,38)"/>
           <stop offset="0.734375" style="stop-color:rgb(227,156,37)"/>
           <stop offset="0.75" style="stop-color:rgb(227,156,37)"/>
           <stop offset="0.75" style="stop-color:rgb(226,155,36)"/>
           <stop offset="0.765625" style="stop-color:rgb(226,155,36)"/>
           <stop offset="0.765625" style="stop-color:rgb(226,155,35)"/>
           <stop offset="0.78125" style="stop-color:rgb(226,155,35)"/>
           <stop offset="0.78125" style="stop-color:rgb(225,154,35)"/>
           <stop offset="0.796875" style="stop-color:rgb(225,154,35)"/>
           <stop offset="0.796875" style="stop-color:rgb(225,154,34)"/>
           <stop offset="0.8125" style="stop-color:rgb(225,154,34)"/>
           <stop offset="0.8125" style="stop-color:rgb(224,153,33)"/>
           <stop offset="0.828125" style="stop-color:rgb(224,153,33)"/>
           <stop offset="0.828125" style="stop-color:rgb(224,152,32)"/>
           <stop offset="0.84375" style="stop-color:rgb(224,152,32)"/>
           <stop offset="0.84375" style="stop-color:rgb(223,152,31)"/>
           <stop offset="0.859375" style="stop-color:rgb(223,152,31)"/>
           <stop offset="0.859375" style="stop-color:rgb(223,151,30)"/>
           <stop offset="0.875" style="stop-color:rgb(223,151,30)"/>
           <stop offset="0.875" style="stop-color:rgb(222,150,29)"/>
           <stop offset="0.890625" style="stop-color:rgb(222,150,29)"/>
           <stop offset="0.890625" style="stop-color:rgb(221,150,29)"/>
           <stop offset="0.90625" style="stop-color:rgb(221,150,29)"/>
           <stop offset="0.90625" style="stop-color:rgb(221,149,28)"/>
           <stop offset="0.921875" style="stop-color:rgb(221,149,28)"/>
           <stop offset="0.921875" style="stop-color:rgb(220,149,27)"/>
           <stop offset="0.9375" style="stop-color:rgb(220,149,27)"/>
           <stop offset="0.9375" style="stop-color:rgb(220,148,26)"/>
           <stop offset="0.953125" style="stop-color:rgb(220,148,26)"/>
           <stop offset="0.953125" style="stop-color:rgb(219,147,25)"/>
           <stop offset="0.96875" style="stop-color:rgb(219,147,25)"/>
           <stop offset="0.96875" style="stop-color:rgb(219,147,24)"/>
           <stop offset="0.984375" style="stop-color:rgb(219,147,24)"/>
           <stop offset="0.984375" style="stop-color:rgb(218,146,23)"/>
           <stop offset="1" style="stop-color:rgb(218,146,23)"/>
           <stop offset="1" style="stop-color:rgb(217,145,22)"/>
          </linearGradient>
         </defs>
         <path style="fill:url(#gradient10)" d="M 22571,15255 L 22575,15325 22588,15394 22607,15463 22634,15529 22668,15594 22708,15656 22753,15715 22803,15769 22857,15820 22915,15865 22977,15905 23041,15939 23108,15967 23176,15987 23245,16000 23315,16004 25125,16010 25195,16006 25264,15993 25332,15974 25399,15947 25464,15913 25526,15873 25584,15828 25639,15778 25689,15724 25735,15665 25775,15604 25809,15539 25837,15473 25857,15405 25870,15335 25874,15265 25908,4566 25904,4496 25891,4427 25871,4359 25844,4292 25811,4227 25771,4166 25726,4107 25676,4052 25621,4002 25563,3956 25501,3916 25437,3882 25370,3854 25302,3834 25233,3821 25163,3817 23353,3811 23283,3815 23214,3828 23146,3848 23079,3875 23015,3908 22953,3948 22894,3993 22840,4043 22789,4098 22744,4156 22704,4218 22670,4282 22642,4349 22622,4417 22609,4486 22605,4556 22571,15255 Z"/>
        </g>
       </g>
      </g>
     </g>
    </g>
   </g>
  </g>
 </g>
</svg>