Files @ 6ec24030ec9e
Branch filter:

Location: website/www/conservancy/static/img/supporter-card-2.svg - annotation

tbm
Fix more HTML syntax errors
   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
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
667118755c9d
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   id="svg4281"
   version="1.1"
   inkscape:version="0.48.3.1 r9886"
   width="315"
   height="180"
   xml:space="preserve"
   sodipodi:docname="Conservancy-Supporter-Card-2.svg"
   inkscape:export-filename="/home/tony/Conservancy/Logo/Conservancy-Supporter-Card-2.png"
   inkscape:export-xdpi="300"
   inkscape:export-ydpi="300"><metadata
     id="metadata4287"><rdf:RDF><cc:Work
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
     id="defs4285"><linearGradient
       id="linearGradient7520"><stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop7522" /><stop
         id="stop7532"
         offset="0.88762623"
         style="stop-color:#f5fbee;stop-opacity:1;" /><stop
         id="stop7530"
         offset="0.91899765"
         style="stop-color:#ebf8dd;stop-opacity:1;" /><stop
         id="stop7528"
         offset="0.96231544"
         style="stop-color:#d7f1bb;stop-opacity:1;" /><stop
         style="stop-color:#afe478;stop-opacity:1;"
         offset="1"
         id="stop7524" /></linearGradient><linearGradient
       inkscape:collect="always"
       id="linearGradient6738"><stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop6740" /><stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop6742" /></linearGradient><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective4289" /><inkscape:perspective
       id="perspective6547"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" /><inkscape:perspective
       id="perspective6778"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" /><inkscape:perspective
       id="perspective7030"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 0.5 : 1"
       sodipodi:type="inkscape:persp3d" /><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="translate(-1493.1852,-765.11948)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5187"
       xlink:href="#linearGradient4751"
       inkscape:collect="always" /><linearGradient
       gradientTransform="translate(-1379.5602,0)"
       gradientUnits="userSpaceOnUse"
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       id="linearGradient4759"
       xlink:href="#linearGradient4751"
       inkscape:collect="always" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3123" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3962" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective9298" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 372.04724 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
       id="perspective8211" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 372.04724 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
       id="perspective4759" /><inkscape:perspective
       id="perspective10"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" /><linearGradient
       id="linearGradient4751"
       inkscape:collect="always"><stop
         id="stop4753"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" /><stop
         id="stop4755"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" /></linearGradient><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3080" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3470" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3452" /><inkscape:perspective
       id="perspective331"
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 372.04724 : 1"
       sodipodi:type="inkscape:persp3d" /><mask
       id="mask7035"
       maskUnits="userSpaceOnUse"><rect
         y="-1180.8607"
         x="269.50726"
         height="121.12428"
         width="380.24283"
         id="rect7037"
         style="fill:url(#linearGradient7039);fill-opacity:1;stroke:none"
         transform="scale(1,-1)" /></mask><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="translate(-230.1514,-2255.0986)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7039"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="translate(-1411.1852,-143)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6939"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="matrix(1,0,0,1.9016413,-1666.9395,-1697.1902)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5620"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="translate(-1493.1852,-765.11948)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5187-2"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><linearGradient
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       gradientTransform="translate(-1379.5602,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient4929"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><linearGradient
       gradientTransform="translate(-1379.5602,0)"
       gradientUnits="userSpaceOnUse"
       y2="1134.8"
       x2="879.90155"
       y1="1134.8"
       x1="629.57501"
       id="linearGradient4759-0"
       xlink:href="#linearGradient4751-1"
       inkscape:collect="always" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3123-7" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective3962-0" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 0.5 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1 : 0.5 : 1"
       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
       id="perspective9298-1" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 372.04724 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
       id="perspective8211-2" /><inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 372.04724 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="1052.3622 : 372.04724 : 1"
       inkscape:persp3d-origin="526.18109 : 248.03149 : 1"
       id="perspective4759-1" /><inkscape:perspective
       id="perspective10-9"
       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
       inkscape:vp_z="744.09448 : 526.18109 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_x="0 : 526.18109 : 1"
       sodipodi:type="inkscape:persp3d" /><linearGradient
       id="linearGradient4751-1"
       inkscape:collect="always"><stop
         id="stop4753-9"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" /><stop
         id="stop4755-7"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" /></linearGradient><linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6738"
       id="linearGradient6744"
       x1="511.97946"
       y1="278.8363"
       x2="464.99377"
       y2="247.93686"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5659038,0,0,1,-352.75319,0)" /></defs><sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1400"
     inkscape:window-height="963"
     id="namedview4283"
     showgrid="false"
     inkscape:zoom="4.0857143"
     inkscape:cx="157.98951"
     inkscape:cy="90"
     inkscape:window-x="0"
     inkscape:window-y="27"
     inkscape:window-maximized="1"
     inkscape:current-layer="g3200"
     showguides="true"
     inkscape:guide-bbox="true" /><g
     id="g4291"
     inkscape:groupmode="layer"
     inkscape:label="Conservancy business card-Kuhn"
     transform="matrix(1.25,0,0,-1.25,0,180)"><g
   id="g3029"
   transform="matrix(0.41861813,0,0,0.41861813,177.07247,-24.678549)"><path
     id="path4367"
     d="m 49.838471,125.79277 c -3.027705,-0.0342 -5.538278,-2.08325 -5.747915,-4.78691 -0.02291,-0.29536 -0.01387,-0.58419 0.0181,-0.87035 -0.991678,0.31763 -2.061728,0.52891 -3.19127,0.6165 -4.918615,0.38139 -9.197163,-1.76885 -10.172178,-4.93197 -3.252921,-1.05346 -5.835106,-3.10245 -7.10783,-5.72978 -2.888734,0.15037 -5.39563,-2.04366 -5.620991,-4.95009 -0.228935,-2.95258 1.967129,-5.537557 4.913834,-5.766048 0.932495,-0.07226 1.83378,0.109278 2.629171,0.471433 2.301377,-2.422869 5.848469,-4.12681 9.918325,-4.442391 3.666284,-0.284274 7.070072,0.615249 9.646344,2.284663 1.017801,-1.68267 2.908031,-2.927492 5.167684,-3.263797 l 0,-0.05432 c 0.06747,0.0064 0.132594,0.02799 0.199455,0.03626 0.06819,-0.0089 0.130625,-0.02951 0.199452,-0.03626 l 0,0.05432 c 2.263164,0.334575 4.148701,1.579168 5.167684,3.263797 2.576273,-1.669414 5.998198,-2.56895 9.664475,-2.284663 4.069857,0.315569 7.598818,2.019522 9.900195,4.442391 0.795399,-0.362104 1.696682,-0.543741 2.629173,-0.471433 2.946704,0.228478 5.160899,2.813478 4.931964,5.766048 -0.225361,2.90643 -2.732255,5.10046 -5.620988,4.95009 -1.272727,2.62733 -3.873044,4.67632 -7.125966,5.72978 -0.975015,3.16312 -5.23543,5.31336 -10.154045,4.93197 -1.129542,-0.0875 -2.199592,-0.29887 -3.191271,-0.6165 0.03197,0.28616 0.04108,0.57499 0.0181,0.87035 -0.209638,2.70366 -2.738342,4.75266 -5.766047,4.78691 -0.201851,0.003 -0.410659,-0.003 -0.616495,-0.0181 -0.01221,-0.001 -0.0242,0.001 -0.03627,0 -0.01208,0.001 -0.02408,-0.001 -0.03627,0 -0.205837,0.0159 -0.414645,0.0205 -0.616497,0.0181 z m 0.580229,-3.62645 0.09067,0 c 0.513773,0 0.979496,-0.14452 1.323654,-0.39891 0.344156,-0.25438 0.562098,-0.61675 0.562098,-1.0154 0,-0.11768 -0.03643,-0.23364 -0.07252,-0.34451 l 1.523107,-1.1242 c 0.316886,0.17759 0.68458,0.29011 1.106065,0.29011 0.513616,0 0.979449,-0.14586 1.323652,-0.3989 0.344205,-0.25305 0.580232,-0.61677 0.580232,-1.01541 0,-0.26234 -0.126248,-0.49701 -0.290116,-0.70716 l 2.139602,-1.55936 c 0.270951,0.11335 0.575358,0.18132 0.906612,0.18132 0.51377,0 0.997631,-0.14452 1.341783,-0.39891 0.344153,-0.25439 0.5621,-0.61675 0.5621,-1.0154 0,-0.22513 -0.09464,-0.42967 -0.217587,-0.6165 l 2.030808,-1.46872 c 0.27413,0.11666 0.588663,0.19946 0.924744,0.19946 0.513772,0 0.9795,-0.14451 1.323653,-0.3989 0.344152,-0.25439 0.562099,-0.61678 0.562099,-1.01541 0,-0.39865 -0.217947,-0.76102 -0.562099,-1.0154 -0.344153,-0.25439 -0.809881,-0.39892 -1.323653,-0.39892 -0.51377,0 -0.979493,0.14453 -1.323651,0.39892 -0.344159,0.25438 -0.580232,0.61675 -0.580232,1.0154 0,0.30774 0.162512,0.58597 0.380777,0.81595 l -1.903884,1.39618 c -0.329821,-0.20819 -0.754632,-0.34451 -1.214858,-0.34451 -0.419601,0 -0.790322,0.11411 -1.106067,0.29011 l -1.523106,-1.10607 c 0.131376,-0.16027 0.244475,-0.33362 0.290116,-0.52583 0.01522,-0.0641 0.0181,-0.13133 0.0181,-0.19944 0,-0.39864 -0.217947,-0.76103 -0.562099,-1.01542 -0.172074,-0.12721 -0.374691,-0.24031 -0.598364,-0.30824 -0.111835,-0.034 -0.223226,-0.055 -0.344512,-0.0725 -0.121286,-0.0176 -0.252338,-0.0181 -0.380777,-0.0181 -0.404043,0 -0.778988,0.0897 -1.087933,0.25385 l -2.139601,-1.57751 c 0.220538,-0.18592 0.384529,-0.43072 0.453304,-0.68902 0.02292,-0.0861 0.03627,-0.16278 0.03627,-0.25385 0,-0.39864 -0.217947,-0.74289 -0.5621,-0.99728 -0.08604,-0.0636 -0.171899,-0.13029 -0.271983,-0.18132 -0.200174,-0.10202 -0.428315,-0.17914 -0.670892,-0.21759 -0.121286,-0.0192 -0.252338,-0.0181 -0.380777,-0.0181 -0.513772,0 -0.9795,0.16266 -1.323652,0.41705 -0.172073,0.12721 -0.319534,0.26748 -0.41704,0.43516 -0.04874,0.0838 -0.08298,0.17968 -0.108794,0.27199 -0.02582,0.0924 -0.03627,0.19045 -0.03627,0.29011 0,0.39864 0.217947,0.76102 0.5621,1.01542 0.344151,0.25437 0.809879,0.41703 1.323652,0.41703 0.25648,0 0.501877,-0.0567 0.725288,-0.12696 l 2.302794,1.66816 c -0.08227,0.10482 -0.147496,0.2087 -0.199455,0.32638 -0.05199,0.11767 -0.09067,0.24912 -0.09067,0.38078 0,0.39865 0.217895,0.76237 0.5621,1.0154 0.08605,0.0632 0.171881,0.11399 0.271984,0.16319 0.300303,0.14777 0.666457,0.23572 1.051668,0.23572 0.386235,0 0.731908,-0.10254 1.033536,-0.25385 l 1.559372,1.1242 c -0.07606,0.10165 -0.150472,0.21108 -0.199455,0.32638 -0.04897,0.11526 -0.07252,0.23643 -0.07252,0.36264 0,0.31182 0.175299,0.58387 0.398909,0.81596 l -2.103339,1.54123 c -0.307104,-0.16011 -0.671488,-0.27199 -1.0698,-0.27199 -0.452122,0 -0.851421,0.1248 -1.178594,0.32639 l -1.758833,-1.28744 c 0.157144,-0.16971 0.273492,-0.36652 0.326381,-0.58023 0.01765,-0.0712 0.03627,-0.14228 0.03627,-0.21759 0,-0.39865 -0.217947,-0.76101 -0.562098,-1.0154 -0.08604,-0.0636 -0.18833,-0.13201 -0.290115,-0.18132 -0.203575,-0.0987 -0.424915,-0.16441 -0.670892,-0.19946 -0.122992,-0.0175 -0.252337,-0.0181 -0.380777,-0.0181 -0.513771,0 -0.979499,0.14451 -1.323652,0.3989 -0.344152,0.2544 -0.562099,0.61677 -0.562099,1.01541 0,0.39865 0.217895,0.76237 0.562099,1.0154 0.344205,0.25304 0.810037,0.39891 1.323652,0.39891 0.354091,0 0.694623,-0.0709 0.979139,-0.19945 l 1.831355,1.34178 c -0.123717,0.18767 -0.217586,0.39085 -0.217586,0.6165 0,0.0615 0.0059,0.12238 0.0181,0.18132 0.03754,0.17694 0.127367,0.34137 0.235717,0.48957 l -1.378047,1.01541 c -0.350066,-0.31401 -0.853794,-0.52583 -1.432445,-0.52583 -0.481739,0 -0.914514,0.1725 -1.251123,0.3989 l -1.359918,-0.94287 c 0.120167,-0.18561 0.199455,-0.39468 0.199455,-0.6165 0,-0.39865 -0.217947,-0.74288 -0.562099,-0.99727 -0.344152,-0.25438 -0.809887,-0.41704 -1.323653,-0.41704 -0.342991,0 -0.664422,0.0781 -0.942876,0.19945 l -2.139601,-1.45058 c 0.238296,-0.23605 0.435173,-0.51091 0.435173,-0.83409 0,-0.065 -0.0034,-0.1373 -0.0181,-0.19944 -0.04381,-0.18646 -0.151063,-0.35093 -0.271983,-0.5077 l 1.559372,-1.1242 c 0.230415,0.0757 0.476305,0.12696 0.743419,0.12696 0.513767,0 0.979496,-0.16266 1.323654,-0.41704 0.344159,-0.25439 0.562098,-0.59862 0.562098,-0.99727 0,-0.39865 -0.217939,-0.76103 -0.562098,-1.0154 -0.344158,-0.2544 -0.809882,-0.41705 -1.323654,-0.41705 -0.513764,0 -0.980786,0.16258 -1.323651,0.41705 -0.342865,0.25445 -0.562098,0.61695 -0.562098,1.0154 0,0.18268 0.04155,0.35326 0.126922,0.5077 0.04271,0.0772 0.103413,0.14777 0.16319,0.21759 0.05978,0.0698 0.125446,0.13729 0.199455,0.19945 l -1.432446,1.05167 c -0.308027,-0.16227 -0.668496,-0.29012 -1.0698,-0.29012 -0.497352,0 -0.947362,0.1773 -1.287388,0.41704 l -1.994546,-1.37804 c 0.240883,-0.1887 0.429987,-0.43687 0.507704,-0.70716 0.02587,-0.0901 0.03627,-0.1762 0.03627,-0.27199 0,-0.17323 -0.06964,-0.31966 -0.145057,-0.47143 l 1.758826,-1.26926 c 0.236607,0.0801 0.486366,0.12696 0.761553,0.12696 0.513765,0 0.997631,-0.14452 1.341784,-0.39891 0.344152,-0.25438 0.562099,-0.61676 0.562099,-1.0154 0,-0.39865 -0.217895,-0.76237 -0.562099,-1.0154 -0.344205,-0.25303 -0.828176,-0.39891 -1.341784,-0.39891 -0.256804,0 -0.501605,0.0225 -0.725288,0.0907 -0.111847,0.0341 -0.226281,0.0776 -0.326381,0.12696 -0.100105,0.0492 -0.185935,0.11806 -0.271983,0.18132 -0.344205,0.25303 -0.5621,0.61675 -0.5621,1.0154 0,0.3553 0.225571,0.65969 0.507703,0.90661 l -1.595636,1.14234 c -0.343456,-0.25346 -0.792613,-0.43517 -1.30552,-0.43517 -0.58681,0 -1.101047,0.20429 -1.450578,0.52582 l -1.885751,-1.30551 c 0.0913,-0.10852 0.176947,-0.23877 0.235719,-0.36264 0.02936,-0.062 0.05617,-0.11551 0.07252,-0.18133 0.01637,-0.0658 0.0181,-0.12975 0.0181,-0.19945 0,-0.39866 -0.217892,-0.76237 -0.562097,-1.0154 -0.08605,-0.0632 -0.171883,-0.13206 -0.271984,-0.18132 -0.200202,-0.0985 -0.428338,-0.1642 -0.670892,-0.19946 -0.121273,-0.0177 -0.252377,-0.0181 -0.380776,-0.0181 -0.513616,0 -0.997581,0.14587 -1.341786,0.39891 -0.344203,0.25304 -0.562098,0.61674 -0.562098,1.0154 0,0.39864 0.217947,0.76103 0.562098,1.01541 0.344153,0.25439 0.828013,0.3989 1.341786,0.3989 0.358013,0 0.673863,-0.0862 0.961007,-0.21758 l 2.121471,1.45058 c -0.03011,0.0962 -0.07253,0.18349 -0.07253,0.29011 0,0.39864 0.217947,0.76102 0.562102,1.01542 0.344151,0.25439 0.809886,0.41703 1.32365,0.41703 0.219073,0 0.43783,-0.0387 0.634629,-0.0907 l 0.290115,0.21758 0.03627,0.0181 1.922015,1.30553 c -0.07626,0.1537 -0.145059,0.31554 -0.145059,0.48956 0,0.39864 0.217947,0.76102 0.5621,1.01541 0.344152,0.25438 0.828013,0.39891 1.341784,0.39891 0.291584,0 0.550117,-0.0556 0.797819,-0.14506 l 0.25385,0.16319 1.922016,1.32366 c -0.18525,0.21816 -0.344512,0.46233 -0.344512,0.74341 0,0.39866 0.236026,0.76238 0.58023,1.01541 0.344206,0.25303 0.810038,0.39891 1.323653,0.39891 0.440673,0 0.836067,-0.11564 1.160462,-0.30825 l 1.396182,0.94287 c -0.09123,0.16577 -0.163191,0.3525 -0.163191,0.54397 0,0.39864 0.217947,0.76101 0.562099,1.0154 0.321517,0.23767 0.777021,0.36198 1.251123,0.38078 l 0,0.0181 z m 0.09067,-0.59836 c -0.351469,0 -0.675714,-0.11411 -0.888478,-0.27198 -0.160289,-0.11895 -0.26654,-0.25399 -0.308248,-0.39891 -0.01393,-0.0483 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15515 0.05947,-0.30327 0.181323,-0.43518 0.04062,-0.044 0.09163,-0.0873 0.145056,-0.12696 0.159575,-0.11831 0.385188,-0.21434 0.634629,-0.25384 0.08315,-0.0132 0.165986,-0.0181 0.25385,-0.0181 0.351504,0 0.655911,0.11373 0.870347,0.27197 0.215407,0.159 0.32638,0.35677 0.32638,0.56212 0,0.20527 -0.110982,0.385 -0.32638,0.54395 -0.214436,0.15828 -0.518843,0.27199 -0.870347,0.27199 z m -4.297337,-2.5929 c -0.351653,0 -0.675561,-0.0971 -0.888478,-0.25386 -0.160446,-0.11818 -0.253561,-0.26681 -0.290115,-0.41703 -0.01221,-0.0501 -0.0181,-0.0934 -0.0181,-0.14507 0,-0.1551 0.04642,-0.30326 0.16319,-0.43517 0.03893,-0.044 0.09163,-0.0873 0.145056,-0.12696 0.212764,-0.15783 0.537004,-0.25386 0.88848,-0.25386 0.351492,0 0.655904,0.0955 0.870346,0.25386 0.215394,0.15895 0.326381,0.3568 0.326381,0.5621 0,0.20528 -0.110766,0.40404 -0.326381,0.56209 -0.214593,0.15729 -0.518674,0.25386 -0.870346,0.25386 z m 8.739732,0 c -0.351643,0 -0.65743,-0.0971 -0.870346,-0.25386 -0.160446,-0.11818 -0.266594,-0.26681 -0.308249,-0.41703 -0.01387,-0.0501 -0.0181,-0.0934 -0.0181,-0.14507 0,-0.1551 0.05947,-0.30326 0.181322,-0.43517 0.04062,-0.044 0.09163,-0.0873 0.145058,-0.12696 0.212766,-0.15783 0.518879,-0.25386 0.870346,-0.25386 0.351505,0 0.674039,0.0955 0.888481,0.25386 0.215393,0.15895 0.32638,0.3568 0.32638,0.5621 0,0.20528 -0.110766,0.40404 -0.32638,0.56209 -0.214593,0.15729 -0.536802,0.25386 -0.888481,0.25386 z m -4.47866,-3.17314 c -0.351672,0 -0.655747,-0.11463 -0.870345,-0.27199 -0.161699,-0.11856 -0.266988,-0.25409 -0.308248,-0.39891 -0.01375,-0.0483 -0.0181,-0.0937 -0.0181,-0.14506 0,-0.15399 0.05923,-0.30285 0.181321,-0.43516 0.04067,-0.0442 0.09121,-0.0871 0.14506,-0.12696 0.160834,-0.1187 0.372542,-0.21445 0.616494,-0.25385 0.08132,-0.0131 0.165975,-0.0181 0.253852,-0.0181 0.351469,0 0.675718,0.11411 0.888478,0.27198 0.213717,0.1585 0.32638,0.35526 0.32638,0.5621 0,0.20678 -0.112458,0.38638 -0.32638,0.54396 -0.212917,0.15687 -0.53683,0.27198 -0.888478,0.27198 z m -8.794127,-0.32639 c -0.351648,0 -0.675575,-0.11513 -0.888478,-0.27198 -0.160446,-0.11818 -0.266594,-0.2668 -0.308248,-0.41704 -0.01387,-0.0501 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15511 0.05947,-0.30837 0.181322,-0.43518 0.04062,-0.0422 0.09163,-0.0692 0.145059,-0.10877 0.159574,-0.11831 0.385186,-0.21434 0.634626,-0.25385 0.08315,-0.0132 0.165981,-0.0181 0.253852,-0.0181 0.351498,0 0.655904,0.11373 0.870346,0.27199 0.215404,0.15898 0.32638,0.33864 0.32638,0.54397 0,0.20527 -0.110779,0.40403 -0.32638,0.56208 -0.214598,0.1573 -0.518675,0.27199 -0.870346,0.27199 z m 17.932769,0 c -0.351672,0 -0.655749,-0.11474 -0.870347,-0.27198 -0.161704,-0.11857 -0.266988,-0.26713 -0.308248,-0.41704 -0.01375,-0.05 -0.0181,-0.0938 -0.0181,-0.14506 0,-0.15398 0.05923,-0.30794 0.181322,-0.43518 0.04067,-0.0424 0.0912,-0.0691 0.145058,-0.10877 0.160834,-0.11869 0.372542,-0.21445 0.616494,-0.25385 0.08132,-0.0131 0.165978,-0.0181 0.253852,-0.0181 0.351469,0 0.675709,0.11411 0.888479,0.27199 0.213717,0.15851 0.326379,0.33713 0.326379,0.54397 0,0.2068 -0.112457,0.4045 -0.326379,0.56208 -0.21291,0.15689 -0.53683,0.27199 -0.888479,0.27199 z m -4.206677,-2.97368 c -0.351654,0 -0.675569,-0.11513 -0.888478,-0.27199 -0.160446,-0.11818 -0.253561,-0.25376 -0.290115,-0.3989 -0.01221,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.15513 0.04642,-0.30327 0.16319,-0.43518 0.03894,-0.044 0.09163,-0.0873 0.145059,-0.12696 0.159576,-0.11831 0.385186,-0.21433 0.634628,-0.25385 0.08315,-0.0132 0.165982,-0.0181 0.253852,-0.0181 0.351505,0 0.674036,0.11373 0.888478,0.27199 0.215405,0.15899 0.308249,0.35678 0.308249,0.56209 0,0.20529 -0.09264,0.38591 -0.308249,0.54397 -0.214593,0.15728 -0.5368,0.27198 -0.888478,0.27198 z m -9.827663,-0.14505 c -0.35147,0 -0.657589,-0.11424 -0.870346,-0.27199 -0.16029,-0.11894 -0.266548,-0.26702 -0.308249,-0.41704 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.2068 0.112661,-0.40358 0.32638,-0.56209 0.159574,-0.11831 0.372154,-0.20132 0.616495,-0.23573 0.08144,-0.0114 0.165986,-0.0181 0.253852,-0.0181 0.351504,0 0.674036,0.0955 0.888478,0.25386 0.215394,0.15895 0.32638,0.35679 0.32638,0.5621 0,0.20531 -0.110982,0.40312 -0.32638,0.5621 -0.214442,0.15826 -0.536974,0.27198 -0.888478,0.27198 z m 18.676188,-0.18133 c -0.351648,0 -0.675569,-0.11513 -0.888478,-0.27199 -0.160446,-0.11818 -0.253561,-0.25378 -0.290116,-0.39891 -0.01221,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.15515 0.04642,-0.30326 0.16319,-0.43517 0.03894,-0.044 0.09162,-0.0873 0.145059,-0.12696 0.15957,-0.11831 0.385181,-0.21435 0.634628,-0.25386 0.08315,-0.0132 0.165981,-0.0181 0.253852,-0.0181 0.351469,0 0.657581,0.11411 0.870346,0.27198 0.21374,0.15859 0.326381,0.35524 0.326381,0.5621 0,0.20676 -0.112458,0.38635 -0.326381,0.54397 -0.212915,0.15684 -0.518698,0.27198 -0.870346,0.27198 z m -27.216467,-0.0543 c -0.351467,0 -0.657579,-0.11412 -0.870346,-0.27199 -0.160288,-0.11882 -0.26654,-0.26702 -0.308246,-0.41705 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.1551 0.05945,-0.30849 0.18132,-0.43517 0.04062,-0.0422 0.09158,-0.0695 0.14506,-0.10877 0.159678,-0.11768 0.372159,-0.21413 0.616494,-0.25386 0.08144,-0.0132 0.165941,-0.0181 0.253852,-0.0181 0.351653,0 0.675569,0.11512 0.888478,0.27198 0.213926,0.15759 0.32638,0.33717 0.32638,0.54397 0,0.2068 -0.112662,0.40359 -0.32638,0.5621 -0.212764,0.15784 -0.537003,0.27199 -0.888478,0.27199 z m -4.895699,-2.95556 c -0.351476,0 -0.675709,-0.11424 -0.888478,-0.27198 -0.160283,-0.11895 -0.266541,-0.26703 -0.30825,-0.41704 -0.01393,-0.05 -0.0181,-0.0934 -0.0181,-0.14506 0,-0.15507 0.05945,-0.30847 0.181323,-0.43518 0.04062,-0.0422 0.09158,-0.0693 0.145057,-0.10877 0.159692,-0.11767 0.385198,-0.21411 0.634628,-0.25384 0.08315,-0.0132 0.165941,-0.0181 0.253852,-0.0181 0.351637,0 0.657423,0.11513 0.870347,0.27198 0.213924,0.15763 0.326379,0.33723 0.326379,0.54397 0,0.20682 -0.112674,0.40358 -0.326379,0.56209 -0.212772,0.15781 -0.518879,0.27199 -0.870347,0.27199 z m 9.174905,-0.0907 c -0.351476,0 -0.657583,-0.11412 -0.870347,-0.27199 -0.160288,-0.11894 -0.26654,-0.25398 -0.308249,-0.39891 -0.01393,-0.0483 -0.0181,-0.0934 -0.0181,-0.14505 0,-0.10342 0.0358,-0.21327 0.09067,-0.30825 0.02744,-0.0474 0.05002,-0.0829 0.09067,-0.12696 0.04062,-0.0439 0.09158,-0.0875 0.145056,-0.12696 0.159687,-0.11768 0.372162,-0.21413 0.616497,-0.25386 0.08144,-0.0132 0.165939,-0.0181 0.253851,-0.0181 0.351666,0 0.673886,0.11462 0.888479,0.27198 0.215608,0.15803 0.32638,0.35679 0.32638,0.5621 0,0.20527 -0.110995,0.38502 -0.32638,0.54397 -0.214442,0.15828 -0.536981,0.27197 -0.888479,0.27197 z m 9.46502,-0.25385 c -0.351672,0 -0.655749,-0.0965 -0.870347,-0.25386 -0.161699,-0.11856 -0.266986,-0.26712 -0.308247,-0.41703 -0.01374,-0.05 -0.0181,-0.0938 -0.0181,-0.14506 0,-0.15401 0.05923,-0.30285 0.181322,-0.43518 0.04067,-0.0441 0.0912,-0.0871 0.145057,-0.12696 0.214442,-0.15827 0.518849,-0.25385 0.870346,-0.25385 0.351476,0 0.675721,0.0961 0.88848,0.25385 0.213716,0.15851 0.308246,0.35527 0.308246,0.5621 0,0.20675 -0.09432,0.40449 -0.308246,0.5621 -0.212911,0.15685 -0.536836,0.25385 -0.88848,0.25385 z"
     style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
     inkscape:connector-curvature="0" /><path
     id="path4369"
     d="m 41.105923,105.73159 4.989488,-3.90642 -4.511044,-0.0263 -2.50263,1.91903 -2.465827,0.0158 4.437437,-3.48056 0.05258,0.0368 0,-0.0102 6.913779,0.0368 0.136699,-0.10521 -2.534176,-13.895901 9.752898,-0.07361 -2.697163,13.832821 0.299684,0.2366 6.919037,-0.0368 0,0.0102 0.04732,-0.0368 4.437436,3.48055 -2.465826,-0.0158 -2.50263,-1.91903 -4.511044,0.0263 4.994745,3.90641 -2.676132,-0.0315 -4.89485,-3.81704 -0.352262,1.81913 -3.175605,0.0316 -0.310201,-1.69821 -4.705575,3.66983 -2.676133,0.0316 z"
     style="fill:#577632;fill-opacity:1;stroke:none"
     inkscape:connector-curvature="0" /><g
     transform="matrix(0.43822081,0,0,-0.43822081,-272.20604,356.91925)"
     id="g3443"><path
       id="flowRoot3023-5-6-2-5-9-7-4-5"
       transform="translate(0,308.2677)"
       d="m 790.28125,287.1875 c -2.67365,2e-5 -4.62784,0.93059 -5.90625,2.8125 -1.27842,1.88195 -1.9375,4.71548 -1.9375,8.53125 0,3.64706 0.68145,6.43057 2.03125,8.3125 1.3498,1.88193 3.32345,2.8125 5.90625,2.8125 1.6483,0 3.13721,-0.40637 4.5,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.34375 -4.0625,1.34375 -1.09023,0 -1.86354,-0.54655 -2.34375,-1.65625 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.23204,-4.00761 0.71875,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m 15.40625,0 c -2.64769,2e-5 -4.72619,0.9895 -6.21875,2.96875 -1.49257,1.97929 -2.21875,4.7015 -2.21875,8.21875 0,2.28429 0.34337,4.29329 1.03125,6 0.68788,1.70672 1.66557,3.02898 2.9375,3.9375 1.27192,0.90852 2.74495,1.34375 4.40625,1.34375 2.62171,0 4.68194,-0.98948 6.1875,-2.96875 1.50553,-1.97927 2.24998,-4.75629 2.25,-8.3125 -2e-5,-3.43938 -0.76923,-6.16927 -2.28125,-8.1875 -1.51205,-2.01819 -3.53693,-2.99998 -6.09375,-3 z m 22.125,0 c -1.16811,2e-5 -2.16168,0.27919 -3.03125,0.84375 -0.82163,0.53346 -1.47507,1.26593 -1.9375,2.1875 l 0,-2.65625 -5.125,0 0,0.0312 -0.0312,0 0,21.6875 5.1875,0 0,-10.4375 c -10e-6,-2.63469 0.26209,-4.48404 0.78125,-5.59375 0.51915,-1.10967 1.35256,-1.68748 2.46875,-1.6875 0.84361,2e-5 1.4361,0.41408 1.8125,1.21875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.58768 -1.46875,-5.9375 -0.97992,-1.34978 -2.46473,-1.99998 -4.4375,-2 z m 15.4375,0 c -1.82769,0.11784 -3.299,0.65118 -4.40625,1.59375 -1.26544,1.07726 -1.90625,2.53202 -1.90625,4.375 0,1.44067 0.34986,2.69224 1.03125,3.75 0.68139,1.05779 1.80456,2.06553 3.375,3 1.18107,0.71385 1.99621,1.31931 2.4375,1.8125 0.44127,0.4932 0.65624,1.05684 0.65625,1.71875 -10e-6,0.64895 -0.23445,1.1979 -0.65625,1.59375 -0.42182,0.39586 -1.00782,0.59375 -1.8125,0.59375 -0.72682,0 -1.57731,-0.17552 -2.53125,-0.5 -0.95395,-0.32447 -1.78617,-0.72555 -2.5,-1.21875 l 0,4.5 c 1.40171,0.84363 3.17099,1.25 5.3125,1.25 2.41406,0 4.22926,-0.59369 5.46875,-1.78125 1.23947,-1.18756 1.87499,-2.82194 1.875,-4.9375 -10e-6,-0.97341 -0.17025,-1.83568 -0.46875,-2.5625 -0.29853,-0.72681 -0.7049,-1.36642 -1.25,-1.9375 -0.54512,-0.57106 -1.49396,-1.27607 -2.84375,-2.09375 -1.11619,-0.67489 -1.87242,-1.23323 -2.28125,-1.6875 -0.40884,-0.45424 -0.62501,-0.97844 -0.625,-1.5625 -10e-6,-0.50616 0.16903,-0.9308 0.5,-1.28125 0.33095,-0.35041 0.83807,-0.53123 1.5,-0.53125 1.05128,2e-5 2.2675,0.37224 3.65625,1.125 l 1.6875,-3.71875 c -1.70024,-1.01233 -3.51664,-1.49998 -5.4375,-1.5 -0.2758,0 -0.52015,-0.0168 -0.78125,0 z m 16.9375,0 c -2.53088,2e-5 -4.52281,0.9883 -5.9375,3 -1.4147,2.01174 -2.125,4.8241 -2.125,8.40625 0,3.53025 0.81105,6.26015 2.375,8.1875 1.56395,1.92736 3.69366,2.875 6.40625,2.875 2.3232,0 4.30744,-0.50063 5.96875,-1.5 l 0,-4.25 c -1.76514,1.05129 -3.50026,1.5625 -5.1875,1.5625 -1.32385,0 -2.34099,-0.46528 -3.09375,-1.40625 -0.75278,-0.94096 -1.14857,-2.37864 -1.1875,-4.3125 l 10.40625,0 0,-2.75 c -2e-5,-3.10193 -0.66849,-5.53028 -2.03125,-7.25 -1.36279,-1.71968 -3.23161,-2.56248 -5.59375,-2.5625 z m 20.34375,0 c -0.89555,2e-5 -1.70011,0.29097 -2.375,0.875 -0.67491,0.58407 -1.27269,1.54349 -1.84375,2.90625 l -0.1875,0 -0.59375,-3.375 -4.25,0 0,21.6875 5.1875,0 0,-11.15625 c -10e-6,-1.8949 0.32509,-3.35085 1,-4.34375 0.67489,-0.99287 1.64729,-1.49998 2.90625,-1.5 0.58404,2e-5 1.04283,0.089 1.40625,0.21875 l 0.625,-5.03125 c -0.61002,-0.19466 -1.23905,-0.28123 -1.875,-0.28125 z m -20.40625,3.96875 c 0.7917,2e-5 1.42073,0.43235 1.875,1.25 0.45425,0.81768 0.69278,2.01035 0.71875,3.59375 l -5.25,0 c 0.0779,-1.6483 0.36353,-2.87101 0.84375,-3.65625 0.48021,-0.7852 1.0727,-1.18748 1.8125,-1.1875 z M 805.25,291.625 c 0.12695,-0.0175 0.26997,0 0.40625,0 1.07723,2e-5 1.84405,0.56485 2.34375,1.6875 0.49967,1.12269 0.74999,2.79121 0.75,5.0625 -10e-6,4.56856 -1.01715,6.875 -3.09375,6.875 -1.09023,0 -1.88181,-0.59488 -2.375,-1.75 -0.4932,-1.15511 -0.75001,-2.86667 -0.75,-5.125 -10e-6,-2.27129 0.2568,-3.93981 0.75,-5.0625 0.43154,-0.98232 1.0801,-1.5647 1.96875,-1.6875 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       inkscape:connector-curvature="0" /><path
       id="flowRoot3023-5-6-2-5-9-7-1-4-1"
       transform="translate(0,308.2677)"
       d="m 912.25,287.1875 c -2.53088,2e-5 -4.87677,0.66849 -7.03125,2.03125 L 907,292.8125 c 1.68724,-1.01233 3.17086,-1.53123 4.46875,-1.53125 1.75213,2e-5 2.65624,1.00657 2.65625,3.03125 l 0,1.5625 -2.90625,0.125 c -2.49194,0.11682 -4.3413,0.73407 -5.59375,1.84375 -1.25246,1.1097 -1.875,2.80948 -1.875,5.09375 0,2.12854 0.42874,3.7747 1.34375,4.96875 0.91501,1.19405 2.18485,1.78125 3.78125,1.78125 1.24596,0 2.27607,-0.23853 3.09375,-0.71875 0.81766,-0.48022 1.60924,-1.35307 2.375,-2.625 l 0.125,0 1.03125,2.96875 3.78125,0 0,-14.5625 c -2e-5,-2.41405 -0.58072,-4.27638 -1.78125,-5.59375 -1.20056,-1.31733 -2.95276,-1.96873 -5.25,-1.96875 z m 21.34375,0.0312 c -1.16811,2e-5 -2.19293,0.27919 -3.0625,0.84375 -0.85122,0.55267 -1.50307,1.31201 -1.96875,2.28125 l 0,-2.78125 -5.125,0 0,11.65625 0.0312,0 0,10.09375 5.1875,0 0,-10.40625 c -10e-6,-2.63469 0.26209,-4.51529 0.78125,-5.625 0.51915,-1.10967 1.32131,-1.65623 2.4375,-1.65625 0.84361,2e-5 1.46735,0.38283 1.84375,1.1875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.55643 -1.46875,-5.90625 -0.97992,-1.34978 -2.46473,-2.03123 -4.4375,-2.03125 z m 17.21875,0 c -2.67365,2e-5 -4.65909,0.93059 -5.9375,2.8125 -1.27842,1.88195 -1.90625,4.74673 -1.90625,8.5625 0,3.64706 0.68145,6.39932 2.03125,8.28125 1.3498,1.88193 3.2922,2.8125 5.875,2.8125 1.6483,0 3.16846,-0.40637 4.53125,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.375 -4.0625,1.375 -1.09023,0 -1.89479,-0.5778 -2.375,-1.6875 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.26329,-4.00761 0.75,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m -65.90625,0.40625 5.65625,21.6875 6.4375,0 5.6875,-21.6875 -5.375,0 c -1.89492,8.63095 -2.89618,13.23375 -3,13.84375 -0.10384,0.61001 -0.21517,1.30444 -0.3125,2.03125 -0.0974,0.72682 -0.14328,1.26689 -0.15625,1.65625 l -0.0625,0 c -0.0389,-0.49319 -0.15027,-1.28357 -0.3125,-2.40625 -0.16224,-1.12266 -0.3207,-1.97844 -0.4375,-2.5625 l -2.75,-12.5625 -5.375,0 z m 29.21875,11.53125 0,1.8125 c -10e-6,1.4147 -0.31043,2.55614 -0.875,3.40625 -0.56459,0.85012 -1.30255,1.28125 -2.25,1.28125 -1.27193,0 -1.90626,-0.89641 -1.90625,-2.6875 -10e-6,-1.20703 0.26089,-2.10874 0.8125,-2.71875 0.55159,-0.61 1.41267,-0.96635 2.59375,-1.03125 l 1.625,-0.0625 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       inkscape:connector-curvature="0" /><g
       transform="matrix(0.8306463,0,0,0.8306463,1795.7434,-128.90577)"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       id="flowRoot3023-5-6-2-5-9-7-1-5-1-3"><path
         d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z"
         id="path3407"
         inkscape:connector-curvature="0" /></g></g><g
     transform="matrix(0.25000688,0,0,-0.25000688,348.99292,288.90814)"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
     id="flowRoot3013-0-3-7-9-7-8-1-7"><path
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z"
       id="path3376"
       inkscape:connector-curvature="0" /><path
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z"
       id="path3378"
       inkscape:connector-curvature="0" /><path
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z"
       id="path3380"
       inkscape:connector-curvature="0" /><path
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z"
       id="path3382"
       inkscape:connector-curvature="0" /><path
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z"
       id="path3384"
       inkscape:connector-curvature="0" /><path
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z"
       id="path3386"
       inkscape:connector-curvature="0" /><path
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3388"
       inkscape:connector-curvature="0" /><path
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3390"
       inkscape:connector-curvature="0" /><path
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z"
       id="path3392"
       inkscape:connector-curvature="0" /><path
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3394"
       inkscape:connector-curvature="0" /><path
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3396"
       inkscape:connector-curvature="0" /><path
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3398"
       inkscape:connector-curvature="0" /><path
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z"
       id="path3400"
       inkscape:connector-curvature="0" /><path
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z"
       id="path3402"
       inkscape:connector-curvature="0" /><path
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z"
       id="path3404"
       inkscape:connector-curvature="0" /></g></g><text
   xml:space="preserve"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   x="113.36552"
   y="-44.040192"
   id="text7147"
   transform="scale(1,-1)"
   sodipodi:linespacing="125%"><tspan
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     sodipodi:role="line"
     id="tspan7149"
     x="113.36552"
     y="-44.040192" /></text>





