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
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="198.434pt" height="192.824pt" viewBox="0 0 198.434 192.824" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0 2.546875 L 11.953125 2.546875 L 11.953125 1.28125 L 0 1.28125 Z M 0 2.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.6875 7.609375 C 5.890625 7.609375 7.609375 5.96875 7.609375 4.046875 C 7.609375 2.0625 5.84375 0.46875 3.6875 0.46875 C 1.5 0.46875 -0.140625 2.125 -0.140625 4.03125 C -0.140625 5.984375 1.546875 7.609375 3.6875 7.609375 Z M 3.828125 6.296875 C 1.875 6.296875 0.9375 5.1875 0.9375 4.03125 C 0.9375 2.828125 1.953125 1.78125 3.828125 1.78125 C 5.8125 1.78125 6.546875 3 6.546875 4.03125 C 6.546875 5.140625 5.75 6.296875 3.828125 6.296875 Z M 3.828125 6.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.71875 7.75 C 5.75 7.75 7.546875 6.71875 7.546875 5.234375 C 7.546875 4.375 7.234375 3.34375 6.609375 2.5625 L 7.40625 2.5625 L 7.40625 1.296875 L -3.359375 1.296875 L -3.359375 2.59375 L 0.78125 2.59375 C 0.21875 3.171875 -0.140625 3.9375 -0.140625 4.765625 C -0.140625 6.375 1.515625 7.75 3.71875 7.75 Z M 3.71875 6.4375 C 2.015625 6.4375 0.90625 5.265625 0.90625 4.109375 C 0.90625 3.765625 1 3.40625 1.296875 3.0625 C 1.703125 2.59375 1.96875 2.59375 2.203125 2.59375 L 5.59375 2.59375 C 5.796875 2.734375 6.453125 3.328125 6.453125 4.265625 C 6.453125 5.46875 5.21875 6.4375 3.71875 6.4375 Z M 3.71875 6.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 4.828125 -3.90625 L 4.71875 -4.53125 C 4.03125 -4.53125 3.453125 -4.34375 3.15625 -4.21875 C 2.9375 -4.390625 2.609375 -4.53125 2.203125 -4.53125 C 1.34375 -4.53125 0.625 -3.8125 0.625 -2.90625 C 0.625 -2.546875 0.75 -2.1875 0.953125 -1.921875 C 0.65625 -1.515625 0.65625 -1.125 0.65625 -1.078125 C 0.65625 -0.8125 0.75 -0.53125 0.921875 -0.3125 C 0.40625 -0.015625 0.28125 0.453125 0.28125 0.703125 C 0.28125 1.453125 1.265625 2.046875 2.484375 2.046875 C 3.703125 2.046875 4.6875 1.46875 4.6875 0.703125 C 4.6875 -0.6875 3.03125 -0.6875 2.640625 -0.6875 L 1.765625 -0.6875 C 1.640625 -0.6875 1.1875 -0.6875 1.1875 -1.21875 C 1.1875 -1.328125 1.21875 -1.484375 1.296875 -1.578125 C 1.5 -1.421875 1.828125 -1.28125 2.203125 -1.28125 C 3.09375 -1.28125 3.796875 -2.03125 3.796875 -2.90625 C 3.796875 -3.390625 3.578125 -3.765625 3.46875 -3.90625 L 3.515625 -3.890625 C 3.734375 -3.890625 4 -3.9375 4.25 -3.9375 C 4.421875 -3.9375 4.828125 -3.90625 4.828125 -3.90625 Z M 3.09375 -2.90625 C 3.09375 -2.140625 2.625 -1.859375 2.203125 -1.859375 C 1.828125 -1.859375 1.3125 -2.078125 1.3125 -2.90625 C 1.3125 -3.734375 1.828125 -3.96875 2.203125 -3.96875 C 2.625 -3.96875 3.09375 -3.6875 3.09375 -2.90625 Z M 4 0.71875 C 4 1.15625 3.3125 1.484375 2.5 1.484375 C 1.6875 1.484375 0.984375 1.171875 0.984375 0.703125 C 0.984375 0.671875 0.984375 0.03125 1.75 0.03125 L 2.65625 0.03125 C 2.875 0.03125 4 0.03125 4 0.71875 Z M 4 0.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -4.421875 L 3.5625 -4.421875 L 3.5625 -1.53125 C 3.5625 -0.78125 3 -0.4375 2.359375 -0.4375 C 1.65625 -0.4375 1.578125 -0.703125 1.578125 -1.125 L 1.578125 -4.421875 L 0.8125 -4.421875 L 0.8125 -1.09375 C 0.8125 -0.375 1.03125 0.109375 1.859375 0.109375 C 2.390625 0.109375 3.09375 -0.046875 3.59375 -0.484375 L 3.59375 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.078125 0 L 4.078125 -2.875 C 4.078125 -3.890625 3.34375 -4.59375 2.4375 -4.59375 C 1.78125 -4.59375 1.328125 -4.4375 0.875 -4.171875 L 0.921875 -3.515625 C 1.453125 -3.875 1.9375 -4 2.4375 -4 C 2.90625 -4 3.296875 -3.609375 3.296875 -2.875 L 3.296875 -2.4375 C 1.796875 -2.421875 0.53125 -2 0.53125 -1.125 C 0.53125 -0.703125 0.8125 0.109375 1.671875 0.109375 C 1.8125 0.109375 2.75 0.09375 3.328125 -0.359375 L 3.328125 0 Z M 3.296875 -1.3125 C 3.296875 -1.125 3.296875 -0.875 2.953125 -0.6875 C 2.671875 -0.515625 2.296875 -0.5 2.1875 -0.5 C 1.703125 -0.5 1.25 -0.734375 1.25 -1.140625 C 1.25 -1.84375 2.875 -1.90625 3.296875 -1.9375 Z M 3.296875 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 3.265625 -3.875 L 3.265625 -4.53125 C 2.375 -4.53125 1.828125 -4.03125 1.515625 -3.578125 L 1.515625 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.5625 0 L 1.5625 -2.140625 C 1.5625 -3.125 2.28125 -3.84375 3.265625 -3.875 Z M 3.265625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 4.328125 0 L 4.328125 -6.921875 L 3.578125 -6.921875 L 3.578125 -3.984375 C 3.046875 -4.421875 2.5 -4.53125 2.125 -4.53125 C 1.140625 -4.53125 0.359375 -3.5 0.359375 -2.21875 C 0.359375 -0.90625 1.125 0.109375 2.078125 0.109375 C 2.40625 0.109375 2.984375 0.015625 3.546875 -0.515625 L 3.546875 0 Z M 3.546875 -1.390625 C 3.546875 -1.25 3.53125 -1.0625 3.21875 -0.78125 C 2.984375 -0.578125 2.734375 -0.5 2.484375 -0.5 C 1.859375 -0.5 1.140625 -0.96875 1.140625 -2.203125 C 1.140625 -3.515625 2 -3.921875 2.578125 -3.921875 C 3.03125 -3.921875 3.328125 -3.703125 3.546875 -3.375 Z M 3.546875 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.78125 -2.21875 C 4.78125 -3.421875 4.15625 -4.53125 3.203125 -4.53125 C 2.609375 -4.53125 2.03125 -4.328125 1.5625 -3.9375 L 1.5625 -4.421875 L 0.8125 -4.421875 L 0.8125 1.9375 L 1.59375 1.9375 L 1.59375 -0.453125 C 1.90625 -0.171875 2.34375 0.109375 2.9375 0.109375 C 3.90625 0.109375 4.78125 -0.875 4.78125 -2.21875 Z M 4 -2.21875 C 4 -1.203125 3.296875 -0.5 2.546875 -0.5 C 2.15625 -0.5 1.890625 -0.703125 1.6875 -0.96875 C 1.59375 -1.109375 1.59375 -1.140625 1.59375 -1.3125 L 1.59375 -3.3125 C 1.828125 -3.671875 2.21875 -3.890625 2.65625 -3.890625 C 3.40625 -3.890625 4 -3.140625 4 -2.21875 Z M 4 -2.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.125 -2.1875 C 4.125 -2.515625 4.109375 -3.265625 3.734375 -3.875 C 3.3125 -4.484375 2.71875 -4.59375 2.359375 -4.59375 C 1.25 -4.59375 0.34375 -3.53125 0.34375 -2.25 C 0.34375 -0.9375 1.3125 0.109375 2.5 0.109375 C 3.125 0.109375 3.703125 -0.125 4.09375 -0.40625 L 4.03125 -1.0625 C 3.40625 -0.53125 2.734375 -0.5 2.515625 -0.5 C 1.71875 -0.5 1.078125 -1.203125 1.046875 -2.1875 Z M 3.5625 -2.734375 L 1.09375 -2.734375 C 1.25 -3.484375 1.78125 -3.984375 2.359375 -3.984375 C 2.875 -3.984375 3.421875 -3.65625 3.5625 -2.734375 Z M 3.5625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.359375 -4.53125 1.875 -4.234375 1.5625 -3.8125 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.296875 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 L 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.28125 4.421875 -7.28125 Z M 4.421875 -7.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 4.578125 0 L 2.59375 -2.28125 L 4.421875 -4.421875 L 3.59375 -4.421875 L 2.265625 -2.78125 L 0.890625 -4.421875 L 0.0625 -4.421875 L 1.9375 -2.28125 L 0 0 L 0.8125 0 L 2.265625 -1.875 L 3.765625 0 Z M 4.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -4.421875 L 0.8125 -4.421875 L 0.8125 0 Z M 1.640625 -5.640625 L 1.640625 -6.53125 L 0.75 -6.53125 L 0.75 -5.640625 Z M 1.640625 -5.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 3.3125 -0.265625 L 3.15625 -0.859375 C 2.890625 -0.640625 2.578125 -0.53125 2.25 -0.53125 C 1.890625 -0.53125 1.75 -0.828125 1.75 -1.359375 L 1.75 -3.84375 L 3.15625 -3.84375 L 3.15625 -4.421875 L 1.75 -4.421875 L 1.75 -5.6875 L 1.0625 -5.6875 L 1.0625 -4.421875 L 0.1875 -4.421875 L 0.1875 -3.84375 L 1.03125 -3.84375 L 1.03125 -1.1875 C 1.03125 -0.59375 1.171875 0.109375 1.859375 0.109375 C 2.546875 0.109375 3.0625 -0.140625 3.3125 -0.265625 Z M 3.3125 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.078125 -4.53125 1.578125 -3.859375 1.53125 -3.78125 L 1.53125 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 Z M 1.5625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 4.140625 -0.40625 L 4.078125 -1.0625 C 3.5625 -0.671875 3.03125 -0.53125 2.515625 -0.53125 C 1.6875 -0.53125 1.140625 -1.25 1.140625 -2.21875 C 1.140625 -3 1.5 -3.953125 2.5625 -3.953125 C 3.078125 -3.953125 3.421875 -3.875 3.96875 -3.515625 L 4.09375 -4.171875 C 3.5 -4.5 3.15625 -4.59375 2.546875 -4.59375 C 1.171875 -4.59375 0.359375 -3.390625 0.359375 -2.21875 C 0.359375 -0.984375 1.265625 0.109375 2.515625 0.109375 C 3.046875 0.109375 3.59375 -0.03125 4.140625 -0.40625 Z M 4.140625 -0.40625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 45 71 L 198.433594 71 L 198.433594 163 L 45 163 Z M 45 71 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 102 30 L 133 30 L 133 46 L 102 46 Z M 102 30 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 128.585938 30.113281 L 106.710938 30.113281 C 104.507812 30.113281 102.726562 31.898438 102.726562 34.101562 L 102.726562 41.738281 C 102.726562 43.9375 104.507812 45.722656 106.710938 45.722656 L 128.585938 45.722656 C 130.785156 45.722656 132.570312 43.9375 132.570312 41.738281 L 132.570312 34.101562 C 132.570312 31.898438 130.785156 30.113281 128.585938 30.113281 Z M 128.585938 30.113281 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 96.628906 62.746094 L 148.265625 48.910156 L 138.667969 13.089844 L 87.027344 26.925781 Z M 96.628906 62.746094 "/>
</clipPath>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.259833" x2="0" y2="80.740167" gradientTransform="matrix(0.516377,-0.138363,-0.0959834,-0.358215,96.627344,62.747886)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.734497%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.494934%,99.746704%,99.746704%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.62616%,99.62616%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117187" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.813416%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.573853%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.411682%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.172119%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.490601%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.251038%,96.624756%,96.624756%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.504211%,96.504211%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226563" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.167786%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273437" style="stop-color:rgb(88.928223%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304687" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.844971%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.605408%,92.301941%,92.301941%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.181396%,92.181396%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382813" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414063" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460938" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476563" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.555237%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.315674%,83.657837%,83.657837%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.537292%,83.537292%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679687" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.232422%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.992859%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742187" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.909607%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.670044%,79.335022%,79.335022%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.214478%,79.214478%);stop-opacity:1;"/>
<stop offset="0.773437" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804687" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820313" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835937" style="stop-color:rgb(54.347229%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851563" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882813" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.263977%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.024414%,75.012207%,75.012207%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.012207%,75.006104%,75.006104%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip5">
<path d="M 94 69 L 141 69 L 141 86 L 94 86 Z M 94 69 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 137.007812 69.597656 L 98.285156 69.597656 C 96.085938 69.597656 94.300781 71.378906 94.300781 73.582031 L 94.300781 81.097656 C 94.300781 83.300781 96.085938 85.085938 98.285156 85.085938 L 137.007812 85.085938 C 139.207031 85.085938 140.992188 83.300781 140.992188 81.097656 L 140.992188 73.582031 C 140.992188 71.378906 139.207031 69.597656 137.007812 69.597656 Z M 137.007812 69.597656 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 84.761719 108.921875 L 161.917969 88.25 L 150.53125 45.757812 L 73.375 66.429688 Z M 84.761719 108.921875 "/>
</clipPath>
<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="0" y1="19.260254" x2="0" y2="80.739746" gradientTransform="matrix(0.771556,-0.206738,-0.113855,-0.424913,84.761951,108.922513)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.734497%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.494934%,99.746704%,99.746704%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.253845%,99.62616%,99.62616%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.014282%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.813416%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.573853%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.332764%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.093201%,98.545837%,98.545837%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.425293%,98.425293%);stop-opacity:1;"/>
<stop offset="0.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.411682%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.172119%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179687" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.490601%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.251038%,96.624756%,96.624756%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.009949%,96.504211%,96.504211%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.770386%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.088867%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.849304%,95.423889%,95.423889%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.303345%,95.303345%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.167786%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.928223%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.766052%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.526489%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320313" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.844971%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.605408%,92.301941%,92.301941%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.181396%,92.181396%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.443237%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.203674%,91.101074%,91.101074%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.98053%,90.98053%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414063" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460938" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476563" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.878052%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.638489%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570313" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601563" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.555237%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.315674%,83.657837%,83.657837%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.537292%,83.537292%);stop-opacity:1;"/>
<stop offset="0.632813" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664063" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.232422%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695313" style="stop-color:rgb(62.992859%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.31134%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726563" style="stop-color:rgb(61.071777%,80.535889%,80.535889%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.415344%,80.415344%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757813" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.909607%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.670044%,79.335022%,79.335022%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.214478%,79.214478%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.988525%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.748962%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.067444%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.827881%,77.41394%,77.41394%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.293396%,77.293396%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.347229%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851563" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.66571%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.426147%,76.213074%,76.213074%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.092529%,76.092529%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.744629%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.505066%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.263977%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.024414%,75.012207%,75.012207%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.012207%,75.006104%,75.006104%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip8">
<path d="M 71 108 L 164 108 L 164 126 L 71 126 Z M 71 108 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 159.5625 108.957031 L 75.730469 108.957031 C 73.53125 108.957031 71.746094 110.738281 71.746094 112.941406 L 71.746094 121.574219 C 71.746094 123.777344 73.53125 125.558594 75.730469 125.558594 L 159.5625 125.558594 C 161.765625 125.558594 163.546875 123.777344 163.546875 121.574219 L 163.546875 112.941406 C 163.546875 110.738281 161.765625 108.957031 159.5625 108.957031 Z M 159.5625 108.957031 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 52.988281 168.089844 L 199.058594 128.953125 L 182.304688 66.425781 L 36.234375 105.5625 Z M 52.988281 168.089844 "/>
</clipPath>
<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="0" y1="19.259206" x2="0" y2="80.740794" gradientTransform="matrix(1.460699,-0.391393,-0.167539,-0.625266,52.989035,168.090929)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.89386%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.654297%,97.827148%,97.827148%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.706604%,97.706604%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179687" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242187" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273437" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335937" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367187" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.523682%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.284119%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539063" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554687" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585937" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648437" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679687" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.829163%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.5896%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742187" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773437" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.506348%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.012085%,78.012085%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835937" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867187" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.183533%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.94397%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip11">
<path d="M 106 149 L 129 149 L 129 163 L 106 163 Z M 106 149 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 124.480469 149.433594 L 110.816406 149.433594 C 108.613281 149.433594 106.828125 151.21875 106.828125 153.417969 L 106.828125 158.722656 C 106.828125 160.925781 108.613281 162.710938 110.816406 162.710938 L 124.480469 162.710938 C 126.679688 162.710938 128.464844 160.925781 128.464844 158.722656 L 128.464844 153.417969 C 128.464844 151.21875 126.679688 149.433594 124.480469 149.433594 Z M 124.480469 149.433594 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 102.410156 175.664062 L 140.640625 165.421875 L 132.886719 136.476562 L 94.652344 146.722656 Z M 102.410156 175.664062 "/>
</clipPath>
<linearGradient id="linear3" gradientUnits="userSpaceOnUse" x1="0" y1="19.258387" x2="0" y2="80.741613" gradientTransform="matrix(0.382315,-0.102441,-0.0775554,-0.289441,102.409016,175.665094)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.776245%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.536682%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.295593%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.05603%,99.028015%,99.028015%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.907471%,98.907471%);stop-opacity:1;"/>
<stop offset="0.132813" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.374512%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.134949%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.89386%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.654297%,97.827148%,97.827148%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.706604%,97.706604%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.45343%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.213867%,97.106934%,97.106934%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.972778%,96.986389%,96.986389%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(93.733215%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.051697%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226563" style="stop-color:rgb(91.812134%,95.906067%,95.906067%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.571045%,95.785522%,95.785522%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.331482%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242187" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.649963%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.4104%,94.7052%,94.7052%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.584656%,94.584656%);stop-opacity:1;"/>
<stop offset="0.273437" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.24823%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.008667%,93.504333%,93.504333%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.383789%,93.383789%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.327148%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.087585%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351563" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367187" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.925415%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.685852%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398437" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.523682%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.284119%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492187" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523437" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.474792%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.235229%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617187" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.073059%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.833496%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.151978%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.912415%,82.455444%,82.455444%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.3349%,82.3349%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.750244%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.510681%,81.254578%,81.254578%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.134033%,81.134033%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.829163%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.5896%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.348511%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.108948%,80.053711%,80.053711%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.933167%,79.933167%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.427429%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.187866%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.946777%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.707214%,78.852844%,78.852844%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.7323%,78.7323%);stop-opacity:1;"/>
<stop offset="0.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.506348%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804687" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.025696%,78.012085%,78.012085%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.786133%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.104614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.865051%,76.931763%,76.931763%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.623962%,76.811218%,76.811218%);stop-opacity:1;"/>
<stop offset="0.851563" style="stop-color:rgb(53.384399%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.183533%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.94397%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.702881%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.463318%,75.730896%,75.730896%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.222229%,75.610352%,75.610352%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.982666%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
</defs>
<g id="surface1">
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.59404;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.860812 -90.8665 L -45.8345 -90.8665 C -48.033719 -90.8665 -49.818875 -92.64775 -49.818875 -94.850875 L -49.818875 -133.026656 C -49.818875 -135.225875 -48.033719 -137.011031 -45.8345 -137.011031 L 53.860812 -137.011031 C 56.060031 -137.011031 57.845187 -135.225875 57.845187 -133.026656 L 57.845187 -94.850875 C 57.845187 -92.64775 56.060031 -90.8665 53.860812 -90.8665 Z M 53.860812 -90.8665 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="183.166" y="102.857"/>
<use xlink:href="#glyph0-2" x="183.166" y="106.696043"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="183.166" y="115.234901"/>
<use xlink:href="#glyph0-3" x="183.166" y="123.326158"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0014375 -3.518844 L 0.0014375 -22.155562 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.208512 0.0014375 L 0.642106 2.091281 L 2.466325 0.0014375 L 0.642106 -2.092313 Z M 6.208512 0.0014375 " transform="matrix(0,1,1,0,117.647,23.1118)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0014375 -42.999312 L 0.0014375 -61.636031 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.208381 0.0014375 L 0.641975 2.091281 L 2.466194 0.0014375 L 0.641975 -2.092313 Z M 6.208381 0.0014375 " transform="matrix(0,1,1,0,117.647,62.5924)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0014375 -82.362594 L 0.0014375 -100.999312 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206726 0.0014375 L 0.644226 2.091281 L 2.464539 0.0014375 L 0.644226 -2.092313 Z M 6.206726 0.0014375 " transform="matrix(0,1,1,0,117.647,101.95343)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0014375 -122.839156 L 0.0014375 -141.475875 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206419 0.0014375 L 0.643919 2.091281 L 2.464231 0.0014375 L 0.643919 -2.092313 Z M 6.206419 0.0014375 " transform="matrix(0,1,1,0,117.647,142.4303)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0014375 -159.987594 L 0.0014375 -178.624312 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.205556 0.0014375 L 0.643056 2.091281 L 2.467275 0.0014375 L 0.643056 -2.092313 Z M 6.205556 0.0014375 " transform="matrix(0,1,1,0,117.647,179.5796)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 130.730469 32.261719 L 108.855469 32.261719 C 106.65625 32.261719 104.871094 34.046875 104.871094 36.246094 L 104.871094 43.882812 C 104.871094 46.085938 106.65625 47.871094 108.855469 47.871094 L 130.730469 47.871094 C 132.933594 47.871094 134.714844 46.085938 134.714844 43.882812 L 134.714844 36.246094 C 134.714844 34.046875 132.933594 32.261719 130.730469 32.261719 Z M 130.730469 32.261719 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<g clip-path="url(#clip3)" clip-rule="nonzero">
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 104.722656 53.183594 L 98.824219 31.160156 L 130.570312 22.652344 L 136.472656 44.675781 Z M 104.722656 53.183594 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.938937 7.805719 L -10.936063 7.805719 C -13.139188 7.805719 -14.920438 6.020563 -14.920438 3.817438 L -14.920438 -3.819281 C -14.920438 -6.0185 -13.139188 -7.803656 -10.936063 -7.803656 L 10.938937 -7.803656 C 13.138156 -7.803656 14.923312 -6.0185 14.923312 -3.819281 L 14.923312 3.817438 C 14.923312 6.020563 13.138156 7.805719 10.938937 7.805719 Z M 10.938937 7.805719 " transform="matrix(1,0,0,-1,117.647,37.919)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="106.046" y="40.35"/>
<use xlink:href="#glyph1-2" x="111.02732" y="40.35"/>
<use xlink:href="#glyph1-3" x="116.178005" y="40.35"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="120.691081" y="40.35"/>
<use xlink:href="#glyph1-5" x="124.098304" y="40.35"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 139.15625 71.742188 L 100.433594 71.742188 C 98.230469 71.742188 96.449219 73.527344 96.449219 75.726562 L 96.449219 83.246094 C 96.449219 85.445312 98.230469 87.230469 100.433594 87.230469 L 139.15625 87.230469 C 141.355469 87.230469 143.140625 85.445312 143.140625 83.246094 L 143.140625 75.726562 C 143.140625 73.527344 141.355469 71.742188 139.15625 71.742188 Z M 139.15625 71.742188 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<g clip-path="url(#clip6)" clip-rule="nonzero">
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear1);" d="M 97.429688 96.757812 L 90.429688 70.632812 L 137.863281 57.921875 L 144.863281 84.046875 Z M 97.429688 96.757812 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.360812 7.742344 L -19.361844 7.742344 C -21.561063 7.742344 -23.346219 5.961094 -23.346219 3.757969 L -23.346219 -3.757656 C -23.346219 -5.960781 -21.561063 -7.745937 -19.361844 -7.745937 L 19.360812 -7.745937 C 21.560031 -7.745937 23.345187 -5.960781 23.345187 -3.757656 L 23.345187 3.757969 C 23.345187 5.961094 21.560031 7.742344 19.360812 7.742344 Z M 19.360812 7.742344 " transform="matrix(1,0,0,-1,117.647,77.34)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="97.622" y="79.83"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="102.493731" y="79.83"/>
<use xlink:href="#glyph1-7" x="105.900954" y="79.83"/>
<use xlink:href="#glyph1-8" x="110.324366" y="79.83"/>
<use xlink:href="#glyph1-7" x="115.475051" y="79.83"/>
<use xlink:href="#glyph1-3" x="119.898463" y="79.83"/>
<use xlink:href="#glyph1-5" x="124.690493" y="79.83"/>
<use xlink:href="#glyph1-7" x="129.841178" y="79.83"/>
<use xlink:href="#glyph1-4" x="134.26459" y="79.83"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 161.710938 111.101562 L 77.878906 111.101562 C 75.675781 111.101562 73.890625 112.886719 73.890625 115.089844 L 73.890625 123.722656 C 73.890625 125.921875 75.675781 127.707031 77.878906 127.707031 L 161.710938 127.707031 C 163.910156 127.707031 165.695312 125.921875 165.695312 123.722656 L 165.695312 115.089844 C 165.695312 112.886719 163.910156 111.101562 161.710938 111.101562 Z M 161.710938 111.101562 "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<g clip-path="url(#clip9)" clip-rule="nonzero">
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear2);" d="M 77.894531 148.511719 L 67.59375 110.066406 L 157.398438 86.003906 L 167.699219 124.449219 Z M 77.894531 148.511719 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.9155 8.300969 L -41.916531 8.300969 C -44.11575 8.300969 -45.900906 6.519719 -45.900906 4.316594 L -45.900906 -4.316219 C -45.900906 -6.519344 -44.11575 -8.300594 -41.916531 -8.300594 L 41.9155 -8.300594 C 44.118625 -8.300594 45.899875 -6.519344 45.899875 -4.316219 L 45.899875 4.316594 C 45.899875 6.519719 44.118625 8.300969 41.9155 8.300969 Z M 41.9155 8.300969 " transform="matrix(1,0,0,-1,117.647,117.258)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="75.067" y="119.749"/>
<use xlink:href="#glyph1-7" x="80.217685" y="119.749"/>
<use xlink:href="#glyph1-3" x="84.641097" y="119.749"/>
<use xlink:href="#glyph1-5" x="89.433127" y="119.749"/>
<use xlink:href="#glyph1-7" x="94.583812" y="119.749"/>
<use xlink:href="#glyph1-4" x="99.007224" y="119.749"/>
<use xlink:href="#glyph1-9" x="102.414447" y="119.749"/>
<use xlink:href="#glyph1-7" x="107.395767" y="119.749"/>
<use xlink:href="#glyph1-10" x="111.819179" y="119.749"/>
<use xlink:href="#glyph1-11" x="116.411956" y="119.749"/>
<use xlink:href="#glyph1-12" x="118.793027" y="119.749"/>
<use xlink:href="#glyph1-11" x="122.38954" y="119.749"/>
<use xlink:href="#glyph1-13" x="124.770611" y="119.749"/>
<use xlink:href="#glyph1-1" x="129.921296" y="119.749"/>
<use xlink:href="#glyph1-9" x="134.902616" y="119.749"/>
<use xlink:href="#glyph1-14" x="139.883936" y="119.749"/>
<use xlink:href="#glyph1-3" x="142.265007" y="119.749"/>
<use xlink:href="#glyph1-12" x="147.057037" y="119.749"/>
<use xlink:href="#glyph1-15" x="150.65355" y="119.749"/>
<use xlink:href="#glyph1-8" x="155.076962" y="119.749"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 126.625 151.578125 L 112.960938 151.578125 C 110.761719 151.578125 108.976562 153.363281 108.976562 155.566406 L 108.976562 160.871094 C 108.976562 163.070312 110.761719 164.855469 112.960938 164.855469 L 126.625 164.855469 C 128.828125 164.855469 130.613281 163.070312 130.613281 160.871094 L 130.613281 155.566406 C 130.613281 153.363281 128.828125 151.578125 126.625 151.578125 Z M 126.625 151.578125 "/>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<g clip-path="url(#clip12)" clip-rule="nonzero">
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear3);" d="M 108.277344 168.117188 L 103.511719 150.320312 L 127.015625 144.023438 L 131.785156 161.820312 Z M 108.277344 168.117188 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.833469 6.637406 L -6.830594 6.637406 C -9.033719 6.637406 -10.818875 4.85225 -10.818875 2.653031 L -10.818875 -2.651656 C -10.818875 -4.854781 -9.033719 -6.639937 -6.830594 -6.639937 L 6.833469 -6.639937 C 9.032687 -6.639937 10.817844 -4.854781 10.817844 -2.651656 L 10.817844 2.653031 C 10.817844 4.85225 9.032687 6.637406 6.833469 6.637406 Z M 6.833469 6.637406 " transform="matrix(1,0,0,-1,117.647,156.071)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="110.15" y="159.279"/>
<use xlink:href="#glyph1-10" x="114.573412" y="159.279"/>
<use xlink:href="#glyph1-11" x="119.166189" y="159.279"/>
<use xlink:href="#glyph1-12" x="121.54726" y="159.279"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.458469 -122.839156 C 63.532687 -161.913375 64.520969 -69.819625 27.423312 -102.257125 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.207516 -0.00181079 L 0.643228 2.095421 L 2.465329 0.000483942 L 0.641957 -2.091696 Z M 6.207516 -0.00181079 " transform="matrix(-0.73027,0.68312,0.68312,0.73027,146.7844,103.9835)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -8.397 -42.999312 C -38.119656 -72.718062 -115.420438 -140.694625 -15.424344 -151.3665 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.208758 0.00188008 L 0.643636 2.09367 L 2.464707 -0.00155983 L 0.643196 -2.094276 Z M 6.208758 0.00188008 " transform="matrix(0.99524,0.0969,0.0969,-0.99524,99.85577,154.45493)"/>
</g>
</svg>
|