<text
   xml:space="preserve"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   x="113.6648"
   y="-37.62291"
   id="text7155"
   transform="scale(1,-1)"
   sodipodi:linespacing="125%"><tspan
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     sodipodi:role="line"
     id="tspan7157"
     x="113.6648"
     y="-37.62291" /></text>





<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7159"
   y="-87.822914"
   x="138.46829"
   style="font-size:5.98569536px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-87.822914"
     x="138.46829"
     id="tspan7161"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;text-anchor:start;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>





<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text6535"
   y="-45.918201"
   x="146.6619"
   style="font-size:5.58918715px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#577632;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-45.918201"
     x="146.6619"
     id="tspan6537"
     sodipodi:role="line" /></text>








<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7143"
   y="-45.850258"
   x="234.0332"
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#4d4d4d;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     y="-45.850258"
     x="234.0332"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#4d4d4d;font-family:Verana Sans;-inkscape-font-specification:Verana Sans"
     id="tspan7218" /></text>








<text
   sodipodi:linespacing="125%"
   transform="scale(1,-1)"
   id="text7429"
   y="-23.965015"
   x="234.0332"
   style="font-size:5.39359856px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;fill:#999999;fill-opacity:1;stroke:none;font-family:Verana Sans Demi;-inkscape-font-specification:Verana Sans Demi"
   xml:space="preserve"><tspan
     id="tspan7431"
     y="-23.965015"
     x="234.0332"
     sodipodi:role="line"
     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;fill:#999999;font-family:Verana Sans;-inkscape-font-specification:Verana Sans" /></text>







<g
   id="g3115"
   transform="matrix(0.42457859,0,0,-0.71531053,7.4622436,224.60588)"><title
     id="title3117">Layer 1</title><g
     id="g3200"><rect
   y="121.14417"
   x="-2.4360473"
   height="184.39592"
   width="563.25049"
   id="rect7538"
   style="fill:#ffffff;fill-opacity:1;stroke:none" /><g
   transform="scale(1.2979808,0.77042743)"
   style="font-size:59.02524567px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="text5276"><path
     d="m 41.946357,296.10335 c -2.6e-5,2.07513 -0.144131,4.1022 -0.432314,6.08121 -0.269021,1.95984 -0.662906,3.82359 -1.181658,5.59126 -0.499587,1.7677 -1.124039,3.39127 -1.87336,4.87074 -0.749366,1.47948 -1.594778,2.7572 -2.536241,3.83318 -0.922288,1.05677 -1.950234,1.88297 -3.083838,2.4786 -1.114425,0.61485 -2.305689,0.92227 -3.573795,0.92227 -1.287346,0 -2.469003,-0.29782 -3.544973,-0.89345 -1.056776,-0.59563 -2.017472,-1.43144 -2.882092,-2.50742 -0.84542,-1.07598 -1.594763,-2.3537 -2.248032,-3.83318 -0.634064,-1.47947 -1.172054,-3.10304 -1.613971,-4.87074 -0.42271,-1.76767 -0.749347,-3.63142 -0.979912,-5.59126 -0.211355,-1.97901 -0.317031,-4.00608 -0.31703,-6.08121 -1e-6,-3.07421 0.240173,-5.88905 0.720523,-8.44453 0.480346,-2.57464 1.220082,-4.78424 2.219211,-6.62881 0.99912,-1.8445 2.257632,-3.27594 3.775541,-4.29432 1.537106,-1.01829 3.352822,-1.52746 5.447154,-1.52751 2.209588,5e-5 4.082946,0.50922 5.620079,1.52751 1.537095,1.01838 2.786,2.44982 3.74672,4.29432 0.960673,1.84457 1.652375,4.05417 2.075106,6.62881 0.441895,2.55548 0.662856,5.37032 0.662882,8.44453 m -5.360692,0.23057 c -2e-5,-2.55543 -0.124911,-4.89953 -0.374672,-7.03231 -0.230587,-2.13271 -0.614866,-3.95804 -1.152836,-5.47597 -0.53801,-1.53708 -1.239318,-2.72835 -2.103928,-3.5738 -0.84543,-0.84537 -1.882982,-1.26808 -3.112659,-1.26812 -1.15285,4e-5 -2.161581,0.42275 -3.026197,1.26812 -0.845424,0.84545 -1.546732,2.03672 -2.103927,3.5738 -0.557213,1.51793 -0.970312,3.34326 -1.2393,5.47597 -0.269002,2.13278 -0.4035,4.47688 -0.403492,7.03231 -8e-6,2.5939 0.13449,5.0821 0.403492,7.46462 0.268988,2.38254 0.67248,4.49607 1.210479,6.3406 0.537981,1.82533 1.210469,3.28559 2.017465,4.38078 0.806974,1.0952 1.738849,1.64279 2.795629,1.64279 1.056752,0 2.017449,-0.54759 2.882092,-1.64279 0.883824,-1.09519 1.633167,-2.55545 2.248032,-4.38078 0.634041,-1.84453 1.114389,-3.95806 1.441046,-6.3406 0.34583,-2.38252 0.518756,-4.87072 0.518776,-7.46462"
     style="fill:#999999"
     id="path3894" /><path
     d="m 65.030248,277.22565 0,3.94846 -15.505655,0 0,17.52312 12.508279,0 0,4.2655 -12.767668,0 0,15.04452 -4.582526,0 0,-40.7816 20.34757,0"
     style="fill:#999999"
     id="path3896" /><path
     d="m 87.191873,277.22565 0,3.94846 -15.505655,0 0,17.52312 12.508279,0 0,4.2655 -12.767668,0 0,15.04452 -4.582526,0 0,-40.7816 20.34757,0"
     style="fill:#999999"
     id="path3898" /><path
     d="m 99.784952,317.71904 -12.623563,0 0.05764,-4.49606 c 0.614844,0.0384 1.22969,0.0673 1.844539,0.0865 0.614842,0.0192 1.220081,0.0288 1.815718,0.0288 0.09606,-3.86199 0.163313,-7.72399 0.201746,-11.58601 0.05764,-3.86198 0.08646,-7.7528 0.08646,-11.67247 -5e-6,-1.53709 -5e-6,-3.0742 0,-4.61135 -5e-6,-1.53708 -0.01922,-3.0838 -0.05764,-4.64017 l -3.660257,0.51878 -0.288209,-5.18777 c 1.152834,0.0385 2.30567,0.0577 3.45851,0.0577 1.152831,4e-5 2.305667,4e-5 3.458511,0 1.133613,4e-5 2.257628,4e-5 3.372048,0 1.13361,4e-5 2.267231,-0.0192 3.400872,-0.0577 l -0.0577,3.77554 c -0.65328,0.0385 -1.306558,0.0865 -1.959818,0.14411 -0.634073,0.0385 -1.277739,0.0865 -1.931002,0.1441 -0.422717,5.55287 -0.806996,11.07687 -1.152837,16.57203 -0.326646,5.47599 -0.614855,10.99039 -0.864627,16.54321 0.845403,1e-5 1.661995,-0.0192 2.449778,-0.0576 0.806973,-0.0576 1.623565,-0.13449 2.449778,-0.23057 l 0,4.66899"
     style="fill:#999999"
     id="path3900" /><path
     d="m 122.29242,290.36799 c -2e-5,-1.76766 -0.15373,-3.25674 -0.46113,-4.46725 -0.30745,-1.22965 -0.70133,-2.23839 -1.18166,-3.02619 -0.46116,-0.78774 -0.97033,-1.39298 -1.52751,-1.81572 -0.53801,-0.44188 -1.04718,-0.75891 -1.52751,-0.95109 -0.48036,-0.21132 -0.88386,-0.3266 -1.21048,-0.34585 -0.30744,-0.0384 -0.47075,-0.0576 -0.48995,-0.0576 -1.32578,4e-5 -2.53626,0.3651 -3.63144,1.09519 -1.09521,0.71095 -2.03669,1.80615 -2.82445,3.28559 -0.76857,1.46029 -1.3738,3.30483 -1.81572,5.53361 -0.42271,2.20963 -0.63406,4.80351 -0.63406,7.78165 0,2.97818 0.19213,5.59128 0.57642,7.83929 0.40349,2.24804 0.96069,4.13101 1.67162,5.6489 0.7109,1.51791 1.56592,2.66114 2.56506,3.42969 1.01832,0.76856 2.15194,1.15284 3.40087,1.15284 0.94146,-0.0768 1.8157,-0.4227 2.6227,-1.03755 0.34583,-0.24978 0.69168,-0.57642 1.03755,-0.97992 0.36505,-0.40348 0.70129,-0.90305 1.00873,-1.49868 0.32662,-0.59563 0.62444,-1.28733 0.89345,-2.07511 0.26898,-0.80698 0.48033,-1.73885 0.63406,-2.79563 l 4.61135,0.34585 c -0.21138,1.44106 -0.52841,2.71878 -0.95109,3.83318 -0.42273,1.09521 -0.91269,2.0559 -1.46987,2.8821 -0.53801,0.80699 -1.12404,1.48908 -1.75807,2.04628 -0.61487,0.55721 -1.22972,1.01834 -1.84454,1.38341 -1.46028,0.84541 -3.03582,1.32576 -4.72663,1.44104 -2.24805,0 -4.2559,-0.45153 -6.02357,-1.35458 -1.74848,-0.92227 -3.22795,-2.27685 -4.43843,-4.06375 -1.19127,-1.80611 -2.10393,-4.04453 -2.73798,-6.71528 -0.61485,-2.67072 -0.92228,-5.75456 -0.92227,-9.25151 -1e-5,-7.28206 1.23929,-12.77724 3.7179,-16.48557 2.47859,-3.72746 6.30216,-5.59121 11.47072,-5.59126 0.0576,5e-5 0.24977,0.01 0.57642,0.0288 0.34583,0.0193 0.77815,0.0865 1.29694,0.20175 0.51876,0.11533 1.10478,0.29786 1.75808,0.5476 0.65325,0.23061 1.31613,0.57646 1.98864,1.03755 0.67247,0.46118 1.32574,1.03759 1.95982,1.72926 0.63404,0.69174 1.20085,1.55636 1.70044,2.59388 0.49953,1.01837 0.89342,2.21925 1.18166,3.60262 0.30739,1.38343 0.4611,2.97819 0.46113,4.78427 l -4.9572,0.28821"
     style="fill:#999999"
     id="path3902" /><path
     d="m 139.95798,317.71904 -12.62356,0 0.0576,-4.49606 c 0.61484,0.0384 1.22969,0.0673 1.84454,0.0865 0.61484,0.0192 1.22008,0.0288 1.81571,0.0288 0.0961,-3.86199 0.16332,-7.72399 0.20175,-11.58601 0.0576,-3.86198 0.0865,-7.7528 0.0865,-11.67247 0,-1.53709 0,-3.0742 0,-4.61135 0,-1.53708 -0.0192,-3.0838 -0.0576,-4.64017 l -3.66025,0.51878 -0.28821,-5.18777 c 1.15283,0.0385 2.30567,0.0577 3.45851,0.0577 1.15283,4e-5 2.30566,4e-5 3.45851,0 1.13361,4e-5 2.25763,4e-5 3.37204,0 1.13361,4e-5 2.26724,-0.0192 3.40087,-0.0577 l -0.0576,3.77554 c -0.65329,0.0385 -1.30656,0.0865 -1.95982,0.14411 -0.63407,0.0385 -1.27774,0.0865 -1.931,0.1441 -0.42272,5.55287 -0.807,11.07687 -1.15284,16.57203 -0.32665,5.47599 -0.61486,10.99039 -0.86463,16.54321 0.84541,1e-5 1.662,-0.0192 2.44978,-0.0576 0.80697,-0.0576 1.62357,-0.13449 2.44978,-0.23057 l 0,4.66899"
     style="fill:#999999"
     id="path3904" /><path
     d="m 159.4969,318.58367 -1.41222,-7.72401 c -0.92229,-0.0384 -1.83495,-0.0672 -2.73799,-0.0865 -0.90307,-0.0192 -1.81573,-0.0288 -2.73799,-0.0288 -0.97992,1e-5 -1.96944,0.01 -2.96855,0.0288 -0.99914,0.0192 -1.99826,0.048 -2.99738,0.0865 -0.24979,1.30656 -0.48996,2.59389 -0.72052,3.86201 -0.21136,1.26812 -0.42271,2.53624 -0.63406,3.80436 l -5.38951,0.0576 c 0.84541,-3.40087 1.63318,-6.83055 2.36331,-10.28907 0.74934,-3.4585 1.46986,-6.92661 2.16157,-10.40435 0.6917,-3.4777 1.37379,-6.95542 2.04629,-10.43318 0.67248,-3.47769 1.35457,-6.92659 2.04628,-10.34671 l 7.4358,-0.1441 c 1.38339,6.93627 2.83404,13.90132 4.35196,20.89517 1.53709,6.99389 3.1991,13.90129 4.98602,20.72224 l -5.79301,0 m -7.06112,-36.34318 c -0.92229,4.05417 -1.79652,8.12753 -2.62271,12.22007 -0.82621,4.07337 -1.63319,8.16594 -2.42095,12.27771 0.8454,0.0384 1.68121,0.048 2.50742,0.0288 0.82618,-0.0192 1.6716,-0.0288 2.53624,-0.0288 0.82618,10e-6 1.63317,0.01 2.42095,0.0288 0.78776,0.0192 1.58514,0.01 2.39214,-0.0288 -0.76857,-4.13098 -1.54674,-8.23316 -2.33449,-12.30653 -0.78779,-4.07333 -1.61399,-8.13708 -2.4786,-12.19125"
     style="fill:#999999"
     id="path3906" /><path
     d="m 184.45416,317.89197 -18.21483,0.63406 c 0.0384,-2.30567 0.0673,-4.61135 0.0865,-6.91702 0.0192,-2.30567 0.0288,-4.62095 0.0288,-6.94585 -1e-5,-4.66897 -0.048,-9.29952 -0.14411,-13.89168 -0.0769,-4.61132 -0.19214,-9.25148 -0.34585,-13.9205 l 6.91702,-0.28821 c -0.21136,3.55461 -0.4035,6.90744 -0.57642,10.0585 -0.15372,3.15111 -0.29782,6.21573 -0.43231,9.19387 -0.11529,2.95897 -0.22097,5.88909 -0.31703,8.79038 -0.0961,2.8821 -0.18254,5.83144 -0.25939,8.84802 0.99912,0.0577 2.00785,0.0961 3.0262,0.11529 1.01833,0 2.03666,0 3.05502,0 2.3633,0 4.75543,-0.0576 7.17641,-0.17293 l 0,4.49607"
     style="fill:#999999"
     id="path3908" /><path
     d="m 220.60242,285.0073 c -0.0192,0.57645 -0.0673,1.19129 -0.14411,1.84453 -0.0769,0.55724 -0.18256,1.21051 -0.31703,1.95983 -0.11531,0.74937 -0.30745,1.52753 -0.57642,2.33449 l -5.33187,-0.72052 c 0.21134,-0.82617 0.36505,-1.61394 0.46114,-2.36332 0.096,-0.76852 0.14408,-1.48905 0.1441,-2.16157 -2e-5,-1.38337 -0.18255,-2.59384 -0.5476,-3.63143 -0.36508,-1.03752 -0.85504,-1.91175 -1.46986,-2.62271 -0.61487,-0.71087 -1.33539,-1.23926 -2.16157,-1.58515 -0.807,-0.36502 -1.66202,-0.54755 -2.56506,-0.54759 -1.076,4e-5 -2.02709,0.27864 -2.85328,0.8358 -0.80699,0.53803 -1.48909,1.25856 -2.04628,2.16157 -0.55721,0.88388 -0.97992,1.89261 -1.26812,3.0262 -0.28822,1.11444 -0.43232,2.25767 -0.43232,3.42969 0,1.15287 0.19214,2.25767 0.57642,3.3144 0.40349,1.03758 0.94148,2.0271 1.61397,2.96856 0.6917,0.92229 1.48907,1.78692 2.39214,2.59388 0.90304,0.80701 1.87335,1.54675 2.91091,2.21921 1.78688,1.15286 3.29518,2.21923 4.52489,3.19913 1.24888,0.97992 2.25762,1.94062 3.0262,2.88209 0.76853,0.92228 1.32573,1.84455 1.67161,2.76681 0.34583,0.92228 0.51875,1.90219 0.51878,2.93973 -3e-5,1.13363 -0.19217,2.23843 -0.57642,3.31441 -0.36509,1.07598 -0.96072,2.02707 -1.7869,2.85327 -0.82622,0.8262 -1.9022,1.48908 -3.22794,1.98864 -1.30657,0.49956 -2.91093,0.74934 -4.8131,0.74934 -1.84455,0 -3.51616,-0.28821 -5.01484,-0.86462 -1.47948,-0.59563 -2.7476,-1.41223 -3.80436,-2.44978 -1.03756,-1.03755 -1.84454,-2.26724 -2.42096,-3.68908 -0.5572,-1.44104 -0.8358,-3.01658 -0.8358,-4.72663 l 5.41833,0.23057 c -1e-5,1.88297 0.22095,3.38166 0.66288,4.49606 0.46113,1.11441 1.00872,1.95983 1.64279,2.53624 0.65327,0.57642 1.32576,0.95109 2.01747,1.12402 0.7109,0.15371 1.31614,0.23057 1.81572,0.23056 0.5764,10e-6 1.19125,-0.0865 1.84454,-0.25938 0.67247,-0.19214 1.28731,-0.49956 1.84453,-0.92227 0.5764,-0.44192 1.04715,-1.00873 1.41223,-1.70044 0.38426,-0.71091 0.5764,-1.58514 0.57642,-2.6227 -2e-5,-1.07597 -0.25941,-2.05588 -0.77817,-2.93974 -0.49958,-0.90304 -1.16246,-1.74845 -1.98864,-2.53624 -0.82622,-0.78775 -1.7677,-1.5467 -2.82445,-2.27685 -1.05678,-0.73011 -2.14237,-1.47946 -3.25676,-2.24803 -1.09521,-0.76854 -2.17119,-1.57552 -3.22795,-2.42096 -1.05677,-0.84539 -1.99825,-1.76766 -2.82445,-2.76681 -0.8262,-1.01831 -1.49869,-2.14233 -2.01746,-3.37204 -0.49957,-1.22967 -0.74935,-2.61307 -0.74935,-4.15022 0,-0.97988 0.0769,-1.98861 0.23057,-3.02619 0.17292,-1.03752 0.44192,-2.04625 0.80699,-3.0262 0.38427,-0.99909 0.88383,-1.93096 1.49868,-2.79563 0.63406,-0.8838 1.42183,-1.65236 2.36332,-2.30567 0.94148,-0.65323 2.04628,-1.17201 3.31441,-1.55633 1.28732,-0.38424 2.76679,-0.57638 4.43842,-0.57642 1.74845,0.0385 3.26635,0.26904 4.5537,0.6917 1.28732,0.42275 2.38251,0.96074 3.28559,1.61397 0.90303,0.6341 1.63316,1.34502 2.19039,2.13275 0.55718,0.78781 0.98949,1.58519 1.29694,2.39214 0.3074,0.78781 0.51875,1.53715 0.63406,2.24803 0.11526,0.71095 0.1729,1.30658 0.17293,1.7869"
     style="fill:#999999"
     id="path3910" /><path
     d="m 244.7815,299.64832 c -0.2498,3.24718 -0.67251,6.06202 -1.26812,8.44453 -0.59565,2.36333 -1.41224,4.32315 -2.44977,5.87947 -1.01836,1.53712 -2.27688,2.68035 -3.77555,3.42969 -1.47949,0.74934 -3.23756,1.12402 -5.27422,1.12402 -2.07512,0 -3.79477,-0.45153 -5.15895,-1.35459 -1.34498,-0.90305 -2.41135,-2.19999 -3.19912,-3.89082 -0.78778,-1.71004 -1.34498,-3.79475 -1.67161,-6.25414 -0.30743,-2.45937 -0.46114,-5.255 -0.46114,-8.38689 0.0576,-2.36329 0.20175,-4.81307 0.43231,-7.34933 0.0961,-1.07596 0.21136,-2.21919 0.34586,-3.42969 0.1537,-1.22966 0.32663,-2.47857 0.51877,-3.74672 0.21135,-1.2873 0.45153,-2.58424 0.72053,-3.89083 0.26899,-1.32572 0.57641,-2.62266 0.92227,-3.89082 l 5.90828,0.89345 c -0.71092,3.51619 -1.25852,6.64806 -1.64279,9.39562 -0.38429,2.72841 -0.66289,5.13015 -0.83581,7.20523 -0.17293,2.05591 -0.27861,3.81399 -0.31703,5.27423 -0.0192,1.44106 -0.0288,2.64193 -0.0288,3.60261 0,2.34412 0.0865,4.30394 0.25939,5.87947 0.17292,1.55634 0.45152,2.81485 0.83581,3.77554 0.40348,0.94149 0.91265,1.61398 1.52751,2.01746 0.61483,0.4035 1.35457,0.60525 2.21921,0.60524 0.88383,1e-5 1.71963,-0.25938 2.50742,-0.77816 0.80697,-0.53799 1.50828,-1.37379 2.10393,-2.50742 0.61482,-1.13362 1.09517,-2.60348 1.44104,-4.4096 0.36505,-1.8061 0.54758,-3.99649 0.5476,-6.57117 -2e-5,-1.6716 0.01,-3.47771 0.0288,-5.41834 0.0192,-1.95979 0.01,-3.96765 -0.0288,-6.02357 -0.0384,-2.07507 -0.12491,-4.16939 -0.25939,-6.28296 -0.13452,-2.1135 -0.36508,-4.17899 -0.6917,-6.1965 l 6.25414,-0.74934 c 0.26897,3.15113 0.4515,6.04282 0.5476,8.6751 0.11525,2.63234 0.1729,4.96683 0.17292,7.00348 -2e-5,1.26815 -0.01,2.39216 -0.0288,3.37205 -0.0192,0.96072 -0.0481,1.77731 -0.0865,2.44978 -0.0385,0.78779 -0.0769,1.4891 -0.11529,2.10392"
     style="fill:#999999"
     id="path3912" /><path
     d="m 272.10208,289.73393 c -0.0769,1.614 -0.39391,3.10307 -0.95109,4.46724 -0.55723,1.36421 -1.28736,2.60351 -2.19039,3.7179 -0.90308,1.11443 -1.94063,2.09434 -3.11266,2.93973 -1.17207,0.84543 -2.41137,1.55635 -3.7179,2.13275 -1.28735,0.57643 -2.61311,1.00875 -3.97729,1.29694 -1.3642,0.28822 -2.68035,0.43233 -3.94846,0.43232 -0.23058,1e-5 -0.46115,1e-5 -0.6917,0 -0.23058,1e-5 -0.47075,-0.0192 -0.72053,-0.0576 -0.11529,2.28647 -0.21136,4.56333 -0.28821,6.83056 -0.0576,2.24804 -0.11529,4.51528 -0.17292,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93186 0.0961,-3.97727 0.1441,-7.98338 0.1441,-12.01833 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.67509 -0.0576,-2.88206 -0.1345,-5.78336 -0.23057,-8.70392 0.92227,-0.36502 1.89257,-0.65323 2.91092,-0.86463 1.01833,-0.23052 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18248 2.65152,-0.20174 0.80698,-0.0384 1.46025,-0.0576 1.95983,-0.0576 1.82531,4e-5 3.55456,0.24982 5.18776,0.74934 1.65238,0.4996 3.09343,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91091,4.46724 0.73011,1.82536 1.09517,4.06378 1.0952,6.71528 m -17.84015,-10.34671 c -0.28822,3.68911 -0.538,7.35897 -0.74934,11.00959 -0.21137,3.65067 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11352,10e-6 3.90042,-0.28819 5.36069,-0.86463 1.47946,-0.5764 2.69954,-1.29692 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79648 2.27685,-2.79563 0.53797,-1.01831 0.93186,-1.9694 1.18166,-2.85327 0.26897,-0.88381 0.43229,-1.62355 0.48995,-2.21921 0.0576,-0.5956 0.0864,-0.91263 0.0865,-0.95109 -2e-5,-0.21132 -0.0192,-0.61482 -0.0576,-1.21048 -0.0384,-0.5956 -0.14412,-1.2777 -0.31703,-2.04628 -0.17294,-0.78774 -0.44194,-1.60434 -0.80698,-2.44978 -0.34587,-0.84538 -0.83583,-1.61394 -1.46987,-2.30568 -0.63408,-0.71087 -1.43146,-1.2969 -2.39214,-1.75807 -0.96071,-0.4611 -2.13276,-0.69167 -3.51615,-0.6917 -0.96071,3e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#999999"
     id="path3914" /><path
     d="m 297.60692,289.73393 c -0.0769,1.614 -0.39392,3.10307 -0.95109,4.46724 -0.55723,1.36421 -1.28736,2.60351 -2.19039,3.7179 -0.90308,1.11443 -1.94063,2.09434 -3.11266,2.93973 -1.17207,0.84543 -2.41137,1.55635 -3.7179,2.13275 -1.28735,0.57643 -2.61311,1.00875 -3.97729,1.29694 -1.3642,0.28822 -2.68036,0.43233 -3.94847,0.43232 -0.23057,1e-5 -0.46114,1e-5 -0.6917,0 -0.23057,1e-5 -0.47075,-0.0192 -0.72052,-0.0576 -0.11529,2.28647 -0.21136,4.56333 -0.28821,6.83056 -0.0577,2.24804 -0.11529,4.51528 -0.17293,6.80174 l -4.32313,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93186 0.0961,-3.97727 0.1441,-7.98338 0.1441,-12.01833 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.67509 -0.0576,-2.88206 -0.1345,-5.78336 -0.23057,-8.70392 0.92227,-0.36502 1.89257,-0.65323 2.91091,-0.86463 1.01834,-0.23052 1.99825,-0.40345 2.93974,-0.51878 0.96068,-0.11524 1.84453,-0.18248 2.65152,-0.20174 0.80698,-0.0384 1.46025,-0.0576 1.95982,-0.0576 1.82531,4e-5 3.55457,0.24982 5.18777,0.74934 1.65238,0.4996 3.09342,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91091,4.46724 0.7301,1.82536 1.09517,4.06378 1.0952,6.71528 m -17.84015,-10.34671 c -0.28822,3.68911 -0.538,7.35897 -0.74935,11.00959 -0.21136,3.65067 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11353,10e-6 3.90042,-0.28819 5.3607,-0.86463 1.47946,-0.5764 2.69954,-1.29692 3.66025,-2.16157 0.9799,-0.86461 1.73885,-1.79648 2.27686,-2.79563 0.53797,-1.01831 0.93185,-1.9694 1.18165,-2.85327 0.26898,-0.88381 0.4323,-1.62355 0.48996,-2.21921 0.0576,-0.5956 0.0864,-0.91263 0.0865,-0.95109 -2e-5,-0.21132 -0.0192,-0.61482 -0.0576,-1.21048 -0.0384,-0.5956 -0.14413,-1.2777 -0.31703,-2.04628 -0.17295,-0.78774 -0.44194,-1.60434 -0.80699,-2.44978 -0.34587,-0.84538 -0.83582,-1.61394 -1.46986,-2.30568 -0.63408,-0.71087 -1.43146,-1.2969 -2.39214,-1.75807 -0.96071,-0.4611 -2.13276,-0.69167 -3.51615,-0.6917 -0.96071,3e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#999999"
     id="path3916" /><path
     d="m 322.27598,296.10335 c -3e-5,2.07513 -0.14413,4.1022 -0.43232,6.08121 -0.26902,1.95984 -0.6629,3.82359 -1.18165,5.59126 -0.49959,1.7677 -1.12404,3.39127 -1.87336,4.87074 -0.74937,1.47948 -1.59478,2.7572 -2.53625,3.83318 -0.92228,1.05677 -1.95023,1.88297 -3.08383,2.4786 -1.11443,0.61485 -2.30569,0.92227 -3.5738,0.92227 -1.28734,0 -2.469,-0.29782 -3.54497,-0.89345 -1.05678,-0.59563 -2.01747,-1.43144 -2.88209,-2.50742 -0.84542,-1.07598 -1.59477,-2.3537 -2.24804,-3.83318 -0.63406,-1.47947 -1.17205,-3.10304 -1.61397,-4.87074 -0.42271,-1.76767 -0.74934,-3.63142 -0.97991,-5.59126 -0.21135,-1.97901 -0.31703,-4.00608 -0.31703,-6.08121 0,-3.07421 0.24017,-5.88905 0.72052,-8.44453 0.48035,-2.57464 1.22009,-4.78424 2.21922,-6.62881 0.99912,-1.8445 2.25763,-3.27594 3.77554,-4.29432 1.5371,-1.01829 3.35282,-1.52746 5.44715,-1.52751 2.20959,5e-5 4.08295,0.50922 5.62008,1.52751 1.53709,1.01838 2.786,2.44982 3.74672,4.29432 0.96067,1.84457 1.65237,4.05417 2.07511,6.62881 0.44189,2.55548 0.66285,5.37032 0.66288,8.44453 m -5.36069,0.23057 c -3e-5,-2.55543 -0.12492,-4.89953 -0.37468,-7.03231 -0.23058,-2.13271 -0.61486,-3.95804 -1.15283,-5.47597 -0.53801,-1.53708 -1.23932,-2.72835 -2.10393,-3.5738 -0.84543,-0.84537 -1.88298,-1.26808 -3.11266,-1.26812 -1.15285,4e-5 -2.16158,0.42275 -3.0262,1.26812 -0.84542,0.84545 -1.54673,2.03672 -2.10392,3.5738 -0.55722,1.51793 -0.97032,3.34326 -1.2393,5.47597 -0.26901,2.13278 -0.4035,4.47688 -0.4035,7.03231 0,2.5939 0.13449,5.0821 0.4035,7.46462 0.26898,2.38254 0.67248,4.49607 1.21048,6.3406 0.53798,1.82533 1.21046,3.28559 2.01746,4.38078 0.80697,1.0952 1.73885,1.64279 2.79563,1.64279 1.05675,0 2.01745,-0.54759 2.88209,-1.64279 0.88383,-1.09519 1.63317,-2.55545 2.24803,-4.38078 0.63404,-1.84453 1.11439,-3.95806 1.44105,-6.3406 0.34583,-2.38252 0.51875,-4.87072 0.51878,-7.46462"
     style="fill:#999999"
     id="path3918" /><path
     d="m 338.52929,318.52603 -4.89955,-13.97815 c -0.96071,0.1153 -1.89259,0.17294 -2.79563,0.17293 -0.23058,1e-5 -0.46114,1e-5 -0.6917,0 -0.23058,1e-5 -0.47075,-0.0192 -0.72053,-0.0576 -0.11529,2.28647 -0.21136,4.56333 -0.28821,6.83056 -0.0576,2.24804 -0.11529,4.51528 -0.17292,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93186 0.0961,-3.97727 0.1441,-7.98338 0.1441,-12.01833 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.67509 -0.0576,-2.88206 -0.1345,-5.78336 -0.23057,-8.70392 0.92227,-0.36502 1.89257,-0.65323 2.91092,-0.86463 1.01833,-0.23052 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18248 2.65153,-0.20174 0.80697,-0.0384 1.46024,-0.0576 1.95982,-0.0576 1.82531,4e-5 3.55456,0.24982 5.18776,0.74934 1.65238,0.4996 3.09343,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91092,4.46724 0.7301,1.82536 1.09516,4.06378 1.09519,6.71528 -0.0961,1.76771 -0.47077,3.39128 -1.12402,4.87073 -0.65329,1.46028 -1.50831,2.77644 -2.56506,3.94847 -1.05679,1.15285 -2.25766,2.15198 -3.60261,2.99737 -1.32578,0.84543 -2.70919,1.52753 -4.15021,2.04629 1.05675,2.44018 2.19997,4.85153 3.42968,7.23405 1.22968,2.38254 2.54583,4.77467 3.94847,7.17641 l -6.13886,0.51878 m -7.63754,-39.13881 c -0.28822,3.68911 -0.538,7.35897 -0.74934,11.00959 -0.21136,3.65067 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11352,10e-6 3.90042,-0.28819 5.36069,-0.86463 1.47946,-0.5764 2.69954,-1.29692 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79648 2.27685,-2.79563 0.53797,-1.01831 0.93186,-1.9694 1.18166,-2.85327 0.26897,-0.88381 0.43229,-1.62355 0.48995,-2.21921 0.0576,-0.5956 0.0865,-0.91263 0.0865,-0.95109 -2e-5,-0.21132 -0.0192,-0.61482 -0.0577,-1.21048 -0.0384,-0.5956 -0.14412,-1.2777 -0.31703,-2.04628 -0.17294,-0.78774 -0.44194,-1.60434 -0.80698,-2.44978 -0.34587,-0.84538 -0.83583,-1.61394 -1.46987,-2.30568 -0.63408,-0.71087 -1.43145,-1.2969 -2.39213,-1.75807 -0.96072,-0.4611 -2.13277,-0.69167 -3.51616,-0.6917 -0.96071,3e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#999999"
     id="path3920" /><path
     d="m 368.32846,276.96626 -0.40349,4.03493 -9.04977,0 0,36.89078 -3.83318,0 0,-36.89078 -7.06113,0 0,-4.15021 20.34757,0.11528"
     style="fill:#999999"
     id="path3922" /><path
     d="m 390.46125,277.16801 0,3.94846 -15.82268,0 0,17.58076 12.50828,0 0,4.2655 -12.68121,0 0,10.43317 15.33273,0 0,4.55371 -20.23228,0 0,-40.7816 20.89516,0"
     style="fill:#999999"
     id="path3924" /><path
     d="m 406.05173,318.52603 -4.89956,-13.97815 c -0.96071,0.1153 -1.89258,0.17294 -2.79563,0.17293 -0.23058,1e-5 -0.46114,1e-5 -0.6917,0 -0.23058,1e-5 -0.47075,-0.0192 -0.72053,-0.0576 -0.11529,2.28647 -0.21136,4.56333 -0.2882,6.83056 -0.0577,2.24804 -0.1153,4.51528 -0.17293,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93186 0.0961,-3.97727 0.1441,-7.98338 0.14411,-12.01833 -10e-6,-2.92049 -0.0288,-5.81219 -0.0865,-8.67509 -0.0576,-2.88206 -0.1345,-5.78336 -0.23056,-8.70392 0.92226,-0.36502 1.89256,-0.65323 2.91091,-0.86463 1.01833,-0.23052 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18248 2.65153,-0.20174 0.80697,-0.0384 1.46024,-0.0576 1.95982,-0.0576 1.82531,4e-5 3.55456,0.24982 5.18777,0.74934 1.65237,0.4996 3.09342,1.3258 4.32313,2.4786 1.22967,1.13366 2.19998,2.62274 2.91092,4.46724 0.7301,1.82536 1.09516,4.06378 1.09519,6.71528 -0.0961,1.76771 -0.47077,3.39128 -1.12401,4.87073 -0.6533,1.46028 -1.50832,2.77644 -2.56507,3.94847 -1.05679,1.15285 -2.25766,2.15198 -3.60261,2.99737 -1.32578,0.84543 -2.70919,1.52753 -4.15021,2.04629 1.05675,2.44018 2.19998,4.85153 3.42969,7.23405 1.22967,2.38254 2.54582,4.77467 3.94846,7.17641 l -6.13885,0.51878 m -7.63755,-39.13881 c -0.28822,3.68911 -0.538,7.35897 -0.74934,11.00959 -0.21136,3.65067 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11352,10e-6 3.90042,-0.28819 5.36069,-0.86463 1.47946,-0.5764 2.69954,-1.29692 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79648 2.27685,-2.79563 0.53797,-1.01831 0.93186,-1.9694 1.18166,-2.85327 0.26897,-0.88381 0.43229,-1.62355 0.48995,-2.21921 0.0576,-0.5956 0.0864,-0.91263 0.0865,-0.95109 -2e-5,-0.21132 -0.0192,-0.61482 -0.0576,-1.21048 -0.0385,-0.5956 -0.14413,-1.2777 -0.31703,-2.04628 -0.17295,-0.78774 -0.44195,-1.60434 -0.80699,-2.44978 -0.34587,-0.84538 -0.83583,-1.61394 -1.46987,-2.30568 -0.63408,-0.71087 -1.43145,-1.2969 -2.39213,-1.75807 -0.96072,-0.4611 -2.13277,-0.69167 -3.51616,-0.6917 -0.96071,3e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#999999"
     id="path3926" /></g><g
   transform="scale(1.2979808,0.77042743)"
   style="font-size:59.02524567px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   id="text4987"><path
     d="m 40.074634,294.23165 c -2.6e-5,2.07512 -0.14413,4.10219 -0.432313,6.08121 -0.269021,1.95984 -0.662907,3.82359 -1.181658,5.59126 -0.499587,1.76769 -1.124039,3.39127 -1.87336,4.87073 -0.749366,1.47948 -1.594779,2.75721 -2.536241,3.83319 -0.922289,1.05677 -1.950234,1.88296 -3.083839,2.4786 -1.114424,0.61484 -2.305688,0.92226 -3.573794,0.92227 -1.287346,-1e-5 -2.469003,-0.29782 -3.544973,-0.89345 -1.056776,-0.59564 -2.017472,-1.43144 -2.882092,-2.50742 -0.84542,-1.07598 -1.594763,-2.35371 -2.248032,-3.83319 -0.634064,-1.47946 -1.172054,-3.10304 -1.613971,-4.87073 -0.42271,-1.76767 -0.749347,-3.63142 -0.979912,-5.59126 -0.211355,-1.97902 -0.317032,-4.00609 -0.31703,-6.08121 -2e-6,-3.07421 0.240172,-5.88905 0.720523,-8.44453 0.480346,-2.57464 1.220082,-4.78424 2.219211,-6.62882 0.99912,-1.8445 2.257632,-3.27593 3.775541,-4.29431 1.537105,-1.0183 3.352822,-1.52747 5.447154,-1.52751 2.209587,4e-5 4.082945,0.50921 5.620079,1.52751 1.537095,1.01838 2.786,2.44981 3.74672,4.29431 0.960673,1.84458 1.652374,4.05418 2.075106,6.62882 0.441895,2.55548 0.662855,5.37032 0.662881,8.44453 m -5.360691,0.23056 c -2.1e-5,-2.55543 -0.124911,-4.89953 -0.374672,-7.0323 -0.230587,-2.13272 -0.614866,-3.95804 -1.152837,-5.47598 -0.538009,-1.53708 -1.239317,-2.72834 -2.103927,-3.57379 -0.84543,-0.84537 -1.882982,-1.26808 -3.112659,-1.26812 -1.15285,4e-5 -2.161581,0.42275 -3.026197,1.26812 -0.845424,0.84545 -1.546732,2.03671 -2.103927,3.57379 -0.557213,1.51794 -0.970312,3.34326 -1.2393,5.47598 -0.269002,2.13277 -0.4035,4.47687 -0.403493,7.0323 -7e-6,2.59391 0.134491,5.08211 0.403493,7.46462 0.268988,2.38254 0.67248,4.49608 1.210479,6.3406 0.537981,1.82534 1.210469,3.28559 2.017464,4.38078 0.806974,1.0952 1.73885,1.6428 2.79563,1.6428 1.056752,0 2.017448,-0.5476 2.882092,-1.6428 0.883824,-1.09519 1.633167,-2.55544 2.248032,-4.38078 0.63404,-1.84452 1.114389,-3.95806 1.441046,-6.3406 0.34583,-2.38251 0.518755,-4.87071 0.518776,-7.46462"
     style="fill:#9cd5d3"
     id="path3946" /><path
     d="m 63.158526,275.35394 0,3.94847 -15.505656,0 0,17.52312 12.50828,0 0,4.2655 -12.767668,0 0,15.04452 -4.582526,0 0,-40.78161 20.34757,0"
     style="fill:#9cd5d3"
     id="path3948" /><path
     d="m 85.320151,275.35394 0,3.94847 -15.505656,0 0,17.52312 12.50828,0 0,4.2655 -12.767668,0 0,15.04452 -4.582526,0 0,-40.78161 20.34757,0"
     style="fill:#9cd5d3"
     id="path3950" /><path
     d="m 97.91323,315.84734 -12.623563,0 0.05764,-4.49607 c 0.614844,0.0384 1.229689,0.0673 1.844538,0.0865 0.614843,0.0192 1.220082,0.0288 1.815718,0.0288 0.09606,-3.862 0.163314,-7.724 0.201747,-11.58601 0.05764,-3.86199 0.08646,-7.75281 0.08646,-11.67248 -6e-6,-1.53708 -6e-6,-3.0742 0,-4.61134 -6e-6,-1.53708 -0.01922,-3.08381 -0.05764,-4.64017 l -3.660257,0.51877 -0.288209,-5.18776 c 1.152834,0.0385 2.30567,0.0577 3.45851,0.0576 1.152831,4e-5 2.305667,4e-5 3.458511,0 1.133613,4e-5 2.257628,4e-5 3.372047,0 1.13361,4e-5 2.267232,-0.0192 3.400869,-0.0576 l -0.05764,3.77554 c -0.653288,0.0385 -1.306562,0.0865 -1.959822,0.1441 -0.634073,0.0385 -1.27774,0.0865 -1.931002,0.14411 -0.422718,5.55286 -0.806996,11.07687 -1.152837,16.57203 -0.326647,5.47599 -0.614856,10.99039 -0.864628,16.54321 0.845404,0 1.661996,-0.0192 2.449779,-0.0576 0.806973,-0.0576 1.623565,-0.1345 2.449778,-0.23057 l 0,4.66899"
     style="fill:#9cd5d3"
     id="path3952" /><path
     d="m 120.4207,288.49628 c -2e-5,-1.76765 -0.15373,-3.25673 -0.46113,-4.46724 -0.30745,-1.22966 -0.70134,-2.23839 -1.18166,-3.0262 -0.46116,-0.78773 -0.97033,-1.39297 -1.52751,-1.81571 -0.53801,-0.44189 -1.04718,-0.75892 -1.52751,-0.95109 -0.48037,-0.21132 -0.88386,-0.3266 -1.21048,-0.34586 -0.30744,-0.0384 -0.47076,-0.0576 -0.48995,-0.0576 -1.32578,4e-5 -2.53626,0.36511 -3.63144,1.0952 -1.09521,0.71095 -2.03669,1.80614 -2.82445,3.28558 -0.76857,1.4603 -1.37381,3.30483 -1.81572,5.53362 -0.42271,2.20963 -0.63407,4.80351 -0.63406,7.78165 -10e-6,2.97818 0.19213,5.59127 0.57642,7.83929 0.40348,2.24804 0.96069,4.13101 1.67161,5.6489 0.71091,1.51791 1.56593,2.66114 2.56506,3.42969 1.01833,0.76856 2.15195,1.15284 3.40087,1.15284 0.94147,-0.0769 1.8157,-0.42271 2.62271,-1.03756 0.34583,-0.24978 0.69168,-0.57641 1.03755,-0.97991 0.36505,-0.40349 0.70129,-0.90305 1.00873,-1.49869 0.32662,-0.59562 0.62443,-1.28732 0.89345,-2.0751 0.26897,-0.80698 0.48033,-1.73886 0.63406,-2.79563 l 4.61135,0.34585 c -0.21138,1.44105 -0.52841,2.71878 -0.95109,3.83318 -0.42273,1.0952 -0.91269,2.0559 -1.46987,2.88209 -0.53801,0.80699 -1.12404,1.48909 -1.75807,2.04629 -0.61487,0.5572 -1.22972,1.01834 -1.84454,1.3834 -1.46028,0.84542 -3.03583,1.32576 -4.72663,1.44105 -2.24805,0 -4.25591,-0.45153 -6.02358,-1.35458 -1.74847,-0.92227 -3.22795,-2.27685 -4.43842,-4.06375 -1.19127,-1.80611 -2.10393,-4.04453 -2.73799,-6.71528 -0.614845,-2.67072 -0.922268,-5.75456 -0.922266,-9.25151 -2e-6,-7.28206 1.239296,-12.77725 3.717896,-16.48557 2.47859,-3.72747 6.30217,-5.59122 11.47073,-5.59126 0.0576,4e-5 0.24976,0.01 0.57642,0.0288 0.34583,0.0193 0.77814,0.0865 1.29694,0.20175 0.51876,0.11532 1.10478,0.29786 1.75808,0.54759 0.65325,0.23061 1.31613,0.57646 1.98864,1.03756 0.67246,0.46117 1.32574,1.03759 1.95982,1.72925 0.63404,0.69174 1.20085,1.55637 1.70044,2.59389 0.49953,1.01837 0.89342,2.21924 1.18165,3.60261 0.3074,1.38344 0.46111,2.97819 0.46114,4.78427 l -4.9572,0.28821"
     style="fill:#9cd5d3"
     id="path3954" /><path
     d="m 138.08626,315.84734 -12.62357,0 0.0577,-4.49607 c 0.61484,0.0384 1.22969,0.0673 1.84453,0.0865 0.61485,0.0192 1.22009,0.0288 1.81572,0.0288 0.0961,-3.862 0.16332,-7.724 0.20175,-11.58601 0.0576,-3.86199 0.0865,-7.75281 0.0865,-11.67248 0,-1.53708 0,-3.0742 0,-4.61134 0,-1.53708 -0.0192,-3.08381 -0.0576,-4.64017 l -3.66026,0.51877 -0.28821,-5.18776 c 1.15284,0.0385 2.30567,0.0577 3.45851,0.0576 1.15284,4e-5 2.30567,4e-5 3.45851,0 1.13362,4e-5 2.25763,4e-5 3.37205,0 1.13361,4e-5 2.26723,-0.0192 3.40087,-0.0576 l -0.0576,3.77554 c -0.65329,0.0385 -1.30656,0.0865 -1.95982,0.1441 -0.63408,0.0385 -1.27774,0.0865 -1.93101,0.14411 -0.42271,5.55286 -0.80699,11.07687 -1.15283,16.57203 -0.32665,5.47599 -0.61486,10.99039 -0.86463,16.54321 0.8454,0 1.662,-0.0192 2.44978,-0.0576 0.80697,-0.0576 1.62356,-0.1345 2.44978,-0.23057 l 0,4.66899"
     style="fill:#9cd5d3"
     id="path3956" /><path
     d="m 157.62518,316.71196 -1.41223,-7.724 c -0.92228,-0.0384 -1.83494,-0.0672 -2.73798,-0.0865 -0.90307,-0.0192 -1.81573,-0.0288 -2.73799,-0.0288 -0.97992,10e-6 -1.96944,0.01 -2.96856,0.0288 -0.99913,0.0192 -1.99825,0.048 -2.99737,0.0865 -0.24979,1.30655 -0.48996,2.59389 -0.72052,3.862 -0.21136,1.26812 -0.42272,2.53624 -0.63406,3.80436 l -5.38952,0.0576 c 0.84542,-3.40086 1.63319,-6.83055 2.36332,-10.28906 0.74934,-3.4585 1.46986,-6.92662 2.16157,-10.40436 0.69169,-3.4777 1.37379,-6.95542 2.04628,-10.43317 0.67248,-3.47769 1.35458,-6.92659 2.04629,-10.34671 l 7.4358,-0.1441 c 1.38338,6.93626 2.83403,13.90131 4.35196,20.89516 1.53709,6.99389 3.19909,13.9013 4.98601,20.72224 l -5.793,0 m -7.06113,-36.34318 c -0.92228,4.05418 -1.79651,8.12753 -2.6227,12.22007 -0.82621,4.07338 -1.63319,8.16595 -2.42096,12.27772 0.84541,0.0384 1.68121,0.048 2.50742,0.0288 0.82619,-0.0192 1.6716,-0.0288 2.53624,-0.0288 0.82619,10e-6 1.63318,0.01 2.42096,0.0288 0.78776,0.0192 1.58514,0.01 2.39214,-0.0288 -0.76858,-4.13099 -1.54674,-8.23316 -2.3345,-12.30654 -0.78778,-4.07333 -1.61398,-8.13707 -2.4786,-12.19125"
     style="fill:#9cd5d3"
     id="path3958" /><path
     d="m 182.58243,316.02026 -18.21482,0.63406 c 0.0384,-2.30567 0.0672,-4.61134 0.0865,-6.91702 0.0192,-2.30566 0.0288,-4.62094 0.0288,-6.94584 -1e-5,-4.66897 -0.048,-9.29953 -0.14411,-13.89168 -0.0769,-4.61132 -0.19214,-9.25148 -0.34585,-13.92051 l 6.91702,-0.28821 c -0.21136,3.55462 -0.4035,6.90745 -0.57642,10.0585 -0.15372,3.15112 -0.29782,6.21574 -0.43231,9.19388 -0.11529,2.95896 -0.22097,5.88909 -0.31703,8.79038 -0.0961,2.8821 -0.18254,5.83144 -0.25939,8.84802 0.99912,0.0577 2.00785,0.0961 3.0262,0.11528 1.01832,1e-5 2.03666,1e-5 3.05501,0 2.3633,1e-5 4.75544,-0.0576 7.17641,-0.17292 l 0,4.49606"
     style="fill:#9cd5d3"
     id="path3960" /><path
     d="m 218.73069,283.13559 c -0.0192,0.57645 -0.0673,1.1913 -0.1441,1.84454 -0.0769,0.55724 -0.18256,1.21051 -0.31703,1.95982 -0.11531,0.74938 -0.30745,1.52754 -0.57642,2.3345 l -5.33187,-0.72052 c 0.21133,-0.82618 0.36504,-1.61395 0.46113,-2.36332 0.0961,-0.76853 0.14409,-1.48905 0.14411,-2.16157 -2e-5,-1.38337 -0.18255,-2.59385 -0.5476,-3.63144 -0.36508,-1.03751 -0.85504,-1.91175 -1.46987,-2.6227 -0.61486,-0.71088 -1.33538,-1.23926 -2.16156,-1.58515 -0.80701,-0.36502 -1.66203,-0.54756 -2.56507,-0.5476 -1.07599,4e-5 -2.02708,0.27865 -2.85327,0.83581 -0.80699,0.53803 -1.48909,1.25855 -2.04628,2.16157 -0.55722,0.88388 -0.97992,1.89261 -1.26812,3.02619 -0.28822,1.11445 -0.43232,2.25768 -0.43232,3.42969 0,1.15287 0.19213,2.25767 0.57642,3.31441 0.40349,1.03758 0.94148,2.0271 1.61397,2.96856 0.69169,0.92229 1.48907,1.78692 2.39214,2.59388 0.90304,0.80701 1.87335,1.54674 2.91091,2.21921 1.78688,1.15285 3.29518,2.21923 4.52489,3.19912 1.24888,0.97993 2.25761,1.94062 3.02619,2.88209 0.76854,0.92229 1.32574,1.84455 1.67162,2.76681 0.34582,0.92228 0.51875,1.90219 0.51877,2.93974 -2e-5,1.13363 -0.19216,2.23843 -0.57642,3.3144 -0.36508,1.07599 -0.96072,2.02708 -1.78689,2.85327 -0.82622,0.8262 -1.9022,1.48908 -3.22795,1.98865 -1.30656,0.49956 -2.91092,0.74934 -4.81309,0.74934 -1.84455,0 -3.51616,-0.28821 -5.01484,-0.86463 -1.47948,-0.59563 -2.7476,-1.41222 -3.80436,-2.44978 -1.03756,-1.03755 -1.84454,-2.26724 -2.42096,-3.68907 -0.5572,-1.44104 -0.83581,-3.01658 -0.8358,-4.72663 l 5.41833,0.23056 c -1e-5,1.88298 0.22095,3.38166 0.66288,4.49607 0.46113,1.11441 1.00872,1.95982 1.64279,2.53624 0.65327,0.57642 1.32575,0.95109 2.01747,1.12401 0.7109,0.15372 1.31614,0.23057 1.81571,0.23057 0.57641,0 1.19125,-0.0865 1.84454,-0.25939 0.67248,-0.19213 1.28732,-0.49956 1.84454,-0.92227 0.5764,-0.44191 1.04714,-1.00872 1.41223,-1.70043 0.38426,-0.71091 0.5764,-1.58515 0.57642,-2.62271 -2e-5,-1.07597 -0.25941,-2.05588 -0.77817,-2.93973 -0.49958,-0.90304 -1.16246,-1.74846 -1.98864,-2.53624 -0.82622,-0.78776 -1.7677,-1.54671 -2.82445,-2.27685 -1.05678,-0.73012 -2.14237,-1.47946 -3.25677,-2.24803 -1.0952,-0.76854 -2.17118,-1.57553 -3.22794,-2.42096 -1.05677,-0.84539 -1.99826,-1.76766 -2.82445,-2.76681 -0.8262,-1.01832 -1.49869,-2.14233 -2.01746,-3.37205 -0.49957,-1.22966 -0.74935,-2.61307 -0.74935,-4.15021 0,-0.97988 0.0769,-1.98861 0.23057,-3.0262 0.17292,-1.03752 0.44192,-2.04625 0.80698,-3.02619 0.38428,-0.99909 0.88384,-1.93097 1.49869,-2.79563 0.63406,-0.8838 1.42183,-1.65236 2.36332,-2.30568 0.94147,-0.65323 2.04627,-1.172 3.3144,-1.55633 1.28733,-0.38423 2.7668,-0.57637 4.43843,-0.57642 1.74845,0.0385 3.26635,0.26904 4.5537,0.69171 1.28732,0.42275 2.38251,0.96074 3.28559,1.61397 0.90303,0.6341 1.63316,1.34502 2.19039,2.13275 0.55718,0.78781 0.98949,1.58519 1.29694,2.39213 0.30739,0.78781 0.51875,1.53715 0.63406,2.24803 0.11525,0.71096 0.1729,1.30659 0.17292,1.7869"
     style="fill:#9cd5d3"
     id="path3962" /><path
     d="m 242.90978,297.77662 c -0.2498,3.24717 -0.67251,6.06201 -1.26812,8.44453 -0.59565,2.36332 -1.41225,4.32314 -2.44978,5.87947 -1.01836,1.53712 -2.27687,2.68034 -3.77554,3.42969 -1.47949,0.74934 -3.23756,1.12401 -5.27423,1.12401 -2.07511,0 -3.79476,-0.45152 -5.15894,-1.35458 -1.34498,-0.90305 -2.41136,-2.19999 -3.19912,-3.89082 -0.78778,-1.71004 -1.34498,-3.79475 -1.67162,-6.25414 -0.30742,-2.45938 -0.46113,-5.255 -0.46113,-8.38689 0.0576,-2.3633 0.20174,-4.81307 0.43231,-7.34934 0.0961,-1.07595 0.21135,-2.21918 0.34585,-3.42969 0.15371,-1.22966 0.32664,-2.47856 0.51878,-3.74672 0.21135,-1.2873 0.45152,-2.58424 0.72052,-3.89082 0.26899,-1.32572 0.57642,-2.62266 0.92227,-3.89083 l 5.90829,0.89345 c -0.71092,3.51619 -1.25852,6.64806 -1.64279,9.39562 -0.38429,2.72841 -0.66289,5.13015 -0.83581,7.20523 -0.17293,2.05592 -0.27861,3.81399 -0.31703,5.27423 -0.0192,1.44107 -0.0288,2.64194 -0.0288,3.60262 -1e-5,2.34411 0.0865,4.30393 0.25939,5.87947 0.17292,1.55633 0.45152,2.81485 0.83581,3.77554 0.40348,0.94148 0.91265,1.61397 1.52751,2.01746 0.61483,0.4035 1.35457,0.60524 2.21921,0.60524 0.88382,0 1.71963,-0.25939 2.50742,-0.77817 0.80697,-0.53798 1.50827,-1.37379 2.10392,-2.50742 0.61483,-1.13361 1.09518,-2.60348 1.44105,-4.4096 0.36504,-1.80609 0.54758,-3.99648 0.5476,-6.57117 -2e-5,-1.67159 0.01,-3.4777 0.0288,-5.41833 0.0192,-1.9598 0.01,-3.96765 -0.0288,-6.02357 -0.0385,-2.07508 -0.12491,-4.1694 -0.25939,-6.28296 -0.13452,-2.1135 -0.36509,-4.179 -0.6917,-6.1965 l 6.25414,-0.74934 c 0.26897,3.15112 0.4515,6.04282 0.54759,8.67509 0.11526,2.63234 0.1729,4.96684 0.17293,7.00349 -3e-5,1.26814 -0.01,2.39216 -0.0288,3.37204 -0.0192,0.96072 -0.0481,1.77732 -0.0865,2.44978 -0.0385,0.78779 -0.0769,1.4891 -0.11529,2.10393"
     style="fill:#9cd5d3"
     id="path3964" /><path
     d="m 270.23036,287.86222 c -0.0769,1.614 -0.39392,3.10308 -0.95109,4.46725 -0.55723,1.36421 -1.28736,2.60351 -2.19039,3.71789 -0.90308,1.11443 -1.94063,2.09434 -3.11266,2.93974 -1.17207,0.84543 -2.41137,1.55634 -3.7179,2.13275 -1.28735,0.57643 -2.61311,1.00874 -3.97729,1.29694 -1.3642,0.28822 -2.68035,0.43233 -3.94846,0.43231 -0.23058,2e-5 -0.46115,2e-5 -0.69171,0 -0.23057,2e-5 -0.47075,-0.0192 -0.72052,-0.0576 -0.11529,2.28647 -0.21136,4.56332 -0.28821,6.83056 -0.0576,2.24803 -0.11529,4.51528 -0.17292,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93187 0.0961,-3.97727 0.1441,-7.98337 0.1441,-12.01832 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.6751 -0.0576,-2.88205 -0.1345,-5.78336 -0.23057,-8.70391 0.92227,-0.36503 1.89257,-0.65324 2.91091,-0.86463 1.01834,-0.23053 1.99825,-0.40345 2.93974,-0.51878 0.96069,-0.11524 1.84453,-0.18249 2.65152,-0.20175 0.80698,-0.0384 1.46025,-0.0576 1.95983,-0.0576 1.8253,5e-5 3.55456,0.24983 5.18776,0.74935 1.65238,0.4996 3.09342,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91091,4.46724 0.73011,1.82536 1.09517,4.06378 1.0952,6.71527 m -17.84015,-10.34671 c -0.28822,3.68912 -0.538,7.35898 -0.74935,11.00959 -0.21136,3.65068 -0.4131,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11352,2e-5 3.90042,-0.28819 5.36069,-0.86462 1.47946,-0.5764 2.69954,-1.29693 3.66025,-2.16157 0.9799,-0.86461 1.73885,-1.79649 2.27686,-2.79563 0.53797,-1.01832 0.93185,-1.96941 1.18165,-2.85327 0.26898,-0.88382 0.4323,-1.62355 0.48996,-2.21921 0.0576,-0.59561 0.0864,-0.91264 0.0865,-0.95109 -2e-5,-0.21133 -0.0192,-0.61482 -0.0576,-1.21048 -0.0385,-0.59561 -0.14412,-1.2777 -0.31703,-2.04629 -0.17295,-0.78774 -0.44194,-1.60433 -0.80699,-2.44978 -0.34587,-0.84538 -0.83582,-1.61393 -1.46986,-2.30567 -0.63408,-0.71088 -1.43146,-1.2969 -2.39214,-1.75808 -0.96071,-0.46109 -2.13276,-0.69166 -3.51615,-0.6917 -0.96071,4e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#9cd5d3"
     id="path3966" /><path
     d="m 295.73519,287.86222 c -0.0769,1.614 -0.39391,3.10308 -0.95109,4.46725 -0.55723,1.36421 -1.28736,2.60351 -2.19039,3.71789 -0.90307,1.11443 -1.94063,2.09434 -3.11266,2.93974 -1.17207,0.84543 -2.41136,1.55634 -3.71789,2.13275 -1.28735,0.57643 -2.61312,1.00874 -3.97729,1.29694 -1.3642,0.28822 -2.68036,0.43233 -3.94847,0.43231 -0.23057,2e-5 -0.46114,2e-5 -0.6917,0 -0.23058,2e-5 -0.47075,-0.0192 -0.72052,-0.0576 -0.11529,2.28647 -0.21136,4.56332 -0.28821,6.83056 -0.0577,2.24803 -0.11529,4.51528 -0.17293,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93187 0.0961,-3.97727 0.1441,-7.98337 0.14411,-12.01832 -10e-6,-2.92049 -0.0288,-5.81219 -0.0865,-8.6751 -0.0577,-2.88205 -0.13451,-5.78336 -0.23057,-8.70391 0.92226,-0.36503 1.89257,-0.65324 2.91091,-0.86463 1.01833,-0.23053 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18249 2.65153,-0.20175 0.80697,-0.0384 1.46025,-0.0576 1.95982,-0.0576 1.82531,5e-5 3.55457,0.24983 5.18777,0.74935 1.65238,0.4996 3.09342,1.3258 4.32314,2.4786 1.22966,1.13366 2.19997,2.62274 2.91091,4.46724 0.7301,1.82536 1.09517,4.06378 1.09519,6.71527 m -17.84015,-10.34671 c -0.28821,3.68912 -0.538,7.35898 -0.74934,11.00959 -0.21136,3.65068 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11353,2e-5 3.90042,-0.28819 5.36069,-0.86462 1.47946,-0.5764 2.69955,-1.29693 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79649 2.27685,-2.79563 0.53797,-1.01832 0.93186,-1.96941 1.18166,-2.85327 0.26898,-0.88382 0.43229,-1.62355 0.48996,-2.21921 0.0576,-0.59561 0.0864,-0.91264 0.0865,-0.95109 -2e-5,-0.21133 -0.0192,-0.61482 -0.0576,-1.21048 -0.0385,-0.59561 -0.14413,-1.2777 -0.31703,-2.04629 -0.17295,-0.78774 -0.44194,-1.60433 -0.80699,-2.44978 -0.34587,-0.84538 -0.83582,-1.61393 -1.46987,-2.30567 -0.63407,-0.71088 -1.43145,-1.2969 -2.39213,-1.75808 -0.96071,-0.46109 -2.13276,-0.69166 -3.51615,-0.6917 -0.96071,4e-5 -2.02709,0.11532 -3.19913,0.34585"
     style="fill:#9cd5d3"
     id="path3968" /><path
     d="m 320.40425,294.23165 c -2e-5,2.07512 -0.14413,4.10219 -0.43231,6.08121 -0.26902,1.95984 -0.66291,3.82359 -1.18166,5.59126 -0.49958,1.76769 -1.12404,3.39127 -1.87336,4.87073 -0.74936,1.47948 -1.59478,2.75721 -2.53624,3.83319 -0.92229,1.05677 -1.95023,1.88296 -3.08384,2.4786 -1.11442,0.61484 -2.30568,0.92226 -3.57379,0.92227 -1.28735,-1e-5 -2.469,-0.29782 -3.54497,-0.89345 -1.05678,-0.59564 -2.01748,-1.43144 -2.8821,-2.50742 -0.84542,-1.07598 -1.59476,-2.35371 -2.24803,-3.83319 -0.63406,-1.47946 -1.17205,-3.10304 -1.61397,-4.87073 -0.42271,-1.76767 -0.74935,-3.63142 -0.97991,-5.59126 -0.21136,-1.97902 -0.31703,-4.00609 -0.31703,-6.08121 0,-3.07421 0.24017,-5.88905 0.72052,-8.44453 0.48035,-2.57464 1.22008,-4.78424 2.21921,-6.62882 0.99912,-1.8445 2.25764,-3.27593 3.77554,-4.29431 1.53711,-1.0183 3.35283,-1.52747 5.44716,-1.52751 2.20959,4e-5 4.08294,0.50921 5.62008,1.52751 1.53709,1.01838 2.786,2.44981 3.74672,4.29431 0.96067,1.84458 1.65237,4.05418 2.0751,6.62882 0.4419,2.55548 0.66286,5.37032 0.66288,8.44453 m -5.36069,0.23056 c -2e-5,-2.55543 -0.12491,-4.89953 -0.37467,-7.0323 -0.23059,-2.13272 -0.61486,-3.95804 -1.15284,-5.47598 -0.538,-1.53708 -1.23931,-2.72834 -2.10392,-3.57379 -0.84543,-0.84537 -1.88298,-1.26808 -3.11266,-1.26812 -1.15285,4e-5 -2.16158,0.42275 -3.0262,1.26812 -0.84542,0.84545 -1.54673,2.03671 -2.10393,3.57379 -0.55721,1.51794 -0.97031,3.34326 -1.2393,5.47598 -0.269,2.13277 -0.4035,4.47687 -0.40349,7.0323 -10e-6,2.59391 0.13449,5.08211 0.40349,7.46462 0.26899,2.38254 0.67248,4.49608 1.21048,6.3406 0.53798,1.82534 1.21047,3.28559 2.01747,4.38078 0.80697,1.0952 1.73885,1.6428 2.79563,1.6428 1.05675,0 2.01745,-0.5476 2.88209,-1.6428 0.88382,-1.09519 1.63317,-2.55544 2.24803,-4.38078 0.63404,-1.84452 1.11439,-3.95806 1.44105,-6.3406 0.34583,-2.38251 0.51875,-4.87071 0.51877,-7.46462"
     style="fill:#9cd5d3"
     id="path3970" /><path
     d="m 336.65757,316.65432 -4.89955,-13.97814 c -0.96071,0.11529 -1.89259,0.17294 -2.79563,0.17292 -0.23058,2e-5 -0.46115,2e-5 -0.69171,0 -0.23057,2e-5 -0.47074,-0.0192 -0.72052,-0.0576 -0.11529,2.28647 -0.21136,4.56332 -0.28821,6.83056 -0.0577,2.24803 -0.11529,4.51528 -0.17292,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93187 0.0961,-3.97727 0.1441,-7.98337 0.1441,-12.01832 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.6751 -0.0576,-2.88205 -0.1345,-5.78336 -0.23057,-8.70391 0.92227,-0.36503 1.89257,-0.65324 2.91092,-0.86463 1.01833,-0.23053 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18249 2.65152,-0.20175 0.80698,-0.0384 1.46025,-0.0576 1.95983,-0.0576 1.82531,5e-5 3.55456,0.24983 5.18776,0.74935 1.65238,0.4996 3.09343,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91091,4.46724 0.73011,1.82536 1.09517,4.06378 1.0952,6.71527 -0.0961,1.76771 -0.47077,3.39129 -1.12402,4.87074 -0.6533,1.46028 -1.50832,2.77643 -2.56506,3.94846 -1.05679,1.15286 -2.25766,2.15198 -3.60261,2.99738 -1.32578,0.84543 -2.70919,1.52752 -4.15022,2.04629 1.05675,2.44018 2.19998,4.85153 3.42969,7.23405 1.22968,2.38253 2.54583,4.77467 3.94847,7.17641 l -6.13886,0.51877 m -7.63754,-39.13881 c -0.28822,3.68912 -0.538,7.35898 -0.74935,11.00959 -0.21136,3.65068 -0.4131,7.30132 -0.60523,10.95195 l 0.0576,0 c 2.11352,2e-5 3.90042,-0.28819 5.36069,-0.86462 1.47946,-0.5764 2.69954,-1.29693 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79649 2.27685,-2.79563 0.53797,-1.01832 0.93185,-1.96941 1.18166,-2.85327 0.26897,-0.88382 0.43229,-1.62355 0.48995,-2.21921 0.0576,-0.59561 0.0864,-0.91264 0.0865,-0.95109 -2e-5,-0.21133 -0.0192,-0.61482 -0.0576,-1.21048 -0.0385,-0.59561 -0.14412,-1.2777 -0.31703,-2.04629 -0.17294,-0.78774 -0.44194,-1.60433 -0.80698,-2.44978 -0.34587,-0.84538 -0.83583,-1.61393 -1.46987,-2.30567 -0.63408,-0.71088 -1.43146,-1.2969 -2.39214,-1.75808 -0.96071,-0.46109 -2.13276,-0.69166 -3.51615,-0.6917 -0.96071,4e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#9cd5d3"
     id="path3972" /><path
     d="m 366.45674,275.09456 -0.40349,4.03492 -9.04977,0 0,36.89078 -3.83318,0 0,-36.89078 -7.06113,0 0,-4.15021 20.34757,0.11529"
     style="fill:#9cd5d3"
     id="path3974" /><path
     d="m 388.58953,275.2963 0,3.94847 -15.82268,0 0,17.58076 12.50828,0 0,4.2655 -12.68121,0 0,10.43317 15.33273,0 0,4.5537 -20.23229,0 0,-40.7816 20.89517,0"
     style="fill:#9cd5d3"
     id="path3976" /><path
     d="m 404.18,316.65432 -4.89955,-13.97814 c -0.96071,0.11529 -1.89259,0.17294 -2.79563,0.17292 -0.23058,2e-5 -0.46115,2e-5 -0.6917,0 -0.23058,2e-5 -0.47075,-0.0192 -0.72053,-0.0576 -0.11529,2.28647 -0.21136,4.56332 -0.28821,6.83056 -0.0577,2.24803 -0.11529,4.51528 -0.17292,6.80174 l -4.32314,0 c 0.11528,-3.9965 0.21135,-7.97378 0.28821,-11.93187 0.0961,-3.97727 0.1441,-7.98337 0.1441,-12.01832 0,-2.92049 -0.0288,-5.81219 -0.0865,-8.6751 -0.0576,-2.88205 -0.1345,-5.78336 -0.23057,-8.70391 0.92227,-0.36503 1.89257,-0.65324 2.91092,-0.86463 1.01833,-0.23053 1.99824,-0.40345 2.93973,-0.51878 0.96069,-0.11524 1.84453,-0.18249 2.65152,-0.20175 0.80698,-0.0384 1.46025,-0.0576 1.95983,-0.0576 1.82531,5e-5 3.55456,0.24983 5.18776,0.74935 1.65238,0.4996 3.09343,1.3258 4.32314,2.4786 1.22967,1.13366 2.19997,2.62274 2.91091,4.46724 0.73011,1.82536 1.09517,4.06378 1.0952,6.71527 -0.0961,1.76771 -0.47077,3.39129 -1.12402,4.87074 -0.6533,1.46028 -1.50832,2.77643 -2.56506,3.94846 -1.05679,1.15286 -2.25766,2.15198 -3.60261,2.99738 -1.32578,0.84543 -2.70919,1.52752 -4.15022,2.04629 1.05675,2.44018 2.19998,4.85153 3.42969,7.23405 1.22968,2.38253 2.54583,4.77467 3.94847,7.17641 l -6.13886,0.51877 m -7.63754,-39.13881 c -0.28822,3.68912 -0.538,7.35898 -0.74934,11.00959 -0.21137,3.65068 -0.41311,7.30132 -0.60524,10.95195 l 0.0576,0 c 2.11352,2e-5 3.90042,-0.28819 5.36069,-0.86462 1.47946,-0.5764 2.69954,-1.29693 3.66026,-2.16157 0.97989,-0.86461 1.73884,-1.79649 2.27685,-2.79563 0.53797,-1.01832 0.93186,-1.96941 1.18166,-2.85327 0.26897,-0.88382 0.43229,-1.62355 0.48995,-2.21921 0.0576,-0.59561 0.0864,-0.91264 0.0865,-0.95109 -2e-5,-0.21133 -0.0192,-0.61482 -0.0576,-1.21048 -0.0384,-0.59561 -0.14412,-1.2777 -0.31703,-2.04629 -0.17294,-0.78774 -0.44194,-1.60433 -0.80698,-2.44978 -0.34587,-0.84538 -0.83583,-1.61393 -1.46987,-2.30567 -0.63408,-0.71088 -1.43146,-1.2969 -2.39214,-1.75808 -0.96071,-0.46109 -2.13276,-0.69166 -3.51615,-0.6917 -0.96071,4e-5 -2.02708,0.11532 -3.19912,0.34585"
     style="fill:#9cd5d3"
     id="path3978" /></g><g
   id="g6507"
   transform="translate(64.063519,0)"><path
     id="path4746"
     d="m 197.23979,288.64863 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4748"
     d="m 211.23154,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4750"
     d="m 225.2233,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4752"
     d="m 239.21506,288.64863 c -2.85815,0 -5.19945,1.37236 -5.19945,3.06883 0,1.69648 2.3413,3.06883 5.19945,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4754"
     d="m 253.1776,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4756"
     d="m 267.16936,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4758"
     d="m 281.16111,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85816,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17024,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4760"
     d="m 295.15287,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17024,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4762"
     d="m 309.11542,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19944,-1.37235 5.19944,-3.06883 0,-1.69647 -2.34129,-3.06883 -5.19944,-3.06883 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4764"
     d="m 323.10718,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4766"
     d="m 337.09893,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4768"
     d="m 351.09069,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4770"
     d="m 365.08244,288.64863 c -2.85814,0 -5.19944,1.37236 -5.19944,3.06883 0,1.69648 2.3413,3.06883 5.19944,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17024,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4772"
     d="m 379.04499,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19945,-1.37235 5.19945,-3.06883 0,-1.69647 -2.3413,-3.06883 -5.19945,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4774"
     d="m 393.03675,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4776"
     d="m 407.02851,288.64863 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4778"
     d="m 421.02026,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4780"
     d="m 435.01202,288.64863 c -2.85815,0 -5.19944,1.37236 -5.19944,3.06883 0,1.69648 2.34129,3.06883 5.19944,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4782"
     d="m 448.97457,288.64863 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4784"
     d="m 462.96632,288.64863 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4786"
     d="m 476.95808,288.64863 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 208.20303,276.76858 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4132"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 222.19478,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4134"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 236.18654,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4136"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 250.1783,276.76858 c -2.85815,0 -5.19945,1.37236 -5.19945,3.06883 0,1.69648 2.3413,3.06883 5.19945,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4138"
     inkscape:connector-curvature="0" /><path
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 264.14084,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4140"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 278.1326,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4142"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 292.12435,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85816,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17024,-3.06883 z"
     id="path4144"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 306.11611,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17024,-3.06883 z"
     id="path4146"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 320.07866,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19944,-1.37235 5.19944,-3.06883 0,-1.69647 -2.34129,-3.06883 -5.19944,-3.06883 z"
     id="path4148"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 334.07042,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4150"
     inkscape:connector-curvature="0" /><path
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 348.06217,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4152"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 362.05393,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4154"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 376.04568,276.76858 c -2.85814,0 -5.19944,1.37236 -5.19944,3.06883 0,1.69648 2.3413,3.06883 5.19944,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17024,-3.06883 z"
     id="path4156"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 390.00823,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19945,-1.37235 5.19945,-3.06883 0,-1.69647 -2.3413,-3.06883 -5.19945,-3.06883 z"
     id="path4158"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 403.99999,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4160"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 417.99175,276.76858 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4162"
     inkscape:connector-curvature="0" /><path
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 431.9835,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4164"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 445.97526,276.76858 c -2.85815,0 -5.19944,1.37236 -5.19944,3.06883 0,1.69648 2.34129,3.06883 5.19944,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4166"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 459.93781,276.76858 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06883 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4168"
     inkscape:connector-curvature="0" /><path
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 473.92956,276.76858 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31208,-3.06883 -5.17023,-3.06883 z"
     id="path4170"
     inkscape:connector-curvature="0" /><path
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     d="m 487.92132,276.76858 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06883 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69647 -2.31209,-3.06883 -5.17023,-3.06883 z"
     id="path4172"
     inkscape:connector-curvature="0" /><path
     id="path4186"
     d="m 219.16627,264.88851 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06884 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4188"
     d="m 233.15802,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4190"
     d="m 247.14978,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4192"
     d="m 261.14154,264.88851 c -2.85815,0 -5.19945,1.37236 -5.19945,3.06884 0,1.69648 2.3413,3.06883 5.19945,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4194"
     d="m 275.10408,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4196"
     d="m 289.09584,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4198"
     d="m 303.08759,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85816,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17024,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4200"
     d="m 317.07935,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17024,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4202"
     d="m 331.0419,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19944,-1.37235 5.19944,-3.06883 0,-1.69648 -2.34129,-3.06884 -5.19944,-3.06884 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4204"
     d="m 345.03366,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4206"
     d="m 359.02541,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4208"
     d="m 373.01717,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4210"
     d="m 387.00892,264.88851 c -2.85814,0 -5.19944,1.37236 -5.19944,3.06884 0,1.69648 2.3413,3.06883 5.19944,3.06883 2.85815,0 5.17024,-1.37235 5.17024,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17024,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4212"
     d="m 400.97147,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85815,0 5.19945,-1.37235 5.19945,-3.06883 0,-1.69648 -2.3413,-3.06884 -5.19945,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4214"
     d="m 414.96323,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4216"
     d="m 428.95499,264.88851 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06884 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4218"
     d="m 442.94674,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#9cd5d3;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4220"
     d="m 456.9385,264.88851 c -2.85815,0 -5.19944,1.37236 -5.19944,3.06884 0,1.69648 2.34129,3.06883 5.19944,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4222"
     d="m 470.90105,264.88851 c -2.85815,0 -5.17024,1.37236 -5.17024,3.06884 0,1.69648 2.31209,3.06883 5.17024,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4224"
     d="m 484.8928,264.88851 c -2.85814,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31209,3.06883 5.17023,3.06883 2.85815,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31208,-3.06884 -5.17023,-3.06884 z"
     style="fill:#afe478;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /><path
     id="path4226"
     d="m 498.88456,264.88851 c -2.85815,0 -5.17023,1.37236 -5.17023,3.06884 0,1.69648 2.31208,3.06883 5.17023,3.06883 2.85814,0 5.17023,-1.37235 5.17023,-3.06883 0,-1.69648 -2.31209,-3.06884 -5.17023,-3.06884 z"
     style="fill:#999999;fill-opacity:1;stroke-width:10.16819477;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:1;stroke-dasharray:10.16819477, 81.34555817;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /></g><rect
   style="fill:url(#linearGradient6744);fill-opacity:1;stroke:none"
   id="rect6728"
   width="283.13037"
   height="43.704079"
   x="227.34274"
   y="256.32147" /><g
   transform="matrix(0.59207878,0,0,0.35143336,349.96837,-162.35997)"
   id="g4480" /><g
   id="g5539"
   transform="matrix(0.68850366,0,0,0.40866716,0.18296913,-31.44899)"
   style="fill:#577632" /><g
   transform="matrix(0.59207878,0,0,0.35143336,-197.92653,-253.68871)"
   id="g4480-1" /><path
   inkscape:connector-curvature="0"
   id="path3708"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 103.23826,139.29803 c -2e-5,-0.83904 -0.12295,-1.54584 -0.36877,-2.12042 -0.24586,-0.58367 -0.56084,-1.06247 -0.94495,-1.43642 -0.36878,-0.3739 -0.77595,-0.66119 -1.22153,-0.86184 -0.43023,-0.20974 -0.83741,-0.36023 -1.221521,-0.45145 -0.384143,-0.1003 -0.706809,-0.15502 -0.968002,-0.16416 -0.245854,-0.0183 -0.376458,-0.0274 -0.391809,-0.0274 -1.060204,2e-5 -2.028204,0.1733 -2.904004,0.51984 -0.87582,0.33746 -1.62871,0.85731 -2.25867,1.55954 -0.614612,0.69314 -1.098612,1.56867 -1.452001,2.62658 -0.338039,1.04882 -0.507055,2.28003 -0.507049,3.69364 -6e-6,1.41362 0.153645,2.65395 0.460953,3.72099 0.32266,1.06705 0.768248,1.96082 1.336764,2.6813 0.5685,0.72049 1.252246,1.26314 2.05124,1.62794 0.81434,0.36481 1.72088,0.5472 2.719623,0.5472 0.752876,-0.0364 1.451988,-0.20064 2.097336,-0.49248 0.276557,-0.11856 0.55313,-0.2736 0.82971,-0.46513 0.29193,-0.19152 0.56082,-0.42864 0.80667,-0.71136 0.26119,-0.28272 0.49935,-0.61104 0.71448,-0.98497 0.21509,-0.38304 0.38411,-0.82537 0.50705,-1.32697 l 3.68762,0.16416 c -0.16903,0.68401 -0.42256,1.29049 -0.76057,1.81945 -0.33805,0.51986 -0.72986,0.97586 -1.17543,1.36802 -0.43024,0.38304 -0.89888,0.70681 -1.40591,0.97129 -0.4917,0.26448 -0.98338,0.48336 -1.47505,0.65665 -1.16776,0.40127 -2.427696,0.62928 -3.779811,0.684 -1.797728,0 -3.403378,-0.21432 -4.816958,-0.64296 -1.398231,-0.43777 -2.581343,-1.08074 -3.549338,-1.92891 -0.95264,-0.85728 -1.682482,-1.91977 -2.189527,-3.18746 -0.491685,-1.26769 -0.737526,-2.73146 -0.737525,-4.39132 -10e-7,-3.4565 0.991047,-6.06485 2.973147,-7.82504 1.982091,-1.76927 5.039743,-2.65392 9.172964,-2.65394 0.04608,2e-5 0.199732,0.005 0.460953,0.0137 0.276557,0.009 0.622272,0.0411 1.037144,0.0958 0.414841,0.0548 0.883481,0.14138 1.405911,0.25993 0.52239,0.10945 1.05249,0.27361 1.59028,0.49248 0.53776,0.2189 1.06018,0.4925 1.56724,0.8208 0.50703,0.32835 0.9603,0.73875 1.35982,1.23121 0.39947,0.48339 0.71445,1.05339 0.94495,1.71002 0.24582,0.65666 0.36874,1.41363 0.36876,2.27091 l -3.96419,0.13679" /><path
   inkscape:connector-curvature="0"
   id="path3710"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 126.99353,142.02037 c -2e-5,0.98498 -0.11526,1.94715 -0.34572,2.88651 -0.21513,0.93026 -0.53011,1.8149 -0.94495,2.65394 -0.39951,0.83906 -0.89888,1.6097 -1.4981,2.31195 -0.59925,0.70224 -1.27532,1.30873 -2.02819,1.81945 -0.73754,0.5016 -1.55957,0.89377 -2.4661,1.17649 -0.89119,0.29185 -1.84382,0.43777 -2.85791,0.43777 -1.02947,0 -1.97442,-0.14137 -2.83486,-0.42409 -0.84508,-0.28272 -1.61334,-0.67944 -2.30476,-1.19017 -0.67607,-0.51072 -1.27531,-1.11721 -1.79772,-1.81945 -0.50705,-0.70225 -0.93727,-1.47289 -1.29067,-2.31195 -0.33803,-0.83904 -0.59924,-1.72368 -0.78362,-2.65394 -0.16901,-0.93936 -0.25352,-1.90153 -0.25352,-2.88651 0,-1.4592 0.19206,-2.79529 0.57619,-4.00827 0.38413,-1.22208 0.97568,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.80539,-1.55495 3.01924,-2.03833 1.2292,-0.48334 2.6812,-0.72503 4.35601,-0.72505 1.76697,2e-5 3.26507,0.24171 4.49429,0.72505 1.22919,0.48338 2.22792,1.16283 2.99619,2.03833 0.76824,0.87555 1.32138,1.92436 1.65943,3.14644 0.35338,1.21298 0.53008,2.54907 0.5301,4.00827 m -4.28686,0.10945 c -2e-5,-1.21297 -0.0999,-2.32562 -0.29962,-3.33796 -0.1844,-1.01232 -0.4917,-1.87872 -0.92191,-2.59922 -0.43024,-0.72959 -0.99106,-1.29503 -1.68248,-1.69633 -0.67607,-0.40127 -1.50579,-0.60192 -2.48914,-0.60193 -0.92192,10e-6 -1.72859,0.20066 -2.42001,0.60193 -0.67607,0.4013 -1.23689,0.96674 -1.68247,1.69633 -0.4456,0.7205 -0.77595,1.5869 -0.99105,2.59922 -0.21512,1.01234 -0.32268,2.12499 -0.32267,3.33796 -10e-6,1.23122 0.10755,2.41227 0.32267,3.54315 0.2151,1.13089 0.53777,2.1341 0.968,3.00962 0.43021,0.86641 0.96799,1.55954 1.61333,2.07938 0.64533,0.51985 1.39053,0.77977 2.23563,0.77977 0.84506,0 1.61332,-0.25992 2.30476,-0.77977 0.70678,-0.51984 1.30602,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89116,-1.87873 1.15238,-3.00962 0.27655,-1.13088 0.41484,-2.31193 0.41486,-3.54315" /><path
   inkscape:connector-curvature="0"
   id="path3712"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 147.86784,132.97781 c -0.62999,3.25589 -1.12166,6.50719 -1.47504,9.75393 -0.33806,3.23763 -0.56085,6.50262 -0.66838,9.79497 l -3.66457,0 -8.64288,-13.63908 c -0.36877,4.52356 -0.5762,9.05168 -0.62228,13.58436 l -3.71068,0.0273 c 0.0307,-0.96673 0.0461,-1.93346 0.0461,-2.90018 0,-0.96673 0,-1.94258 0,-2.92755 0,-4.52356 -0.11523,-9.04255 -0.34571,-13.557 l 5.13963,0.0547 8.22801,14.70613 c 0.0614,-0.7296 0.11526,-1.5276 0.16134,-2.39402 0.0461,-0.87552 0.0845,-1.78753 0.11526,-2.73602 0.0461,-0.94849 0.0768,-1.91977 0.0922,-2.91387 0.0308,-0.99407 0.0461,-1.97448 0.0461,-2.94123 -1e-5,-0.68399 -0.008,-1.35431 -0.0231,-2.01098 -0.0154,-0.66575 -0.0384,-1.31327 -0.0692,-1.94258 l 5.39315,0.0411" /><path
   inkscape:connector-curvature="0"
   id="path3714"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 168.4195,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25354,0.93025 -0.0922,0.3557 -0.24585,0.72506 -0.46095,1.10809 l -4.26381,-0.34201 c 0.16901,-0.39214 0.29193,-0.76606 0.36877,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -2e-5,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68377,-0.90743 -1.17544,-1.24489 -0.49169,-0.33742 -1.06789,-0.58823 -1.72857,-0.75241 -0.64535,-0.17326 -1.3291,-0.2599 -2.05124,-0.25992 -0.86046,2e-5 -1.62102,0.13226 -2.28172,0.39672 -0.64535,0.25538 -1.1908,0.59739 -1.63638,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34572,1.62793 0,0.54722 0.15366,1.07163 0.46095,1.57321 0.32267,0.4925 0.7529,0.96218 1.29068,1.40906 0.55313,0.43777 1.19078,0.84818 1.91295,1.23121 0.72216,0.38305 1.49809,0.73418 2.32781,1.05337 1.42895,0.54721 2.63511,1.05338 3.61849,1.51849 0.99871,0.46514 1.80538,0.92114 2.42,1.36802 0.61458,0.43777 1.06017,0.87553 1.33677,1.31329 0.27655,0.43777 0.41483,0.90289 0.41485,1.39537 -2e-5,0.53809 -0.15367,1.0625 -0.46096,1.57322 -0.29195,0.51072 -0.76827,0.96216 -1.42894,1.35433 -0.66073,0.39216 -1.52117,0.7068 -2.58134,0.94392 -1.04485,0.23713 -2.32783,0.35569 -3.84896,0.35569 -1.47506,0 -2.81182,-0.1368 -4.0103,-0.4104 -1.18311,-0.28273 -2.19721,-0.67033 -3.04228,-1.16282 -0.82972,-0.49248 -1.47505,-1.07616 -1.93601,-1.75105 -0.44558,-0.684 -0.66838,-1.43185 -0.66838,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.17669,1.60514 0.5301,2.1341 0.36875,0.52896 0.80666,0.93025 1.31372,1.20385 0.5224,0.2736 1.06018,0.45145 1.61333,0.53353 0.5685,0.073 1.0525,0.10944 1.45201,0.10944 0.46094,0 0.95261,-0.0411 1.47504,-0.12312 0.53776,-0.0912 1.02945,-0.23713 1.47505,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12933,-0.80713 0.30729,-0.33744 0.46094,-0.7524 0.46095,-1.24489 -1e-5,-0.51072 -0.20744,-0.97584 -0.62227,-1.39537 -0.39951,-0.42864 -0.92961,-0.82992 -1.59029,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25868,-1.08073 -0.84509,-0.34655 -1.71322,-0.70224 -2.60437,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58135,-1.14913 -0.84508,-0.40128 -1.59797,-0.83904 -2.25867,-1.31329 -0.6607,-0.48336 -1.19848,-1.01688 -1.61334,-1.60058 -0.39949,-0.58367 -0.59924,-1.24031 -0.59924,-1.96994 0,-0.46511 0.0615,-0.94391 0.1844,-1.43641 0.13827,-0.49247 0.35338,-0.97127 0.64533,-1.43641 0.30729,-0.47423 0.70678,-0.91655 1.19847,-1.32697 0.50705,-0.41951 1.13702,-0.78431 1.88991,-1.09442 0.75289,-0.31006 1.63638,-0.5563 2.65048,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54934,-0.2736 1.39821,0.0183 2.61205,0.12769 3.64153,0.32832 1.02944,0.20066 1.90525,0.45603 2.62742,0.76608 0.72215,0.30099 1.30602,0.63843 1.75163,1.01234 0.44557,0.37394 0.79129,0.75242 1.03715,1.13545 0.24581,0.37394 0.41483,0.72962 0.50704,1.06705 0.0922,0.33746 0.13826,0.62017 0.13829,0.84817" /><path
   inkscape:connector-curvature="0"
   id="path3716"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 186.62029,133.03253 0,1.87417 -12.65316,0 0,8.34488 10.00268,0 0,2.02466 -10.14096,0 0,4.95221 12.26135,0 0,2.16146 -16.17945,0 0,-19.35738 16.70954,0" /><path
   inkscape:connector-curvature="0"
   id="path3718"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 199.03611,152.66351 -3.91809,-6.63486 c -0.76827,0.0547 -1.51348,0.0821 -2.23562,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18439,1e-5 -0.37645,-0.009 -0.57618,-0.0273 -0.0922,1.08529 -0.16903,2.16602 -0.23049,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23048,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18438,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32782,-0.41041 0.81434,-0.10942 1.59795,-0.1915 2.35086,-0.24624 0.76823,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64532,-0.0182 1.16773,-0.0274 1.56723,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14858,0.35568 1.32139,0.23714 2.47376,0.6293 3.45715,1.17649 0.98335,0.53811 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.87579,1.92892 0.87581,3.18747 -0.0768,0.83906 -0.37646,1.60971 -0.89886,2.31194 -0.52242,0.69314 -1.20617,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80541,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.16648,0.72506 -3.31886,0.97129 0.84508,1.15826 1.7593,2.30283 2.74268,3.43371 0.98335,1.13089 2.03585,2.26634 3.15753,3.40635 l -4.90916,0.24624 m -6.10762,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.484,5.19845 l 0.0461,0 c 1.69016,0 3.1191,-0.13679 4.28686,-0.4104 1.18311,-0.2736 2.15879,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.74519,-0.9348 0.94495,-1.35433 0.21509,-0.41951 0.34569,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11527,-0.60647 -0.25354,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64533,-1.16282 -0.27659,-0.40127 -0.66839,-0.76606 -1.17542,-1.0944 -0.50707,-0.33743 -1.14472,-0.61559 -1.91297,-0.83449 -0.76826,-0.21887 -1.70553,-0.32831 -2.8118,-0.32833 -0.76828,2e-5 -1.62104,0.0547 -2.5583,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3720"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 226.64036,132.93677 c -1.42897,3.24676 -2.75805,6.48439 -3.98725,9.71288 -1.21386,3.22853 -2.37392,6.48439 -3.48019,9.76761 l -5.94629,-0.0274 c -0.55315,-1.63249 -1.09861,-3.26042 -1.63639,-4.8838 -0.53778,-1.62336 -1.08325,-3.24674 -1.63638,-4.87012 -0.55315,-1.62337 -1.12934,-3.24219 -1.72857,-4.85645 -0.58387,-1.61423 -1.21385,-3.22849 -1.88992,-4.84276 l 4.30992,0.0684 c 0.82971,2.82724 1.7132,5.64534 2.65048,8.45432 0.93726,2.79988 1.95904,5.63166 3.06534,8.49536 1.01408,-2.84547 1.98208,-5.67269 2.904,-8.48168 0.92189,-2.81809 1.83612,-5.66355 2.74267,-8.5364 l 4.63258,0" /><path
   inkscape:connector-curvature="0"
   id="path3722"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 240.78476,152.69087 -1.12934,-3.66628 c -0.73753,-0.0182 -1.46738,-0.0319 -2.18952,-0.0411 -0.72217,-0.009 -1.45201,-0.0137 -2.18953,-0.0137 -0.78363,0 -1.57493,0.005 -2.3739,0.0137 -0.799,0.009 -1.59798,0.0228 -2.39695,0.0411 -0.19976,0.62018 -0.39183,1.23122 -0.5762,1.83314 -0.16903,0.60193 -0.33804,1.20385 -0.50705,1.80578 l -4.30992,0.0273 c 0.67607,-1.61426 1.30604,-3.24218 1.88992,-4.8838 0.59923,-1.64161 1.17542,-3.28779 1.72857,-4.93853 0.55313,-1.65072 1.0986,-3.30146 1.63639,-4.9522 0.53777,-1.65072 1.08323,-3.28777 1.63638,-4.91117 l 5.94629,-0.0684 c 1.10627,3.29237 2.26634,6.5984 3.4802,9.91809 1.22919,3.31972 2.55827,6.59839 3.98724,9.83601 l -4.63258,0 m -5.64667,-17.25063 c -0.73754,1.92435 -1.43665,3.85781 -2.09735,5.80037 -0.66069,1.93347 -1.30602,3.87604 -1.93599,5.82774 0.67606,0.0183 1.34444,0.0228 2.00514,0.0137 0.6607,-0.009 1.33676,-0.0137 2.0282,-0.0137 0.66068,0 1.30601,0.005 1.936,0.0137 0.62995,0.009 1.26761,0.005 1.91295,-0.0137 -0.61462,-1.96082 -1.2369,-3.90795 -1.86686,-5.84142 -0.62997,-1.93344 -1.29067,-3.86234 -1.98209,-5.78669" /><path
   inkscape:connector-curvature="0"
   id="path3724"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 264.8627,132.97781 c -0.62998,3.25589 -1.12167,6.50719 -1.47505,9.75393 -0.33806,3.23763 -0.56084,6.50262 -0.66838,9.79497 l -3.66458,0 -8.64286,-13.63908 c -0.36877,4.52356 -0.5762,9.05168 -0.62229,13.58436 l -3.71067,0.0273 c 0.0308,-0.96673 0.0461,-1.93346 0.0461,-2.90018 0,-0.96673 0,-1.94258 0,-2.92755 0,-4.52356 -0.11526,-9.04255 -0.34572,-13.557 l 5.13963,0.0547 8.22802,14.70613 c 0.0614,-0.7296 0.11526,-1.5276 0.16132,-2.39402 0.0461,-0.87552 0.0845,-1.78753 0.11526,-2.73602 0.0461,-0.94849 0.0768,-1.91977 0.0922,-2.91387 0.0308,-0.99407 0.0461,-1.97448 0.0461,-2.94123 -10e-6,-0.68399 -0.008,-1.35431 -0.0231,-2.01098 -0.0153,-0.66575 -0.0384,-1.31327 -0.0692,-1.94258 l 5.39315,0.0411" /><path
   inkscape:connector-curvature="0"
   id="path3726"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 282.74082,139.29803 c -10e-6,-0.83904 -0.12292,-1.54584 -0.36876,-2.12042 -0.24586,-0.58367 -0.56084,-1.06247 -0.94495,-1.43642 -0.36879,-0.3739 -0.77595,-0.66119 -1.22153,-0.86184 -0.43023,-0.20974 -0.83741,-0.36023 -1.22152,-0.45145 -0.38415,-0.1003 -0.70682,-0.15502 -0.96801,-0.16416 -0.24585,-0.0183 -0.37645,-0.0274 -0.39181,-0.0274 -1.0602,2e-5 -2.0282,0.1733 -2.90399,0.51984 -0.87583,0.33746 -1.62871,0.85731 -2.25867,1.55954 -0.61462,0.69314 -1.09861,1.56867 -1.45202,2.62658 -0.33803,1.04882 -0.50704,2.28003 -0.50704,3.69364 0,1.41362 0.15364,2.65395 0.46095,3.72099 0.32267,1.06705 0.76825,1.96082 1.33677,2.6813 0.5685,0.72049 1.25225,1.26314 2.05124,1.62794 0.81434,0.36481 1.72088,0.5472 2.71963,0.5472 0.75287,-0.0364 1.45199,-0.20064 2.09733,-0.49248 0.27656,-0.11856 0.55313,-0.2736 0.82972,-0.46513 0.29192,-0.19152 0.56081,-0.42864 0.80666,-0.71136 0.26119,-0.28272 0.49935,-0.61104 0.71448,-0.98497 0.21509,-0.38304 0.38411,-0.82537 0.50705,-1.32697 l 3.68762,0.16416 c -0.16903,0.68401 -0.42257,1.29049 -0.76057,1.81945 -0.33805,0.51986 -0.72986,0.97586 -1.17543,1.36802 -0.43024,0.38304 -0.89888,0.70681 -1.40591,0.97129 -0.4917,0.26448 -0.98339,0.48336 -1.47505,0.65665 -1.16777,0.40127 -2.4277,0.62928 -3.77981,0.684 -1.79773,0 -3.40338,-0.21432 -4.81696,-0.64296 -1.39823,-0.43777 -2.58135,-1.08074 -3.54934,-1.92891 -0.95264,-0.85728 -1.68249,-1.91977 -2.18953,-3.18746 -0.49167,-1.26769 -0.73752,-2.73146 -0.73752,-4.39132 0,-3.4565 0.99104,-6.06485 2.97315,-7.82504 1.98208,-1.76927 5.03974,-2.65392 9.17296,-2.65394 0.0461,2e-5 0.19973,0.005 0.46095,0.0137 0.27656,0.009 0.62228,0.0411 1.03715,0.0958 0.41484,0.0548 0.88347,0.14138 1.4059,0.25993 0.5224,0.10945 1.05249,0.27361 1.5903,0.49248 0.53775,0.2189 1.06016,0.4925 1.56723,0.8208 0.50703,0.32835 0.9603,0.73875 1.35982,1.23121 0.39947,0.48339 0.71445,1.05339 0.94494,1.71002 0.24583,0.65666 0.36875,1.41363 0.36877,2.27091 l -3.9642,0.13679" /><path
   inkscape:connector-curvature="0"
   id="path3728"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 306.21951,132.77261 c -1.24458,2.16148 -2.53525,4.28645 -3.87199,6.37494 -1.33679,2.08851 -2.76574,4.17701 -4.28687,6.2655 l -0.71447,7.14102 -3.29582,0 -0.34572,-7.00423 c -1.53651,-2.04289 -2.97314,-4.09946 -4.3099,-6.16973 -1.3214,-2.07936 -2.57365,-4.20434 -3.75678,-6.37494 l 5.32401,-0.17784 c 0.72216,1.87876 1.46737,3.73924 2.23563,5.58149 0.78362,1.83315 1.62869,3.67084 2.53524,5.51309 1.01409,-1.86048 1.95904,-3.7073 2.83486,-5.54045 0.8758,-1.84224 1.68246,-3.71185 2.42,-5.60885 l 5.23181,0" /><path
   inkscape:connector-curvature="0"
   id="path3730"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 334.81023,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25352,0.93025 -0.0922,0.3557 -0.24587,0.72506 -0.46096,1.10809 l -4.26381,-0.34201 c 0.169,-0.39214 0.29191,-0.76606 0.36875,-1.12176 0.0769,-0.36479 0.11527,-0.70679 0.11527,-1.02601 -2e-5,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68377,-0.90743 -1.17543,-1.24489 -0.4917,-0.33742 -1.06789,-0.58823 -1.72859,-0.75241 -0.64534,-0.17326 -1.32908,-0.2599 -2.05123,-0.25992 -0.86046,2e-5 -1.62103,0.13226 -2.28171,0.39672 -0.64534,0.25538 -1.19081,0.59739 -1.63639,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34571,1.62793 -10e-6,0.54722 0.15365,1.07163 0.46096,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55313,0.43777 1.19079,0.84818 1.91296,1.23121 0.72215,0.38305 1.49808,0.73418 2.32781,1.05337 1.42894,0.54721 2.6351,1.05338 3.61847,1.51849 0.99872,0.46514 1.80539,0.92114 2.42001,1.36802 0.61458,0.43777 1.06018,0.87553 1.33677,1.31329 0.27654,0.43777 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15368,1.0625 -0.46095,1.57322 -0.29197,0.51072 -0.76828,0.96216 -1.42897,1.35433 -0.66071,0.39216 -1.52115,0.7068 -2.58133,0.94392 -1.04485,0.23713 -2.32782,0.35569 -3.84895,0.35569 -1.47507,0 -2.81183,-0.1368 -4.0103,-0.4104 -1.18312,-0.28273 -2.19722,-0.67033 -3.04229,-1.16282 -0.82971,-0.49248 -1.47506,-1.07616 -1.93601,-1.75105 -0.44558,-0.684 -0.66838,-1.43185 -0.66838,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.17669,1.60514 0.53009,2.1341 0.36876,0.52896 0.80667,0.93025 1.31373,1.20385 0.5224,0.2736 1.06018,0.45145 1.61334,0.53353 0.56849,0.073 1.05249,0.10944 1.452,0.10944 0.46094,0 0.95262,-0.0411 1.47505,-0.12312 0.53776,-0.0912 1.02944,-0.23713 1.47504,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12934,-0.80713 0.30729,-0.33744 0.46093,-0.7524 0.46096,-1.24489 -3e-5,-0.51072 -0.20745,-0.97584 -0.6223,-1.39537 -0.3995,-0.42864 -0.9296,-0.82992 -1.59028,-1.20385 -0.66071,-0.37392 -1.41361,-0.73416 -2.25867,-1.08073 -0.84509,-0.34655 -1.71322,-0.70224 -2.60439,-1.06705 -0.87582,-0.3648 -1.73627,-0.74784 -2.58133,-1.14913 -0.84509,-0.40128 -1.59798,-0.83904 -2.25868,-1.31329 -0.6607,-0.48336 -1.19848,-1.01688 -1.61333,-1.60058 -0.39949,-0.58367 -0.59923,-1.24031 -0.59923,-1.96994 0,-0.46511 0.0615,-0.94391 0.18437,-1.43641 0.13829,-0.49247 0.35339,-0.97127 0.64533,-1.43641 0.3073,-0.47423 0.70679,-0.91655 1.19848,-1.32697 0.50704,-0.41951 1.13702,-0.78431 1.88991,-1.09442 0.75288,-0.31006 1.63638,-0.5563 2.65048,-0.73872 1.02946,-0.18239 2.21256,-0.27358 3.54934,-0.2736 1.39821,0.0183 2.61206,0.12769 3.64153,0.32832 1.02944,0.20066 1.90525,0.45603 2.62743,0.76608 0.72214,0.30099 1.30602,0.63843 1.75162,1.01234 0.44557,0.37394 0.79128,0.75242 1.03715,1.13545 0.24582,0.37394 0.41483,0.72962 0.50704,1.06705 0.0922,0.33746 0.13827,0.62017 0.13829,0.84817" /><path
   inkscape:connector-curvature="0"
   id="path3732"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 354.09426,143.70303 c -0.19976,1.5413 -0.53779,2.87739 -1.01408,4.00827 -0.47635,1.12178 -1.12936,2.05203 -1.95906,2.79075 -0.81436,0.72961 -1.82078,1.27225 -3.01924,1.62794 -1.18313,0.35568 -2.58904,0.53352 -4.21772,0.53352 -1.65944,0 -3.03461,-0.21432 -4.12552,-0.64297 -1.07558,-0.42864 -1.92834,-1.04424 -2.5583,-1.84681 -0.62997,-0.81169 -1.07556,-1.80122 -1.33676,-2.96859 -0.24584,-1.16736 -0.36877,-2.49434 -0.36876,-3.98092 0.0461,-1.12175 0.16133,-2.28457 0.34571,-3.48843 0.0768,-0.51071 0.16902,-1.05335 0.27657,-1.62794 0.12292,-0.58366 0.26121,-1.17647 0.41486,-1.77841 0.16901,-0.61103 0.36107,-1.22663 0.57619,-1.84682 0.21511,-0.62927 0.46095,-1.24487 0.73752,-1.84681 l 4.72477,0.42408 c -0.56852,1.66899 -1.00642,3.15556 -1.31371,4.45972 -0.30731,1.29506 -0.53011,2.43507 -0.66839,3.42003 -0.13828,0.97586 -0.22279,1.81035 -0.25352,2.50346 -0.0153,0.68402 -0.0231,1.25403 -0.0231,1.71002 0,1.11266 0.0692,2.0429 0.20743,2.79075 0.13829,0.73872 0.36107,1.33609 0.66838,1.79209 0.32267,0.44689 0.72984,0.76609 1.22153,0.95761 0.49168,0.19152 1.08323,0.28729 1.77467,0.28729 0.70679,0 1.37517,-0.12313 2.00514,-0.36937 0.64532,-0.25536 1.20615,-0.65208 1.68248,-1.19017 0.49167,-0.53808 0.87579,-1.23577 1.15238,-2.09306 0.29193,-0.85728 0.4379,-1.89697 0.43791,-3.11907 -10e-6,-0.79344 0.008,-1.65072 0.0231,-2.57186 0.0153,-0.93024 0.008,-1.88329 -0.0231,-2.85915 -0.0308,-0.98495 -0.0999,-1.97904 -0.20743,-2.98226 -0.1076,-1.0032 -0.29196,-1.98361 -0.55315,-2.94123 l 5.00134,-0.35569 c 0.21509,1.49572 0.36106,2.86829 0.43792,4.11772 0.0922,1.24947 0.13826,2.35756 0.13828,3.32427 -2e-5,0.60194 -0.008,1.13547 -0.0231,1.60057 -0.0153,0.45602 -0.0384,0.84362 -0.0692,1.16282 -0.0308,0.37393 -0.0615,0.70681 -0.0922,0.99865" /><path
   inkscape:connector-curvature="0"
   id="path3734"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 375.89049,138.99707 c -0.0615,0.76609 -0.31501,1.4729 -0.76057,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72218,0.52897 -1.55189,0.9941 -2.48915,1.39537 -0.93729,0.40129 -1.92833,0.73874 -2.97314,1.01233 -1.02948,0.27361 -2.08967,0.47881 -3.18058,0.61561 -1.09094,0.1368 -2.14344,0.20521 -3.15753,0.2052 -0.18439,1e-5 -0.36877,1e-5 -0.55315,0 -0.18437,1e-5 -0.37644,-0.009 -0.57618,-0.0273 -0.0922,1.08529 -0.16903,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45716,0 c 0.0922,-1.89698 0.16903,-3.78484 0.23048,-5.66358 0.0768,-1.88784 0.11527,-3.78938 0.11527,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18438,-4.1314 0.73753,-0.17327 1.51346,-0.31007 2.32782,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0182 1.16774,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84252,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.53811 1.75928,1.24491 2.32781,2.12042 0.58386,0.86643 0.8758,1.92892 0.87582,3.18747 m -14.2665,-4.91117 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.1191,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0154,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35342,-0.76152 -0.64534,-1.16282 -0.27659,-0.40127 -0.6684,-0.76606 -1.17543,-1.0944 -0.50706,-0.33743 -1.14472,-0.61559 -1.91295,-0.83449 -0.76828,-0.21887 -1.70554,-0.32831 -2.81182,-0.32833 -0.76826,2e-5 -1.62102,0.0547 -2.55829,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3736"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 396.23472,138.99707 c -0.0615,0.76609 -0.315,1.4729 -0.76057,2.12041 -0.44561,0.64754 -1.02948,1.23578 -1.75162,1.76474 -0.72217,0.52897 -1.5519,0.9941 -2.48914,1.39537 -0.9373,0.40129 -1.92835,0.73874 -2.97316,1.01233 -1.02946,0.27361 -2.08966,0.47881 -3.18057,0.61561 -1.09093,0.1368 -2.14345,0.20521 -3.15753,0.2052 -0.18438,1e-5 -0.36877,1e-5 -0.55314,0 -0.18439,1e-5 -0.37645,-0.009 -0.5762,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13828,3.22851 l -3.45715,0 c 0.0922,-1.89698 0.16901,-3.78484 0.23047,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.1076,-2.74514 -0.18439,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32781,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12039,-0.0958 0.64533,-0.0182 1.16774,-0.0274 1.56724,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45716,1.17649 0.98334,0.53811 1.75928,1.24491 2.32781,2.12042 0.58384,0.86643 0.87579,1.92892 0.8758,3.18747 m -14.26648,-4.91117 c -0.23049,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16903,1.73283 -0.33036,3.46564 -0.48401,5.19845 l 0.0461,0 c 1.69015,0 3.11911,-0.13679 4.28687,-0.4104 1.1831,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39053,-0.85272 1.82077,-1.32698 0.4302,-0.48335 0.74518,-0.9348 0.94494,-1.35433 0.2151,-0.41951 0.34571,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -1e-5,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64533,-1.16282 -0.27658,-0.40127 -0.66839,-0.76606 -1.17544,-1.0944 -0.50705,-0.33743 -1.14471,-0.61559 -1.91295,-0.83449 -0.76826,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.55828,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3738"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 415.91055,142.02037 c -2e-5,0.98498 -0.11526,1.94715 -0.34572,2.88651 -0.21513,0.93026 -0.53011,1.8149 -0.94494,2.65394 -0.39952,0.83906 -0.89888,1.6097 -1.49811,2.31195 -0.59925,0.70224 -1.27531,1.30873 -2.0282,1.81945 -0.73753,0.5016 -1.55956,0.89377 -2.46609,1.17649 -0.89118,0.29185 -1.84382,0.43777 -2.85791,0.43777 -1.02947,0 -1.97442,-0.14137 -2.83486,-0.42409 -0.84509,-0.28272 -1.61333,-0.67944 -2.30476,-1.19017 -0.67608,-0.51072 -1.27531,-1.11721 -1.79771,-1.81945 -0.50706,-0.70225 -0.93729,-1.47289 -1.29068,-2.31195 -0.33803,-0.83904 -0.59923,-1.72368 -0.78361,-2.65394 -0.16903,-0.93936 -0.25354,-1.90153 -0.25354,-2.88651 0,-1.4592 0.19207,-2.79529 0.5762,-4.00827 0.38413,-1.22208 0.97568,-2.27089 1.77467,-3.14644 0.79898,-0.8755 1.8054,-1.55495 3.01924,-2.03833 1.2292,-0.48334 2.6812,-0.72503 4.356,-0.72505 1.76698,2e-5 3.26507,0.24171 4.4943,0.72505 1.22919,0.48338 2.22792,1.16283 2.99619,2.03833 0.76824,0.87555 1.32139,1.92436 1.65943,3.14644 0.35338,1.21298 0.53008,2.54907 0.5301,4.00827 m -4.28687,0.10945 c -10e-6,-1.21297 -0.0999,-2.32562 -0.29961,-3.33796 -0.18439,-1.01232 -0.4917,-1.87872 -0.92191,-2.59922 -0.43024,-0.72959 -0.99106,-1.29503 -1.68248,-1.69633 -0.67608,-0.40127 -1.50579,-0.60192 -2.48915,-0.60193 -0.92192,10e-6 -1.72857,0.20066 -2.41999,0.60193 -0.67608,0.4013 -1.2369,0.96674 -1.68249,1.69633 -0.44559,0.7205 -0.77594,1.5869 -0.99104,2.59922 -0.21512,1.01234 -0.32268,2.12499 -0.32267,3.33796 -1e-5,1.23122 0.1076,2.41227 0.32267,3.54315 0.2151,1.13089 0.53776,2.1341 0.96799,3.00962 0.43022,0.86641 0.968,1.55954 1.61334,2.07938 0.64533,0.51985 1.39054,0.77977 2.23563,0.77977 0.84506,0 1.61331,-0.25992 2.30476,-0.77977 0.70678,-0.51984 1.30601,-1.21297 1.79772,-2.07938 0.50703,-0.87552 0.89115,-1.87873 1.15238,-3.00962 0.27655,-1.13088 0.41484,-2.31193 0.41485,-3.54315" /><path
   inkscape:connector-curvature="0"
   id="path3740"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 428.85649,152.66351 -3.9181,-6.63486 c -0.76827,0.0547 -1.51347,0.0821 -2.23563,0.0821 -0.18439,1e-5 -0.36877,1e-5 -0.55314,0 -0.18438,1e-5 -0.37644,-0.009 -0.57619,-0.0273 -0.0922,1.08529 -0.16902,2.16602 -0.23047,3.24219 -0.0461,1.06705 -0.0922,2.14322 -0.13829,3.22851 l -3.45716,0 c 0.0922,-1.89698 0.16903,-3.78484 0.23049,-5.66358 0.0768,-1.88784 0.11526,-3.78938 0.11526,-5.70461 0,-1.38624 -0.0231,-2.75881 -0.0692,-4.11771 -0.0461,-1.368 -0.10761,-2.74514 -0.18438,-4.1314 0.73752,-0.17327 1.51346,-0.31007 2.32781,-0.41041 0.81435,-0.10942 1.59797,-0.1915 2.35086,-0.24624 0.76825,-0.0547 1.47504,-0.0866 2.12038,-0.0958 0.64533,-0.0182 1.16775,-0.0274 1.56725,-0.0274 1.45967,1e-5 2.84253,0.11857 4.14857,0.35568 1.32138,0.23714 2.47377,0.6293 3.45714,1.17649 0.98335,0.53811 1.75929,1.24491 2.32782,2.12042 0.58385,0.86643 0.8758,1.92892 0.87581,3.18747 -0.0768,0.83906 -0.37647,1.60971 -0.89885,2.31194 -0.52244,0.69314 -1.20619,1.31786 -2.05124,1.87418 -0.8451,0.54721 -1.80543,1.02145 -2.88096,1.42273 -1.0602,0.40129 -2.1665,0.72506 -3.31886,0.97129 0.84506,1.15826 1.75928,2.30283 2.74266,3.43371 0.98335,1.13089 2.03587,2.26634 3.15753,3.40635 l -4.90914,0.24624 m -6.10764,-18.57761 c -0.23048,1.75108 -0.43023,3.49301 -0.59924,5.22581 -0.16902,1.73283 -0.33035,3.46564 -0.48399,5.19845 l 0.0461,0 c 1.69015,0 3.1191,-0.13679 4.28687,-0.4104 1.18309,-0.2736 2.15877,-0.6156 2.92705,-1.02601 0.7836,-0.4104 1.39052,-0.85272 1.82075,-1.32698 0.43022,-0.48335 0.7452,-0.9348 0.94496,-1.35433 0.2151,-0.41951 0.3457,-0.77063 0.39181,-1.05337 0.0461,-0.28271 0.0692,-0.43319 0.0692,-0.45144 -10e-6,-0.10031 -0.0153,-0.29183 -0.0461,-0.57457 -0.0308,-0.28271 -0.11526,-0.60647 -0.25352,-0.97128 -0.1383,-0.37391 -0.35341,-0.76152 -0.64534,-1.16282 -0.27659,-0.40127 -0.6684,-0.76606 -1.17543,-1.0944 -0.50705,-0.33743 -1.14471,-0.61559 -1.91295,-0.83449 -0.76827,-0.21887 -1.70553,-0.32831 -2.81181,-0.32833 -0.76827,2e-5 -1.62103,0.0547 -2.5583,0.16416" /><path
   inkscape:connector-curvature="0"
   id="path3742"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 452.6348,132.93677 -0.32267,1.91522 -7.23697,0 0,17.51056 -3.06533,0 0,-17.51056 -5.64668,0 0,-1.96995 16.27165,0.0547" /><path
   inkscape:connector-curvature="0"
   id="path3744"
   style="font-size:36.36539459px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#9cd5d3;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 472.05712,136.75353 c -0.0153,0.27361 -0.0537,0.56545 -0.11526,0.87552 -0.0615,0.2645 -0.146,0.57458 -0.25352,0.93025 -0.0923,0.3557 -0.24587,0.72506 -0.46095,1.10809 l -4.26382,-0.34201 c 0.169,-0.39214 0.29192,-0.76606 0.36876,-1.12176 0.0768,-0.36479 0.11526,-0.70679 0.11526,-1.02601 -10e-6,-0.65664 -0.14599,-1.2312 -0.4379,-1.7237 -0.29196,-0.49247 -0.68376,-0.90743 -1.17544,-1.24489 -0.49169,-0.33742 -1.06789,-0.58823 -1.72857,-0.75241 -0.64535,-0.17326 -1.3291,-0.2599 -2.05124,-0.25992 -0.86046,2e-5 -1.62102,0.13226 -2.28172,0.39672 -0.64533,0.25538 -1.19079,0.59739 -1.63638,1.02601 -0.4456,0.41954 -0.78363,0.89835 -1.0141,1.43642 -0.23048,0.52898 -0.34572,1.07162 -0.34572,1.62793 0,0.54722 0.15366,1.07163 0.46097,1.57321 0.32265,0.4925 0.75288,0.96218 1.29066,1.40906 0.55313,0.43777 1.19079,0.84818 1.91295,1.23121 0.72216,0.38305 1.49809,0.73418 2.32783,1.05337 1.42893,0.54721 2.63509,1.05338 3.61847,1.51849 0.99872,0.46514 1.80539,0.92114 2.42001,1.36802 0.61458,0.43777 1.06017,0.87553 1.33676,1.31329 0.27655,0.43777 0.41483,0.90289 0.41486,1.39537 -3e-5,0.53809 -0.15368,1.0625 -0.46096,1.57322 -0.29196,0.51072 -0.76827,0.96216 -1.42895,1.35433 -0.66071,0.39216 -1.52116,0.7068 -2.58134,0.94392 -1.04484,0.23713 -2.32782,0.35569 -3.84896,0.35569 -1.47505,0 -2.81182,-0.1368 -4.01028,-0.4104 -1.18313,-0.28273 -2.19722,-0.67033 -3.0423,-1.16282 -0.82971,-0.49248 -1.47505,-1.07616 -1.936,-1.75105 -0.44559,-0.684 -0.66839,-1.43185 -0.66839,-2.24354 l 4.33296,0.10944 c 0,0.89377 0.1767,1.60514 0.5301,2.1341 0.36875,0.52896 0.80667,0.93025 1.31372,1.20385 0.5224,0.2736 1.06018,0.45145 1.61333,0.53353 0.5685,0.073 1.0525,0.10944 1.45201,0.10944 0.46094,0 0.95261,-0.0411 1.47505,-0.12312 0.53775,-0.0912 1.02944,-0.23713 1.47504,-0.43777 0.46094,-0.20975 0.83739,-0.4788 1.12933,-0.80713 0.3073,-0.33744 0.46094,-0.7524 0.46097,-1.24489 -3e-5,-0.51072 -0.20746,-0.97584 -0.62229,-1.39537 -0.39951,-0.42864 -0.9296,-0.82992 -1.59029,-1.20385 -0.66071,-0.37392 -1.4136,-0.73416 -2.25867,-1.08073 -0.84509,-0.34655 -1.71321,-0.70224 -2.60438,-1.06705 -0.87583,-0.3648 -1.73627,-0.74784 -2.58134,-1.14913 -0.84508,-0.40128 -1.59798,-0.83904 -2.25868,-1.31329 -0.66069,-0.48336 -1.19847,-1.01688 -1.61332,-1.60058 -0.39949,-0.58367 -0.59924,-1.24031 -0.59924,-1.96994 0,-0.46511 0.0615,-0.94391 0.18438,-1.43641 0.13828,-0.49247 0.35339,-0.97127 0.64533,-1.43641 0.30729,-0.47423 0.70679,-0.91655 1.19848,-1.32697 0.50704,-0.41951 1.13701,-0.78431 1.88991,-1.09442 0.75288,-0.31006 1.63637,-0.5563 2.65047,-0.73872 1.02946,-0.18239 2.21257,-0.27358 3.54935,-0.2736 1.39821,0.0183 2.61204,0.12769 3.64152,0.32832 1.02944,0.20066 1.90525,0.45603 2.62744,0.76608 0.72213,0.30099 1.30601,0.63843 1.75161,1.01234 0.44557,0.37394 0.79129,0.75242 1.03715,1.13545 0.24581,0.37394 0.41484,0.72962 0.50704,1.06705 0.0922,0.33746 0.13826,0.62017 0.13829,0.84817" />
<path
   inkscape:connector-curvature="0"
   id="path3766"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 110.0279,156.9948 0,1.31917 -8.72774,0 0,5.85445 7.04059,0 0,1.4251 -7.18659,0 0,5.02636 -2.579387,0 0,-13.62508 11.453127,0" /><path
   inkscape:connector-curvature="0"
   id="path3768"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 118.62103,170.79321 -2.75783,-4.67009 c -0.54076,0.0385 -1.06529,0.0578 -1.57359,0.0578 -0.12979,0 -0.25957,0 -0.38934,0 -0.12979,0 -0.26498,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11897,1.5246 -0.16222,2.28209 -0.0324,0.75106 -0.0649,1.50855 -0.0973,2.27245 l -2.43338,0 c 0.0649,-1.33523 0.11896,-2.66403 0.16222,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0324,-0.9629 -0.0757,-1.93222 -0.12978,-2.90797 0.51912,-0.12195 1.06527,-0.21824 1.63847,-0.28887 0.5732,-0.0771 1.12476,-0.13479 1.65471,-0.17333 0.54074,-0.0385 1.03823,-0.0609 1.49247,-0.0674 0.45423,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00078,0.0835 2.92006,0.25035 0.93009,0.16692 1.74121,0.44295 2.43339,0.8281 0.69215,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61644,1.3577 0.61645,2.24356 -0.0541,0.59058 -0.26498,1.13303 -0.63268,1.6273 -0.36772,0.48788 -0.84899,0.92761 -1.4438,1.31918 -0.59484,0.38517 -1.27078,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52493,0.51035 -2.33605,0.68366 0.59482,0.81527 1.23831,1.6209 1.93048,2.41689 0.69215,0.796 1.43298,1.59521 2.22249,2.39764 l -3.4554,0.17332 m -4.29898,-13.07623 c -0.16223,1.23252 -0.30283,2.45862 -0.42179,3.67829 -0.11897,1.21968 -0.23252,2.43936 -0.34067,3.65903 l 0.0324,0 c 1.18965,0 2.19545,-0.0963 3.0174,-0.28887 0.83275,-0.19258 1.5195,-0.4333 2.06026,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34023 0.52452,-0.65798 0.66513,-0.95328 0.1514,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -10e-6,-0.0706 -0.0108,-0.2054 -0.0324,-0.40441 -0.0216,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45424,-0.81847 -0.19468,-0.28244 -0.47046,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54076,-0.15405 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
   inkscape:connector-curvature="0"
   id="path3770"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 137.09371,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.04058,0 0,1.4251 -7.13792,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
   inkscape:connector-curvature="0"
   id="path3772"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 149.98581,156.97554 0,1.31918 -8.90617,0 0,5.8737 7.04058,0 0,1.4251 -7.13792,0 0,3.48572 8.63039,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
   inkscape:connector-curvature="0"
   id="path3774"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 166.8614,166.62623 c -0.0162,0.48627 -0.0406,0.97013 -0.0729,1.45158 -0.0162,0.20703 -0.0324,0.42368 -0.0487,0.64997 -0.0162,0.22628 -0.0365,0.45497 -0.0609,0.68606 -0.0162,0.22629 -0.0406,0.45016 -0.0729,0.67163 -0.0244,0.22147 -0.0487,0.42849 -0.073,0.62107 l -1.66686,-0.0289 c 0.0162,-0.13962 0.0284,-0.27684 0.0365,-0.41165 0.008,-0.1348 0.0117,-0.26961 0.0117,-0.40442 -0.36502,0.2311 -0.7503,0.41165 -1.15585,0.54164 -0.40557,0.12999 -0.79086,0.22869 -1.15587,0.29609 -0.42179,0.0819 -0.83952,0.13481 -1.25318,0.15888 -0.0892,0.01 -0.1744,0.0145 -0.25551,0.0145 -0.0729,0 -0.15412,0 -0.24333,0 -0.5678,0 -1.11126,-0.0482 -1.63037,-0.14444 -0.51913,-0.0915 -0.98147,-0.2335 -1.38704,-0.42609 -0.39745,-0.19257 -0.71784,-0.4333 -0.96118,-0.72217 -0.23523,-0.29369 -0.35284,-0.63793 -0.35284,-1.03272 0,-0.34664 0.11357,-0.67162 0.34067,-0.97494 0.23523,-0.30813 0.55969,-0.57533 0.97335,-0.80162 0.4218,-0.23109 0.92875,-0.41404 1.52087,-0.54885 0.59212,-0.1348 1.24913,-0.20702 1.97104,-0.21666 0.0243,1e-5 0.16222,0.005 0.41368,0.0145 0.25144,0.01 0.55561,0.0409 0.91252,0.0939 0.365,0.0481 0.75433,0.12759 1.16803,0.23832 0.42177,0.10592 0.81112,0.25517 1.16801,0.44775 0,-0.21665 -0.008,-0.44534 -0.0243,-0.68607 -0.0162,-0.24072 -0.0567,-0.47663 -0.12162,-0.70773 -0.0568,-0.23591 -0.15008,-0.45978 -0.27985,-0.67163 -0.1298,-0.21183 -0.30823,-0.39719 -0.53534,-0.55608 -0.21901,-0.16368 -0.49885,-0.29126 -0.83952,-0.38275 -0.34068,-0.0963 -0.75435,-0.14443 -1.24102,-0.14443 -0.38123,0 -0.73001,0.0433 -1.04636,0.12999 -0.31634,0.0867 -0.59617,0.20462 -0.83951,0.35387 -0.24334,0.14925 -0.44612,0.32739 -0.60835,0.5344 -0.16223,0.20222 -0.28389,0.42128 -0.365,0.65718 l -2.04376,-0.39004 c 0.0974,-0.27442 0.23523,-0.51755 0.41368,-0.72939 0.18656,-0.21184 0.39339,-0.3972 0.62051,-0.55608 0.23522,-0.15887 0.48261,-0.29368 0.74218,-0.40442 0.26766,-0.11555 0.53128,-0.21183 0.79085,-0.28888 0.60834,-0.17813 1.26535,-0.28645 1.97104,-0.32498 0.97334,1e-5 1.79664,0.0867 2.46989,0.25999 0.67322,0.17333 1.21667,0.4285 1.63036,0.76551 0.42178,0.33702 0.72189,0.75347 0.90035,1.24937 0.18656,0.4959 0.27983,1.06883 0.27984,1.71877 m -1.89803,2.00766 c -2e-5,-0.0963 0.004,-0.19017 0.0117,-0.28164 0.008,-0.0963 0.0117,-0.18777 0.0117,-0.27444 -0.42991,-0.25998 -0.85575,-0.45737 -1.27753,-0.59218 -0.41368,-0.1348 -0.79084,-0.23591 -1.13151,-0.30332 -0.38936,-0.077 -0.76652,-0.12035 -1.13153,-0.12999 -0.5029,1e-5 -0.93685,0.0434 -1.30186,0.12999 -0.35689,0.0819 -0.65296,0.19259 -0.88818,0.3322 -0.22712,0.13963 -0.39746,0.29851 -0.51102,0.47664 -0.10539,0.17814 -0.15817,0.3635 -0.15817,0.55608 0,0.19739 0.0609,0.37553 0.18251,0.53441 0.12162,0.15889 0.29201,0.29369 0.51101,0.40442 0.22711,0.11073 0.49884,0.1974 0.81519,0.25999 0.32444,0.0578 0.6854,0.0867 1.08285,0.0867 0.38933,-0.0193 0.7949,-0.0722 1.21669,-0.15888 0.36501,-0.077 0.76651,-0.19499 1.20453,-0.35387 0.44611,-0.16369 0.90034,-0.39238 1.36269,-0.68607" /><path
   inkscape:connector-curvature="0"
   id="path3776"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 175.44643,170.70654 c -0.0649,-0.7318 -0.1298,-1.38899 -0.19467,-1.97155 -0.0567,-0.58736 -0.10955,-1.08807 -0.15817,-1.50212 -0.0567,-0.48145 -0.11358,-0.90995 -0.17034,-1.28548 -0.0649,-0.58255 -0.19062,-1.02067 -0.37718,-1.31436 -0.17846,-0.29849 -0.40963,-0.44775 -0.69351,-0.44775 -0.28391,0 -0.57185,0.10592 -0.86386,0.31776 -0.292,0.21184 -0.57995,0.49349 -0.86384,0.84495 -0.2839,0.35146 -0.55563,0.75347 -0.81519,1.20603 -0.25145,0.44775 -0.48667,0.90995 -0.70568,1.38658 -0.2109,0.47664 -0.39746,0.94846 -0.55968,1.41547 -0.15411,0.46701 -0.27173,0.88828 -0.35284,1.26381 l -1.66687,0.0289 c 0.0487,-0.79921 0.0731,-1.55749 0.0731,-2.27485 0,-0.75107 -0.0203,-1.43713 -0.0609,-2.05821 -0.0406,-0.62588 -0.0851,-1.16511 -0.13383,-1.61768 -0.0568,-0.52959 -0.1176,-1.00622 -0.18251,-1.42991 l 2.34821,0.0578 0,2.90316 c 0.18656,-0.31776 0.35285,-0.58497 0.49884,-0.80162 0.146,-0.21665 0.26767,-0.39238 0.36501,-0.52719 0.11357,-0.15887 0.20683,-0.28405 0.27984,-0.37553 0.21089,-0.23591 0.44207,-0.44534 0.69352,-0.6283 0.25144,-0.18776 0.51101,-0.34423 0.77868,-0.46942 0.27578,-0.12998 0.55156,-0.22867 0.82736,-0.29609 0.28388,-0.0674 0.55561,-0.10109 0.81517,-0.1011 0.25956,1e-5 0.5029,0.0337 0.73002,0.1011 0.22711,0.0674 0.42583,0.17333 0.59618,0.31776 0.17844,0.14445 0.32849,0.3298 0.45018,0.55608 0.1298,0.22147 0.2271,0.48868 0.292,0.80162 0.1298,0.51997 0.24334,1.08808 0.34067,1.70434 0.0892,0.5296 0.17034,1.14826 0.24335,1.85599 0.0729,0.70774 0.11759,1.46843 0.13383,2.28208 l -1.66686,0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3778"
   style="font-size:19.19739342px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 188.01003,160.24941 0,10.29825 -1.66687,0 0,-1.12659 c -0.16223,0.17332 -0.34068,0.32498 -0.53534,0.45497 -0.18657,0.12999 -0.38124,0.24313 -0.58401,0.33942 -0.2028,0.0963 -0.40963,0.17814 -0.62052,0.24554 -0.20279,0.0626 -0.40151,0.11555 -0.59618,0.15888 -0.44612,0.10111 -0.90847,0.15888 -1.38703,0.17333 -0.75436,0 -1.45598,-0.0987 -2.10488,-0.2961 -0.6489,-0.19739 -1.21264,-0.47905 -1.69119,-0.84495 -0.47047,-0.3659 -0.83952,-0.80884 -1.10719,-1.32881 -0.26768,-0.52477 -0.40152,-1.10973 -0.40152,-1.75488 0,-0.54886 0.10137,-1.06642 0.30418,-1.55269 0.21089,-0.48626 0.511,-0.91234 0.90035,-1.27826 0.39745,-0.36589 0.87602,-0.65476 1.43569,-0.8666 0.56779,-0.21665 1.20858,-0.32498 1.92238,-0.32499 0.60022,0.0145 1.17612,0.0795 1.7277,0.19499 0.23522,0.0482 0.4745,0.11074 0.71785,0.18777 0.25144,0.077 0.49478,0.17333 0.73001,0.28887 0.23522,0.11074 0.45423,0.24073 0.65703,0.38998 0.21088,0.14925 0.39337,0.32258 0.5475,0.51997 l 0,-3.83477 1.75204,-0.0434 m -1.84938,6.49237 c -0.0244,-0.39959 -0.1054,-0.75346 -0.24333,-1.06159 -0.1298,-0.31294 -0.29607,-0.58496 -0.49884,-0.81606 -0.2028,-0.2311 -0.43397,-0.42367 -0.69353,-0.57774 -0.25955,-0.15888 -0.52317,-0.28646 -0.79084,-0.38276 -0.26769,-0.0963 -0.53535,-0.16369 -0.80301,-0.20221 -0.26768,-0.0433 -0.51103,-0.065 -0.73002,-0.065 -0.57591,1e-5 -1.0707,0.077 -1.48436,0.2311 -0.41368,0.15407 -0.75436,0.37072 -1.02203,0.64996 -0.26767,0.27924 -0.46639,0.61385 -0.59618,1.00382 -0.12162,0.38998 -0.18251,0.82088 -0.18249,1.2927 -2e-5,0.55849 0.12162,1.03272 0.365,1.4227 0.25145,0.38516 0.55968,0.6981 0.92468,0.93882 0.37312,0.23592 0.77462,0.40683 1.20453,0.51275 0.438,0.10592 0.84357,0.15888 1.21669,0.15888 0.40556,0 0.80707,-0.0578 1.20452,-0.17332 0.39744,-0.12037 0.75435,-0.30572 1.07069,-0.55608 0.31634,-0.25517 0.57184,-0.57774 0.76651,-0.96772 0.19468,-0.38997 0.29201,-0.85939 0.29201,-1.40825" /><path
   inkscape:connector-curvature="0"
   id="path3780"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 209.5131,163.30182 c -1e-5,0.69329 -0.0811,1.37053 -0.24333,2.03172 -0.15143,0.65478 -0.37314,1.27746 -0.66512,1.86803 -0.28121,0.59058 -0.6327,1.13303 -1.05447,1.62731 -0.4218,0.49429 -0.89767,0.92118 -1.4276,1.28066 -0.51912,0.35307 -1.09773,0.6291 -1.7358,0.8281 -0.62729,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72462,0 -1.38975,-0.0995 -1.99537,-0.2985 -0.59484,-0.199 -1.13559,-0.47824 -1.62226,-0.83773 -0.47586,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90847,-1.62731 -0.23793,-0.59057 -0.42178,-1.21325 -0.55156,-1.86803 -0.1189,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13519,-1.96753 0.40557,-2.82132 0.27037,-0.86018 0.68675,-1.5984 1.24914,-2.21467 0.56237,-0.61625 1.27076,-1.09449 2.12514,-1.43473 0.86521,-0.34021 1.88723,-0.51033 3.06607,-0.51033 1.24372,0 2.29819,0.17012 3.1634,0.51033 0.86519,0.34024 1.56816,0.81848 2.10893,1.43473 0.54074,0.61627 0.93008,1.35449 1.16803,2.21467 0.24873,0.85379 0.3731,1.79422 0.37311,2.82132 m -3.01739,0.077 c -1e-5,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.1298,-0.71255 -0.3461,-1.32238 -0.6489,-1.82952 -0.30283,-0.51354 -0.69759,-0.91154 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42367 -1.75204,-0.42368 -0.6489,1e-5 -1.21669,0.14124 -1.70337,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31363,0.50714 -0.54615,1.11697 -0.69756,1.82952 -0.15143,0.71255 -0.22712,1.49571 -0.22712,2.34948 0,0.86662 0.0757,1.69793 0.22712,2.49392 0.15141,0.796 0.37851,1.50213 0.68135,2.11839 0.3028,0.60984 0.68133,1.09771 1.13557,1.46361 0.45423,0.36591 0.97876,0.54886 1.57358,0.54885 0.59483,1e-5 1.13558,-0.18294 1.62226,-0.54885 0.49749,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.3569,-0.61626 0.62726,-1.32239 0.81114,-2.11839 0.19465,-0.79599 0.29199,-1.6273 0.292,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3782"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 224.36814,161.1738 c -0.0432,0.53923 -0.22173,1.03673 -0.53535,1.4925 -0.31364,0.45578 -0.72462,0.86983 -1.23291,1.24214 -0.50832,0.37233 -1.09233,0.69972 -1.75204,0.98217 -0.65973,0.28245 -1.35729,0.51997 -2.09271,0.71254 -0.72461,0.19259 -1.47085,0.33703 -2.23871,0.43331 -0.76787,0.0963 -1.5087,0.14444 -2.22249,0.14444 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26497,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.52459 -0.16222,2.28208 -0.0325,0.75107 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16224,-3.98642 0.0541,-1.3288 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94184 -0.0487,-2.89834 -0.0325,-0.96289 -0.0757,-1.93221 -0.1298,-2.90797 0.51911,-0.12195 1.06528,-0.21824 1.63848,-0.28887 0.57319,-0.077 1.12475,-0.13479 1.65469,-0.17332 0.54075,-0.0385 1.03824,-0.0609 1.49248,-0.0674 0.45422,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92007,0.25035 0.93008,0.16693 1.7412,0.44295 2.43337,0.82811 0.69215,0.37875 1.23832,0.87625 1.63848,1.4925 0.41096,0.60985 0.61644,1.3577 0.61647,2.24356 m -10.04177,-3.45682 c -0.16223,1.23253 -0.30283,2.45862 -0.42179,3.67829 -0.11902,1.21968 -0.23252,2.43936 -0.34067,3.65903 l 0.0325,0 c 1.18965,0 2.19546,-0.0963 3.01741,-0.28887 0.83274,-0.19257 1.5195,-0.4333 2.06026,-0.72218 0.55156,-0.28886 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34022 0.52452,-0.65798 0.66513,-0.95328 0.15139,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30491 0.0487,-0.31776 0,-0.0706 -0.0104,-0.20541 -0.0324,-0.40442 -0.0217,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26318 -0.24876,-0.53601 -0.45424,-0.81847 -0.19468,-0.28244 -0.47046,-0.53921 -0.82735,-0.77032 -0.35691,-0.23751 -0.80573,-0.4333 -1.34647,-0.58737 -0.54077,-0.15406 -1.20048,-0.23109 -1.97915,-0.2311 -0.54077,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
   inkscape:connector-curvature="0"
   id="path3784"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 237.09803,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.0406,0 0,1.4251 -7.13794,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" /><path
   inkscape:connector-curvature="0"
   id="path3786"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 251.41773,156.93702 c -0.44343,2.29172 -0.78951,4.58022 -1.03825,6.86551 -0.23794,2.27887 -0.39475,4.577 -0.47045,6.89438 l -2.57939,0 -6.08345,-9.60015 c -0.25957,3.18401 -0.40557,6.37122 -0.43802,9.56164 l -2.61182,0.0193 c 0.0217,-0.68046 0.0325,-1.36091 0.0325,-2.04136 0,-0.68045 0,-1.36732 0,-2.06061 0,-3.184 -0.0811,-6.36479 -0.24333,-9.54238 l 3.61763,0.0385 5.79144,10.35122 c 0.0432,-0.51355 0.0811,-1.07524 0.11358,-1.68508 0.0325,-0.61626 0.0594,-1.25819 0.0811,-1.92581 0.0325,-0.6676 0.0541,-1.35126 0.0649,-2.05098 0.0215,-0.6997 0.0324,-1.38978 0.0324,-2.07025 -1e-5,-0.48144 -0.005,-0.95326 -0.0162,-1.41547 -0.0104,-0.46859 -0.027,-0.92437 -0.0487,-1.36732 l 3.79607,0.0289" /><path
   inkscape:connector-curvature="0"
   id="path3788"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 272.66123,159.59464 c -0.0104,0.19259 -0.0379,0.39801 -0.0811,0.61625 -0.0432,0.18618 -0.1028,0.40443 -0.17845,0.65477 -0.0649,0.25037 -0.17306,0.51036 -0.32445,0.77996 l -3.00117,-0.24073 c 0.1189,-0.27602 0.20547,-0.53921 0.25956,-0.78958 0.0541,-0.25677 0.0811,-0.49749 0.0811,-0.72217 -10e-6,-0.46219 -0.1028,-0.86661 -0.30823,-1.21326 -0.2055,-0.34663 -0.48128,-0.63872 -0.82735,-0.87625 -0.34609,-0.2375 -0.75166,-0.41403 -1.21668,-0.52959 -0.45425,-0.12196 -0.93552,-0.18294 -1.44381,-0.18295 -0.60565,1e-5 -1.14101,0.0931 -1.60605,0.27924 -0.45422,0.17975 -0.83817,0.42048 -1.15179,0.72217 -0.31364,0.29531 -0.55157,0.63232 -0.71379,1.01106 -0.16224,0.37233 -0.24335,0.75428 -0.24334,1.14585 -1e-5,0.38517 0.10812,0.75428 0.32445,1.10734 0.2271,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30814 0.83815,0.59701 1.34647,0.86661 0.50829,0.26962 1.05445,0.51677 1.63847,0.74144 1.00579,0.38516 1.85477,0.74144 2.54695,1.06882 0.70296,0.32739 1.27075,0.64836 1.70336,0.9629 0.43259,0.30813 0.74622,0.61627 0.94091,0.92439 0.19466,0.30813 0.29199,0.63552 0.29201,0.98217 -2e-5,0.37874 -0.10813,0.74785 -0.32446,1.10733 -0.2055,0.35949 -0.54077,0.67725 -1.00579,0.95327 -0.46506,0.27604 -1.07071,0.49751 -1.81693,0.66441 -0.73544,0.1669 -1.63849,0.25035 -2.70917,0.25035 -1.03824,0 -1.97915,-0.0963 -2.82272,-0.28887 -0.83276,-0.199 -1.54656,-0.47182 -2.14138,-0.81846 -0.58402,-0.34665 -1.03824,-0.75749 -1.3627,-1.23252 -0.31363,-0.48145 -0.47045,-1.00784 -0.47045,-1.57916 l 3.04985,0.077 c -10e-6,0.6291 0.12435,1.12981 0.37312,1.50212 0.25955,0.37233 0.56777,0.65478 0.92468,0.84736 0.3677,0.19258 0.74623,0.31776 1.13558,0.37554 0.40015,0.0514 0.74082,0.077 1.02201,0.077 0.32445,0 0.67053,-0.0289 1.03826,-0.0867 0.37851,-0.0642 0.7246,-0.1669 1.03824,-0.30813 0.32443,-0.14764 0.5894,-0.33701 0.7949,-0.56811 0.21629,-0.23751 0.32444,-0.52959 0.32445,-0.87624 -1e-5,-0.35948 -0.14601,-0.68687 -0.438,-0.98216 -0.28121,-0.30171 -0.65433,-0.58416 -1.11937,-0.84736 -0.46505,-0.26318 -0.99499,-0.51675 -1.5898,-0.76069 -0.59484,-0.24393 -1.20589,-0.49429 -1.83315,-0.75106 -0.61647,-0.25677 -1.22211,-0.52638 -1.81693,-0.80885 -0.59483,-0.28244 -1.12477,-0.59057 -1.58981,-0.92439 -0.46505,-0.34021 -0.84358,-0.71575 -1.13557,-1.12659 -0.2812,-0.41083 -0.4218,-0.87302 -0.4218,-1.38658 0,-0.32738 0.0432,-0.66439 0.1298,-1.01105 0.0974,-0.34663 0.24875,-0.68365 0.45423,-1.01105 0.2163,-0.3338 0.49749,-0.64513 0.84357,-0.93401 0.35689,-0.29528 0.80031,-0.55205 1.33025,-0.77033 0.52994,-0.21824 1.1518,-0.39156 1.8656,-0.51997 0.7246,-0.12837 1.55736,-0.19256 2.49826,-0.19258 0.98417,0.0129 1.83855,0.0899 2.56318,0.2311 0.7246,0.14124 1.34105,0.32099 1.84936,0.53922 0.5083,0.21186 0.91927,0.44937 1.23291,0.71256 0.31363,0.2632 0.55697,0.5296 0.73003,0.79921 0.17302,0.2632 0.29199,0.51356 0.35689,0.75106 0.0649,0.23753 0.0974,0.43653 0.0974,0.597" /><path
   inkscape:connector-curvature="0"
   id="path3790"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 286.59159,163.30182 c -10e-6,0.69329 -0.0811,1.37053 -0.24334,2.03172 -0.15143,0.65478 -0.37314,1.27746 -0.66513,1.86803 -0.28121,0.59058 -0.63269,1.13303 -1.05447,1.62731 -0.42179,0.49429 -0.89765,0.92118 -1.42758,1.28066 -0.51913,0.35307 -1.09773,0.6291 -1.73582,0.8281 -0.62727,0.20542 -1.29781,0.30813 -2.01159,0.30813 -0.72461,0 -1.38974,-0.0995 -1.99538,-0.2985 -0.59482,-0.199 -1.13557,-0.47824 -1.62225,-0.83773 -0.47587,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90846,-1.62731 -0.23793,-0.59057 -0.42179,-1.21325 -0.55156,-1.86803 -0.11903,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13518,-1.96753 0.40555,-2.82132 0.27039,-0.86018 0.68676,-1.5984 1.24914,-2.21467 0.56238,-0.61625 1.27076,-1.09449 2.12516,-1.43473 0.86519,-0.34021 1.88721,-0.51033 3.06606,-0.51033 1.24373,0 2.29819,0.17012 3.1634,0.51033 0.8652,0.34024 1.56817,0.81848 2.10894,1.43473 0.54073,0.61627 0.93008,1.35449 1.16802,2.21467 0.24874,0.85379 0.37311,1.79422 0.37312,2.82132 m -3.0174,0.077 c -2e-5,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.12979,-0.71255 -0.34609,-1.32238 -0.64891,-1.82952 -0.30283,-0.51354 -0.69757,-0.91154 -1.18424,-1.194 -0.47588,-0.28244 -1.05989,-0.42367 -1.75204,-0.42368 -0.64891,1e-5 -1.2167,0.14124 -1.70336,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31365,0.50714 -0.54617,1.11697 -0.69758,1.82952 -0.15141,0.71255 -0.22711,1.49571 -0.22711,2.34948 0,0.86662 0.0757,1.69793 0.22711,2.49392 0.15141,0.796 0.37853,1.50213 0.68135,2.11839 0.30282,0.60984 0.68135,1.09771 1.13558,1.46361 0.45423,0.36591 0.97875,0.54886 1.57359,0.54885 0.59483,1e-5 1.13557,-0.18294 1.62226,-0.54885 0.49747,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.35688,-0.61626 0.62726,-1.32239 0.81112,-2.11839 0.19466,-0.79599 0.29199,-1.6273 0.29201,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3792"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 300.6193,164.48619 c -0.14061,1.08487 -0.37855,2.0253 -0.7138,2.8213 -0.33528,0.78958 -0.79492,1.44436 -1.37892,1.96432 -0.57321,0.51355 -1.28159,0.89551 -2.12515,1.14586 -0.83277,0.25036 -1.82235,0.37554 -2.96873,0.37554 -1.16804,0 -2.13598,-0.15086 -2.90384,-0.45257 -0.75706,-0.30171 -1.35729,-0.73502 -1.8007,-1.29992 -0.44342,-0.57132 -0.75706,-1.26782 -0.94091,-2.0895 -0.17305,-0.82167 -0.25957,-1.75569 -0.25957,-2.80205 0.0325,-0.78958 0.11357,-1.60804 0.24335,-2.4554 0.0541,-0.35948 0.11889,-0.74143 0.19467,-1.14586 0.0866,-0.41083 0.18384,-0.82809 0.292,-1.25178 0.11903,-0.43008 0.25415,-0.86338 0.40557,-1.29992 0.1514,-0.44291 0.32445,-0.87623 0.51912,-1.29991 l 3.32562,0.2985 c -0.40016,1.17475 -0.70839,2.2211 -0.92468,3.13906 -0.21631,0.91156 -0.37312,1.71398 -0.47046,2.40726 -0.0974,0.68687 -0.15682,1.27425 -0.17844,1.76211 -0.0104,0.48146 -0.0162,0.88267 -0.0162,1.20363 0,0.78317 0.0487,1.43795 0.146,1.96432 0.0973,0.51997 0.25416,0.94044 0.47046,1.26141 0.22711,0.31455 0.51371,0.53923 0.8598,0.67403 0.34607,0.13481 0.76245,0.20222 1.24913,0.20221 0.49749,10e-6 0.96794,-0.0867 1.41137,-0.25998 0.45421,-0.17974 0.84897,-0.45898 1.18424,-0.83773 0.34608,-0.37874 0.61645,-0.86982 0.81113,-1.47324 0.20547,-0.60341 0.30822,-1.33522 0.30823,-2.19542 -1e-5,-0.55848 0.005,-1.1619 0.0162,-1.81026 0.0104,-0.65477 0.005,-1.32559 -0.0162,-2.01247 -0.0217,-0.69328 -0.0704,-1.39299 -0.14601,-2.09913 -0.0757,-0.70612 -0.20549,-1.3962 -0.38934,-2.07024 l 3.52029,-0.25035 c 0.1514,1.05278 0.25415,2.01889 0.30823,2.89834 0.0649,0.87946 0.0974,1.65941 0.0974,2.33985 -10e-6,0.42369 -0.005,0.79922 -0.0162,1.12659 -0.0104,0.32098 -0.027,0.5938 -0.0487,0.81847 -0.0217,0.26321 -0.0432,0.49751 -0.0649,0.70293" /><path
   inkscape:connector-curvature="0"
   id="path3794"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 310.21823,170.79321 -2.75785,-4.67009 c -0.54075,0.0385 -1.06528,0.0578 -1.57358,0.0578 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26497,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.5246 -0.16222,2.28209 -0.0324,0.75106 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16224,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 0,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0324,-0.9629 -0.0757,-1.93222 -0.1298,-2.90797 0.51911,-0.12195 1.06528,-0.21824 1.63848,-0.28887 0.57319,-0.0771 1.12475,-0.13479 1.65469,-0.17333 0.54075,-0.0385 1.03824,-0.0609 1.49248,-0.0674 0.45422,-0.0128 0.82194,-0.0193 1.10313,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92007,0.25035 0.93008,0.16692 1.7412,0.44295 2.43338,0.8281 0.69214,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61643,1.3577 0.61646,2.24356 -0.0541,0.59058 -0.265,1.13303 -0.63269,1.6273 -0.36772,0.48788 -0.84899,0.92761 -1.44381,1.31918 -0.59484,0.38517 -1.27077,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52492,0.51035 -2.33604,0.68366 0.59481,0.81527 1.23831,1.6209 1.93049,2.41689 0.69214,0.796 1.43297,1.59521 2.22248,2.39764 l -3.4554,0.17332 m -4.29897,-13.07623 c -0.16224,1.23252 -0.30284,2.45862 -0.4218,3.67829 -0.11902,1.21968 -0.23253,2.43936 -0.34066,3.65903 l 0.0324,0 c 1.18965,0 2.19544,-0.0963 3.0174,-0.28887 0.83274,-0.19258 1.51949,-0.4333 2.06026,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30281,-0.34023 0.52452,-0.65798 0.66513,-0.95328 0.1514,-0.29528 0.24332,-0.54242 0.27578,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -2e-5,-0.0706 -0.0104,-0.2054 -0.0324,-0.40441 -0.0217,-0.19899 -0.0811,-0.42688 -0.17845,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45424,-0.81847 -0.19469,-0.28244 -0.47047,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54077,-0.15405 -1.20048,-0.23108 -1.97915,-0.23109 -0.54076,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
   inkscape:connector-curvature="0"
   id="path3796"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 328.0582,161.38563 c -2e-5,-0.59057 -0.0866,-1.08806 -0.25956,-1.49249 -0.17306,-0.41083 -0.39477,-0.74785 -0.66513,-1.01106 -0.25958,-0.26318 -0.54617,-0.46538 -0.85979,-0.60662 -0.30283,-0.14763 -0.58944,-0.25355 -0.8598,-0.31776 -0.27039,-0.0706 -0.4975,-0.10912 -0.68135,-0.11555 -0.17304,-0.0128 -0.26498,-0.0193 -0.27578,-0.0193 -0.74625,2e-5 -1.42759,0.12198 -2.04404,0.36591 -0.61647,0.23752 -1.14641,0.60343 -1.58981,1.0977 -0.43262,0.48788 -0.77329,1.10415 -1.02203,1.84878 -0.23793,0.73823 -0.35689,1.60485 -0.35689,2.59984 0,0.99501 0.10812,1.86804 0.32445,2.6191 0.22711,0.75107 0.54074,1.38017 0.94091,1.88729 0.40015,0.50713 0.88142,0.88908 1.44381,1.14585 0.57319,0.25678 1.21127,0.38517 1.91426,0.38517 0.52993,-0.0257 1.022,-0.14123 1.47625,-0.34665 0.19465,-0.0834 0.38933,-0.19258 0.58401,-0.32739 0.20547,-0.1348 0.39474,-0.30171 0.56779,-0.50071 0.18384,-0.19899 0.35148,-0.43009 0.5029,-0.69329 0.1514,-0.2696 0.27037,-0.58095 0.35689,-0.93401 l 2.59561,0.11555 c -0.11902,0.48145 -0.29743,0.90834 -0.53533,1.28065 -0.23795,0.36591 -0.51373,0.68688 -0.82736,0.96291 -0.30284,0.26962 -0.63269,0.4975 -0.98957,0.68366 -0.34609,0.18616 -0.69218,0.34023 -1.03824,0.46219 -0.82196,0.28246 -1.70879,0.44294 -2.66051,0.48146 -1.26537,0 -2.39553,-0.15086 -3.39051,-0.45257 -0.98418,-0.30813 -1.81693,-0.76069 -2.49828,-1.35769 -0.67053,-0.60342 -1.18425,-1.35127 -1.54114,-2.24357 -0.34608,-0.89228 -0.51913,-1.92259 -0.51912,-3.09091 -1e-5,-2.43294 0.69757,-4.26887 2.09271,-5.50781 1.39514,-1.24535 3.54732,-1.86803 6.45658,-1.86804 0.0324,1e-5 0.14058,0.003 0.32445,0.01 0.19466,0.006 0.43799,0.0289 0.73001,0.0674 0.292,0.0385 0.62185,0.0995 0.98958,0.18295 0.36769,0.077 0.74081,0.19259 1.11936,0.34665 0.37851,0.15407 0.74622,0.34665 1.10312,0.57774 0.3569,0.23111 0.67594,0.51998 0.95713,0.86661 0.28119,0.34024 0.50289,0.74145 0.66514,1.20363 0.17302,0.4622 0.25955,0.99501 0.25956,1.59842 l -2.79028,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3798"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 343.65948,156.97554 0,1.31918 -8.90618,0 0,5.8737 7.0406,0 0,1.4251 -7.13794,0 0,3.48572 8.63041,0 0,1.52138 -11.38824,0 0,-13.62508 11.76135,0" /><path
   inkscape:connector-curvature="0"
   id="path3800"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 364.57855,159.59464 c -0.0104,0.19259 -0.0379,0.39801 -0.0811,0.61625 -0.0432,0.18618 -0.1028,0.40443 -0.17844,0.65477 -0.0649,0.25037 -0.17306,0.51036 -0.32446,0.77996 l -3.00116,-0.24073 c 0.11889,-0.27602 0.20547,-0.53921 0.25955,-0.78958 0.0541,-0.25677 0.0811,-0.49749 0.0811,-0.72217 -2e-5,-0.46219 -0.1028,-0.86661 -0.30823,-1.21326 -0.2055,-0.34663 -0.48128,-0.63872 -0.82735,-0.87625 -0.34609,-0.2375 -0.75166,-0.41403 -1.21669,-0.52959 -0.45424,-0.12196 -0.93552,-0.18294 -1.44381,-0.18295 -0.60565,1e-5 -1.141,0.0931 -1.60603,0.27924 -0.45424,0.17975 -0.83817,0.42048 -1.1518,0.72217 -0.31364,0.29531 -0.55158,0.63232 -0.7138,1.01106 -0.16223,0.37233 -0.24334,0.75428 -0.24333,1.14585 -10e-6,0.38517 0.10812,0.75428 0.32444,1.10734 0.22711,0.34665 0.52994,0.67725 0.90847,0.99179 0.38933,0.30814 0.83816,0.59701 1.34647,0.86661 0.50829,0.26962 1.05446,0.51677 1.63847,0.74144 1.00579,0.38516 1.85478,0.74144 2.54695,1.06882 0.70296,0.32739 1.27075,0.64836 1.70337,0.9629 0.43259,0.30813 0.74622,0.61627 0.9409,0.92439 0.19466,0.30813 0.292,0.63552 0.29201,0.98217 -1e-5,0.37874 -0.10812,0.74785 -0.32446,1.10733 -0.20549,0.35949 -0.54076,0.67725 -1.00579,0.95327 -0.46505,0.27604 -1.0707,0.49751 -1.81692,0.66441 -0.73544,0.1669 -1.6385,0.25035 -2.70918,0.25035 -1.03824,0 -1.97914,-0.0963 -2.82271,-0.28887 -0.83276,-0.199 -1.54656,-0.47182 -2.14139,-0.81846 -0.58401,-0.34665 -1.03824,-0.75749 -1.36268,-1.23252 -0.31365,-0.48145 -0.47047,-1.00784 -0.47047,-1.57916 l 3.04985,0.077 c -10e-6,0.6291 0.12435,1.12981 0.37312,1.50212 0.25956,0.37233 0.56778,0.65478 0.92468,0.84736 0.36771,0.19258 0.74624,0.31776 1.13558,0.37554 0.40015,0.0514 0.74082,0.077 1.02202,0.077 0.32444,0 0.67052,-0.0289 1.03825,-0.0867 0.37852,-0.0642 0.7246,-0.1669 1.03824,-0.30813 0.32445,-0.14764 0.5894,-0.33701 0.7949,-0.56811 0.2163,-0.23751 0.32444,-0.52959 0.32446,-0.87624 -2e-5,-0.35948 -0.14601,-0.68687 -0.43801,-0.98216 -0.2812,-0.30171 -0.65432,-0.58416 -1.11936,-0.84736 -0.46506,-0.26318 -0.995,-0.51675 -1.58981,-0.76069 -0.59484,-0.24393 -1.20589,-0.49429 -1.83315,-0.75106 -0.61646,-0.25677 -1.2221,-0.52638 -1.81693,-0.80885 -0.59482,-0.28244 -1.12476,-0.59057 -1.5898,-0.92439 -0.46506,-0.34021 -0.84359,-0.71575 -1.13558,-1.12659 -0.28119,-0.41083 -0.42179,-0.87302 -0.42179,-1.38658 0,-0.32738 0.0432,-0.66439 0.1298,-1.01105 0.0974,-0.34663 0.24874,-0.68365 0.45423,-1.01105 0.21629,-0.3338 0.49749,-0.64513 0.84357,-0.93401 0.35689,-0.29528 0.80031,-0.55205 1.33024,-0.77033 0.52994,-0.21824 1.15181,-0.39156 1.86561,-0.51997 0.72459,-0.12837 1.55735,-0.19256 2.49827,-0.19258 0.98416,0.0129 1.83854,0.0899 2.56316,0.2311 0.7246,0.14124 1.34105,0.32099 1.84937,0.53922 0.5083,0.21186 0.91926,0.44937 1.23291,0.71256 0.31363,0.2632 0.55696,0.5296 0.73002,0.79921 0.17302,0.2632 0.292,0.51356 0.35689,0.75106 0.0649,0.23753 0.0974,0.43653 0.0974,0.597" /><path
   inkscape:connector-curvature="0"
   id="path3802"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 378.50889,163.30182 c -1e-5,0.69329 -0.0811,1.37053 -0.24333,2.03172 -0.15144,0.65478 -0.37314,1.27746 -0.66512,1.86803 -0.28121,0.59058 -0.6327,1.13303 -1.05447,1.62731 -0.42181,0.49429 -0.89767,0.92118 -1.4276,1.28066 -0.51913,0.35307 -1.09773,0.6291 -1.7358,0.8281 -0.62729,0.20542 -1.29781,0.30813 -2.0116,0.30813 -0.72462,0 -1.38975,-0.0995 -1.99537,-0.2985 -0.59484,-0.199 -1.13559,-0.47824 -1.62226,-0.83773 -0.47586,-0.35948 -0.89765,-0.78637 -1.26536,-1.28066 -0.3569,-0.49428 -0.65972,-1.03673 -0.90847,-1.62731 -0.23793,-0.59057 -0.42178,-1.21325 -0.55156,-1.86803 -0.1189,-0.66119 -0.17845,-1.33843 -0.17845,-2.03172 0,-1.0271 0.13519,-1.96753 0.40557,-2.82132 0.27037,-0.86018 0.68675,-1.5984 1.24914,-2.21467 0.56237,-0.61625 1.27076,-1.09449 2.12514,-1.43473 0.86521,-0.34021 1.88723,-0.51033 3.06607,-0.51033 1.24372,0 2.29819,0.17012 3.16339,0.51033 0.8652,0.34024 1.56817,0.81848 2.10894,1.43473 0.54074,0.61627 0.93008,1.35449 1.16803,2.21467 0.24873,0.85379 0.3731,1.79422 0.37311,2.82132 m -3.01739,0.077 c -10e-6,-0.85377 -0.0703,-1.63693 -0.21089,-2.34948 -0.1298,-0.71255 -0.3461,-1.32238 -0.6489,-1.82952 -0.30283,-0.51354 -0.69759,-0.91154 -1.18425,-1.194 -0.47587,-0.28244 -1.05988,-0.42367 -1.75204,-0.42368 -0.6489,1e-5 -1.21671,0.14124 -1.70337,0.42368 -0.47587,0.28246 -0.87062,0.68046 -1.18425,1.194 -0.31363,0.50714 -0.54615,1.11697 -0.69756,1.82952 -0.15143,0.71255 -0.22712,1.49571 -0.22712,2.34948 0,0.86662 0.0757,1.69793 0.22712,2.49392 0.15141,0.796 0.37851,1.50213 0.68135,2.11839 0.3028,0.60984 0.68133,1.09771 1.13557,1.46361 0.45423,0.36591 0.97876,0.54886 1.57358,0.54885 0.59483,1e-5 1.13558,-0.18294 1.62226,-0.54885 0.49749,-0.3659 0.91927,-0.85377 1.26536,-1.46361 0.35689,-0.61626 0.62726,-1.32239 0.81114,-2.11839 0.19465,-0.79599 0.29199,-1.6273 0.292,-2.49392" /><path
   inkscape:connector-curvature="0"
   id="path3804"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 391.46591,156.9948 0,1.31917 -8.72774,0 0,5.85445 7.0406,0 0,1.4251 -7.1866,0 0,5.02636 -2.57938,0 0,-13.62508 11.45312,0" /><path
   inkscape:connector-curvature="0"
   id="path3806"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 402.47619,156.90813 -0.22711,1.34806 -5.09389,0 0,12.32517 -2.15759,0 0,-12.32517 -3.97454,0 0,-1.38657 11.45313,0.0385" /><path
   inkscape:connector-curvature="0"
   id="path3808"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 419.31039,156.60001 -2.62806,13.98135 -3.5203,0 -2.53072,-10.49565 -1.97915,10.45714 -3.89341,0 -2.75783,-13.71175 3.29317,0 1.46003,12.07481 2.28738,-11.32375 3.09852,0 2.67672,10.98674 1.13558,-11.96889 3.35807,0" /><path
   inkscape:connector-curvature="0"
   id="path3810"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 429.96379,170.81246 -0.7949,-2.58058 c -0.51914,-0.0129 -1.03286,-0.0225 -1.54115,-0.0289 -0.50831,-0.006 -1.02203,-0.01 -1.54114,-0.01 -0.55158,10e-6 -1.10855,0.003 -1.67093,0.01 -0.56239,0.006 -1.12477,0.016 -1.68714,0.0289 -0.1406,0.43652 -0.2758,0.86662 -0.40557,1.29029 -0.11902,0.42368 -0.23793,0.84736 -0.35689,1.27104 l -3.03362,0.0193 c 0.47586,-1.13623 0.91927,-2.28208 1.33025,-3.43757 0.42178,-1.15547 0.82735,-2.31417 1.21669,-3.47608 0.38934,-1.1619 0.77327,-2.3238 1.1518,-3.48571 0.37852,-1.16189 0.76246,-2.31417 1.15181,-3.45683 l 4.18541,-0.0481 c 0.77867,2.3174 1.59521,4.64442 2.4496,6.98105 0.8652,2.33666 1.80071,4.64441 2.80651,6.92328 l -3.26073,0 m -3.97453,-12.14221 c -0.51912,1.35449 -1.01121,2.7154 -1.47625,4.08271 -0.46506,1.36091 -0.91929,2.72823 -1.3627,4.10197 0.47586,0.0129 0.94632,0.016 1.41137,0.01 0.46504,-0.006 0.94089,-0.01 1.42758,-0.01 0.46504,0 0.91927,0.003 1.3627,0.01 0.44341,0.006 0.89222,0.003 1.34646,-0.01 -0.4326,-1.38016 -0.87062,-2.75069 -1.31402,-4.1116 -0.44342,-1.36089 -0.90847,-2.71859 -1.39514,-4.07308" /><path
   inkscape:connector-curvature="0"
   id="path3812"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 441.33096,170.79321 -2.75784,-4.67009 c -0.54075,0.0385 -1.06528,0.0578 -1.57358,0.0578 -0.1298,0 -0.25957,0 -0.38934,0 -0.1298,0 -0.26498,-0.006 -0.40557,-0.0193 -0.0649,0.76391 -0.11902,1.5246 -0.16222,2.28209 -0.0325,0.75106 -0.0649,1.50855 -0.0974,2.27245 l -2.43339,0 c 0.0649,-1.33523 0.11903,-2.66403 0.16222,-3.98642 0.0541,-1.32881 0.0811,-2.66724 0.0811,-4.01531 -10e-6,-0.97573 -0.0162,-1.94185 -0.0487,-2.89834 -0.0325,-0.9629 -0.0757,-1.93222 -0.12979,-2.90797 0.51912,-0.12195 1.06527,-0.21824 1.63848,-0.28887 0.5732,-0.0771 1.12476,-0.13479 1.6547,-0.17333 0.54075,-0.0385 1.03824,-0.0609 1.49247,-0.0674 0.45423,-0.0128 0.82195,-0.0193 1.10314,-0.0193 1.02742,2e-5 2.00077,0.0835 2.92006,0.25035 0.93008,0.16692 1.74121,0.44295 2.43339,0.8281 0.69214,0.37876 1.23831,0.87626 1.63848,1.49251 0.41095,0.60984 0.61643,1.3577 0.61645,2.24356 -0.0541,0.59058 -0.26499,1.13303 -0.63268,1.6273 -0.36773,0.48788 -0.84899,0.92761 -1.44381,1.31918 -0.59484,0.38517 -1.27077,0.71898 -2.02782,1.00142 -0.74625,0.28246 -1.52493,0.51035 -2.33604,0.68366 0.59481,0.81527 1.23831,1.6209 1.93047,2.41689 0.69216,0.796 1.43299,1.59521 2.2225,2.39764 l -3.45541,0.17332 m -4.29898,-13.07623 c -0.16222,1.23252 -0.30282,2.45862 -0.42178,3.67829 -0.11902,1.21968 -0.23253,2.43936 -0.34068,3.65903 l 0.0324,0 c 1.18965,0 2.19545,-0.0963 3.01739,-0.28887 0.83276,-0.19258 1.51951,-0.4333 2.06027,-0.72218 0.55156,-0.28887 0.97875,-0.6002 1.28158,-0.93401 0.30282,-0.34023 0.52453,-0.65798 0.66512,-0.95328 0.15141,-0.29528 0.24334,-0.54242 0.2758,-0.74143 0.0324,-0.199 0.0487,-0.30492 0.0487,-0.31777 -1e-5,-0.0706 -0.0104,-0.2054 -0.0325,-0.40441 -0.0217,-0.19899 -0.0811,-0.42688 -0.17844,-0.68366 -0.0974,-0.26319 -0.24876,-0.53601 -0.45423,-0.81847 -0.19469,-0.28244 -0.47047,-0.53922 -0.82735,-0.77032 -0.3569,-0.23751 -0.80573,-0.4333 -1.34647,-0.58738 -0.54077,-0.15405 -1.20048,-0.23108 -1.97916,-0.23109 -0.54075,1e-5 -1.14099,0.0385 -1.8007,0.11555" /><path
   inkscape:connector-curvature="0"
   id="path3814"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afe478;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 459.80364,156.97554 0,1.31918 -8.90619,0 0,5.8737 7.04059,0 0,1.4251 -7.13792,0 0,3.48572 8.6304,0 0,1.52138 -11.38824,0 0,-13.62508 11.76136,0" />
<path
   inkscape:connector-curvature="0"
   id="path3842"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 185.22417,194.40963 c 0,0.11555 -0.0379,0.22468 -0.11357,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32445,0.26962 -0.12979,0.077 -0.28119,0.13802 -0.45424,0.18295 -0.17303,0.0449 -0.35689,0.0674 -0.55156,0.0674 -0.40016,0 -0.74082,-0.0802 -1.02202,-0.24073 -0.27038,-0.1669 -0.40557,-0.36911 -0.40557,-0.60663 0,-0.11554 0.0379,-0.22146 0.11358,-0.31775 0.0757,-0.10271 0.17844,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.28118,-0.13801 0.45423,-0.18295 0.17303,-0.0449 0.35689,-0.0674 0.55156,-0.0674 0.19467,0 0.37853,0.0225 0.55157,0.0674 0.17304,0.0449 0.32445,0.10592 0.45424,0.18295 0.14058,0.0707 0.24874,0.15728 0.32444,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
   inkscape:connector-curvature="0"
   id="path3844"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 189.96116,194.40963 c -1e-5,0.11555 -0.0379,0.22468 -0.11357,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32446,0.26962 -0.12979,0.077 -0.28119,0.13802 -0.45422,0.18295 -0.17305,0.0449 -0.35691,0.0674 -0.55157,0.0674 -0.40016,0 -0.74083,-0.0802 -1.02203,-0.24073 -0.27037,-0.1669 -0.40555,-0.36911 -0.40555,-0.60663 0,-0.11554 0.0379,-0.22146 0.11357,-0.31775 0.0757,-0.10271 0.17846,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.2812,-0.13801 0.45423,-0.18295 0.17305,-0.0449 0.35691,-0.0674 0.55158,-0.0674 0.19466,0 0.37852,0.0225 0.55156,0.0674 0.17304,0.0449 0.32445,0.10592 0.45423,0.18295 0.1406,0.0707 0.24875,0.15728 0.32446,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
   inkscape:connector-curvature="0"
   id="path3846"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 194.69815,194.40963 c 0,0.11555 -0.0379,0.22468 -0.11358,0.32738 -0.0757,0.10272 -0.18386,0.19259 -0.32444,0.26962 -0.1298,0.077 -0.2812,0.13802 -0.45424,0.18295 -0.17304,0.0449 -0.3569,0.0674 -0.55157,0.0674 -0.40015,0 -0.74083,-0.0802 -1.02201,-0.24073 -0.27039,-0.1669 -0.40557,-0.36911 -0.40557,-0.60663 0,-0.11554 0.0379,-0.22146 0.11357,-0.31775 0.0757,-0.10271 0.17845,-0.18937 0.30823,-0.25999 0.1298,-0.077 0.28119,-0.13801 0.45423,-0.18295 0.17304,-0.0449 0.3569,-0.0674 0.55157,-0.0674 0.19467,0 0.37853,0.0225 0.55156,0.0674 0.17305,0.0449 0.32446,0.10592 0.45424,0.18295 0.14059,0.0707 0.24873,0.15728 0.32445,0.25999 0.0757,0.0963 0.11357,0.20221 0.11357,0.31775" /><path
   inkscape:connector-curvature="0"
   id="path3848"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 201.2845,181.41043 -0.0649,3.19684 3.22829,0 0,1.22288 -3.26074,0 -0.2271,9.44609 -1.99538,0 -0.12979,-9.44609 -3.65008,0 0,-1.22288 3.65008,0 -0.0325,-3.29313 2.48205,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3850"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 214.3006,195.19921 c -0.0866,-0.97574 -0.17306,-1.84236 -0.25957,-2.59984 -0.0757,-0.7639 -0.14601,-1.40904 -0.21088,-1.93544 -0.0757,-0.61625 -0.15142,-1.15548 -0.22712,-1.61767 -0.0973,-0.77674 -0.26498,-1.3609 -0.5029,-1.75249 -0.23794,-0.39799 -0.54617,-0.59699 -0.92469,-0.597 -0.3569,1e-5 -0.73002,0.13802 -1.11935,0.41405 -0.37854,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37854,0.45578 -0.74624,0.97895 -1.10314,1.56953 -0.34608,0.58416 -0.66512,1.18759 -0.95713,1.81026 -0.28119,0.62268 -0.52994,1.23573 -0.74623,1.83914 -0.21631,0.60342 -0.37853,1.15228 -0.48668,1.64657 l -2.1576,0.0481 c -1e-5,-2.28529 -0.027,-4.28491 -0.0811,-5.99889 -0.0432,-1.71396 -0.0919,-3.14226 -0.146,-4.28491 -0.0541,-1.14264 -0.10812,-1.99963 -0.16222,-2.57096 -0.0432,-0.57131 -0.0703,-0.85697 -0.0811,-0.85698 l 2.79028,0.077 0,8.03061 c 0.23793,-0.39157 0.47045,-0.73501 0.69757,-1.03031 0.22711,-0.29528 0.4272,-0.54242 0.60024,-0.74143 0.19466,-0.23109 0.38393,-0.43009 0.56779,-0.597 0.32444,-0.30812 0.66511,-0.58415 1.02202,-0.82809 0.35689,-0.24394 0.7192,-0.44936 1.08691,-0.61627 0.37852,-0.17331 0.74623,-0.3049 1.10313,-0.39479 0.36771,-0.0899 0.7246,-0.13479 1.07069,-0.1348 0.68134,1e-5 1.23832,0.18938 1.67092,0.56811 0.43259,0.37233 0.75164,0.96613 0.95713,1.78137 0.17304,0.65479 0.32444,1.38017 0.45424,2.17616 0.1189,0.68046 0.2271,1.48288 0.32445,2.40727 0.0973,0.92439 0.15681,1.92901 0.17844,3.01388 l -2.22248,0.077" /><path
   inkscape:connector-curvature="0"
   id="path3852"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 230.31787,189.91287 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93543 -0.0217,0.27604 -0.0432,0.56491 -0.0649,0.86662 -0.0217,0.30171 -0.0487,0.60662 -0.0811,0.91476 -0.0217,0.3017 -0.0541,0.60021 -0.0974,0.8955 -0.0324,0.29529 -0.0649,0.57132 -0.0974,0.82809 l -2.22248,-0.0385 c 0.0215,-0.18616 0.0378,-0.36911 0.0487,-0.54885 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.00041,0.54886 -1.54115,0.72218 -0.54076,0.17332 -1.05448,0.30492 -1.54114,0.39479 -0.56239,0.10912 -1.11937,0.17974 -1.67092,0.21184 -0.11902,0.0129 -0.23253,0.0193 -0.34068,0.0193 -0.0974,-1e-5 -0.20548,-1e-5 -0.32444,0 -0.75706,-1e-5 -1.48167,-0.0642 -2.17384,-0.19259 -0.69216,-0.12196 -1.30861,-0.31133 -1.84936,-0.56811 -0.52994,-0.25678 -0.95713,-0.57774 -1.28159,-0.9629 -0.31363,-0.39158 -0.47045,-0.85056 -0.47045,-1.37696 0,-0.46218 0.15141,-0.8955 0.45423,-1.29992 0.31364,-0.41083 0.74623,-0.7671 1.29781,-1.06882 0.56238,-0.30812 1.23831,-0.55206 2.02782,-0.7318 0.78949,-0.17975 1.66551,-0.27603 2.62805,-0.28888 0.0325,1e-5 0.2163,0.006 0.55157,0.0193 0.33526,0.0129 0.74082,0.0546 1.2167,0.12518 0.48666,0.0642 1.00578,0.17011 1.55735,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -1e-5,-0.28887 -0.0104,-0.59379 -0.0324,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94365 -0.0757,-0.31454 -0.20008,-0.61304 -0.37312,-0.8955 -0.17304,-0.28244 -0.41098,-0.52959 -0.7138,-0.74143 -0.292,-0.21826 -0.66512,-0.38837 -1.11935,-0.51034 -0.45424,-0.12838 -1.0058,-0.19258 -1.6547,-0.19258 -0.5083,0 -0.97336,0.0578 -1.39514,0.17332 -0.42179,0.11556 -0.79491,0.27283 -1.11935,0.47182 -0.32446,0.19901 -0.59484,0.43653 -0.81113,0.71255 -0.21631,0.26963 -0.37853,0.5617 -0.48668,0.87624 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55157,-0.97254 0.24874,-0.28244 0.52453,-0.52958 0.82734,-0.74143 0.31365,-0.21183 0.6435,-0.39157 0.98959,-0.53923 0.35689,-0.15405 0.70838,-0.28244 1.05446,-0.38516 0.81112,-0.2375 1.68714,-0.38194 2.62806,-0.43331 1.29779,2e-5 2.39552,0.11556 3.29317,0.34665 0.89764,0.2311 1.62225,0.57133 2.17382,1.02068 0.56238,0.44936 0.96253,1.00463 1.20048,1.66582 0.24873,0.6612 0.3731,1.4251 0.37312,2.29171 m -2.53073,2.67687 c -1e-5,-0.12838 0.005,-0.25356 0.0162,-0.37553 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.36591 -0.57321,-0.34663 -1.141,-0.60983 -1.70336,-0.78958 -0.55158,-0.17973 -1.05448,-0.31454 -1.5087,-0.40442 -0.51914,-0.1027 -1.02203,-0.16048 -1.50871,-0.17332 -0.67053,10e-6 -1.24913,0.0578 -1.7358,0.17332 -0.47588,0.10914 -0.87062,0.25679 -1.18425,0.44294 -0.30283,0.18616 -0.52994,0.39801 -0.68135,0.63552 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74143 0,0.2632 0.0811,0.50072 0.24335,0.71256 0.16222,0.21183 0.38933,0.39157 0.68135,0.53922 0.3028,0.14764 0.66511,0.26319 1.0869,0.34664 0.43261,0.0771 0.91387,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05987,-0.0963 1.62226,-0.21183 0.48666,-0.10272 1.02201,-0.25999 1.60603,-0.47183 0.59482,-0.21825 1.20046,-0.52317 1.81692,-0.91476" /><path
   inkscape:connector-curvature="0"
   id="path3854"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 235.80669,181.41043 -0.0649,3.19684 3.22829,0 0,1.22288 -3.26074,0 -0.22712,9.44609 -1.99537,0 -0.1298,-9.44609 -3.65008,0 0,-1.22288 3.65008,0 -0.0324,-3.29313 2.48205,0.0963" /><path
   inkscape:connector-curvature="0"
   id="path3856"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 240.38706,186.26347 -1.5736,0 -0.69756,-5.0071 2.27116,0 0,5.0071" /><path
   inkscape:connector-curvature="0"
   id="path3858"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 250.53175,188.35297 c 0.0217,-0.0578 0.0325,-0.11555 0.0325,-0.17333 -1e-5,-0.0642 -1e-5,-0.13159 0,-0.20221 -1e-5,-0.32738 -0.0811,-0.6323 -0.24333,-0.91475 -0.15143,-0.28887 -0.37313,-0.53923 -0.66513,-0.75107 -0.2812,-0.21825 -0.62729,-0.38836 -1.03825,-0.51034 -0.41098,-0.12837 -0.86521,-0.19257 -1.36269,-0.19258 -0.57321,1e-5 -1.09233,0.0449 -1.55737,0.13481 -0.46505,0.0835 -0.8652,0.20864 -1.20046,0.37553 -0.32446,0.16691 -0.57861,0.37554 -0.76247,0.62588 -0.18386,0.24395 -0.27578,0.52961 -0.27578,0.85699 0,0.18617 0.0757,0.37875 0.22712,0.57774 0.16222,0.19259 0.40015,0.37554 0.71379,0.54886 0.31364,0.17333 0.69757,0.32739 1.15179,0.46219 0.46504,0.13481 1.0058,0.2311 1.62227,0.28887 1.15719,0.11556 2.09811,0.28567 2.82272,0.51034 0.73541,0.21826 1.30861,0.46541 1.71959,0.74144 0.42178,0.27603 0.70837,0.56169 0.8598,0.85698 0.15139,0.29529 0.2271,0.57133 0.22712,0.8281 -2e-5,0.16048 -0.0325,0.34344 -0.0974,0.54886 -0.0541,0.20541 -0.16225,0.41725 -0.32446,0.63551 -0.16223,0.21826 -0.38935,0.43331 -0.68135,0.64514 -0.28119,0.20542 -0.64891,0.39158 -1.10312,0.55849 -0.45425,0.16048 -1.00041,0.29208 -1.63848,0.39479 -0.62729,0.10271 -1.37353,0.15406 -2.23872,0.15406 -0.0866,0 -0.2812,-0.006 -0.58402,-0.0193 -0.292,-0.0129 -0.6435,-0.0546 -1.05446,-0.12518 -0.40016,-0.0706 -0.83276,-0.17654 -1.2978,-0.31776 -0.45424,-0.14122 -0.88683,-0.34022 -1.2978,-0.597 -0.41098,-0.25678 -0.77329,-0.58095 -1.08692,-0.97253 -0.30282,-0.39158 -0.5029,-0.86982 -0.60024,-1.43472 l 2.6605,-0.0867 c 0.0757,0.37233 0.2109,0.68366 0.40557,0.93402 0.20548,0.25035 0.438,0.45898 0.69757,0.62589 0.27037,0.16048 0.54615,0.28566 0.82735,0.37553 0.29201,0.0899 0.56238,0.15727 0.81113,0.2022 0.25955,0.0385 0.47586,0.061 0.6489,0.0674 0.18385,0.006 0.292,0.01 0.32446,0.01 0.45421,-0.006 0.86519,-0.0514 1.23291,-0.13481 0.37852,-0.0899 0.69756,-0.20221 0.95713,-0.33702 0.25955,-0.1348 0.45963,-0.28886 0.60023,-0.46219 0.14058,-0.17974 0.21088,-0.36269 0.21089,-0.54886 -1e-5,-0.16048 -0.0487,-0.31775 -0.14599,-0.47182 -0.0974,-0.15406 -0.28121,-0.2985 -0.55158,-0.4333 -0.25957,-0.14122 -0.62186,-0.26962 -1.0869,-0.38516 -0.45424,-0.11555 -1.04367,-0.21826 -1.76827,-0.30814 -1.16802,-0.1348 -2.13056,-0.3338 -2.88762,-0.59699 -0.74623,-0.26961 -1.34106,-0.56169 -1.78447,-0.87625 -0.44342,-0.32096 -0.75165,-0.64514 -0.92468,-0.97253 -0.17305,-0.32738 -0.25957,-0.62267 -0.25956,-0.88587 -1e-5,-0.39157 0.11357,-0.78957 0.34067,-1.194 0.2271,-0.41083 0.59482,-0.78316 1.10312,-1.11697 0.51913,-0.34022 1.19507,-0.61625 2.02783,-0.8281 0.83276,-0.21825 1.86019,-0.32737 3.08229,-0.32738 1.1572,0.0449 2.19003,0.20222 3.09851,0.47182 0.38933,0.11556 0.76785,0.2632 1.13558,0.44293 0.3785,0.17334 0.71377,0.38838 1.00579,0.64515 0.29199,0.25679 0.52451,0.55849 0.69757,0.90513 0.18385,0.34023 0.27577,0.73502 0.27579,1.18437 -2e-5,0.0963 -0.0104,0.19901 -0.0324,0.30813 -0.0104,0.10272 -0.027,0.20864 -0.0487,0.31776 l -2.92007,-0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3860"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 276.6594,189.29661 c -1e-5,0.48145 -0.0324,0.96933 -0.0974,1.46361 -0.0541,0.4943 -0.14601,0.97254 -0.27578,1.43473 -0.1298,0.46219 -0.30283,0.8955 -0.51911,1.29992 -0.21632,0.40442 -0.48129,0.76069 -0.79491,1.06882 -0.31366,0.30171 -0.68678,0.53923 -1.11935,0.71255 -0.43262,0.17333 -0.92471,0.25998 -1.47626,0.25998 -0.61647,0 -1.15182,-0.11555 -1.60603,-0.34664 -0.45424,-0.2311 -0.83817,-0.52318 -1.15181,-0.87624 -0.31364,-0.35306 -0.5678,-0.74144 -0.76246,-1.16512 -0.19468,-0.43009 -0.34068,-0.84414 -0.438,-1.24214 -0.14061,0.44294 -0.31906,0.88266 -0.53535,1.31918 -0.21631,0.4301 -0.47587,0.81847 -0.77869,1.16511 -0.30281,0.34022 -0.65431,0.61626 -1.05446,0.8281 -0.40016,0.21183 -0.84899,0.31775 -1.34648,0.31775 -0.91928,0 -1.67091,-0.17974 -2.25493,-0.53922 -0.58401,-0.35949 -1.04365,-0.84094 -1.37892,-1.44436 -0.32444,-0.60983 -0.55156,-1.31275 -0.68134,-2.10876 -0.11902,-0.79599 -0.17845,-1.63051 -0.17845,-2.50355 0,-0.25034 0.005,-0.52958 0.0162,-0.83772 0.0104,-0.31454 0.027,-0.6323 0.0487,-0.95328 0.0217,-0.32737 0.0432,-0.64514 0.0649,-0.95327 0.0324,-0.31454 0.0649,-0.59378 0.0974,-0.83772 l 3.22829,-0.077 c -0.0974,0.43011 -0.19467,0.89231 -0.29201,1.38658 -0.0866,0.48788 -0.16222,0.98539 -0.22711,1.4925 -0.0649,0.50714 -0.11902,1.00785 -0.16223,1.50214 -0.0324,0.49429 -0.0487,0.9597 -0.0487,1.3962 0,0.0835 0.0104,0.21827 0.0325,0.40442 0.0324,0.18617 0.0757,0.39801 0.1298,0.63552 0.0649,0.2311 0.1406,0.47183 0.22712,0.72218 0.0866,0.24394 0.18926,0.47182 0.30823,0.68366 0.1298,0.20542 0.27577,0.37554 0.43801,0.51034 0.16222,0.12839 0.34608,0.19258 0.55156,0.19258 0.22711,0 0.43801,-0.0995 0.63269,-0.2985 0.20547,-0.199 0.39474,-0.4654 0.56779,-0.79921 0.17303,-0.3338 0.32984,-0.71576 0.47045,-1.14586 0.1514,-0.43651 0.2866,-0.88586 0.40557,-1.34806 0.11889,-0.46219 0.22711,-0.92438 0.32444,-1.38658 0.0974,-0.46219 0.17845,-0.88908 0.24335,-1.28066 0.0649,-0.398 0.11357,-0.74143 0.14599,-1.03031 0.0432,-0.28886 0.0702,-0.49428 0.0811,-0.61626 l 2.57938,-0.077 c -0.0217,0.17333 -0.0379,0.37875 -0.0487,0.61626 -0.0104,0.23753 -0.0217,0.48146 -0.0324,0.73181 -1e-5,0.24394 -0.005,0.48467 -0.0162,0.72218 -2e-5,0.2311 -2e-5,0.43331 0,0.60662 -2e-5,0.13482 0.0162,0.35629 0.0487,0.6644 0.0324,0.30172 0.0811,0.64195 0.146,1.02068 0.0649,0.37233 0.15681,0.76071 0.27578,1.16512 0.11902,0.40442 0.25956,0.77353 0.42179,1.10733 0.16221,0.3274 0.35688,0.60022 0.58401,0.81848 0.2271,0.21183 0.48667,0.31776 0.77869,0.31775 0.19466,-0.0257 0.3731,-0.11875 0.53534,-0.27924 0.16221,-0.16048 0.3028,-0.35627 0.42179,-0.58737 0.1189,-0.23109 0.2217,-0.48145 0.30822,-0.75106 0.0866,-0.27603 0.15681,-0.53602 0.21089,-0.77995 0.0541,-0.25035 0.0919,-0.47183 0.11358,-0.66441 0.0325,-0.19258 0.0487,-0.32418 0.0487,-0.39479 -2e-5,-0.41083 -0.0162,-0.85056 -0.0487,-1.31917 -0.0324,-0.46862 -0.0757,-0.94365 -0.1298,-1.4251 -0.0541,-0.48145 -0.11902,-0.95648 -0.19467,-1.4251 -0.0757,-0.46861 -0.15142,-0.90512 -0.22711,-1.30955 l 2.98495,-0.11555 c 0.0649,0.30814 0.1189,0.65157 0.16223,1.03031 0.0541,0.37233 0.0973,0.75428 0.12979,1.14585 0.0325,0.38517 0.0595,0.76712 0.0811,1.14585 0.0215,0.37234 0.0324,0.71577 0.0324,1.03031" /><path
   inkscape:connector-curvature="0"
   id="path3862"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 288.05325,195.19921 c -0.0866,-0.97574 -0.17305,-1.84236 -0.25956,-2.59984 -0.0757,-0.7639 -0.14602,-1.40904 -0.2109,-1.93544 -0.0757,-0.61625 -0.15142,-1.15548 -0.22712,-1.61767 -0.0973,-0.77674 -0.26497,-1.3609 -0.50289,-1.75249 -0.23794,-0.39799 -0.54617,-0.59699 -0.92469,-0.597 -0.35691,1e-5 -0.73002,0.13802 -1.11935,0.41405 -0.37853,0.27604 -0.75706,0.64194 -1.13558,1.09771 -0.37853,0.45578 -0.74625,0.97895 -1.10314,1.56953 -0.34608,0.58416 -0.66513,1.18759 -0.95713,1.81026 -0.2812,0.62268 -0.52994,1.23573 -0.74624,1.83914 -0.21629,0.60342 -0.37853,1.15228 -0.48668,1.64657 l -2.15759,0.0481 c 0,-2.28529 -0.027,-4.28491 -0.0811,-5.99889 -0.0432,-1.71396 -0.0919,-3.14226 -0.14601,-4.28491 -0.0541,-1.14264 -0.10813,-1.99963 -0.16223,-2.57096 -0.0432,-0.57131 -0.0703,-0.85697 -0.0811,-0.85698 l 2.79028,0.077 0,8.03061 c 0.23792,-0.39157 0.47044,-0.73501 0.69756,-1.03031 0.22712,-0.29528 0.42719,-0.54242 0.60024,-0.74143 0.19467,-0.23109 0.38393,-0.43009 0.56779,-0.597 0.32444,-0.30812 0.66512,-0.58415 1.02202,-0.82809 0.35689,-0.24394 0.7192,-0.44936 1.08691,-0.61627 0.37852,-0.17331 0.74624,-0.3049 1.10314,-0.39479 0.3677,-0.0899 0.7246,-0.13479 1.07068,-0.1348 0.68134,1e-5 1.23832,0.18938 1.67093,0.56811 0.43259,0.37233 0.75164,0.96613 0.95713,1.78137 0.17302,0.65479 0.32443,1.38017 0.45423,2.17616 0.1189,0.68046 0.22711,1.48288 0.32446,2.40727 0.0974,0.92439 0.15679,1.92901 0.17844,3.01388 l -2.22249,0.077" /><path
   inkscape:connector-curvature="0"
   id="path3864"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 303.82718,185.2139 c -0.0649,0.44936 -0.1298,0.93723 -0.19467,1.46361 -0.0649,0.51998 -0.12435,1.05278 -0.17845,1.59842 -0.0432,0.54566 -0.0866,1.09451 -0.1298,1.64657 -0.0432,0.55207 -0.0811,1.08166 -0.11357,1.58879 -0.0866,1.194 -0.15683,2.39763 -0.2109,3.61088 -0.0541,0.66762 -0.22712,1.28387 -0.51911,1.84878 -0.28121,0.5649 -0.69217,1.05278 -1.23291,1.46361 -0.52996,0.41084 -1.18967,0.73181 -1.97916,0.96291 -0.7895,0.23751 -1.7142,0.35627 -2.77406,0.35627 -0.68135,-0.0129 -1.34648,-0.0642 -1.99537,-0.15406 -0.2812,-0.0385 -0.56779,-0.0899 -0.8598,-0.15407 -0.29201,-0.0578 -0.58401,-0.1316 -0.87602,-0.22147 -0.2812,-0.0834 -0.55698,-0.18616 -0.82735,-0.30812 -0.25955,-0.11556 -0.49209,-0.25036 -0.69757,-0.40442 l 1.26536,-1.08808 c 0.3569,0.24393 0.74082,0.4333 1.1518,0.56811 0.41097,0.1348 0.80031,0.2343 1.16803,0.2985 0.37852,0.0642 0.71379,0.10271 1.00579,0.11555 0.29201,0.0193 0.49208,0.0289 0.60024,0.0289 0.70298,0 1.3032,-0.0834 1.8007,-0.25035 0.50831,-0.16049 0.93008,-0.38517 1.26537,-0.67404 0.33525,-0.28245 0.60022,-0.62267 0.79491,-1.02068 0.19465,-0.39157 0.34065,-0.81526 0.438,-1.27102 0.10812,-0.4622 0.17303,-0.94686 0.19467,-1.45399 0.0324,-0.51355 0.0487,-1.0303 0.0487,-1.55027 l 0,-0.11555 c -0.32445,0.59058 -0.68134,1.09129 -1.07067,1.50212 -0.37855,0.40442 -0.76248,0.74144 -1.15181,1.01105 -0.38935,0.26962 -0.76788,0.48146 -1.13557,0.63552 -0.36772,0.14764 -0.69759,0.25677 -0.98958,0.32739 -0.29202,0.0706 -0.54077,0.11234 -0.74624,0.12517 -0.19468,0.0193 -0.31364,0.0289 -0.3569,0.0289 -0.81113,0 -1.49247,-0.13481 -2.04404,-0.40442 -0.55158,-0.26319 -0.99499,-0.64514 -1.33025,-1.14585 -0.33527,-0.50071 -0.57861,-1.11055 -0.73002,-1.82952 -0.1406,-0.71896 -0.21088,-1.53101 -0.21088,-2.43615 0,-0.72538 0.0379,-1.49891 0.11357,-2.32059 0.0757,-0.82167 0.18386,-1.69791 0.32446,-2.62873 l 2.9525,0.13481 c -0.28119,1.13623 -0.48668,2.13123 -0.61645,2.985 -0.11903,0.84736 -0.17846,1.58879 -0.17846,2.2243 0,0.64195 0.0432,1.18438 0.1298,1.62732 0.0974,0.44293 0.21629,0.81204 0.35689,1.10733 0.1406,0.2953 0.29201,0.52639 0.45424,0.69329 0.17304,0.16049 0.33526,0.28246 0.48668,0.3659 0.1514,0.077 0.28658,0.12518 0.40555,0.14444 0.1189,0.0129 0.19468,0.0193 0.22713,0.0193 0.41096,0 0.8003,-0.11234 1.16802,-0.33701 0.37852,-0.22468 0.73,-0.52319 1.05447,-0.89551 0.33525,-0.37232 0.64349,-0.7992 0.92468,-1.28066 0.29199,-0.48786 0.55696,-0.995 0.79491,-1.52138 0.23792,-0.52639 0.44882,-1.05278 0.63267,-1.57916 0.19466,-0.52639 0.35688,-1.01747 0.48668,-1.47325 0.1298,-0.45577 0.23251,-0.85377 0.30823,-1.194 0.0757,-0.34664 0.12435,-0.60341 0.146,-0.77032 l 2.44962,0" /><path
   inkscape:connector-curvature="0"
   id="path3866"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 317.69057,195.16069 -7.10548,0 0.0325,-1.50213 c 0.34608,0.0129 0.69216,0.0225 1.03824,0.0289 0.34608,0.006 0.68676,0.01 1.02203,0.01 0.0541,-1.29029 0.0919,-2.58058 0.11358,-3.87087 0.0324,-1.29029 0.0487,-2.5902 0.0487,-3.89976 0,-0.51354 0,-1.02709 0,-1.54065 0,-0.51353 -0.0104,-1.0303 -0.0324,-1.55027 l -2.06026,0.17332 -0.16223,-1.73323 c 0.64891,0.0129 1.29781,0.0193 1.94671,0.0193 0.6489,1e-5 1.2978,1e-5 1.94671,0 0.63807,1e-5 1.27076,1e-5 1.89804,0 0.63807,1e-5 1.27616,-0.006 1.91426,-0.0193 l -0.0324,1.2614 c -0.36772,0.0129 -0.73542,0.0289 -1.10313,0.0482 -0.3569,0.0129 -0.71921,0.0289 -1.08691,0.0481 -0.23794,1.8552 -0.45425,3.70076 -0.6489,5.53669 -0.18386,1.82952 -0.3461,3.67187 -0.48668,5.52707 0.47585,0 0.93549,-0.006 1.37892,-0.0193 0.45422,-0.0193 0.91386,-0.0449 1.37891,-0.077 l 0,1.5599" /><path
   inkscape:connector-curvature="0"
   id="path3868"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 322.00578,186.26347 -1.5736,0 -0.69757,-5.0071 2.27117,0 0,5.0071" /><path
   inkscape:connector-curvature="0"
   id="path3870"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 338.861,195.03551 c 0.1298,-0.51996 0.23792,-1.02388 0.32446,-1.51175 0.0865,-0.48787 0.1514,-0.94686 0.19467,-1.37696 0.0432,-0.43009 0.0702,-0.82167 0.0811,-1.17474 0.0215,-0.35948 0.0325,-0.66761 0.0325,-0.92439 -3e-5,-0.95006 -0.11903,-1.66902 -0.35691,-2.1569 -0.23795,-0.49428 -0.61646,-0.74143 -1.13558,-0.74144 -0.40017,1e-5 -0.85439,0.1926 -1.36268,0.57775 -0.49752,0.37875 -0.99501,0.96933 -1.49249,1.77174 0.0217,0.18617 0.0379,0.38517 0.0487,0.597 0.0104,0.20543 0.0162,0.42689 0.0162,0.6644 -1e-5,0.61626 -0.0379,1.28708 -0.11357,2.01247 -0.0757,0.72539 -0.21632,1.49892 -0.42179,2.3206 l -2.38472,0.0867 c 0.1514,-0.90512 0.24873,-1.71718 0.29201,-2.43615 0.0432,-0.71896 0.0649,-1.34164 0.0649,-1.86803 0,-0.74464 -0.0325,-1.36732 -0.0974,-1.86803 -0.0649,-0.5007 -0.15141,-0.90191 -0.25956,-1.20363 -0.0974,-0.30812 -0.21089,-0.52638 -0.34067,-0.65478 -0.12979,-0.12837 -0.25957,-0.19257 -0.38934,-0.19258 -0.23794,1e-5 -0.51913,0.14766 -0.84357,0.44294 -0.31364,0.2953 -0.69759,0.73182 -1.1518,1.30954 -0.45424,0.58417 -0.80032,1.14587 -1.03826,1.68509 -0.23793,0.53923 -0.42719,1.06882 -0.56778,1.58879 -0.1298,0.51997 -0.23252,1.03352 -0.30822,1.54065 -0.0757,0.50712 -0.16765,1.01746 -0.2758,1.53102 l -2.22248,0.0385 c 0.0217,-0.4622 0.0325,-0.91797 0.0325,-1.36733 0,-0.44935 0,-0.88587 0,-1.30955 0,-1.02067 -0.0162,-1.95469 -0.0487,-2.80204 -0.0324,-0.84736 -0.0649,-1.58237 -0.0974,-2.20506 -0.0432,-0.72537 -0.0866,-1.37694 -0.1298,-1.95469 l 2.9525,0.077 0,3.10055 c 0.0866,-0.17973 0.20009,-0.38515 0.34069,-0.61626 0.14058,-0.2375 0.30281,-0.47823 0.48667,-0.72218 0.18385,-0.25034 0.39475,-0.49428 0.63268,-0.73181 0.24874,-0.24392 0.51911,-0.45897 0.81113,-0.64514 0.292,-0.19257 0.61104,-0.34664 0.95713,-0.46219 0.34607,-0.11554 0.7246,-0.17332 1.13558,-0.17332 0.57319,0 1.09772,0.17974 1.57358,0.53922 0.48667,0.35308 0.83816,0.89551 1.05447,1.62731 0.40014,-0.44935 0.80571,-0.7992 1.2167,-1.04957 0.41095,-0.25034 0.78407,-0.4333 1.11935,-0.54885 0.34607,-0.12196 0.63266,-0.19578 0.8598,-0.22147 0.22709,-0.0257 0.36769,-0.0385 0.42178,-0.0385 0.4434,2e-5 0.87059,0.061 1.28158,0.18295 0.41096,0.12199 0.77326,0.35629 1.08692,0.70293 0.32443,0.34023 0.57859,0.81526 0.76246,1.42509 0.19465,0.60985 0.29198,1.39943 0.29201,2.36874 -3e-5,0.63552 -0.0432,1.35128 -0.1298,2.14728 -0.0866,0.78959 -0.22172,1.68187 -0.40557,2.67687 l -2.49827,-0.0578" /><path
   inkscape:connector-curvature="0"
   id="path3872"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 362.39306,189.91287 c -0.0217,0.64836 -0.0541,1.2935 -0.0974,1.93543 -0.0217,0.27604 -0.0432,0.56491 -0.0649,0.86662 -0.0217,0.30171 -0.0487,0.60662 -0.0811,0.91476 -0.0217,0.3017 -0.0541,0.60021 -0.0974,0.8955 -0.0325,0.29529 -0.0649,0.57132 -0.0974,0.82809 l -2.22249,-0.0385 c 0.0217,-0.18616 0.0379,-0.36911 0.0487,-0.54885 0.0104,-0.17975 0.0162,-0.35949 0.0162,-0.53923 -0.48669,0.30813 -1.00041,0.54886 -1.54115,0.72218 -0.54076,0.17332 -1.05446,0.30492 -1.54114,0.39479 -0.56239,0.10912 -1.11937,0.17974 -1.67092,0.21184 -0.11902,0.0129 -0.23253,0.0193 -0.34068,0.0193 -0.0974,-1e-5 -0.20548,-1e-5 -0.32444,0 -0.75706,-1e-5 -1.48167,-0.0642 -2.17384,-0.19259 -0.69216,-0.12196 -1.30861,-0.31133 -1.84936,-0.56811 -0.52994,-0.25678 -0.95713,-0.57774 -1.28159,-0.9629 -0.31363,-0.39158 -0.47045,-0.85056 -0.47045,-1.37696 0,-0.46218 0.15141,-0.8955 0.45423,-1.29992 0.31364,-0.41083 0.74623,-0.7671 1.29781,-1.06882 0.56238,-0.30812 1.23831,-0.55206 2.02782,-0.7318 0.78949,-0.17975 1.66551,-0.27603 2.62805,-0.28888 0.0325,1e-5 0.2163,0.006 0.55156,0.0193 0.33527,0.0129 0.74083,0.0546 1.21671,0.12518 0.48666,0.0642 1.00578,0.17011 1.55735,0.31776 0.56238,0.14123 1.08149,0.34023 1.55737,0.597 -10e-6,-0.28887 -0.0104,-0.59379 -0.0324,-0.91476 -0.0217,-0.32096 -0.0757,-0.63551 -0.16222,-0.94365 -0.0757,-0.31454 -0.20008,-0.61304 -0.37312,-0.8955 -0.17304,-0.28244 -0.41098,-0.52959 -0.7138,-0.74143 -0.292,-0.21826 -0.66512,-0.38837 -1.11935,-0.51034 -0.45424,-0.12838 -1.0058,-0.19258 -1.6547,-0.19258 -0.50831,0 -0.97336,0.0578 -1.39514,0.17332 -0.42179,0.11556 -0.79491,0.27283 -1.11935,0.47182 -0.32446,0.19901 -0.59484,0.43653 -0.81113,0.71255 -0.2163,0.26963 -0.37853,0.5617 -0.48668,0.87624 l -2.72539,-0.51996 c 0.1298,-0.3659 0.31364,-0.69008 0.55157,-0.97254 0.24874,-0.28244 0.52453,-0.52958 0.82734,-0.74143 0.31365,-0.21183 0.6435,-0.39157 0.98958,-0.53923 0.3569,-0.15405 0.70839,-0.28244 1.05447,-0.38516 0.81112,-0.2375 1.68714,-0.38194 2.62806,-0.43331 1.29779,2e-5 2.39552,0.11556 3.29317,0.34665 0.89765,0.2311 1.62225,0.57133 2.17382,1.02068 0.56238,0.44936 0.96253,1.00463 1.20048,1.66582 0.24873,0.6612 0.3731,1.4251 0.37312,2.29171 m -2.53073,2.67687 c -10e-6,-0.12838 0.005,-0.25356 0.0162,-0.37553 0.0104,-0.12838 0.0162,-0.25035 0.0162,-0.36591 -0.5732,-0.34663 -1.14099,-0.60983 -1.70336,-0.78958 -0.55158,-0.17973 -1.05448,-0.31454 -1.5087,-0.40442 -0.51914,-0.1027 -1.02203,-0.16048 -1.50871,-0.17332 -0.67053,10e-6 -1.24914,0.0578 -1.7358,0.17332 -0.47587,0.10914 -0.87062,0.25679 -1.18425,0.44294 -0.30282,0.18616 -0.52994,0.39801 -0.68135,0.63552 -0.1406,0.23752 -0.2109,0.48466 -0.2109,0.74143 0,0.2632 0.0811,0.50072 0.24335,0.71256 0.16222,0.21183 0.38933,0.39157 0.68135,0.53922 0.3028,0.14764 0.66511,0.26319 1.0869,0.34664 0.4326,0.0771 0.91387,0.11555 1.44381,0.11555 0.51911,-0.0257 1.05987,-0.0963 1.62226,-0.21183 0.48666,-0.10272 1.02201,-0.25999 1.60603,-0.47183 0.59482,-0.21825 1.20046,-0.52317 1.81692,-0.91476" /><path
   inkscape:connector-curvature="0"
   id="path3874"
   style="font-size:25.59652519px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;font-family:Englebert;-inkscape-font-specification:Englebert Bold"
   d="m 373.80313,195.35327 c -0.0866,-0.97574 -0.17306,-1.85198 -0.25957,-2.62872 -0.0757,-0.78316 -0.14601,-1.45078 -0.21088,-2.00284 -0.0757,-0.64193 -0.15143,-1.21326 -0.22713,-1.71397 -0.0866,-0.77673 -0.25415,-1.36089 -0.5029,-1.75249 -0.23793,-0.39798 -0.54616,-0.59699 -0.92468,-0.59699 -0.37853,0 -0.76247,0.14123 -1.1518,0.42367 -0.38936,0.28246 -0.77329,0.65799 -1.1518,1.1266 -0.37853,0.46862 -0.74084,1.00463 -1.08692,1.60805 -0.33527,0.597 -0.6489,1.21326 -0.94091,1.84877 -0.28119,0.63552 -0.52994,1.26462 -0.74623,1.88729 -0.20549,0.62268 -0.36231,1.18437 -0.47045,1.68508 l -2.2225,0.0385 c 0.0649,-1.06561 0.0974,-2.07666 0.0974,-3.03315 0,-1.00141 -0.027,-1.91617 -0.0811,-2.74427 -0.0541,-0.83451 -0.11358,-1.55348 -0.17845,-2.1569 -0.0757,-0.70613 -0.15682,-1.34164 -0.24335,-1.90656 l 3.13097,0.077 0,3.87087 c 0.24873,-0.42367 0.47044,-0.77995 0.66512,-1.06883 0.19466,-0.28886 0.35689,-0.52316 0.48668,-0.70291 0.1514,-0.21183 0.27577,-0.37874 0.37312,-0.50071 0.28118,-0.31454 0.58941,-0.59379 0.92468,-0.83773 0.33525,-0.25035 0.68134,-0.45898 1.03824,-0.62589 0.36771,-0.17331 0.73542,-0.30491 1.10314,-0.39479 0.37852,-0.0899 0.74082,-0.1348 1.08691,-0.1348 0.34608,0 0.67052,0.0449 0.97335,0.1348 0.30281,0.0899 0.56778,0.23111 0.79491,0.42368 0.23792,0.19259 0.43799,0.43974 0.60024,0.74144 0.17302,0.29529 0.3028,0.65157 0.38934,1.06882 0.17302,0.6933 0.32443,1.45078 0.45423,2.27245 0.11889,0.70614 0.22709,1.53102 0.32444,2.47466 0.0974,0.94365 0.15681,1.95791 0.17846,3.04278 l -2.22249,0.077" />


<g
   transform="matrix(1.8842212,0,0,1.1183954,409.57002,-905.98818)"
   id="g4480-0" /><g
   id="g5539-5"
   transform="matrix(2.1910821,0,0,1.3005353,-703.58095,-489.37937)"
   style="fill:#577632" /><g
   transform="matrix(1.8842212,0,0,1.1183954,-1334.0412,-1196.6312)"
   id="g4480-1-0" /><g
   transform="matrix(0.7084153,0,0,0.42048588,23.09391,-194.90992)"
   id="g4615"><g
     id="g4365-7"
     transform="matrix(0.38392529,0,0,0.38392529,-41.98858,941.57365)"><path
       inkscape:connector-curvature="0"
       style="fill:#afe478;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="m 294.8728,344.65416 c -17.99591,0.20347 -32.91812,12.38231 -34.16415,28.45216 -0.13622,1.75558 -0.0824,3.47227 0.1076,5.17312 -5.89428,-1.88791 -12.25439,-3.14371 -18.9681,-3.66429 -29.235,-2.26687 -54.66561,10.5136 -60.46085,29.31434 -19.33453,6.26155 -34.68239,18.44021 -42.24714,34.05638 -17.1699,-0.89371 -32.07025,12.14704 -33.40974,29.42212 -1.36074,17.54933 11.69211,32.91384 29.20658,34.27192 5.54251,0.42975 10.89952,-0.64981 15.62713,-2.80211 13.6788,14.40097 34.76181,24.52877 58.95201,26.40447 21.79146,1.68968 42.02271,-3.65691 57.33542,-13.57944 6.04955,10.00137 17.2846,17.40024 30.7154,19.3992 l 0,0.32315 c 0.40102,-0.0393 0.78811,-0.16657 1.18551,-0.21555 0.40533,0.05 0.77641,0.1752 1.1855,0.21555 l 0,-0.32315 c 13.45167,-1.98865 24.65882,-9.38618 30.7154,-19.3992 15.31272,9.92253 35.65177,15.26916 57.44319,13.57944 24.1902,-1.87567 45.16545,-12.0035 58.84425,-26.40447 4.72765,2.1523 10.08465,3.23189 15.62714,2.80211 17.51446,-1.35805 30.67508,-16.72263 29.31434,-34.27192 -1.33949,-17.27508 -16.23983,-30.31583 -33.40973,-29.42212 -7.56476,-15.61617 -23.02039,-27.79483 -42.35493,-34.05638 -5.79524,-18.80074 -31.11807,-31.58121 -60.35307,-29.31434 -6.71371,0.52058 -13.07382,1.77638 -18.96811,3.66429 0.19003,-1.70085 0.24418,-3.41754 0.1076,-5.17312 -1.24603,-16.06985 -16.27601,-28.24858 -34.27192,-28.45216 -1.19975,-0.0138 -2.44085,0.0138 -3.66429,0.1076 -0.0724,0.007 -0.14381,-0.007 -0.21555,0 -0.0717,-0.007 -0.14312,0.007 -0.21554,0 -1.22345,-0.0948 -2.46455,-0.12174 -3.6643,-0.1076 z m 3.44874,21.55467 0.53887,0 c 3.05373,0 5.82187,0.85901 7.86746,2.37101 2.04558,1.512 3.34097,3.66581 3.34097,6.03531 0,0.6994 -0.21658,1.38874 -0.43109,2.04769 l 9.05296,6.68195 c 1.88349,-1.05553 4.06897,-1.72438 6.57417,-1.72438 3.0528,0 5.82159,0.86702 7.86745,2.37102 2.04587,1.504 3.44875,3.66591 3.44875,6.0353 0,1.55932 -0.75038,2.95413 -1.72437,4.20316 l 12.71725,9.26851 c 1.61046,-0.67375 3.41978,-1.07773 5.38867,-1.07773 3.05372,0 5.92967,0.85898 7.97522,2.37101 2.04556,1.51203 3.34098,3.66581 3.34098,6.03531 0,1.33808 -0.56249,2.55383 -1.29328,3.66429 l 12.07061,8.72964 c 1.62936,-0.69337 3.49886,-1.18551 5.49644,-1.18551 3.05373,0 5.8219,0.85898 7.86746,2.37102 2.04555,1.51203 3.34097,3.66591 3.34097,6.03531 0,2.36949 -1.29542,4.5233 -3.34097,6.0353 -2.04556,1.512 -4.81373,2.37102 -7.86746,2.37102 -3.05372,0 -5.82186,-0.85902 -7.86745,-2.37102 -2.04559,-1.512 -3.44875,-3.66581 -3.44875,-6.0353 0,-1.82915 0.96593,-3.48283 2.26324,-4.84981 l -11.3162,-8.29854 c -1.96037,1.23744 -4.48534,2.04769 -7.22081,2.04769 -2.494,0 -4.69747,-0.67813 -6.57418,-1.72437 l -9.05296,6.57417 c 0.78087,0.95272 1.4531,1.98296 1.72438,3.12543 0.0904,0.38081 0.1076,0.78066 0.1076,1.1855 0,2.3694 -1.29542,4.52328 -3.34098,6.03531 -1.02276,0.756 -2.22706,1.4284 -3.55652,1.83215 -0.66471,0.20175 -1.3268,0.32694 -2.04769,0.43109 -0.72089,0.10415 -1.49983,0.1076 -2.26324,0.1076 -2.40153,0 -4.63011,-0.5329 -6.4664,-1.50882 l -12.71725,9.37628 c 1.31083,1.10508 2.28555,2.56007 2.69433,4.09538 0.13623,0.51176 0.21555,0.96755 0.21555,1.50883 0,2.36939 -1.29542,4.4155 -3.34098,5.92753 -0.51138,0.37802 -1.02172,0.77449 -1.6166,1.07774 -1.18978,0.60653 -2.54579,1.06476 -3.98761,1.29328 -0.72089,0.11415 -1.49983,0.1076 -2.26324,0.1076 -3.05373,0 -5.8219,-0.96675 -7.86745,-2.47879 -1.02276,-0.75603 -1.89923,-1.58987 -2.47879,-2.58656 -0.28969,-0.49834 -0.49324,-1.06794 -0.64664,-1.6166 -0.15347,-0.54866 -0.21555,-1.13202 -0.21555,-1.72437 0,-2.36939 1.29542,-4.52331 3.34098,-6.03531 2.04555,-1.512 4.81372,-2.47879 7.86745,-2.47879 1.52445,0 2.98303,0.33729 4.31093,0.75442 l 13.68722,-9.91515 c -0.48897,-0.62305 -0.87667,-1.24051 -1.18551,-1.93992 -0.30901,-0.69941 -0.53887,-1.48068 -0.53887,-2.26324 0,-2.3695 1.29511,-4.53134 3.34098,-6.03531 0.51145,-0.37598 1.02162,-0.67719 1.6166,-0.96996 1.78493,-0.87832 3.96126,-1.40105 6.25085,-1.40105 2.29569,0 4.35028,0.60977 6.14308,1.50883 l 9.26851,-6.68195 c -0.4521,-0.60405 -0.89437,-1.25462 -1.18551,-1.93992 -0.29107,-0.6853 -0.43109,-1.40533 -0.43109,-2.15547 0,-1.85332 1.04193,-3.47037 2.37101,-4.8498 l -12.50171,-9.16073 c -1.82535,0.95168 -3.99116,1.6166 -6.35862,1.6166 -2.6873,0 -5.06063,-0.74203 -7.00527,-1.93992 l -10.45401,7.65191 c 0.93402,1.00872 1.62556,2.1785 1.93992,3.44874 0.10484,0.42341 0.21554,0.84567 0.21554,1.29328 0,2.36946 -1.29542,4.52328 -3.34097,6.03531 -0.51138,0.37802 -1.11939,0.78459 -1.72437,1.07773 -1.21,0.58632 -2.52559,0.97721 -3.98762,1.18551 -0.73099,0.10415 -1.49982,0.1076 -2.26324,0.1076 -3.05372,0 -5.82189,-0.85898 -7.86745,-2.37101 -2.04555,-1.51204 -3.34097,-3.66585 -3.34097,-6.03531 0,-2.3695 1.29511,-4.53134 3.34097,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86745,-2.37101 2.10463,0 4.12867,0.4214 5.81976,1.18551 l 10.88511,-7.97523 c -0.73538,-1.11546 -1.29328,-2.32311 -1.29328,-3.66429 0,-0.36526 0.0345,-0.72717 0.1076,-1.07774 0.22313,-1.05169 0.75704,-2.029 1.40105,-2.90988 l -8.19077,-6.0353 c -2.0807,1.86639 -5.07473,3.12542 -8.51409,3.12542 -2.86333,0 -5.43564,-1.02534 -7.43636,-2.37101 l -8.083,5.60421 c 0.7142,1.10319 1.18551,2.34581 1.18551,3.6643 0,2.36949 -1.29542,4.41553 -3.34098,5.92753 -2.04555,1.512 -4.81376,2.47879 -7.86745,2.47879 -2.03866,0 -3.94916,-0.46465 -5.60422,-1.18551 l -12.71725,8.62187 c 1.41637,1.40302 2.58656,3.03669 2.58656,4.95757 0,0.38629 -0.0207,0.81611 -0.1076,1.18551 -0.26038,1.10822 -0.89788,2.08576 -1.6166,3.01765 l 9.26851,6.68195 c 1.36953,-0.45024 2.83104,-0.75442 4.4187,-0.75442 3.0537,0 5.82187,0.96683 7.86746,2.47879 2.04559,1.51197 3.34097,3.55804 3.34097,5.92753 0,2.3695 -1.29538,4.52331 -3.34097,6.03531 -2.04559,1.512 -4.81373,2.47879 -7.86746,2.47879 -3.05369,0 -5.82955,-0.96634 -7.86745,-2.47879 -2.0379,-1.51245 -3.34097,-3.66705 -3.34097,-6.03531 0,-1.0858 0.24693,-2.09973 0.75441,-3.01765 0.25383,-0.45896 0.61467,-0.87836 0.96996,-1.29328 0.35529,-0.41492 0.74565,-0.81604 1.18551,-1.18551 l -8.5141,-6.25085 c -1.83083,0.96448 -3.97337,1.72437 -6.35862,1.72437 -2.95613,0 -5.63088,-1.05386 -7.65191,-2.47878 l -11.85507,8.19077 c 1.43175,1.12157 2.55573,2.5966 3.01766,4.20316 0.15381,0.53552 0.21554,1.04725 0.21554,1.6166 0,1.02966 -0.41388,1.90002 -0.86218,2.80211 l 10.45401,7.54413 c 1.40633,-0.47644 2.89084,-0.75441 4.52648,-0.75441 3.05369,0 5.92967,0.85901 7.97523,2.37101 2.04555,1.512 3.34097,3.66592 3.34097,6.03531 0,2.36949 -1.29511,4.53134 -3.34097,6.03531 -2.04587,1.50396 -4.92247,2.37101 -7.97523,2.37101 -1.52638,0 -2.98141,-0.13416 -4.31093,-0.53887 -0.66478,-0.20244 -1.34495,-0.46165 -1.93992,-0.75441 -0.59498,-0.2928 -1.10515,-0.70175 -1.6166,-1.07773 -2.04587,-1.50397 -3.34098,-3.66582 -3.34098,-6.03531 0,-2.11177 1.34074,-3.92095 3.01766,-5.38867 l -9.48406,-6.78972 c -2.04141,1.50652 -4.71109,2.58656 -7.75968,2.58656 -3.48785,0 -6.54434,-1.21427 -8.62187,-3.12543 l -11.20842,7.75968 c 0.54266,0.64482 1.05173,1.41916 1.40105,2.15547 0.17451,0.36816 0.33384,0.68654 0.43109,1.07774 0.0973,0.39119 0.1076,0.7712 0.1076,1.1855 0,2.36957 -1.2951,4.53131 -3.34097,6.03531 -0.51145,0.37598 -1.02162,0.78493 -1.6166,1.07773 -1.18995,0.58556 -2.54593,0.97593 -3.98761,1.18551 -0.72082,0.10484 -1.50007,0.1076 -2.26324,0.1076 -3.0528,0 -5.92936,-0.86702 -7.97523,-2.37101 -2.04586,-1.504 -3.34097,-3.66575 -3.34097,-6.03531 0,-2.36939 1.29542,-4.52331 3.34097,-6.03531 2.04556,-1.512 4.9215,-2.37101 7.97523,-2.37101 2.12794,0 4.00527,0.51238 5.71198,1.29328 l 12.60949,-8.62187 c -0.17899,-0.5718 -0.4311,-1.0906 -0.4311,-1.72437 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.81376,-2.47879 7.86745,-2.47879 1.30211,0 2.60235,0.22969 3.77207,0.53887 l 1.72437,-1.29328 0.21555,-0.1076 11.42397,-7.75968 c -0.45327,-0.91357 -0.86219,-1.87557 -0.86219,-2.90988 0,-2.36939 1.29542,-4.52327 3.34098,-6.03531 2.04555,-1.51203 4.9215,-2.37101 7.97522,-2.37101 1.7331,0 3.26976,0.33073 4.74203,0.86219 l 1.50883,-0.96996 11.42397,-7.86746 c -1.10108,-1.29669 -2.04769,-2.74806 -2.04769,-4.4187 0,-2.3695 1.40288,-4.53135 3.44874,-6.03531 2.04587,-1.50396 4.81466,-2.37101 7.86746,-2.37101 2.61925,0 4.96937,0.68699 6.89749,1.83214 l 8.29855,-5.60421 c -0.54221,-0.98531 -0.96996,-2.09511 -0.96996,-3.2332 0,-2.36939 1.29542,-4.52327 3.34097,-6.03531 1.91102,-1.41257 4.61842,-2.1515 7.43636,-2.26324 l 0,-0.1076 z m 0.53887,3.55652 c -2.08904,0 -4.01627,0.6785 -5.28089,1.6166 -0.95272,0.70661 -1.58425,1.50965 -1.83215,2.37101 -0.0828,0.28728 -0.1076,0.5549 -0.1076,0.86219 0,0.92216 0.3535,1.80255 1.07774,2.58656 0.24141,0.26141 0.54462,0.51883 0.86218,0.75441 0.94847,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98658,0.1076 1.50882,0.1076 2.08925,0 3.89857,-0.67599 5.17312,-1.6166 1.28032,-0.94499 1.93992,-2.12046 1.93992,-3.34098 0,-1.22013 -0.65967,-2.28841 -1.93992,-3.2332 -1.27455,-0.94075 -3.08387,-1.6166 -5.17312,-1.6166 z m -25.54228,15.41158 c -2.09014,0 -4.01537,0.5766 -5.28089,1.50883 -0.95365,0.70265 -1.5071,1.58587 -1.72437,2.47879 -0.0724,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.27589,1.80253 0.96996,2.58656 0.23141,0.26142 0.54462,0.51887 0.86218,0.75442 1.26462,0.93809 3.19182,1.50882 5.2809,1.50882 2.08918,0 3.89853,-0.56807 5.17312,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.08287,-1.50883 -5.17312,-1.50883 z m 51.94675,0 c -2.09008,0 -3.9076,0.5766 -5.17312,1.50883 -0.95365,0.70265 -1.58456,1.58587 -1.83215,2.47879 -0.0824,0.29762 -0.1076,0.55487 -0.1076,0.86218 0,0.92189 0.3535,1.80253 1.07773,2.58656 0.24142,0.26142 0.54463,0.51887 0.86219,0.75442 1.26462,0.93809 3.08408,1.50882 5.17312,1.50882 2.08925,0 4.00631,-0.56807 5.2809,-1.50882 1.28024,-0.94482 1.93992,-2.12071 1.93992,-3.34098 0,-1.22016 -0.6584,-2.40153 -1.93992,-3.34097 -1.27549,-0.93489 -3.19061,-1.50883 -5.2809,-1.50883 z m -26.62002,18.86034 c -2.09025,0 -3.8976,0.68161 -5.17311,1.6166 -0.9611,0.70444 -1.58691,1.51024 -1.83215,2.37101 -0.0817,0.28694 -0.1076,0.55715 -0.1076,0.86219 0,0.91536 0.35208,1.80011 1.07773,2.58656 0.24176,0.2621 0.54215,0.51821 0.86219,0.75441 0.95596,0.70558 2.2143,1.27466 3.66429,1.50883 0.48334,0.0779 0.98651,0.1076 1.50883,0.1076 2.08904,0 4.0163,-0.67847 5.28089,-1.6166 1.27028,-0.94213 1.93992,-2.11163 1.93992,-3.34097 0,-1.22903 -0.6684,-2.29653 -1.93992,-3.23321 -1.26552,-0.93236 -3.19078,-1.6166 -5.28089,-1.6166 z m -52.27006,1.93992 c -2.09011,0 -4.01545,0.68423 -5.28089,1.6166 -0.95365,0.70247 -1.58457,1.5858 -1.83215,2.47878 -0.0824,0.29763 -0.1076,0.55487 -0.1076,0.86219 0,0.92199 0.35349,1.83287 1.07773,2.58656 0.24141,0.25141 0.54463,0.41109 0.86219,0.64664 0.94847,0.70348 2.28945,1.274 3.77206,1.50883 0.49421,0.0783 0.98655,0.1076 1.50883,0.1076 2.08922,0 3.89853,-0.67589 5.17312,-1.6166 1.28031,-0.94499 1.93992,-2.01286 1.93992,-3.2332 0,-1.22017 -0.6584,-2.40154 -1.93992,-3.34097 -1.27552,-0.93489 -3.08287,-1.61661 -5.17312,-1.61661 z m 106.58783,0 c -2.09025,0 -3.8976,0.68171 -5.17312,1.6166 -0.96113,0.70458 -1.58691,1.58773 -1.83215,2.47878 -0.0817,0.29694 -0.1076,0.55715 -0.1076,0.86219 0,0.91523 0.35208,1.83035 1.07773,2.58656 0.24176,0.2521 0.54211,0.4104 0.86219,0.64664 0.95596,0.70555 2.2143,1.27462 3.66429,1.50883 0.48334,0.0779 0.98652,0.1076 1.50883,0.1076 2.08904,0 4.01624,-0.67865 5.28089,-1.6166 1.27028,-0.94216 1.93992,-2.00386 1.93992,-3.2332 0,-1.2292 -0.66843,-2.40433 -1.93992,-3.34097 -1.26548,-0.93241 -3.19078,-1.61661 -5.28089,-1.61661 z m -25.00342,17.67482 c -2.09014,0 -4.01541,0.68424 -5.28089,1.6166 -0.95365,0.70262 -1.5071,1.50838 -1.72437,2.37102 -0.0724,0.28762 -0.10761,0.5549 -0.10761,0.86218 0,0.92199 0.2759,1.80253 0.96996,2.58657 0.23142,0.26141 0.54463,0.51882 0.86219,0.75441 0.94848,0.70347 2.28945,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.67603 5.28089,-1.6166 1.28031,-0.945 1.83215,-2.12064 1.83215,-3.34098 0,-1.22016 -0.55063,-2.29376 -1.83215,-3.2332 -1.27549,-0.93488 -3.19061,-1.6166 -5.28089,-1.6166 z m -58.41314,0.86219 c -2.08905,0 -3.90854,0.67865 -5.17312,1.6166 -0.95272,0.70679 -1.58429,1.58711 -1.83215,2.47879 -0.0828,0.29728 -0.1076,0.55483 -0.1076,0.86219 0,1.22916 0.66964,2.39881 1.93992,3.34097 0.94847,0.70358 2.21199,1.19658 3.66429,1.40105 0.4841,0.0683 0.98658,0.1076 1.50883,0.1076 2.08925,0 4.0063,-0.56807 5.28089,-1.50882 1.28025,-0.94482 1.93992,-2.12067 1.93992,-3.34098 0,-1.2203 -0.65964,-2.39601 -1.93992,-3.34097 -1.27459,-0.94075 -3.19164,-1.6166 -5.28089,-1.6166 z m 111.00653,1.07773 c -2.09011,0 -4.01541,0.68441 -5.28089,1.6166 -0.95365,0.70265 -1.5071,1.50842 -1.72438,2.37102 -0.0724,0.28762 -0.1076,0.55494 -0.1076,0.86219 0,0.92216 0.2759,1.80252 0.96996,2.58656 0.23141,0.26141 0.5446,0.51876 0.86219,0.75441 0.94844,0.70347 2.28942,1.274 3.77207,1.50883 0.4942,0.0783 0.98655,0.1076 1.50883,0.1076 2.08904,0 3.90849,-0.67861 5.17312,-1.6166 1.27041,-0.94258 1.93992,-2.11143 1.93992,-3.34098 0,-1.22896 -0.66841,-2.29635 -1.93992,-3.2332 -1.26552,-0.93223 -3.08301,-1.6166 -5.17312,-1.6166 z m -161.76778,0.32315 c -2.08904,0 -3.90849,0.67847 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.58712 -1.83214,2.47879 -0.0828,0.29728 -0.1076,0.55487 -0.1076,0.86219 0,0.92188 0.35332,1.83359 1.07773,2.58656 0.24141,0.25106 0.54432,0.41247 0.86219,0.64664 0.94909,0.6993 2.21202,1.27269 3.66429,1.50882 0.4841,0.0786 0.98631,0.1076 1.50883,0.1076 2.09014,0 4.01541,-0.68419 5.28089,-1.6166 1.27152,-0.93668 1.93992,-2.00403 1.93992,-3.2332 0,-1.2292 -0.66964,-2.39881 -1.93992,-3.34097 -1.26462,-0.93813 -3.19181,-1.6166 -5.28089,-1.6166 z m -29.0988,17.56706 c -2.08908,0 -4.01624,0.67861 -5.28089,1.6166 -0.95268,0.70658 -1.58425,1.58708 -1.83215,2.47878 -0.0828,0.29729 -0.1076,0.55487 -0.1076,0.86219 0,0.92161 0.35333,1.83349 1.07774,2.58656 0.24141,0.25107 0.54431,0.41244 0.86218,0.64664 0.94917,0.69916 2.28952,1.27266 3.77207,1.50883 0.49417,0.0786 0.98631,0.1076 1.50883,0.1076 2.09004,0 3.90756,-0.68437 5.17312,-1.6166 1.27151,-0.93685 1.93992,-2.00438 1.93992,-3.2332 0,-1.22934 -0.66968,-2.39885 -1.93992,-3.34098 -1.26466,-0.93799 -3.08408,-1.6166 -5.17312,-1.6166 z m 54.53331,0.53886 c -2.08908,0 -3.9085,0.67848 -5.17312,1.6166 -0.95271,0.70662 -1.58425,1.50966 -1.83215,2.37102 -0.0828,0.28728 -0.1076,0.55487 -0.1076,0.86218 0,0.61467 0.21279,1.26766 0.53887,1.83215 0.16313,0.28211 0.29728,0.49334 0.53887,0.75441 0.24141,0.26107 0.54431,0.52025 0.86218,0.75442 0.94913,0.69926 2.21203,1.27269 3.6643,1.50882 0.4841,0.0786 0.9863,0.1076 1.50882,0.1076 2.09022,0 4.00541,-0.68161 5.2809,-1.6166 1.28152,-0.9393 1.93992,-2.12066 1.93992,-3.34097 0,-1.22013 -0.65971,-2.28845 -1.93992,-3.2332 -1.27459,-0.94078 -3.19168,-1.6166 -5.2809,-1.6166 z m 56.25768,1.50883 c -2.09025,0 -3.8976,0.57394 -5.17312,1.50883 -0.9611,0.7044 -1.5869,1.5877 -1.83214,2.47878 -0.0817,0.29694 -0.1076,0.55718 -0.1076,0.86219 0,0.91537 0.35208,1.80007 1.07773,2.58656 0.24175,0.2621 0.54211,0.51817 0.86218,0.75441 1.27459,0.94072 3.08391,1.50883 5.17312,1.50883 2.08908,0 4.01631,-0.57087 5.2809,-1.50883 1.27027,-0.94216 1.83214,-2.11163 1.83214,-3.34097 0,-1.22882 -0.56059,-2.40416 -1.83214,-3.34097 -1.26549,-0.93227 -3.19082,-1.50883 -5.2809,-1.50883 z"
       id="path4367-32" /><path
       inkscape:connector-curvature="0"
       style="fill:#577632;fill-opacity:1;stroke:none"
       d="M 242.96875,155.625 272.625,178.84375 245.8125,179 230.9375,167.59375 216.28125,167.5 l 26.375,20.6875 0.3125,-0.21875 0,0.0625 41.09375,-0.21875 0.8125,0.625 -15.0625,82.59375 57.96875,0.4375 L 311.75,189.25 l 1.78125,-1.40625 41.125,0.21875 0,-0.0625 0.28125,0.21875 26.375,-20.6875 -14.65625,0.0937 -14.875,11.40625 -26.8125,-0.15625 29.6875,-23.21875 -15.90625,0.1875 -29.09375,22.6875 -2.09375,-10.8125 -18.875,-0.1875 -1.84375,10.09375 -27.96875,-21.8125 -15.90625,-0.1875 z"
       id="path4369-2"
       transform="translate(0,308.2677)" /></g><g
     id="g3443-9"
     transform="translate(-663.6704,546.47495)"><path
       inkscape:connector-curvature="0"
       id="flowRoot3023-5-6-2-5-9-7-4-5-9"
       transform="translate(0,308.2677)"
       d="m 790.28125,287.1875 c -2.67365,2e-5 -4.62784,0.93059 -5.90625,2.8125 -1.27842,1.88195 -1.9375,4.71548 -1.9375,8.53125 0,3.64706 0.68145,6.43057 2.03125,8.3125 1.3498,1.88193 3.32345,2.8125 5.90625,2.8125 1.6483,0 3.13721,-0.40637 4.5,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.34375 -4.0625,1.34375 -1.09023,0 -1.86354,-0.54655 -2.34375,-1.65625 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.23204,-4.00761 0.71875,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m 15.40625,0 c -2.64769,2e-5 -4.72619,0.9895 -6.21875,2.96875 -1.49257,1.97929 -2.21875,4.7015 -2.21875,8.21875 0,2.28429 0.34337,4.29329 1.03125,6 0.68788,1.70672 1.66557,3.02898 2.9375,3.9375 1.27192,0.90852 2.74495,1.34375 4.40625,1.34375 2.62171,0 4.68194,-0.98948 6.1875,-2.96875 1.50553,-1.97927 2.24998,-4.75629 2.25,-8.3125 -2e-5,-3.43938 -0.76923,-6.16927 -2.28125,-8.1875 -1.51205,-2.01819 -3.53693,-2.99998 -6.09375,-3 z m 22.125,0 c -1.16811,2e-5 -2.16168,0.27919 -3.03125,0.84375 -0.82163,0.53346 -1.47507,1.26593 -1.9375,2.1875 l 0,-2.65625 -5.125,0 0,0.0312 -0.0312,0 0,21.6875 5.1875,0 0,-10.4375 c -10e-6,-2.63469 0.26209,-4.48404 0.78125,-5.59375 0.51915,-1.10967 1.35256,-1.68748 2.46875,-1.6875 0.84361,2e-5 1.4361,0.41408 1.8125,1.21875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.58768 -1.46875,-5.9375 -0.97992,-1.34978 -2.46473,-1.99998 -4.4375,-2 z m 15.4375,0 c -1.82769,0.11784 -3.299,0.65118 -4.40625,1.59375 -1.26544,1.07726 -1.90625,2.53202 -1.90625,4.375 0,1.44067 0.34986,2.69224 1.03125,3.75 0.68139,1.05779 1.80456,2.06553 3.375,3 1.18107,0.71385 1.99621,1.31931 2.4375,1.8125 0.44127,0.4932 0.65624,1.05684 0.65625,1.71875 -10e-6,0.64895 -0.23445,1.1979 -0.65625,1.59375 -0.42182,0.39586 -1.00782,0.59375 -1.8125,0.59375 -0.72682,0 -1.57731,-0.17552 -2.53125,-0.5 -0.95395,-0.32447 -1.78617,-0.72555 -2.5,-1.21875 l 0,4.5 c 1.40171,0.84363 3.17099,1.25 5.3125,1.25 2.41406,0 4.22926,-0.59369 5.46875,-1.78125 1.23947,-1.18756 1.87499,-2.82194 1.875,-4.9375 -10e-6,-0.97341 -0.17025,-1.83568 -0.46875,-2.5625 -0.29853,-0.72681 -0.7049,-1.36642 -1.25,-1.9375 -0.54512,-0.57106 -1.49396,-1.27607 -2.84375,-2.09375 -1.11619,-0.67489 -1.87242,-1.23323 -2.28125,-1.6875 -0.40884,-0.45424 -0.62501,-0.97844 -0.625,-1.5625 -10e-6,-0.50616 0.16903,-0.9308 0.5,-1.28125 0.33095,-0.35041 0.83807,-0.53123 1.5,-0.53125 1.05128,2e-5 2.2675,0.37224 3.65625,1.125 l 1.6875,-3.71875 c -1.70024,-1.01233 -3.51664,-1.49998 -5.4375,-1.5 -0.2758,0 -0.52015,-0.0168 -0.78125,0 z m 16.9375,0 c -2.53088,2e-5 -4.52281,0.9883 -5.9375,3 -1.4147,2.01174 -2.125,4.8241 -2.125,8.40625 0,3.53025 0.81105,6.26015 2.375,8.1875 1.56395,1.92736 3.69366,2.875 6.40625,2.875 2.3232,0 4.30744,-0.50063 5.96875,-1.5 l 0,-4.25 c -1.76514,1.05129 -3.50026,1.5625 -5.1875,1.5625 -1.32385,0 -2.34099,-0.46528 -3.09375,-1.40625 -0.75278,-0.94096 -1.14857,-2.37864 -1.1875,-4.3125 l 10.40625,0 0,-2.75 c -2e-5,-3.10193 -0.66849,-5.53028 -2.03125,-7.25 -1.36279,-1.71968 -3.23161,-2.56248 -5.59375,-2.5625 z m 20.34375,0 c -0.89555,2e-5 -1.70011,0.29097 -2.375,0.875 -0.67491,0.58407 -1.27269,1.54349 -1.84375,2.90625 l -0.1875,0 -0.59375,-3.375 -4.25,0 0,21.6875 5.1875,0 0,-11.15625 c -10e-6,-1.8949 0.32509,-3.35085 1,-4.34375 0.67489,-0.99287 1.64729,-1.49998 2.90625,-1.5 0.58404,2e-5 1.04283,0.089 1.40625,0.21875 l 0.625,-5.03125 c -0.61002,-0.19466 -1.23905,-0.28123 -1.875,-0.28125 z m -20.40625,3.96875 c 0.7917,2e-5 1.42073,0.43235 1.875,1.25 0.45425,0.81768 0.69278,2.01035 0.71875,3.59375 l -5.25,0 c 0.0779,-1.6483 0.36353,-2.87101 0.84375,-3.65625 0.48021,-0.7852 1.0727,-1.18748 1.8125,-1.1875 z M 805.25,291.625 c 0.12695,-0.0175 0.26997,0 0.40625,0 1.07723,2e-5 1.84405,0.56485 2.34375,1.6875 0.49967,1.12269 0.74999,2.79121 0.75,5.0625 -10e-6,4.56856 -1.01715,6.875 -3.09375,6.875 -1.09023,0 -1.88181,-0.59488 -2.375,-1.75 -0.4932,-1.15511 -0.75001,-2.86667 -0.75,-5.125 -10e-6,-2.27129 0.2568,-3.93981 0.75,-5.0625 0.43154,-0.98232 1.0801,-1.5647 1.96875,-1.6875 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'" /><path
       inkscape:connector-curvature="0"
       id="flowRoot3023-5-6-2-5-9-7-1-4-1-8"
       transform="translate(0,308.2677)"
       d="m 912.25,287.1875 c -2.53088,2e-5 -4.87677,0.66849 -7.03125,2.03125 L 907,292.8125 c 1.68724,-1.01233 3.17086,-1.53123 4.46875,-1.53125 1.75213,2e-5 2.65624,1.00657 2.65625,3.03125 l 0,1.5625 -2.90625,0.125 c -2.49194,0.11682 -4.3413,0.73407 -5.59375,1.84375 -1.25246,1.1097 -1.875,2.80948 -1.875,5.09375 0,2.12854 0.42874,3.7747 1.34375,4.96875 0.91501,1.19405 2.18485,1.78125 3.78125,1.78125 1.24596,0 2.27607,-0.23853 3.09375,-0.71875 0.81766,-0.48022 1.60924,-1.35307 2.375,-2.625 l 0.125,0 1.03125,2.96875 3.78125,0 0,-14.5625 c -2e-5,-2.41405 -0.58072,-4.27638 -1.78125,-5.59375 -1.20056,-1.31733 -2.95276,-1.96873 -5.25,-1.96875 z m 21.34375,0.0312 c -1.16811,2e-5 -2.19293,0.27919 -3.0625,0.84375 -0.85122,0.55267 -1.50307,1.31201 -1.96875,2.28125 l 0,-2.78125 -5.125,0 0,11.65625 0.0312,0 0,10.09375 5.1875,0 0,-10.40625 c -10e-6,-2.63469 0.26209,-4.51529 0.78125,-5.625 0.51915,-1.10967 1.32131,-1.65623 2.4375,-1.65625 0.84361,2e-5 1.46735,0.38283 1.84375,1.1875 0.37637,0.8047 0.56249,1.99207 0.5625,3.5625 l 0,12.9375 5.21875,0 0,-14.15625 c -2e-5,-2.59575 -0.48886,-4.55643 -1.46875,-5.90625 -0.97992,-1.34978 -2.46473,-2.03123 -4.4375,-2.03125 z m 17.21875,0 c -2.67365,2e-5 -4.65909,0.93059 -5.9375,2.8125 -1.27842,1.88195 -1.90625,4.74673 -1.90625,8.5625 0,3.64706 0.68145,6.39932 2.03125,8.28125 1.3498,1.88193 3.2922,2.8125 5.875,2.8125 1.6483,0 3.16846,-0.40637 4.53125,-1.25 l 0,-4.5625 c -1.41471,0.90852 -2.76463,1.375 -4.0625,1.375 -1.09023,0 -1.89479,-0.5778 -2.375,-1.6875 -0.48022,-1.10968 -0.71876,-2.7859 -0.71875,-5.03125 -10e-6,-2.29724 0.26329,-4.00761 0.75,-5.15625 0.4867,-1.14861 1.27179,-1.71873 2.375,-1.71875 0.83064,2e-5 1.79774,0.30155 2.875,0.9375 l 1.46875,-4.03125 c -0.70087,-0.44126 -1.49245,-0.76636 -2.375,-1 -0.88257,-0.2336 -1.72657,-0.34373 -2.53125,-0.34375 z m -65.90625,0.40625 5.65625,21.6875 6.4375,0 5.6875,-21.6875 -5.375,0 c -1.89492,8.63095 -2.89618,13.23375 -3,13.84375 -0.10384,0.61001 -0.21517,1.30444 -0.3125,2.03125 -0.0974,0.72682 -0.14328,1.26689 -0.15625,1.65625 l -0.0625,0 c -0.0389,-0.49319 -0.15027,-1.28357 -0.3125,-2.40625 -0.16224,-1.12266 -0.3207,-1.97844 -0.4375,-2.5625 l -2.75,-12.5625 -5.375,0 z m 29.21875,11.53125 0,1.8125 c -10e-6,1.4147 -0.31043,2.55614 -0.875,3.40625 -0.56459,0.85012 -1.30255,1.28125 -2.25,1.28125 -1.27193,0 -1.90626,-0.89641 -1.90625,-2.6875 -10e-6,-1.20703 0.26089,-2.10874 0.8125,-2.71875 0.55159,-0.61 1.41267,-0.96635 2.59375,-1.03125 l 1.625,-0.0625 z"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'" /><g
       transform="matrix(0.8306463,0,0,0.8306463,1795.7434,-128.90577)"
       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed;-inkscape-font-specification:'Open Sans Condensed, Bold'"
       id="flowRoot3023-5-6-2-5-9-7-1-5-1-3-0"><path
         inkscape:connector-curvature="0"
         d="m -1008.5625,872.02908 6.4688,0 3.60933,14.74219 c 0.35936,1.31251 0.64842,3.14845 0.86718,5.50781 l 0.14063,0 c 0.0156,-0.37499 0.0859,-1.04296 0.21094,-2.0039 0.12498,-0.96093 0.22655,-1.71484 0.30468,-2.26172 0.0781,-0.54687 1.15624,-5.87499 3.23438,-15.98438 l 6.5625,0 -7.47656,27.98438 c -0.90627,3.43749 -2.10939,5.90624 -3.60938,7.40625 -1.50001,1.49999 -3.5,2.24999 -6,2.25 -1.2344,-10e-6 -2.3359,-0.13283 -3.3047,-0.39844 l 0,-5.22656 c 0.6406,0.18749 1.3594,0.28124 2.1563,0.28125 2.0937,-10e-6 3.4687,-1.37501 4.125,-4.125 l 0.4453,-1.64063 z"
         id="path3407-6" /></g></g><g
     transform="matrix(0.57050433,0,0,0.57050433,753.8774,701.67324)"
     style="font-size:48px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#577632;fill-opacity:1;stroke:none;font-family:Open Sans Condensed Light;-inkscape-font-specification:'Open Sans Condensed Light, Light'"
     id="flowRoot3013-0-3-7-9-7-8-1-7-38"><path
       inkscape:connector-curvature="0"
       d="m -1032.3359,754.60721 c -10e-5,2.14063 -0.5626,3.81641 -1.6875,5.02734 -1.125,1.21094 -2.75,1.81641 -4.875,1.81641 -1.1563,0 -2.1719,-0.14844 -3.0469,-0.44531 -0.875,-0.29688 -1.5547,-0.625 -2.0391,-0.98438 l 0,-2.60156 c 0.5781,0.57813 1.3438,1.04297 2.2969,1.39453 0.9531,0.35156 1.9297,0.52734 2.9297,0.52734 1.3125,0 2.3437,-0.42968 3.0937,-1.28906 0.75,-0.85937 1.125,-2.00781 1.125,-3.44531 0,-1.12499 -0.2695,-2.07421 -0.8086,-2.84766 -0.539,-0.77343 -1.5664,-1.65233 -3.082,-2.63672 -1.7344,-1.09373 -2.918,-1.96873 -3.5508,-2.625 -0.6328,-0.65623 -1.125,-1.39061 -1.4765,-2.20312 -0.3516,-0.81248 -0.5274,-1.78123 -0.5274,-2.90625 0,-1.82811 0.6172,-3.33982 1.8516,-4.53516 1.2344,-1.19529 2.8047,-1.79294 4.7109,-1.79297 2.0469,3e-5 3.7578,0.4844 5.1328,1.45313 l -1.1484,1.94531 c -1.2813,-0.85935 -2.6406,-1.28904 -4.0781,-1.28906 -1.3125,2e-5 -2.3594,0.38674 -3.1407,1.16015 -0.7812,0.77346 -1.1718,1.79299 -1.1718,3.0586 0,1.12502 0.2656,2.06642 0.7968,2.82422 0.5313,0.75783 1.6563,1.67579 3.375,2.7539 1.6875,1.10939 2.8438,1.99611 3.4688,2.66016 0.625,0.66407 1.0898,1.39845 1.3945,2.20312 0.3047,0.8047 0.457,1.73048 0.4571,2.77735 z"
       id="path3376-8" /><path
       inkscape:connector-curvature="0"
       d="m -1012.9062,748.20877 c -10e-5,4.28126 -0.6758,7.5586 -2.0274,9.83203 -1.3516,2.27344 -3.2852,3.41016 -5.8008,3.41016 -2.4844,0 -4.3867,-1.13672 -5.707,-3.41016 -1.3203,-2.27343 -1.9805,-5.55077 -1.9805,-9.83203 0,-8.7656 2.5938,-13.14841 7.7813,-13.14844 2.4375,3e-5 4.3359,1.14847 5.6953,3.44532 1.3593,2.29689 2.039,5.53126 2.0391,9.70312 z m -13.1954,0 c 0,3.67188 0.4375,6.44532 1.3125,8.32031 0.875,1.87501 2.2422,2.8125 4.1016,2.8125 3.6406,0 5.4609,-3.71093 5.4609,-11.13281 0,-7.35935 -1.8203,-11.03904 -5.4609,-11.03906 -1.9063,2e-5 -3.2852,0.9219 -4.1367,2.76562 -0.8516,1.84377 -1.2774,4.60158 -1.2774,8.27344 z"
       id="path3378-16" /><path
       inkscape:connector-curvature="0"
       d="m -1000.7656,737.52127 -3.9844,0 0,23.46094 -2.2031,0 0,-23.46094 -3.2344,0 0,-1.26562 3.2344,-0.96094 0,-1.92188 c 0,-3.23434 0.3828,-5.56246 1.1484,-6.98437 0.7656,-1.42184 2.0938,-2.13278 3.9844,-2.13281 1.0937,3e-5 2.08591,0.19534 2.97655,0.58593 l -0.77344,2.0625 c -0.82811,-0.39059 -1.57811,-0.5859 -2.25001,-0.58593 -0.7656,3e-5 -1.3437,0.22659 -1.7344,0.67968 -0.3906,0.45316 -0.6797,1.18754 -0.8671,2.20313 -0.1876,1.01565 -0.2813,2.4219 -0.2813,4.21875 l 0,2.13281 3.9844,0 z"
       id="path3380-0" /><path
       inkscape:connector-curvature="0"
       d="m -992,759.38846 c 0.68749,0 1.29687,-0.0937 1.82813,-0.28125 l 0,1.875 c -0.68751,0.3125 -1.57033,0.46875 -2.64844,0.46875 -2.62501,0 -3.93751,-1.96094 -3.9375,-5.88281 l 0,-18.04688 -2.29688,0 0,-1.3125 2.25,-0.65625 0.72657,-6.04687 1.54687,0 0,6.04687 4.03125,0 0,1.96875 -4.03125,0 0,17.41406 c -10e-6,1.71876 0.18749,2.89063 0.5625,3.51563 0.37499,0.625 1.03124,0.9375 1.96875,0.9375 z"
       id="path3382-2" /><path
       inkscape:connector-curvature="0"
       d="m -972.03125,760.98221 -3.51562,-17.22656 c -0.0313,-0.12499 -0.0586,-0.2578 -0.082,-0.39844 -0.0235,-0.14061 -0.26954,-1.64061 -0.73828,-4.5 l -0.0469,0 -0.32813,1.99219 -0.53906,2.90625 -3.63281,17.22656 -2.64844,0 -5.53125,-25.42969 2.22656,0 3.16407,14.8125 1.47656,7.73438 0.14062,0 c 0.28124,-2.23437 0.73437,-4.82812 1.35938,-7.78125 l 3.16406,-14.76563 2.34375,0 3.1875,14.8125 c 0.24998,1.10939 0.69529,3.68751 1.33594,7.73438 l 0.14062,0 c 0.0469,-0.51563 0.27733,-1.8125 0.69141,-3.89063 0.41404,-2.07812 1.73826,-8.29686 3.97266,-18.65625 l 2.20312,0 -5.71875,25.42969 z"
       id="path3384-7" /><path
       inkscape:connector-curvature="0"
       d="m -949.97656,760.98221 -0.28125,-3.5625 -0.0937,0 c -1.21876,2.6875 -3.06251,4.03125 -5.53125,4.03125 -1.65626,0 -2.98829,-0.66016 -3.9961,-1.98047 -1.00781,-1.32031 -1.51172,-3.08984 -1.51171,-5.30859 -10e-6,-2.42187 0.72655,-4.33984 2.17968,-5.75391 1.45312,-1.41405 3.49218,-2.18358 6.11719,-2.30859 l 2.74219,-0.14063 0,-2.10937 c -2e-5,-2.37498 -0.29689,-4.10545 -0.89063,-5.19141 -0.59376,-1.08591 -1.57813,-1.62888 -2.95312,-1.62891 -1.45314,3e-5 -2.93751,0.47659 -4.45313,1.42969 l -0.96093,-1.75781 c 1.76561,-1.09373 3.61718,-1.6406 5.55468,-1.64063 2.09374,3e-5 3.60155,0.66018 4.52344,1.98047 0.92186,1.32034 1.3828,3.52737 1.38281,6.6211 l 0,17.32031 z m -5.41406,-1.42969 c 1.59374,0 2.83202,-0.78515 3.71484,-2.35547 0.8828,-1.57031 1.3242,-3.79296 1.32422,-6.66797 l 0,-2.64843 -2.64844,0.14062 c -2.04688,0.10939 -3.56641,0.67579 -4.55859,1.69922 -0.9922,1.02345 -1.48829,2.51954 -1.48828,4.48828 -10e-6,1.84376 0.32812,3.19532 0.98437,4.05469 0.65624,0.85937 1.54687,1.28906 2.67188,1.28906 z"
       id="path3386-9" /><path
       inkscape:connector-curvature="0"
       d="m -934.39062,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3388-2" /><path
       inkscape:connector-curvature="0"
       d="m -921.10156,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3390-83" /><path
       inkscape:connector-curvature="0"
       d="m -893.98437,737.52127 -3.98438,0 0,23.46094 -2.20312,0 0,-23.46094 -3.23438,0 0,-1.26562 3.23438,-0.96094 0,-1.92188 c -10e-6,-3.23434 0.3828,-5.56246 1.14843,-6.98437 0.76562,-1.42184 2.09375,-2.13278 3.98438,-2.13281 1.09374,3e-5 2.08592,0.19534 2.97656,0.58593 l -0.77344,2.0625 c -0.82813,-0.39059 -1.57813,-0.5859 -2.25,-0.58593 -0.76563,3e-5 -1.34375,0.22659 -1.73437,0.67968 -0.39063,0.45316 -0.6797,1.18754 -0.86719,2.20313 -0.18751,1.01565 -0.28126,2.4219 -0.28125,4.21875 l 0,2.13281 3.98438,0 z"
       id="path3392-4" /><path
       inkscape:connector-curvature="0"
       d="m -882.82812,735.06033 c 0.79686,3e-5 1.53905,0.1094 2.22656,0.32813 l -0.53906,2.22656 c -0.56252,-0.23435 -1.14064,-0.35154 -1.73438,-0.35156 -0.85938,2e-5 -1.66016,0.44143 -2.40234,1.32422 -0.7422,0.88283 -1.32423,2.1133 -1.7461,3.6914 -0.42188,1.57815 -0.63282,3.32033 -0.63281,5.22657 l 0,13.47656 -2.22656,0 0,-25.42969 1.82812,0 0.23438,4.45313 0.16406,0 c 1.18749,-3.29686 2.79687,-4.94529 4.82813,-4.94532 z"
       id="path3394-0" /><path
       inkscape:connector-curvature="0"
       d="m -869.53906,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3396-5" /><path
       inkscape:connector-curvature="0"
       d="m -850.69531,761.45096 c -2.68751,0 -4.75391,-1.14453 -6.19922,-3.4336 -1.44532,-2.28905 -2.16797,-5.48046 -2.16797,-9.57421 0,-4.34374 0.64453,-7.66014 1.93359,-9.94922 1.28906,-2.28904 3.14453,-3.43357 5.56641,-3.4336 2.10936,3e-5 3.77342,1.00393 4.99219,3.01172 1.21873,2.00784 1.82811,4.71486 1.82812,8.1211 l 0,2.0625 -12.04687,0 c 0.0312,3.70313 0.55468,6.47656 1.57031,8.32031 1.01562,1.84375 2.55468,2.76562 4.61719,2.76562 1.59374,0 3.27342,-0.52343 5.03906,-1.57031 l 0,2.15625 c -1.62501,1.01563 -3.33595,1.52344 -5.13281,1.52344 z m -1.00781,-24.375 c -3.06251,2e-5 -4.7422,3.05471 -5.03907,9.16406 l 9.77344,0 c -10e-6,-2.79686 -0.4258,-5.02342 -1.27734,-6.67969 -0.85158,-1.65622 -2.00392,-2.48435 -3.45703,-2.48437 z"
       id="path3398-4" /><path
       inkscape:connector-curvature="0"
       d="m -832.85937,761.45096 c -4.93751,0 -7.40626,-4.38281 -7.40625,-13.14844 -10e-6,-4.31248 0.61718,-7.59764 1.85156,-9.85547 1.23437,-2.25779 3.05468,-3.38669 5.46094,-3.38672 1.14061,3e-5 2.22264,0.32815 3.24609,0.98438 1.02342,0.65627 1.83983,1.56252 2.44922,2.71875 l 0.1875,0 -0.0937,-2.83594 0,-11.41406 2.22656,0 0,36.46875 -1.82812,0 -0.1875,-3.5625 -0.21094,0 c -0.60939,1.29688 -1.39845,2.29297 -2.36719,2.98828 -0.96876,0.69531 -2.07814,1.04297 -3.32812,1.04297 z m 0.14062,-1.94531 c 1.78124,0 3.15233,-0.82422 4.11328,-2.47266 0.96092,-1.64843 1.44139,-4.07421 1.44141,-7.27734 l 0,-1.45313 c -2e-5,-3.84373 -0.46486,-6.66014 -1.39453,-8.44922 -0.9297,-1.78904 -2.34767,-2.68357 -4.25391,-2.68359 -1.82813,2e-5 -3.14063,0.95705 -3.9375,2.87109 -0.79688,1.91408 -1.19532,4.68361 -1.19531,8.3086 -1e-5,3.65625 0.41406,6.42969 1.24219,8.32031 0.82811,1.89063 2.15624,2.83594 3.98437,2.83594 z"
       id="path3400-2" /><path
       inkscape:connector-curvature="0"
       d="m -803.84375,748.20877 c -2e-5,4.28126 -0.6758,7.5586 -2.02734,9.83203 -1.35158,2.27344 -3.28517,3.41016 -5.80078,3.41016 -2.48439,0 -4.38673,-1.13672 -5.70704,-3.41016 -1.32031,-2.27343 -1.98047,-5.55077 -1.98046,-9.83203 -10e-6,-8.7656 2.59374,-13.14841 7.78125,-13.14844 2.43748,3e-5 4.33592,1.14847 5.69531,3.44532 1.35936,2.29689 2.03904,5.53126 2.03906,9.70312 z m -13.19531,0 c -1e-5,3.67188 0.43749,6.44532 1.3125,8.32031 0.87499,1.87501 2.24218,2.8125 4.10156,2.8125 3.64061,0 5.46092,-3.71093 5.46094,-11.13281 -2e-5,-7.35935 -1.82033,-11.03904 -5.46094,-11.03906 -1.90626,2e-5 -3.28516,0.9219 -4.13672,2.76562 -0.85157,1.84377 -1.27735,4.60158 -1.27734,8.27344 z"
       id="path3402-7" /><path
       inkscape:connector-curvature="0"
       d="m -776.58594,760.98221 0,-17.32031 c -2e-5,-4.26561 -1.25002,-6.39842 -3.75,-6.39844 -1.71877,2e-5 -2.95705,0.74611 -3.71484,2.23828 -0.75783,1.49221 -1.13674,3.69142 -1.13672,6.59766 l 0,14.88281 -2.20312,0 0,-17.32031 c -2e-5,-2.15623 -0.30471,-3.7617 -0.91407,-4.81641 -0.60939,-1.05467 -1.5547,-1.58201 -2.83593,-1.58203 -1.68751,2e-5 -2.91408,0.76565 -3.67969,2.29687 -0.76563,1.53127 -1.14845,4.01565 -1.14844,7.45313 l 0,13.96875 -2.22656,0 0,-25.42969 1.875,0 0.1875,3.53906 0.21094,0 c 1.01561,-2.68747 2.74217,-4.03122 5.17968,-4.03125 1.40624,3e-5 2.51561,0.37503 3.32813,1.125 0.81248,0.75003 1.39842,1.84378 1.75781,3.28125 0.60936,-1.56247 1.35936,-2.68747 2.25,-3.375 0.89061,-0.68747 2.04685,-1.03122 3.46875,-1.03125 1.92185,3e-5 3.3281,0.73831 4.21875,2.21485 0.8906,1.47658 1.33591,3.83986 1.33594,7.08984 l 0,16.61719 z"
       id="path3404-2" /></g></g><rect
   y="256.32147"
   x="-574.19415"
   height="43.704079"
   width="63.72105"
   id="rect6748"
   style="fill:#ffffff;fill-opacity:1;stroke:none"
   transform="scale(-1,1)" /><path
   style="fill:#cccccc;fill-opacity:1;stroke:none"
   d="M 3.46875 3.625 L 3.46875 176.375 L 311.53125 176.375 L 311.53125 3.625 L 3.46875 3.625 z M 8.03125 7.5625 L 306.96875 7.5625 L 306.96875 172.4375 L 8.03125 172.4375 L 8.03125 7.5625 z "
   transform="matrix(1.8842212,0,0,1.1183954,-17.575647,112.68656)"
   id="rect7536" /><path
   style="fill:#afe478;fill-opacity:1;stroke:none"
   d="M 0 0 L 0 180 L 315 180 L 315 0 L 0 0 z M 3.46875 3.625 L 311.53125 3.625 L 311.53125 176.375 L 3.46875 176.375 L 3.46875 3.625 z "
   transform="matrix(1.8842212,0,0,1.1183954,-17.575647,112.68656)"
   id="rect7534" /></g></g></g></svg>