-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1775 lines (1644 loc) · 245 KB
/
Copy pathindex.html
File metadata and controls
1775 lines (1644 loc) · 245 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" type="image/ico" href="img/logo.ico">
<title>Jude Lim's Personal Homepage</title>
<!--Stylesheets-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/slick-theme.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,600;1,100;1,400;1,600&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap"
rel="stylesheet">
<!--Scripts-->
<script src="js/jquery-3.6.0.min.js" defer></script>
<script src="js/bootstrap.bundle.min.js" defer></script>
<script src="js/slick.min.js" defer></script>
<script src="js/scripts.js" defer></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<header>
<nav class="navbar fixed-top navbar-expand-lg">
<div class="mobo-toggle">
<div class="top"></div>
<div class="mid"></div>
<div class="bot"></div>
</div>
<div class="collapse navbar-collapse" id="navbarNav">
<a href="#bio" class="nav-name">
Jude Lim
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a href="/download/Resume.pdf" target="_blank" rel="noopener noreferrer" class="nav-link"
href="#">Resume</a>
</li>
</ul>
</div>
<div class="d-flex align-items-center nav-right">
<div class="d-flex justify-content-end socials">
<a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/jude-lim-9a2612101/">
<i class="fab fa-linkedin-in"></i>
</a>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/KenLim4337/">
<i class="fab fa-github-alt"></i>
</a>
<a target="_blank" rel="noopener noreferrer" href="mailto:lkyoong428@gmail.com">
<i class="fas fa-envelope"></i>
</a>
</div>
<div class="toggle-wrap">
<button class="modeToggle" data-toggle="tooltip" data-placement="top"
title="Click to toggle dark mode!">
<div class="toggleInner">
<div class="toggleCircle"></div>
</div>
</button>
<i class="darkIcon fas fa-sun"></i>
<i class="lightIcon fas fa-moon"></i>
</div>
</div>
</nav>
</header>
<main>
<section id="bio" class="container bio-block p-2">
<div class="row align-items-center">
<div class="head-wrap">
<img class="headshot" src="img/headshot.jpg" alt="Headshot">
</div>
<div class="bio-text py-3">
<h1>Hi! I'm Jude</h1>
<div class="bio-body pt-2">
<p>
I am a published master's graduate in Computer Science and Applications at Virginia Tech with a focus on
Human Computer Interaction, Data Analytics, and Machine Learning. My passion is developing
and designing interfaces that bridge the gap between users and the complex data and software
that drive modern systems.
</p>
<p>
Previously, I earned my undergraduate degree in Information Technology with Honours at the
University of
Queensland, completing my thesis in the realm of Computer-Supported Cooperative Work. I was
also able to learn various skills related to software design, development, and project
management.
</p>
<p>
I also have 5 years of work experience in a variety of roles ranging from front-end
development to assisting with computer science research. The bulk of these work years were spent designing, building, maintaining, analyzing, and testing responsive websites for businesses both big and small.
</p>
<p>
With a well-developed skill set centered around web technologies, data science, and UX, I am seeking
exciting opportunities to grow as a developer, data scientist, and UX practitioner.
</p>
<div class="cta-wrap">
<a href="/download/Resume.pdf" target="_blank" rel="noopener noreferrer"
class="resume-cta d-block">Resume <i class="fas fa-file-pdf"></i></a>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="container skills-block p-2">
<h1 class="text-center">Skills</h1>
<div class="section-sub-header text-left my-3 px-4">
Currently, my expertise is primarily in front-end development. I particularly enjoy creating interfaces that not only enhance the user experience but also boast human-readable code. Moving forward, my goal is to further apply and improve my current skills while simultaneously broadening by skillset by delving into other areas such as data analytics and machine learning in a professional setting.
</div>
<div class="skill-wrapper row px-2 mt-4">
<!--Dev, UX/Design, Data-->
<div class="col-lg-4 p-2 px-3">
<div class="card rounded p-4 pb-2">
<h3 class="text-left ps-3 pe-3">Development</h3>
<div class="card-body">
<div class="highlighted-skills">
<div class="row justify-content-around align-items-center">
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="HTML"><i class="fab fa-html5"></i>
<div>HTML</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="CSS"><i class="fab fa-css3-alt"></i>
<div>CSS</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Javascript" data-toggle="tooltip" data-placement="top"
title="Javascript"><i class="fab fa-js-square"></i>
<div>Javascript</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Git"><i class="fab fa-git-alt"></i>
<div>Git</div>
</span>
</div>
</div>
<div class="other-skills mt-1">
<h4 class="text-left">Other Skills</h4>
<p class="text-left">
Python, Django, Flask, SASS/SCSS, jQuery, Boostrap, React, PHP, Java, C#, Subversion
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 p-2 px-3">
<div class="card rounded p-4 pb-2 pb-3">
<h3 class="text-left ps-3 pe-3">UX and Design</h3>
<div class="card-body">
<div class="highlighted-skills">
<div class="row justify-content-around align-items-center">
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Figma"><i class="fab fa-figma"></i>
<div>Figma</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="InVision"><i class="fab fa-invision"></i>
<div>InVision</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Adobe Illustrator"><i>
<svg xmlns="http://www.w3.org/2000/svg"
style="enable-background:new 0 0 240 234" version="1.1"
viewBox="0 0 240 234" xml:space="preserve">
<title>Adobe Illustrator CC logo</title>
<style type="text/css">
.st0 {
fill: #330000;
}
.st1 {
fill: #FF9A00;
}
</style>
<g id="vlpa">
<g id="vlpb">
<g id="vlpc">
<g id="vlpd">
<path class="st0"
d="M42.5,0h155C221,0,240,19,240,42.5v149c0,23.5-19,42.5-42.5,42.5h-155C19,234,0,215,0,191.5v-149 C0,19,19,0,42.5,0z" />
</g>
</g>
</g>
<g id="vlpe">
<g id="vlpf">
<path class="st1"
d="m116 140h-37.2l-7.6 23.5c-0.2 0.9-1 1.5-1.9 1.4h-18.8c-1.1 0-1.4-0.6-1.1-1.8l32.2-92.7c0.3-1 0.6-2.1 1-3.3 0.4-2.1 0.6-4.3 0.6-6.5-0.1-0.5 0.3-1 0.8-1.1h0.3 25.6c0.8 0 1.2 0.3 1.3 0.8l36.5 103c0.3 1.1 0 1.6-1 1.6h-20.9c-0.7 0.1-1.4-0.4-1.6-1.1l-8.2-23.8zm-31.4-20.3h25.4c-0.6-2.1-1.4-4.6-2.3-7.2-0.9-2.7-1.8-5.6-2.7-8.6-1-3.1-1.9-6.1-2.9-9.2s-1.9-6-2.7-8.9c-0.8-2.8-1.5-5.4-2.2-7.8h-0.2c-0.9 4.3-2 8.6-3.4 12.9-1.5 4.8-3 9.8-4.6 14.8-1.4 5.1-2.9 9.8-4.4 14z" />
<path class="st1"
d="m170 77c-3.3 0.1-6.5-1.2-8.9-3.5-2.3-2.5-3.5-5.8-3.4-9.2-0.1-3.4 1.2-6.6 3.6-8.9s5.6-3.5 8.9-3.5c3.9 0 6.9 1.2 9.1 3.5 2.2 2.4 3.4 5.6 3.3 8.9 0.1 3.4-1.1 6.7-3.5 9.2-2.3 2.4-5.7 3.7-9.1 3.5zm-11.2 86.8v-77c0-1 0.4-1.4 1.3-1.4h19.8c0.9 0 1.3 0.5 1.3 1.4v77c0 1.1-0.4 1.6-1.3 1.6h-19.6c-1 0-1.5-0.6-1.5-1.6z" />
</g>
</g>
</g>
</svg>
</i>
<div>Adobe Illustrator</div>
</span>
</div>
</div>
<div class="other-skills mt-1">
<h4 class="text-left">Other Skills</h4>
<p class="text-left">
Adobe Photoshop, Miro, Balsamiq Wireframes
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 p-2 px-3">
<div class="card rounded p-4 pb-2">
<h3 class="text-left ps-3 pe-3">Data</h3>
<div class="card-body">
<div class="highlighted-skills">
<div class="row justify-content-around align-items-center">
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="postgreSQL"><i>
<svg xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 25.6 25.6"
width="64">
<style>
.B {
stroke-linecap: round
}
.C {
stroke-linejoin: round
}
.D {
stroke-linejoin: miter
}
.E {
stroke-width: .716
}
</style>
<g fill="none" stroke="#fff">
<path
d="M18.983 18.636c.163-1.357.114-1.555 1.124-1.336l.257.023c.777.035 1.793-.125 2.4-.402 1.285-.596 2.047-1.592.78-1.33-2.89.596-3.1-.383-3.1-.383 3.053-4.53 4.33-10.28 3.227-11.687-3.004-3.84-8.205-2.024-8.292-1.976l-.028.005c-.57-.12-1.2-.19-1.93-.2-1.308-.02-2.3.343-3.054.914 0 0-9.277-3.822-8.846 4.807.092 1.836 2.63 13.9 5.66 10.25C8.29 15.987 9.36 14.86 9.36 14.86c.53.353 1.167.533 1.834.468l.052-.044a2.01 2.01 0 0 0 .021.518c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.162l-.046.183c.306.245.285 1.76.33 2.842s.116 2.093.337 2.688.48 2.13 2.53 1.7c1.713-.367 3.023-.896 3.143-5.81"
fill="#000" stroke="#000" stroke-linecap="butt"
stroke-width="2.149" class="D" />
<path
d="M23.535 15.6c-2.89.596-3.1-.383-3.1-.383 3.053-4.53 4.33-10.28 3.228-11.687-3.004-3.84-8.205-2.023-8.292-1.976l-.028.005a10.31 10.31 0 0 0-1.929-.201c-1.308-.02-2.3.343-3.054.914 0 0-9.278-3.822-8.846 4.807.092 1.836 2.63 13.9 5.66 10.25C8.29 15.987 9.36 14.86 9.36 14.86c.53.353 1.167.533 1.834.468l.052-.044a2.02 2.02 0 0 0 .021.518c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.162l-.046.183c.306.245.52 1.593.484 2.815s-.06 2.06.18 2.716.48 2.13 2.53 1.7c1.713-.367 2.6-1.32 2.725-2.906.088-1.128.286-.962.3-1.97l.16-.478c.183-1.53.03-2.023 1.085-1.793l.257.023c.777.035 1.794-.125 2.39-.402 1.285-.596 2.047-1.592.78-1.33z"
fill="#336791" stroke="none" />
<g class="E">
<g class="B">
<path
d="M12.814 16.467c-.08 2.846.02 5.712.298 6.4s.875 2.05 2.926 1.612c1.713-.367 2.337-1.078 2.607-2.647l.633-5.017M10.356 2.2S1.072-1.596 1.504 7.033c.092 1.836 2.63 13.9 5.66 10.25C8.27 15.95 9.27 14.907 9.27 14.907m6.1-13.4c-.32.1 5.164-2.005 8.282 1.978 1.1 1.407-.175 7.157-3.228 11.687"
class="C" />
<path
d="M20.425 15.17s.2.98 3.1.382c1.267-.262.504.734-.78 1.33-1.054.49-3.418.615-3.457-.06-.1-1.745 1.244-1.215 1.147-1.652-.088-.394-.69-.78-1.086-1.744-.347-.84-4.76-7.29 1.224-6.333.22-.045-1.56-5.7-7.16-5.782S7.99 8.196 7.99 8.196"
stroke-linejoin="bevel" />
</g>
<g class="C">
<path
d="M11.247 15.768c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.163.35-.49-.002-1.27-.482-1.468-.232-.096-.542-.216-.94.23z" />
<path
d="M11.196 15.753c-.08-.513.168-1.122.433-1.836.398-1.07 1.316-2.14.582-5.537-.547-2.53-4.22-.527-4.22-.184s.166 1.74-.06 3.365c-.297 2.122 1.35 3.916 3.246 3.733"
class="B" />
</g>
</g>
<g fill="#fff" class="D">
<path
d="M10.322 8.145c-.017.117.215.43.516.472s.558-.202.575-.32-.215-.246-.516-.288-.56.02-.575.136z"
stroke-width=".239" />
<path
d="M19.486 7.906c.016.117-.215.43-.516.472s-.56-.202-.575-.32.215-.246.516-.288.56.02.575.136z"
stroke-width=".119" />
</g>
<path
d="M20.562 7.095c.05.92-.198 1.545-.23 2.524-.046 1.422.678 3.05-.413 4.68"
class="B C E" />
</g>
</svg>
</i>
<div>postgreSQL</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Python"><i class="fab fa-python"></i></i>
<div>Python</div>
</span>
<span class="key-skill d-inline-block" data-toggle="tooltip" data-placement="top"
title="Google Analytics"><i>
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4f, 2020-05-01)"
sodipodi:docname="Analytics_1.svg" id="svg4243" version="1.1"
viewBox="0 0 450 154.87004" height="154.87004pt" width="450pt">
<metadata id="metadata4247">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview inkscape:current-layer="svg4243"
inkscape:window-maximized="0" inkscape:window-y="0"
inkscape:window-x="0" inkscape:cy="5.2810631"
inkscape:cx="97.109558" inkscape:zoom="0.39975639" showgrid="false"
id="namedview4245" inkscape:window-height="900"
inkscape:window-width="1440" inkscape:pageshadow="2"
inkscape:pageopacity="0" guidetolerance="10" gridtolerance="10"
objecttolerance="10" borderopacity="1" bordercolor="#666666"
pagecolor="#ffffff" />
<defs id="defs1428">
<g id="g1319">
<symbol id="glyph0-0" overflow="visible">
<path id="path833"
d="M 21.046875,0 H 3.3125 v -30.078125 h 17.734375 z m -2.53125,-2.390625 v -25.28125 H 5.84375 v 25.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-1" overflow="visible">
<path id="path836"
d="M 3.359375,-30.078125 H 14.15625 c 1.507812,0 2.925781,0.355469 4.25,1.0625 1.332031,0.699219 2.390625,1.664063 3.171875,2.890625 0.789063,1.230469 1.1875,2.617188 1.1875,4.15625 0,1.460938 -0.375,2.734375 -1.125,3.828125 -0.742187,1.09375 -1.742187,1.933594 -3,2.515625 v 0.171875 c 1.519531,0.5 2.753906,1.371094 3.703125,2.609375 0.945312,1.230469 1.421875,2.667969 1.421875,4.3125 0,1.625 -0.414063,3.089844 -1.234375,4.390625 -0.824219,1.304687 -1.929688,2.320313 -3.3125,3.046875 C 17.832031,-0.363281 16.335938,0 14.734375,0 h -11.375 z M 14.15625,-17.09375 c 1.007812,0 1.894531,-0.226562 2.65625,-0.6875 0.769531,-0.46875 1.363281,-1.070312 1.78125,-1.8125 0.425781,-0.738281 0.640625,-1.5 0.640625,-2.28125 0,-0.757812 -0.203125,-1.507812 -0.609375,-2.25 -0.40625,-0.738281 -0.980469,-1.347656 -1.71875,-1.828125 -0.742188,-0.476563 -1.601562,-0.71875 -2.578125,-0.71875 H 6.9375 v 9.578125 z m 0.796875,13.6875 c 1.007813,0 1.910156,-0.25 2.703125,-0.75 0.800781,-0.5 1.414062,-1.148438 1.84375,-1.953125 0.4375,-0.800781 0.65625,-1.617187 0.65625,-2.453125 0,-0.84375 -0.226562,-1.660156 -0.671875,-2.453125 -0.449219,-0.800781 -1.078125,-1.445313 -1.890625,-1.9375 -0.8125,-0.488281 -1.75,-0.734375 -2.8125,-0.734375 H 6.9375 v 10.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-2" overflow="visible">
<path id="path839"
d="m 4.75,-25.375 c -0.699219,0 -1.304688,-0.25 -1.8125,-0.75 -0.5,-0.5 -0.75,-1.101562 -0.75,-1.8125 0,-0.71875 0.25,-1.320312 0.75,-1.8125 0.507812,-0.488281 1.113281,-0.734375 1.8125,-0.734375 0.726562,0 1.335938,0.246094 1.828125,0.734375 0.488281,0.492188 0.734375,1.09375 0.734375,1.8125 0,0.710938 -0.246094,1.3125 -0.734375,1.8125 -0.492187,0.5 -1.101563,0.75 -1.828125,0.75 z m -1.765625,3.953125 h 3.5625 V 0 h -3.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-3" overflow="visible">
<path id="path842"
d="m 12.1875,0.671875 c -2.054688,0 -3.890625,-0.492187 -5.515625,-1.46875 C 5.046875,-1.773438 3.78125,-3.125 2.875,-4.84375 1.96875,-6.570312 1.515625,-8.515625 1.515625,-10.671875 c 0,-2.039063 0.425781,-3.9375 1.28125,-5.6875 0.851563,-1.75 2.066406,-3.140625 3.640625,-4.171875 1.582031,-1.039062 3.398438,-1.5625 5.453125,-1.5625 2.09375,0 3.910156,0.46875 5.453125,1.40625 1.539062,0.9375 2.722656,2.234375 3.546875,3.890625 0.832031,1.648437 1.25,3.539063 1.25,5.671875 0,0.335938 -0.03125,0.699219 -0.09375,1.09375 H 5.078125 c 0.082031,1.617188 0.472656,2.984375 1.171875,4.109375 0.707031,1.125 1.597656,1.96875 2.671875,2.53125 1.082031,0.554687 2.210937,0.828125 3.390625,0.828125 2.789062,0 4.898438,-1.285156 6.328125,-3.859375 l 3.03125,1.46875 c -0.898437,1.710937 -2.140625,3.074219 -3.734375,4.09375 -1.59375,1.019531 -3.511719,1.53125 -5.75,1.53125 z m 6.171875,-13.65625 c -0.0625,-0.894531 -0.320313,-1.789063 -0.765625,-2.6875 -0.449219,-0.894531 -1.152344,-1.648437 -2.109375,-2.265625 -0.949219,-0.613281 -2.148437,-0.921875 -3.59375,-0.921875 -1.6875,0 -3.121094,0.542969 -4.296875,1.625 -1.167969,1.074219 -1.933594,2.492187 -2.296875,4.25 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-4" overflow="visible">
<path id="path845"
d="m 2.640625,-21.421875 h 3.40625 v 3.15625 H 6.21875 c 0.582031,-1.0625 1.519531,-1.960937 2.8125,-2.703125 1.289062,-0.75 2.660156,-1.125 4.109375,-1.125 2.582031,0 4.550781,0.75 5.90625,2.25 1.351563,1.5 2.03125,3.539062 2.03125,6.109375 V 0 h -3.5625 v -13.1875 c 0,-1.988281 -0.480469,-3.429688 -1.4375,-4.328125 -0.949219,-0.894531 -2.246094,-1.34375 -3.890625,-1.34375 -1.15625,0 -2.1875,0.324219 -3.09375,0.96875 -0.90625,0.648437 -1.617188,1.496094 -2.125,2.546875 -0.5,1.042969 -0.75,2.140625 -0.75,3.296875 V 0 H 2.640625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-5" overflow="visible">
<path id="path848"
d="m 0.296875,-21.421875 h 3.8125 L 10.75,-4.203125 h 0.09375 l 6.71875,-17.21875 h 3.734375 L 12.5625,0 H 8.953125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-6" overflow="visible">
<path id="path851"
d="m 10.421875,0.671875 c -2.585937,0 -4.554687,-0.7539062 -5.90625,-2.265625 -1.355469,-1.507812 -2.03125,-3.625 -2.03125,-6.34375 v -13.484375 h 3.5625 v 12.9375 c 0,2.042969 0.457031,3.542969 1.375,4.5 0.925781,0.949219 2.175781,1.421875 3.75,1.421875 1.207031,0 2.28125,-0.320312 3.21875,-0.96875 0.9375,-0.644531 1.660156,-1.484375 2.171875,-2.515625 0.519531,-1.039063 0.78125,-2.132813 0.78125,-3.28125 v -12.09375 h 3.578125 V 0 h -3.40625 V -3.109375 H 17.34375 c -0.585938,1.0625 -1.523438,1.960937 -2.8125,2.6875 -1.292969,0.726563 -2.664062,1.09375 -4.109375,1.09375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-7" overflow="visible">
<path id="path854"
d="m 11.765625,0.671875 c -1.9375,0 -3.683594,-0.492187 -5.234375,-1.46875 C 4.976562,-1.773438 3.753906,-3.125 2.859375,-4.84375 c -0.898437,-1.726562 -1.34375,-3.679688 -1.34375,-5.859375 0,-2.15625 0.445313,-4.101563 1.34375,-5.84375 0.894531,-1.738281 2.117187,-3.097656 3.671875,-4.078125 1.550781,-0.976562 3.296875,-1.46875 5.234375,-1.46875 1.625,0 3.078125,0.375 4.359375,1.125 1.289062,0.742188 2.269531,1.652344 2.9375,2.734375 h 0.171875 l -0.171875,-2.96875 v -8.875 h 3.578125 V 0 h -3.40625 V -3.15625 H 19.0625 c -0.667969,1.074219 -1.648438,1.980469 -2.9375,2.71875 -1.28125,0.738281 -2.734375,1.109375 -4.359375,1.109375 z m 0.375,-3.234375 c 1.257813,0 2.425781,-0.332031 3.5,-1 1.082031,-0.675781 1.953125,-1.628906 2.609375,-2.859375 0.65625,-1.238281 0.984375,-2.664063 0.984375,-4.28125 0,-1.625 -0.328125,-3.050781 -0.984375,-4.28125 -0.65625,-1.238281 -1.527344,-2.191406 -2.609375,-2.859375 -1.074219,-0.675781 -2.242187,-1.015625 -3.5,-1.015625 -1.230469,0 -2.390625,0.339844 -3.484375,1.015625 -1.09375,0.667969 -1.96875,1.625 -2.625,2.875 -0.65625,1.242188 -0.984375,2.664062 -0.984375,4.265625 0,1.59375 0.328125,3.015625 0.984375,4.265625 0.65625,1.242188 1.53125,2.199219 2.625,2.875 1.09375,0.667969 2.253906,1 3.484375,1 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-8" overflow="visible">
<path id="path857"
d="M 9.484375,0.671875 C 7.921875,0.671875 6.519531,0.363281 5.28125,-0.25 4.050781,-0.863281 3.097656,-1.707031 2.421875,-2.78125 c -0.667969,-1.082031 -1,-2.3125 -1,-3.6875 0,-2.269531 0.851563,-4.039062 2.5625,-5.3125 1.707031,-1.269531 3.863281,-1.90625 6.46875,-1.90625 1.289063,0 2.488281,0.140625 3.59375,0.421875 1.101563,0.273437 1.953125,0.589844 2.546875,0.953125 v -1.296875 c 0,-1.59375 -0.5625,-2.875 -1.6875,-3.84375 -1.117188,-0.96875 -2.527344,-1.453125 -4.234375,-1.453125 -1.179687,0 -2.277344,0.261719 -3.296875,0.78125 -1.023438,0.523438 -1.828125,1.246094 -2.421875,2.171875 l -2.6875,-2.015625 C 3.109375,-19.257812 4.269531,-20.269531 5.75,-21 c 1.488281,-0.726562 3.128906,-1.09375 4.921875,-1.09375 2.90625,0 5.179687,0.765625 6.828125,2.296875 1.65625,1.523437 2.484375,3.601563 2.484375,6.234375 V 0 H 16.59375 v -3.0625 h -0.171875 c -0.617187,1.03125 -1.542969,1.914062 -2.78125,2.640625 -1.230469,0.726563 -2.617187,1.09375 -4.15625,1.09375 z m 0.34375,-3.15625 c 1.207031,0 2.328125,-0.304687 3.359375,-0.921875 1.03125,-0.613281 1.851562,-1.4375 2.46875,-2.46875 0.625,-1.039062 0.9375,-2.175781 0.9375,-3.40625 -0.679688,-0.445312 -1.507812,-0.8125 -2.484375,-1.09375 C 13.128906,-10.65625 12.09375,-10.796875 11,-10.796875 c -1.960938,0 -3.4375,0.40625 -4.4375,1.21875 -0.992188,0.8125 -1.484375,1.867187 -1.484375,3.15625 0,1.179687 0.445313,2.132813 1.34375,2.859375 0.894531,0.71875 2.03125,1.078125 3.40625,1.078125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-9" overflow="visible">
<path id="path860"
d="M 10.125,0.671875 C 7.820312,0.671875 5.898438,0.132812 4.359375,-0.9375 2.828125,-2.019531 1.738281,-3.398438 1.09375,-5.078125 l 3.1875,-1.4375 c 0.53125,1.292969 1.320312,2.289063 2.375,2.984375 1.050781,0.699219 2.207031,1.046875 3.46875,1.046875 1.34375,0 2.488281,-0.269531 3.4375,-0.8125 C 14.519531,-3.835938 15,-4.613281 15,-5.625 c 0,-0.894531 -0.382812,-1.613281 -1.140625,-2.15625 -0.761719,-0.550781 -1.949219,-1.023438 -3.5625,-1.421875 L 7.6875,-9.875 c -1.710938,-0.414062 -3.109375,-1.128906 -4.203125,-2.140625 -1.09375,-1.007813 -1.640625,-2.3125 -1.640625,-3.90625 0,-1.226563 0.367188,-2.3125 1.109375,-3.25 0.75,-0.9375 1.738281,-1.65625 2.96875,-2.15625 1.226563,-0.507813 2.554687,-0.765625 3.984375,-0.765625 1.875,0 3.546875,0.40625 5.015625,1.21875 1.476563,0.8125 2.523437,1.949219 3.140625,3.40625 l -3.109375,1.421875 C 14.003906,-17.953125 12.3125,-18.90625 9.875,-18.90625 c -1.179688,0 -2.210938,0.277344 -3.09375,0.828125 C 5.894531,-17.535156 5.453125,-16.84375 5.453125,-16 c 0,0.78125 0.304687,1.417969 0.921875,1.90625 0.625,0.492188 1.550781,0.890625 2.78125,1.203125 l 3.109375,0.796875 c 2.09375,0.53125 3.671875,1.324219 4.734375,2.375 1.070312,1.054688 1.609375,2.335938 1.609375,3.84375 0,1.3125 -0.382813,2.46875 -1.140625,3.46875 -0.75,0.992188 -1.773438,1.75 -3.0625,2.28125 C 13.113281,0.40625 11.6875,0.671875 10.125,0.671875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-10" overflow="visible">
<path id="path863"
d="m 17.46875,0.671875 c -2.824219,0 -5.429688,-0.6796875 -7.8125,-2.046875 C 7.28125,-2.75 5.390625,-4.640625 3.984375,-7.046875 2.585938,-9.460938 1.890625,-12.125 1.890625,-15.03125 c 0,-2.914062 0.695313,-5.578125 2.09375,-7.984375 1.40625,-2.40625 3.296875,-4.296875 5.671875,-5.671875 2.382812,-1.375 4.988281,-2.0625 7.8125,-2.0625 2.21875,0 4.296875,0.398438 6.234375,1.1875 1.945313,0.78125 3.550781,1.886719 4.8125,3.3125 L 26,-23.6875 c -0.980469,-1.175781 -2.214844,-2.078125 -3.703125,-2.703125 -1.480469,-0.632813 -3.074219,-0.953125 -4.78125,-0.953125 -2.105469,0 -4.085937,0.511719 -5.9375,1.53125 -1.84375,1.023438 -3.320313,2.464844 -4.421875,4.328125 C 6.050781,-19.617188 5.5,-17.46875 5.5,-15.03125 c 0,2.4375 0.550781,4.589844 1.65625,6.453125 1.101562,1.855469 2.578125,3.292969 4.421875,4.3125 1.851563,1.023437 3.832031,1.53125 5.9375,1.53125 2.007813,0 3.691406,-0.3125 5.046875,-0.9375 1.363281,-0.632813 2.535156,-1.46875 3.515625,-2.5 0.726563,-0.78125 1.316406,-1.722656 1.765625,-2.828125 0.445312,-1.113281 0.726562,-2.34375 0.84375,-3.6875 H 17.5625 V -16 H 32 c 0.144531,0.78125 0.21875,1.511719 0.21875,2.1875 0,1.84375 -0.296875,3.640625 -0.890625,5.390625 -0.585937,1.75 -1.523437,3.28125 -2.8125,4.59375 -2.773437,3 -6.453125,4.5 -11.046875,4.5 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-11" overflow="visible">
<path id="path866"
d="m 12.515625,0.671875 c -2.105469,0 -3.996094,-0.507813 -5.671875,-1.515625 -1.679688,-1.007812 -2.984375,-2.378906 -3.921875,-4.109375 -0.9375,-1.738281 -1.40625,-3.65625 -1.40625,-5.75 0,-2.101563 0.46875,-4.019531 1.40625,-5.75 0.9375,-1.738281 2.242187,-3.113281 3.921875,-4.125 1.675781,-1.007813 3.566406,-1.515625 5.671875,-1.515625 2.101563,0 3.992187,0.507812 5.671875,1.515625 1.675781,1.011719 2.984375,2.386719 3.921875,4.125 0.9375,1.730469 1.40625,3.648437 1.40625,5.75 0,2.09375 -0.46875,4.011719 -1.40625,5.75 -0.9375,1.730469 -2.246094,3.101563 -3.921875,4.109375 -1.679688,1.007812 -3.570312,1.515625 -5.671875,1.515625 z m 0,-3.234375 c 1.3125,0 2.535156,-0.328125 3.671875,-0.984375 1.132812,-0.65625 2.046875,-1.597656 2.734375,-2.828125 0.6875,-1.238281 1.03125,-2.679688 1.03125,-4.328125 0,-1.65625 -0.34375,-3.097656 -1.03125,-4.328125 -0.6875,-1.238281 -1.601563,-2.1875 -2.734375,-2.84375 -1.136719,-0.65625 -2.359375,-0.984375 -3.671875,-0.984375 -1.3125,0 -2.546875,0.328125 -3.703125,0.984375 -1.148438,0.65625 -2.0625,1.605469 -2.75,2.84375 -0.679688,1.230469 -1.015625,2.671875 -1.015625,4.328125 0,1.648437 0.335937,3.089844 1.015625,4.328125 0.6875,1.230469 1.601562,2.171875 2.75,2.828125 1.15625,0.65625 2.390625,0.984375 3.703125,0.984375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-12" overflow="visible">
<path id="path869"
d="M 12.046875,9.75 C 9.535156,9.75 7.457031,9.160156 5.8125,7.984375 4.175781,6.804688 3.078125,5.390625 2.515625,3.734375 l 3.28125,-1.375 c 0.445313,1.226563 1.222656,2.226563 2.328125,3 1.101562,0.769531 2.410156,1.15625 3.921875,1.15625 2.21875,0 3.9375,-0.648437 5.15625,-1.9375 C 18.421875,3.285156 19.03125,1.46875 19.03125,-0.875 v -2.40625 h -0.171875 c -0.699219,1.09375 -1.6875,1.984375 -2.96875,2.671875 -1.273437,0.6875 -2.71875,1.03125 -4.34375,1.03125 -1.84375,0 -3.53125,-0.4726562 -5.0625,-1.421875 -1.523437,-0.957031 -2.730469,-2.289062 -3.625,-4 -0.898437,-1.707031 -1.34375,-3.65625 -1.34375,-5.84375 0,-2.144531 0.445313,-4.078125 1.34375,-5.796875 0.894531,-1.726563 2.101563,-3.066406 3.625,-4.015625 1.53125,-0.957031 3.21875,-1.4375 5.0625,-1.4375 1.625,0 3.070313,0.34375 4.34375,1.03125 1.28125,0.6875 2.269531,1.589844 2.96875,2.703125 h 0.171875 v -3.0625 h 3.390625 V -0.84375 c 0,3.445312 -0.953125,6.070312 -2.859375,7.875 C 17.664062,8.84375 15.160156,9.75 12.046875,9.75 Z m 0,-12.5625 c 1.289063,0 2.460937,-0.320312 3.515625,-0.96875 1.050781,-0.644531 1.890625,-1.566406 2.515625,-2.765625 0.632813,-1.207031 0.953125,-2.640625 0.953125,-4.296875 0,-1.675781 -0.320312,-3.113281 -0.953125,-4.3125 -0.625,-1.207031 -1.464844,-2.125 -2.515625,-2.75 -1.054688,-0.632812 -2.226562,-0.953125 -3.515625,-0.953125 -1.28125,0 -2.453125,0.324219 -3.515625,0.96875 -1.0625,0.648437 -1.914062,1.574219 -2.546875,2.78125 -0.625,1.199219 -0.9375,2.621094 -0.9375,4.265625 0,1.65625 0.3125,3.09375 0.9375,4.3125 0.632813,1.21875 1.484375,2.148438 2.546875,2.78125 1.0625,0.625 2.234375,0.9375 3.515625,0.9375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph0-13" overflow="visible">
<path id="path872"
d="M 2.640625,-30.078125 H 6.21875 V 0 H 2.640625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-0" overflow="visible">
<path id="path875"
d="M 6.765625,0 H 1.0625 v -9.671875 h 5.703125 z m -0.8125,-0.765625 v -8.125 H 1.875 v 8.125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-1" overflow="visible">
<path id="path878"
d="M 5.609375,0.21875 C 4.703125,0.21875 3.863281,0 3.09375,-0.4375 2.332031,-0.882812 1.726562,-1.492188 1.28125,-2.265625 c -0.449219,-0.769531 -0.671875,-1.625 -0.671875,-2.5625 0,-0.9375 0.222656,-1.789063 0.671875,-2.5625 C 1.726562,-8.171875 2.332031,-8.78125 3.09375,-9.21875 3.863281,-9.65625 4.703125,-9.875 5.609375,-9.875 6.328125,-9.875 7,-9.75 7.625,-9.5 c 0.625,0.25 1.140625,0.605469 1.546875,1.0625 l -0.8125,0.828125 c -0.3125,-0.382813 -0.710937,-0.675781 -1.1875,-0.875 C 6.691406,-8.679688 6.175781,-8.78125 5.625,-8.78125 c -0.679688,0 -1.3125,0.167969 -1.90625,0.5 -0.59375,0.324219 -1.070312,0.789062 -1.421875,1.390625 -0.355469,0.59375 -0.53125,1.28125 -0.53125,2.0625 0,0.78125 0.175781,1.476563 0.53125,2.078125 C 2.648438,-2.15625 3.125,-1.691406 3.71875,-1.359375 4.3125,-1.035156 4.945312,-0.875 5.625,-0.875 c 0.644531,0 1.1875,-0.097656 1.625,-0.296875 0.4375,-0.207031 0.816406,-0.476563 1.140625,-0.8125 0.226563,-0.25 0.414063,-0.550781 0.5625,-0.90625 0.144531,-0.351563 0.234375,-0.75 0.265625,-1.1875 H 5.640625 v -1.0625 h 4.640625 c 0.05078,0.25 0.07813,0.484375 0.07813,0.703125 0,0.59375 -0.101563,1.171875 -0.296875,1.734375 -0.1875,0.5625 -0.484375,1.054687 -0.890625,1.46875 -0.898437,0.96875 -2.085937,1.453125 -3.5625,1.453125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-2" overflow="visible">
<path id="path881"
d="m 4.015625,0.21875 c -0.667969,0 -1.273437,-0.1640625 -1.8125,-0.484375 C 1.660156,-0.585938 1.238281,-1.03125 0.9375,-1.59375 0.632812,-2.15625 0.484375,-2.769531 0.484375,-3.4375 c 0,-0.675781 0.148437,-1.289062 0.453125,-1.84375 0.300781,-0.5625 0.722656,-1.003906 1.265625,-1.328125 0.539063,-0.320313 1.144531,-0.484375 1.8125,-0.484375 0.675781,0 1.285156,0.164062 1.828125,0.484375 0.539062,0.324219 0.960938,0.765625 1.265625,1.328125 0.300781,0.554688 0.453125,1.167969 0.453125,1.84375 0,0.667969 -0.152344,1.28125 -0.453125,1.84375 C 6.804688,-1.03125 6.382812,-0.585938 5.84375,-0.265625 5.300781,0.0546875 4.691406,0.21875 4.015625,0.21875 Z m 0,-1.046875 c 0.425781,0 0.820313,-0.101563 1.1875,-0.3125 0.363281,-0.207031 0.65625,-0.507813 0.875,-0.90625 0.21875,-0.394531 0.328125,-0.859375 0.328125,-1.390625 0,-0.53125 -0.109375,-0.992188 -0.328125,-1.390625 -0.21875,-0.394531 -0.511719,-0.695313 -0.875,-0.90625 -0.367187,-0.21875 -0.761719,-0.328125 -1.1875,-0.328125 -0.417969,0 -0.8125,0.109375 -1.1875,0.328125 -0.367187,0.210937 -0.65625,0.511719 -0.875,0.90625 C 1.734375,-4.429688 1.625,-3.96875 1.625,-3.4375 c 0,0.53125 0.109375,0.996094 0.328125,1.390625 0.21875,0.398437 0.507813,0.699219 0.875,0.90625 0.375,0.210937 0.769531,0.3125 1.1875,0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-3" overflow="visible">
<path id="path884"
d="M 3.875,3.125 C 3.0625,3.125 2.390625,2.9375 1.859375,2.5625 1.335938,2.1875 0.988281,1.734375 0.8125,1.203125 L 1.859375,0.75 c 0.144531,0.394531 0.394531,0.71875 0.75,0.96875 0.351563,0.25 0.773437,0.375 1.265625,0.375 0.707031,0 1.253906,-0.210938 1.640625,-0.625 0.394531,-0.417969 0.59375,-1 0.59375,-1.75 V -1.046875 H 6.0625 C 5.832031,-0.703125 5.515625,-0.414062 5.109375,-0.1875 4.703125,0.03125 4.238281,0.140625 3.71875,0.140625 3.125,0.140625 2.578125,-0.0078125 2.078125,-0.3125 1.585938,-0.625 1.195312,-1.054688 0.90625,-1.609375 0.625,-2.160156 0.484375,-2.785156 0.484375,-3.484375 c 0,-0.6875 0.140625,-1.304687 0.421875,-1.859375 0.289062,-0.5625 0.679688,-0.992188 1.171875,-1.296875 0.5,-0.300781 1.046875,-0.453125 1.640625,-0.453125 0.519531,0 0.984375,0.109375 1.390625,0.328125 0.40625,0.21875 0.722656,0.507813 0.953125,0.859375 h 0.046875 v -0.984375 h 1.09375 v 6.625 C 7.203125,0.835938 6.894531,1.675781 6.28125,2.25 5.675781,2.832031 4.875,3.125 3.875,3.125 Z m 0,-4.03125 c 0.414062,0 0.789062,-0.101562 1.125,-0.3125 0.34375,-0.207031 0.613281,-0.503906 0.8125,-0.890625 0.195312,-0.382813 0.296875,-0.84375 0.296875,-1.375 C 6.109375,-4.023438 6.007812,-4.488281 5.8125,-4.875 5.613281,-5.257812 5.34375,-5.550781 5,-5.75 4.664062,-5.957031 4.289062,-6.0625 3.875,-6.0625 c -0.417969,0 -0.796875,0.105469 -1.140625,0.3125 -0.335937,0.210938 -0.605469,0.507812 -0.8125,0.890625 -0.199219,0.386719 -0.296875,0.84375 -0.296875,1.375 0,0.53125 0.097656,0.996094 0.296875,1.390625 0.207031,0.386719 0.476563,0.683594 0.8125,0.890625 0.34375,0.199219 0.722656,0.296875 1.140625,0.296875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-4" overflow="visible">
<path id="path887"
d="M 0.84375,-9.671875 H 2 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-5" overflow="visible">
<path id="path890"
d="M 3.921875,0.21875 C 3.253906,0.21875 2.660156,0.0625 2.140625,-0.25 1.617188,-0.570312 1.210938,-1.007812 0.921875,-1.5625 c -0.292969,-0.550781 -0.4375,-1.171875 -0.4375,-1.859375 0,-0.664063 0.132813,-1.28125 0.40625,-1.84375 0.28125,-0.5625 0.671875,-1.003906 1.171875,-1.328125 0.507812,-0.332031 1.097656,-0.5 1.765625,-0.5 0.664063,0 1.242187,0.152344 1.734375,0.453125 0.5,0.292969 0.878906,0.703125 1.140625,1.234375 0.269531,0.53125 0.40625,1.140625 0.40625,1.828125 0,0.105469 -0.00781,0.226563 -0.015625,0.359375 H 1.640625 C 1.660156,-2.695312 1.78125,-2.253906 2,-1.890625 c 0.226562,0.355469 0.515625,0.621094 0.859375,0.796875 0.351563,0.179688 0.71875,0.265625 1.09375,0.265625 0.90625,0 1.585937,-0.410156 2.046875,-1.234375 l 0.96875,0.46875 C 6.675781,-1.039062 6.273438,-0.597656 5.765625,-0.265625 5.253906,0.0546875 4.640625,0.21875 3.921875,0.21875 Z M 5.90625,-4.171875 C 5.882812,-4.460938 5.800781,-4.75 5.65625,-5.03125 5.507812,-5.320312 5.28125,-5.566406 4.96875,-5.765625 4.664062,-5.960938 4.285156,-6.0625 3.828125,-6.0625 c -0.542969,0 -1.007813,0.179688 -1.390625,0.53125 -0.375,0.34375 -0.621094,0.796875 -0.734375,1.359375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-6" overflow="visible">
<path id="path893"
d="M 3.875,-9.671875 H 5.171875 L 8.84375,0 h -1.25 L 6.609375,-2.65625 H 2.4375 L 1.453125,0 h -1.25 z m 2.34375,5.9375 -1.296875,-3.484375 -0.375,-1.046875 H 4.5 L 4.125,-7.21875 2.828125,-3.734375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-7" overflow="visible">
<path id="path896"
d="M 0.84375,-6.890625 H 1.9375 V -5.875 H 2 c 0.1875,-0.34375 0.488281,-0.628906 0.90625,-0.859375 0.414062,-0.238281 0.851562,-0.359375 1.3125,-0.359375 0.832031,0 1.46875,0.242188 1.90625,0.71875 0.4375,0.480469 0.65625,1.132812 0.65625,1.953125 V 0 H 5.625 v -4.234375 c 0,-0.644531 -0.152344,-1.109375 -0.453125,-1.390625 -0.304687,-0.289062 -0.71875,-0.4375 -1.25,-0.4375 -0.375,0 -0.710937,0.105469 -1,0.3125 -0.292969,0.210938 -0.523437,0.484375 -0.6875,0.828125 C 2.078125,-4.585938 2,-4.238281 2,-3.875 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-8" overflow="visible">
<path id="path899"
d="m 3.046875,0.21875 c -0.5,0 -0.949219,-0.101562 -1.34375,-0.296875 C 1.304688,-0.273438 1,-0.546875 0.78125,-0.890625 c -0.21875,-0.351563 -0.328125,-0.75 -0.328125,-1.1875 0,-0.726563 0.273437,-1.296875 0.828125,-1.703125 0.550781,-0.414062 1.242188,-0.625 2.078125,-0.625 0.414063,0 0.800781,0.046875 1.15625,0.140625 0.351563,0.09375 0.625,0.199219 0.8125,0.3125 V -4.375 c 0,-0.507812 -0.183594,-0.921875 -0.546875,-1.234375 -0.355469,-0.3125 -0.808594,-0.46875 -1.359375,-0.46875 -0.375,0 -0.730469,0.085937 -1.0625,0.25 C 2.035156,-5.660156 1.78125,-5.425781 1.59375,-5.125 L 0.734375,-5.78125 C 1.003906,-6.195312 1.375,-6.519531 1.84375,-6.75 c 0.476562,-0.226562 1.003906,-0.34375 1.578125,-0.34375 0.9375,0 1.671875,0.246094 2.203125,0.734375 0.53125,0.492187 0.796875,1.15625 0.796875,2 V 0 H 5.328125 V -0.984375 H 5.28125 C 5.082031,-0.648438 4.785156,-0.363281 4.390625,-0.125 3.992188,0.101562 3.546875,0.21875 3.046875,0.21875 Z M 3.15625,-0.796875 c 0.382812,0 0.742188,-0.097656 1.078125,-0.296875 0.332031,-0.195312 0.597656,-0.460938 0.796875,-0.796875 0.195312,-0.332031 0.296875,-0.695313 0.296875,-1.09375 -0.210937,-0.144531 -0.476563,-0.257813 -0.796875,-0.34375 -0.3125,-0.09375 -0.648438,-0.140625 -1,-0.140625 -0.625,0 -1.101562,0.132812 -1.421875,0.390625 -0.3125,0.261719 -0.46875,0.601563 -0.46875,1.015625 0,0.375 0.140625,0.683594 0.421875,0.921875 0.289062,0.230469 0.65625,0.34375 1.09375,0.34375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-9" overflow="visible">
<path id="path902"
d="M 2.953125,-0.4375 0.109375,-6.890625 H 1.34375 l 2.171875,5.125 H 3.53125 l 2.078125,-5.125 h 1.25 l -4.25,9.8125 h -1.1875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-10" overflow="visible">
<path id="path905"
d="m 3.5,0.109375 c -0.28125,0 -0.542969,-0.0429688 -0.78125,-0.125 -0.242188,-0.09375 -0.4375,-0.21875 -0.59375,-0.375 C 1.757812,-0.734375 1.578125,-1.207031 1.578125,-1.8125 V -5.84375 H 0.375 v -1.046875 h 1.203125 v -1.9375 h 1.15625 v 1.9375 h 1.6875 v 1.046875 h -1.6875 v 3.75 c 0,0.375 0.066406,0.65625 0.203125,0.84375 0.175781,0.199219 0.425781,0.296875 0.75,0.296875 0.28125,0 0.53125,-0.078125 0.75,-0.234375 v 1.125 C 4.300781,0 4.164062,0.0390625 4.03125,0.0625 3.894531,0.09375 3.71875,0.109375 3.5,0.109375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-11" overflow="visible">
<path id="path908"
d="m 1.53125,-8.15625 c -0.230469,0 -0.429688,-0.078125 -0.59375,-0.234375 -0.15625,-0.164063 -0.234375,-0.363281 -0.234375,-0.59375 0,-0.226563 0.078125,-0.421875 0.234375,-0.578125 0.164062,-0.15625 0.363281,-0.234375 0.59375,-0.234375 0.226562,0 0.421875,0.078125 0.578125,0.234375 0.15625,0.15625 0.234375,0.351562 0.234375,0.578125 0,0.230469 -0.078125,0.429687 -0.234375,0.59375 -0.15625,0.15625 -0.351563,0.234375 -0.578125,0.234375 z m -0.578125,1.265625 h 1.15625 V 0 h -1.15625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-12" overflow="visible">
<path id="path911"
d="m 3.96875,0.21875 c -0.667969,0 -1.265625,-0.1640625 -1.796875,-0.484375 -0.53125,-0.320313 -0.949219,-0.757813 -1.25,-1.3125 C 0.628906,-2.128906 0.484375,-2.75 0.484375,-3.4375 c 0,-0.695312 0.144531,-1.320312 0.4375,-1.875 0.300781,-0.5625 0.71875,-1 1.25,-1.3125 0.53125,-0.3125 1.128906,-0.46875 1.796875,-0.46875 0.75,0 1.375,0.171875 1.875,0.515625 0.507812,0.34375 0.875,0.804687 1.09375,1.375 l -1.03125,0.4375 C 5.726562,-5.191406 5.46875,-5.515625 5.125,-5.734375 4.789062,-5.953125 4.390625,-6.0625 3.921875,-6.0625 c -0.40625,0 -0.789063,0.109375 -1.140625,0.328125 -0.355469,0.21875 -0.636719,0.527344 -0.84375,0.921875 -0.210938,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.511719 0.101562,0.964844 0.3125,1.359375 0.207031,0.398437 0.488281,0.703125 0.84375,0.921875 0.351562,0.21875 0.734375,0.328125 1.140625,0.328125 0.476563,0 0.894531,-0.109375 1.25,-0.328125 0.351563,-0.226562 0.613281,-0.550781 0.78125,-0.96875 l 1.03125,0.4375 C 6.742188,-1.125 6.363281,-0.664062 5.84375,-0.3125 5.332031,0.0390625 4.707031,0.21875 3.96875,0.21875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-13" overflow="visible">
<path id="path914"
d="M 3.25,0.21875 C 2.507812,0.21875 1.890625,0.046875 1.390625,-0.296875 0.898438,-0.648438 0.550781,-1.097656 0.34375,-1.640625 L 1.375,-2.09375 c 0.175781,0.417969 0.429688,0.742188 0.765625,0.96875 0.332031,0.21875 0.703125,0.328125 1.109375,0.328125 0.4375,0 0.804688,-0.085937 1.109375,-0.265625 C 4.660156,-1.238281 4.8125,-1.488281 4.8125,-1.8125 4.8125,-2.09375 4.691406,-2.320312 4.453125,-2.5 4.210938,-2.675781 3.832031,-2.828125 3.3125,-2.953125 l -0.84375,-0.21875 c -0.554688,-0.132813 -1.007812,-0.363281 -1.359375,-0.6875 -0.34375,-0.320313 -0.515625,-0.738281 -0.515625,-1.25 0,-0.394531 0.117188,-0.742187 0.359375,-1.046875 0.238281,-0.300781 0.554687,-0.53125 0.953125,-0.6875 0.394531,-0.164062 0.820312,-0.25 1.28125,-0.25 0.601562,0 1.140625,0.132812 1.609375,0.390625 0.476563,0.261719 0.816406,0.625 1.015625,1.09375 l -1,0.453125 C 4.5,-5.769531 3.953125,-6.078125 3.171875,-6.078125 c -0.375,0 -0.710937,0.089844 -1,0.265625 C 1.890625,-5.632812 1.75,-5.410156 1.75,-5.140625 c 0,0.25 0.097656,0.453125 0.296875,0.609375 0.195313,0.15625 0.492187,0.289062 0.890625,0.390625 l 1,0.25 c 0.675781,0.179687 1.1875,0.433594 1.53125,0.765625 0.34375,0.335938 0.515625,0.746094 0.515625,1.234375 0,0.429687 -0.125,0.804687 -0.375,1.125 -0.242187,0.3125 -0.570313,0.558594 -0.984375,0.734375 -0.40625,0.164062 -0.867188,0.25 -1.375,0.25 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-14" overflow="visible">
<path id="path917" d="M 0,0 Z M 0,0" style="stroke:none" />
</symbol>
<symbol id="glyph1-15" overflow="visible">
<path id="path920"
d="m 0.09375,-6.890625 h 1.234375 l 2.125,5.546875 h 0.03125 l 2.15625,-5.546875 H 6.84375 L 4.03125,0 H 2.875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-16" overflow="visible">
<path id="path923"
d="m 3.34375,0.21875 c -0.824219,0 -1.453125,-0.2382812 -1.890625,-0.71875 -0.4375,-0.488281 -0.65625,-1.171875 -0.65625,-2.046875 v -4.34375 H 1.9375 v 4.15625 c 0,0.667969 0.144531,1.152344 0.4375,1.453125 0.300781,0.304688 0.707031,0.453125 1.21875,0.453125 0.382812,0 0.726562,-0.097656 1.03125,-0.296875 0.300781,-0.207031 0.535156,-0.476562 0.703125,-0.8125 0.164063,-0.332031 0.25,-0.6875 0.25,-1.0625 V -6.890625 H 6.71875 V 0 H 5.625 V -1 H 5.578125 c -0.1875,0.34375 -0.492187,0.636719 -0.90625,0.875 C 4.253906,0.101562 3.8125,0.21875 3.34375,0.21875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-17" overflow="visible">
<path id="path926"
d="M 0.84375,-6.890625 H 1.9375 V -5.78125 H 2 c 0.132812,-0.375 0.394531,-0.6875 0.78125,-0.9375 0.382812,-0.25 0.789062,-0.375 1.21875,-0.375 0.3125,0 0.582031,0.046875 0.8125,0.140625 v 1.25 c -0.292969,-0.144531 -0.621094,-0.21875 -0.984375,-0.21875 -0.335937,0 -0.640625,0.09375 -0.921875,0.28125 C 2.632812,-5.453125 2.414062,-5.195312 2.25,-4.875 2.082031,-4.5625 2,-4.21875 2,-3.84375 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-18" overflow="visible">
<path id="path929"
d="m 3.78125,0.21875 c -0.625,0 -1.1875,-0.15625 -1.6875,-0.46875 -0.5,-0.320312 -0.898438,-0.757812 -1.1875,-1.3125 -0.28125,-0.550781 -0.421875,-1.175781 -0.421875,-1.875 0,-0.695312 0.140625,-1.320312 0.421875,-1.875 0.289062,-0.5625 0.6875,-1 1.1875,-1.3125 0.5,-0.3125 1.0625,-0.46875 1.6875,-0.46875 0.519531,0 0.988281,0.121094 1.40625,0.359375 0.414062,0.230469 0.726562,0.523437 0.9375,0.875 H 6.1875 L 6.125,-6.8125 V -9.671875 H 7.28125 V 0 H 6.1875 V -1.015625 H 6.125 c -0.210938,0.34375 -0.523438,0.636719 -0.9375,0.875 C 4.769531,0.0976562 4.300781,0.21875 3.78125,0.21875 Z m 0.125,-1.046875 c 0.40625,0 0.78125,-0.101563 1.125,-0.3125 C 5.375,-1.359375 5.648438,-1.664062 5.859375,-2.0625 6.078125,-2.457031 6.1875,-2.914062 6.1875,-3.4375 6.1875,-3.957031 6.078125,-4.414062 5.859375,-4.8125 5.648438,-5.207031 5.375,-5.515625 5.03125,-5.734375 4.6875,-5.953125 4.3125,-6.0625 3.90625,-6.0625 c -0.398438,0 -0.773438,0.109375 -1.125,0.328125 -0.355469,0.21875 -0.636719,0.527344 -0.84375,0.921875 -0.210938,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.511719 0.101562,0.96875 0.3125,1.375 0.207031,0.398438 0.488281,0.703125 0.84375,0.921875 0.351562,0.210937 0.726562,0.3125 1.125,0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-19" overflow="visible">
<path id="path932"
d="M 0.5,-0.984375 4.5625,-5.84375 H 0.625 v -1.046875 h 5.34375 v 0.984375 l -4.0625,4.859375 H 6.078125 V 0 H 0.5 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-20" overflow="visible">
<path id="path935"
d="M 4.34375,0.21875 C 3.820312,0.21875 3.351562,0.0976562 2.9375,-0.140625 2.519531,-0.378906 2.207031,-0.671875 2,-1.015625 H 1.9375 V 0 H 0.84375 V -9.671875 H 2 V -6.8125 L 1.9375,-5.859375 H 2 c 0.207031,-0.351563 0.519531,-0.644531 0.9375,-0.875 0.414062,-0.238281 0.882812,-0.359375 1.40625,-0.359375 0.625,0 1.1875,0.15625 1.6875,0.46875 0.5,0.3125 0.890625,0.75 1.171875,1.3125 0.289063,0.554688 0.4375,1.179688 0.4375,1.875 0,0.699219 -0.148437,1.324219 -0.4375,1.875 -0.28125,0.554688 -0.671875,0.992188 -1.171875,1.3125 -0.5,0.3125 -1.0625,0.46875 -1.6875,0.46875 z m -0.125,-1.046875 c 0.394531,0 0.769531,-0.101563 1.125,-0.3125 C 5.695312,-1.359375 5.976562,-1.664062 6.1875,-2.0625 6.394531,-2.457031 6.5,-2.914062 6.5,-3.4375 6.5,-3.957031 6.394531,-4.414062 6.1875,-4.8125 5.976562,-5.207031 5.695312,-5.515625 5.34375,-5.734375 4.988281,-5.953125 4.613281,-6.0625 4.21875,-6.0625 c -0.398438,0 -0.773438,0.109375 -1.125,0.328125 C 2.75,-5.515625 2.46875,-5.207031 2.25,-4.8125 c -0.210938,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.523438 0.101562,0.980469 0.3125,1.375 0.21875,0.398438 0.5,0.703125 0.84375,0.921875 0.351562,0.210937 0.726562,0.3125 1.125,0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-21" overflow="visible">
<path id="path938"
d="M 0.6875,-9.671875 H 1.734375 V -6.6875 H 0.6875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-22" overflow="visible">
<path id="path941"
d="m 0.796875,-6.890625 h 1.09375 v 1.03125 H 1.9375 c 0.207031,-0.351563 0.519531,-0.644531 0.9375,-0.875 0.425781,-0.238281 0.898438,-0.359375 1.421875,-0.359375 0.613281,0 1.171875,0.15625 1.671875,0.46875 0.5,0.3125 0.894531,0.75 1.1875,1.3125 0.289062,0.554688 0.4375,1.179688 0.4375,1.875 0,0.699219 -0.148438,1.324219 -0.4375,1.875 -0.292969,0.554688 -0.6875,0.992188 -1.1875,1.3125 -0.5,0.3125 -1.058594,0.46875 -1.671875,0.46875 -0.523437,0 -0.996094,-0.1210938 -1.421875,-0.359375 -0.417969,-0.238281 -0.730469,-0.53125 -0.9375,-0.875 H 1.890625 L 1.9375,-0.0625 V 2.921875 H 0.796875 Z m 3.375,6.0625 c 0.394531,0 0.765625,-0.101563 1.109375,-0.3125 0.351562,-0.21875 0.632812,-0.523437 0.84375,-0.921875 0.207031,-0.394531 0.3125,-0.851562 0.3125,-1.375 0,-0.519531 -0.105469,-0.976562 -0.3125,-1.375 C 5.914062,-5.207031 5.632812,-5.515625 5.28125,-5.734375 4.9375,-5.953125 4.566406,-6.0625 4.171875,-6.0625 c -0.40625,0 -0.78125,0.109375 -1.125,0.328125 -0.34375,0.21875 -0.625,0.527344 -0.84375,0.921875 -0.210937,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.523438 0.101563,0.980469 0.3125,1.375 0.21875,0.398438 0.5,0.703125 0.84375,0.921875 0.34375,0.210937 0.71875,0.3125 1.125,0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-23" overflow="visible">
<path id="path944"
d="M 1.640625,-5.84375 H 0.375 V -6.890625 H 1.640625 V -7.625 c 0,-0.4375 0.097656,-0.816406 0.296875,-1.140625 0.195312,-0.320313 0.460938,-0.570313 0.796875,-0.75 C 3.066406,-9.691406 3.4375,-9.78125 3.84375,-9.78125 c 0.382812,0 0.722656,0.058594 1.015625,0.171875 v 1.125 c -0.167969,-0.070313 -0.324219,-0.125 -0.46875,-0.15625 -0.136719,-0.039063 -0.304687,-0.0625 -0.5,-0.0625 -0.304687,0 -0.5625,0.105469 -0.78125,0.3125 -0.210937,0.210937 -0.3125,0.507813 -0.3125,0.890625 v 0.609375 H 4.5625 V -5.84375 H 2.796875 V 0 h -1.15625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-24" overflow="visible">
<path id="path947"
d="m 6.984375,-1.6875 c -0.242187,0.5625 -0.617187,1.023438 -1.125,1.375 -0.5,0.34375 -1.117187,0.519531 -1.84375,0.53125 l -0.1875,0.4375 C 3.984375,0.632812 4.082031,0.625 4.125,0.625 4.46875,0.625 4.757812,0.742188 5,0.984375 5.238281,1.222656 5.359375,1.53125 5.359375,1.90625 5.359375,2.257812 5.226562,2.5625 4.96875,2.8125 4.707031,3.070312 4.382812,3.203125 4,3.203125 3.707031,3.203125 3.445312,3.113281 3.21875,2.9375 2.988281,2.769531 2.828125,2.554688 2.734375,2.296875 L 3.40625,2 C 3.445312,2.132812 3.519531,2.25 3.625,2.34375 3.726562,2.4375 3.851562,2.484375 4,2.484375 4.175781,2.484375 4.316406,2.425781 4.421875,2.3125 4.535156,2.195312 4.59375,2.0625 4.59375,1.90625 4.59375,1.726562 4.535156,1.582031 4.421875,1.46875 4.316406,1.351562 4.175781,1.296875 4,1.296875 3.8125,1.296875 3.65625,1.375 3.53125,1.53125 L 2.921875,1.25 3.328125,0.15625 C 2.773438,0.0703125 2.28125,-0.132812 1.84375,-0.46875 1.414062,-0.800781 1.082031,-1.222656 0.84375,-1.734375 0.601562,-2.253906 0.484375,-2.820312 0.484375,-3.4375 c 0,-0.695312 0.144531,-1.320312 0.4375,-1.875 0.300781,-0.5625 0.71875,-1 1.25,-1.3125 0.53125,-0.3125 1.128906,-0.46875 1.796875,-0.46875 0.75,0 1.375,0.171875 1.875,0.515625 0.507812,0.34375 0.875,0.804687 1.09375,1.375 l -1.03125,0.4375 C 5.726562,-5.191406 5.46875,-5.515625 5.125,-5.734375 4.789062,-5.953125 4.390625,-6.0625 3.921875,-6.0625 c -0.40625,0 -0.789063,0.109375 -1.140625,0.328125 -0.355469,0.21875 -0.636719,0.527344 -0.84375,0.921875 -0.210938,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.511719 0.101562,0.964844 0.3125,1.359375 0.207031,0.398437 0.488281,0.703125 0.84375,0.921875 0.351562,0.21875 0.734375,0.328125 1.140625,0.328125 0.476563,0 0.894531,-0.109375 1.25,-0.328125 0.351563,-0.226562 0.613281,-0.550781 0.78125,-0.96875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-25" overflow="visible">
<path id="path950"
d="M 3.921875,0.21875 C 3.253906,0.21875 2.660156,0.0625 2.140625,-0.25 1.617188,-0.570312 1.210938,-1.007812 0.921875,-1.5625 c -0.292969,-0.550781 -0.4375,-1.171875 -0.4375,-1.859375 0,-0.664063 0.132813,-1.28125 0.40625,-1.84375 0.28125,-0.5625 0.671875,-1.003906 1.171875,-1.328125 0.507812,-0.332031 1.097656,-0.5 1.765625,-0.5 0.664063,0 1.242187,0.152344 1.734375,0.453125 0.5,0.292969 0.878906,0.703125 1.140625,1.234375 0.269531,0.53125 0.40625,1.140625 0.40625,1.828125 0,0.105469 -0.00781,0.226563 -0.015625,0.359375 H 1.640625 C 1.660156,-2.695312 1.78125,-2.253906 2,-1.890625 c 0.226562,0.355469 0.515625,0.621094 0.859375,0.796875 0.351563,0.179688 0.71875,0.265625 1.09375,0.265625 0.90625,0 1.585937,-0.410156 2.046875,-1.234375 l 0.96875,0.46875 C 6.675781,-1.039062 6.273438,-0.597656 5.765625,-0.265625 5.253906,0.0546875 4.640625,0.21875 3.921875,0.21875 Z M 5.90625,-4.171875 C 5.882812,-4.460938 5.800781,-4.75 5.65625,-5.03125 5.507812,-5.320312 5.28125,-5.566406 4.96875,-5.765625 4.664062,-5.960938 4.285156,-6.0625 3.828125,-6.0625 c -0.542969,0 -1.007813,0.179688 -1.390625,0.53125 -0.375,0.34375 -0.621094,0.796875 -0.734375,1.359375 z M 4.03125,-9.9375 h 1.25 l -0.953125,1.71875 h -1 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-26" overflow="visible">
<path id="path953"
d="m 1.609375,0.078125 c -0.25,0 -0.460937,-0.08203125 -0.625,-0.25 C 0.828125,-0.335938 0.75,-0.539062 0.75,-0.78125 c 0,-0.238281 0.078125,-0.441406 0.234375,-0.609375 0.164063,-0.164063 0.375,-0.25 0.625,-0.25 0.238281,0 0.441406,0.085937 0.609375,0.25 0.164062,0.167969 0.25,0.371094 0.25,0.609375 0,0.242188 -0.085938,0.445312 -0.25,0.609375 -0.167969,0.16796875 -0.371094,0.25 -0.609375,0.25 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-27" overflow="visible">
<path id="path956"
d="M 0.1875,-9.671875 H 1.453125 L 3.84375,-2.65625 4.171875,-1.703125 H 4.21875 l 0.34375,-0.953125 2.5,-7.015625 H 8.328125 L 4.796875,0 H 3.625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-28" overflow="visible">
<path id="path959"
d="M 0.84375,-6.890625 H 1.9375 V -5.875 H 2 c 0.195312,-0.351562 0.492188,-0.644531 0.890625,-0.875 0.394531,-0.226562 0.8125,-0.34375 1.25,-0.34375 0.507813,0 0.945313,0.121094 1.3125,0.359375 0.375,0.242187 0.644531,0.5625 0.8125,0.96875 0.238281,-0.40625 0.554687,-0.726563 0.953125,-0.96875 0.40625,-0.238281 0.875,-0.359375 1.40625,-0.359375 0.789062,0 1.382812,0.242188 1.78125,0.71875 0.40625,0.480469 0.609375,1.132812 0.609375,1.953125 V 0 H 9.875 V -4.234375 C 9.875,-4.878906 9.742188,-5.34375 9.484375,-5.625 9.222656,-5.914062 8.835938,-6.0625 8.328125,-6.0625 c -0.34375,0 -0.65625,0.101562 -0.9375,0.296875 C 7.117188,-5.566406 6.898438,-5.300781 6.734375,-4.96875 6.578125,-4.632812 6.5,-4.273438 6.5,-3.890625 V 0 H 5.359375 v -4.21875 c 0,-0.65625 -0.132813,-1.125 -0.390625,-1.40625 -0.261719,-0.289062 -0.640625,-0.4375 -1.140625,-0.4375 -0.34375,0 -0.65625,0.105469 -0.9375,0.3125 -0.28125,0.199219 -0.5,0.46875 -0.65625,0.8125 C 2.078125,-4.601562 2,-4.242188 2,-3.859375 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-29" overflow="visible">
<path id="path962"
d="M 0.84375,-9.671875 H 2 v 6.078125 l 3.234375,-3.296875 h 1.46875 v 0.0625 L 4,-4.109375 l 2.78125,4.0625 V 0 h -1.375 L 3.1875,-3.3125 2,-2.125 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-30" overflow="visible">
<path id="path965"
d="M 0.6875,1.125 1.421875,0 C 1.253906,-0.03125 1.101562,-0.113281 0.96875,-0.25 c -0.125,-0.144531 -0.1875,-0.320312 -0.1875,-0.53125 0,-0.238281 0.082031,-0.441406 0.25,-0.609375 0.164062,-0.164063 0.367188,-0.25 0.609375,-0.25 0.25,0 0.457031,0.085937 0.625,0.25 0.164063,0.167969 0.25,0.371094 0.25,0.609375 0,0.15625 -0.03125,0.304688 -0.09375,0.4375 -0.0625,0.136719 -0.15625,0.296875 -0.28125,0.484375 l -0.90625,1.34375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-31" overflow="visible">
<path id="path968"
d="m 2.609375,-3.5 -2.375,-3.390625 H 1.53125 l 1.765625,2.5625 1.71875,-2.5625 h 1.34375 L 3.9375,-3.5 6.40625,0 H 5.0625 L 3.28125,-2.640625 1.515625,0 h -1.34375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-32" overflow="visible">
<path id="path971"
d="M 0.84375,-9.671875 H 2 V -6.8125 L 1.9375,-5.875 H 2 c 0.1875,-0.351562 0.484375,-0.644531 0.890625,-0.875 0.414063,-0.226562 0.863281,-0.34375 1.34375,-0.34375 0.84375,0 1.484375,0.246094 1.921875,0.734375 0.4375,0.492187 0.65625,1.136719 0.65625,1.9375 V 0 H 5.671875 v -4.234375 c 0,-0.625 -0.164063,-1.082031 -0.484375,-1.375 C 4.875,-5.910156 4.46875,-6.0625 3.96875,-6.0625 c -0.367188,0 -0.699219,0.109375 -1,0.328125 -0.292969,0.21875 -0.527344,0.5 -0.703125,0.84375 C 2.085938,-4.554688 2,-4.203125 2,-3.828125 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-33" overflow="visible">
<path id="path974"
d="M 3.25,1.84375 C 2.59375,1.082031 2.023438,0.164062 1.546875,-0.90625 1.078125,-1.988281 0.84375,-3.132812 0.84375,-4.34375 c 0,-1.21875 0.234375,-2.363281 0.703125,-3.4375 0.476563,-1.070312 1.046875,-1.988281 1.703125,-2.75 l 0.84375,0.59375 c -0.617188,0.730469 -1.121094,1.589844 -1.515625,2.578125 -0.398437,0.980469 -0.59375,1.984375 -0.59375,3.015625 0,1.023438 0.195313,2.027344 0.59375,3.015625 0.394531,0.992187 0.898437,1.84375 1.515625,2.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-34" overflow="visible">
<path id="path977"
d="M 6.125,-0.0625 6.1875,-1.015625 H 6.125 c -0.210938,0.34375 -0.523438,0.636719 -0.9375,0.875 C 4.769531,0.0976562 4.300781,0.21875 3.78125,0.21875 c -0.625,0 -1.1875,-0.15625 -1.6875,-0.46875 -0.5,-0.320312 -0.898438,-0.757812 -1.1875,-1.3125 -0.28125,-0.550781 -0.421875,-1.175781 -0.421875,-1.875 0,-0.695312 0.140625,-1.320312 0.421875,-1.875 0.289062,-0.5625 0.6875,-1 1.1875,-1.3125 0.5,-0.3125 1.0625,-0.46875 1.6875,-0.46875 0.519531,0 0.988281,0.121094 1.40625,0.359375 0.414062,0.230469 0.726562,0.523437 0.9375,0.875 h 0.0625 v -1.03125 h 1.09375 v 9.8125 H 6.125 Z M 3.90625,-0.828125 c 0.40625,0 0.78125,-0.101563 1.125,-0.3125 C 5.375,-1.359375 5.648438,-1.664062 5.859375,-2.0625 6.078125,-2.457031 6.1875,-2.914062 6.1875,-3.4375 6.1875,-3.957031 6.078125,-4.414062 5.859375,-4.8125 5.648438,-5.207031 5.375,-5.515625 5.03125,-5.734375 4.6875,-5.953125 4.3125,-6.0625 3.90625,-6.0625 c -0.398438,0 -0.773438,0.109375 -1.125,0.328125 -0.355469,0.21875 -0.636719,0.527344 -0.84375,0.921875 -0.210938,0.398438 -0.3125,0.855469 -0.3125,1.375 0,0.511719 0.101562,0.96875 0.3125,1.375 0.207031,0.398438 0.488281,0.703125 0.84375,0.921875 0.351562,0.210937 0.726562,0.3125 1.125,0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph1-35" overflow="visible">
<path id="path980"
d="M 0.265625,1.234375 C 0.878906,0.515625 1.382812,-0.335938 1.78125,-1.328125 2.175781,-2.316406 2.375,-3.320312 2.375,-4.34375 2.375,-5.375 2.175781,-6.378906 1.78125,-7.359375 1.382812,-8.347656 0.878906,-9.207031 0.265625,-9.9375 l 0.84375,-0.59375 c 0.65625,0.761719 1.21875,1.679688 1.6875,2.75 0.476563,1.074219 0.71875,2.21875 0.71875,3.4375 0,1.210938 -0.242187,2.355469 -0.71875,3.4375 -0.46875,1.070312 -1.03125,1.988281 -1.6875,2.75 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph2-0" overflow="visible">
<path id="path983"
d="M 6.765625,0 H 1.0625 v -9.671875 h 5.703125 z m -0.8125,-0.765625 v -8.125 H 1.875 v 8.125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph2-1" overflow="visible">
<path id="path986" d="M 0,0 Z M 0,0" style="stroke:none" />
</symbol>
<symbol id="glyph2-2" overflow="visible">
<path id="path989"
d="M 1.640625,-5.84375 H 0.375 V -6.890625 H 1.640625 V -7.625 c 0,-0.4375 0.097656,-0.816406 0.296875,-1.140625 0.195312,-0.320313 0.460938,-0.570313 0.796875,-0.75 C 3.066406,-9.691406 3.4375,-9.78125 3.84375,-9.78125 c 0.382812,0 0.722656,0.058594 1.015625,0.171875 v 1.125 c -0.167969,-0.070313 -0.324219,-0.125 -0.46875,-0.15625 -0.136719,-0.039063 -0.304687,-0.0625 -0.5,-0.0625 -0.304687,0 -0.5625,0.105469 -0.78125,0.3125 -0.210937,0.210937 -0.3125,0.507813 -0.3125,0.890625 v 0.609375 h 3.125 V -7.625 c 0,-0.4375 0.09375,-0.816406 0.28125,-1.140625 C 6.398438,-9.085938 6.664062,-9.335938 7,-9.515625 7.34375,-9.691406 7.71875,-9.78125 8.125,-9.78125 c 0.375,0 0.710938,0.058594 1.015625,0.171875 v 1.125 c -0.179687,-0.070313 -0.339844,-0.125 -0.484375,-0.15625 -0.136719,-0.039063 -0.304688,-0.0625 -0.5,-0.0625 -0.304688,0 -0.558594,0.105469 -0.765625,0.3125 -0.210937,0.210937 -0.3125,0.507813 -0.3125,0.890625 v 0.609375 H 8.84375 V -5.84375 H 7.078125 V 0 h -1.15625 v -5.84375 h -3.125 V 0 h -1.15625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph2-3" overflow="visible">
<path id="path992"
d="m 6.5,-8.15625 c -0.230469,0 -0.429688,-0.078125 -0.59375,-0.234375 C 5.75,-8.554688 5.671875,-8.753906 5.671875,-8.984375 5.671875,-9.210938 5.75,-9.40625 5.90625,-9.5625 6.070312,-9.71875 6.269531,-9.796875 6.5,-9.796875 c 0.226562,0 0.421875,0.078125 0.578125,0.234375 0.15625,0.15625 0.234375,0.351562 0.234375,0.578125 0,0.230469 -0.078125,0.429687 -0.234375,0.59375 C 6.921875,-8.234375 6.726562,-8.15625 6.5,-8.15625 Z m -4.859375,2.3125 H 0.375 V -6.890625 H 1.640625 V -7.625 c 0,-0.4375 0.097656,-0.816406 0.296875,-1.140625 0.195312,-0.320313 0.460938,-0.570313 0.796875,-0.75 C 3.066406,-9.691406 3.4375,-9.78125 3.84375,-9.78125 c 0.382812,0 0.722656,0.058594 1.015625,0.171875 v 1.125 c -0.167969,-0.070313 -0.324219,-0.125 -0.46875,-0.15625 -0.136719,-0.039063 -0.304687,-0.0625 -0.5,-0.0625 -0.304687,0 -0.5625,0.105469 -0.78125,0.3125 -0.210937,0.210937 -0.3125,0.507813 -0.3125,0.890625 v 0.609375 h 4.28125 V 0 h -1.15625 v -5.84375 h -3.125 V 0 h -1.15625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph2-4" overflow="visible">
<path id="path995"
d="m 6.734375,-5.84375 h -1.28125 v -1.046875 h 1.28125 V -7.625 c 0,-0.4375 0.097656,-0.816406 0.296875,-1.140625 0.195312,-0.320313 0.460938,-0.570313 0.796875,-0.75 C 8.160156,-9.691406 8.53125,-9.78125 8.9375,-9.78125 c 0.382812,0 0.722656,0.058594 1.015625,0.171875 v 1.125 c -0.1875,-0.070313 -0.351563,-0.125 -0.484375,-0.15625 -0.136719,-0.039063 -0.296875,-0.0625 -0.484375,-0.0625 -0.3125,0 -0.574219,0.105469 -0.78125,0.3125 -0.210937,0.210937 -0.3125,0.507813 -0.3125,0.890625 v 0.609375 h 1.75 v 1.046875 h -1.75 V 0 H 6.734375 Z M 0.84375,-6.890625 H 1.9375 v 1.09375 H 2 c 0.15625,-0.40625 0.425781,-0.71875 0.8125,-0.9375 0.394531,-0.226563 0.828125,-0.34375 1.296875,-0.34375 0.1875,0 0.347656,0.015625 0.484375,0.046875 v 1.171875 C 4.4375,-5.890625 4.226562,-5.90625 3.96875,-5.90625 c -0.585938,0 -1.058594,0.195312 -1.421875,0.578125 C 2.179688,-4.941406 2,-4.441406 2,-3.828125 V 0 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-0" overflow="visible">
<path id="path998"
d="M 12.03125,0 H 1.890625 V -17.1875 H 12.03125 Z M 10.578125,-1.375 V -15.8125 H 3.34375 V -1.375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-1" overflow="visible">
<path id="path1001"
d="M 1.921875,-17.1875 H 8.09375 c 0.863281,0 1.671875,0.203125 2.421875,0.609375 0.757813,0.398437 1.363281,0.949219 1.8125,1.65625 0.457031,0.699219 0.6875,1.492187 0.6875,2.375 0,0.835937 -0.214844,1.5625 -0.640625,2.1875 -0.429688,0.617187 -1,1.09375 -1.71875,1.4375 v 0.09375 c 0.863281,0.28125 1.566406,0.777344 2.109375,1.484375 0.539063,0.710938 0.8125,1.53125 0.8125,2.46875 0,0.929688 -0.234375,1.765625 -0.703125,2.515625 C 12.40625,-1.617188 11.773438,-1.039062 10.984375,-0.625 10.191406,-0.207031 9.335938,0 8.421875,0 h -6.5 z m 6.171875,7.421875 c 0.570312,0 1.078125,-0.128906 1.515625,-0.390625 0.4375,-0.269531 0.773437,-0.613281 1.015625,-1.03125 0.238281,-0.425781 0.359375,-0.863281 0.359375,-1.3125 0,-0.4375 -0.117187,-0.863281 -0.34375,-1.28125 -0.230469,-0.425781 -0.558594,-0.773438 -0.984375,-1.046875 C 9.238281,-15.097656 8.75,-15.234375 8.1875,-15.234375 H 3.953125 v 5.46875 z M 8.546875,-1.9375 c 0.570313,0 1.085937,-0.144531 1.546875,-0.4375 0.457031,-0.289062 0.804688,-0.660156 1.046875,-1.109375 0.25,-0.457031 0.375,-0.925781 0.375,-1.40625 0,-0.476563 -0.132813,-0.945313 -0.390625,-1.40625 C 10.875,-6.753906 10.515625,-7.125 10.046875,-7.40625 9.585938,-7.6875 9.054688,-7.828125 8.453125,-7.828125 h -4.5 V -1.9375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-2" overflow="visible">
<path id="path1004"
d="m 6.953125,0.390625 c -1.167969,0 -2.214844,-0.28125 -3.140625,-0.84375 -0.929688,-0.5625 -1.652344,-1.332031 -2.171875,-2.3125 -0.523437,-0.988281 -0.78125,-2.097656 -0.78125,-3.328125 0,-1.164062 0.242187,-2.25 0.734375,-3.25 0.488281,-1 1.1875,-1.796875 2.09375,-2.390625 0.90625,-0.59375 1.941406,-0.890625 3.109375,-0.890625 1.195313,0 2.234375,0.273438 3.109375,0.8125 0.882812,0.53125 1.5625,1.273438 2.03125,2.21875 0.46875,0.9375 0.703125,2.015625 0.703125,3.234375 0,0.1875 -0.01563,0.398437 -0.04687,0.625 h -9.6875 c 0.039062,0.929687 0.257812,1.714844 0.65625,2.359375 0.40625,0.636719 0.914062,1.117188 1.53125,1.4375 0.625,0.3125 1.269531,0.46875 1.9375,0.46875 1.601562,0 2.8125,-0.734375 3.625,-2.203125 l 1.734375,0.84375 c -0.523437,0.96875 -1.242187,1.75 -2.15625,2.34375 -0.90625,0.5820312 -2,0.875 -3.28125,0.875 z m 3.53125,-7.8125 c -0.03125,-0.507813 -0.179687,-1.019531 -0.4375,-1.53125 -0.25,-0.507813 -0.648437,-0.941406 -1.1875,-1.296875 -0.542969,-0.351562 -1.230469,-0.53125 -2.0625,-0.53125 -0.960937,0 -1.777344,0.3125 -2.453125,0.9375 -0.667969,0.617188 -1.105469,1.421875 -1.3125,2.421875 z M 7.171875,-17.65625 H 9.40625 l -1.703125,3.046875 h -1.78125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-3" overflow="visible">
<path id="path1007"
d="m 1.515625,-12.234375 h 1.9375 v 1.796875 h 0.09375 c 0.34375,-0.613281 0.878906,-1.128906 1.609375,-1.546875 0.738281,-0.425781 1.523438,-0.640625 2.359375,-0.640625 1.46875,0 2.585937,0.429688 3.359375,1.28125 0.78125,0.855469 1.171875,2.023438 1.171875,3.5 V 0 h -2.03125 v -7.53125 c 0,-1.132812 -0.277344,-1.957031 -0.828125,-2.46875 -0.542969,-0.519531 -1.289062,-0.78125 -2.234375,-0.78125 -0.65625,0 -1.246094,0.1875 -1.765625,0.5625 -0.511719,0.367188 -0.914062,0.851562 -1.203125,1.453125 -0.292969,0.59375 -0.4375,1.21875 -0.4375,1.875 V 0 h -2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-4" overflow="visible">
<path id="path1010"
d="m 7.0625,0.390625 c -1.1875,0 -2.257812,-0.28125 -3.203125,-0.84375 C 2.921875,-1.023438 2.1875,-1.800781 1.65625,-2.78125 1.125,-3.769531 0.859375,-4.882812 0.859375,-6.125 0.859375,-7.351562 1.125,-8.460938 1.65625,-9.453125 2.1875,-10.441406 2.921875,-11.21875 3.859375,-11.78125 4.804688,-12.34375 5.875,-12.625 7.0625,-12.625 c 1.320312,0 2.4375,0.308594 3.34375,0.921875 0.90625,0.617187 1.550781,1.4375 1.9375,2.46875 l -1.859375,0.765625 c -0.304687,-0.75 -0.757813,-1.320312 -1.359375,-1.71875 -0.59375,-0.394531 -1.320312,-0.59375 -2.171875,-0.59375 -0.71875,0 -1.390625,0.199219 -2.015625,0.59375 -0.617188,0.398438 -1.117188,0.949219 -1.5,1.65625 -0.375,0.699219 -0.5625,1.5 -0.5625,2.40625 0,0.917969 0.1875,1.730469 0.5625,2.4375 0.382812,0.699219 0.882812,1.246094 1.5,1.640625 0.625,0.386719 1.296875,0.578125 2.015625,0.578125 0.863281,0 1.609375,-0.195312 2.234375,-0.59375 0.625,-0.394531 1.085938,-0.960938 1.390625,-1.703125 L 12.40625,-3 c -0.417969,1.011719 -1.085938,1.828125 -2,2.453125 -0.917969,0.625 -2.03125,0.9375 -3.34375,0.9375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-5" overflow="visible">
<path id="path1013"
d="M 2.71875,-14.5 C 2.3125,-14.5 1.960938,-14.640625 1.671875,-14.921875 1.390625,-15.210938 1.25,-15.554688 1.25,-15.953125 1.25,-16.367188 1.390625,-16.71875 1.671875,-17 c 0.289063,-0.28125 0.640625,-0.421875 1.046875,-0.421875 0.414062,0 0.757812,0.140625 1.03125,0.421875 0.28125,0.28125 0.421875,0.632812 0.421875,1.046875 0,0.398437 -0.140625,0.742187 -0.421875,1.03125 C 3.476562,-14.640625 3.132812,-14.5 2.71875,-14.5 Z m -1.015625,2.265625 H 3.75 V 0 H 1.703125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-6" overflow="visible">
<path id="path1016"
d="m 6.953125,0.390625 c -1.167969,0 -2.214844,-0.28125 -3.140625,-0.84375 -0.929688,-0.5625 -1.652344,-1.332031 -2.171875,-2.3125 -0.523437,-0.988281 -0.78125,-2.097656 -0.78125,-3.328125 0,-1.164062 0.242187,-2.25 0.734375,-3.25 0.488281,-1 1.1875,-1.796875 2.09375,-2.390625 0.90625,-0.59375 1.941406,-0.890625 3.109375,-0.890625 1.195313,0 2.234375,0.273438 3.109375,0.8125 0.882812,0.53125 1.5625,1.273438 2.03125,2.21875 0.46875,0.9375 0.703125,2.015625 0.703125,3.234375 0,0.1875 -0.01563,0.398437 -0.04687,0.625 h -9.6875 c 0.039062,0.929687 0.257812,1.714844 0.65625,2.359375 0.40625,0.636719 0.914062,1.117188 1.53125,1.4375 0.625,0.3125 1.269531,0.46875 1.9375,0.46875 1.601562,0 2.8125,-0.734375 3.625,-2.203125 l 1.734375,0.84375 c -0.523437,0.96875 -1.242187,1.75 -2.15625,2.34375 -0.90625,0.5820312 -2,0.875 -3.28125,0.875 z m 3.53125,-7.8125 c -0.03125,-0.507813 -0.179687,-1.019531 -0.4375,-1.53125 -0.25,-0.507813 -0.648437,-0.941406 -1.1875,-1.296875 -0.542969,-0.351562 -1.230469,-0.53125 -2.0625,-0.53125 -0.960937,0 -1.777344,0.3125 -2.453125,0.9375 -0.667969,0.617188 -1.105469,1.421875 -1.3125,2.421875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-7" overflow="visible">
<path id="path1019"
d="m 0.890625,-1.75 7.21875,-8.640625 h -7 v -1.84375 h 9.5 v 1.75 l -7.21875,8.640625 h 7.40625 V 0 h -9.90625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-8" overflow="visible">
<path id="path1022"
d="m 6.71875,0.390625 c -1.105469,0 -2.101562,-0.28125 -2.984375,-0.84375 C 2.847656,-1.015625 2.144531,-1.785156 1.625,-2.765625 1.113281,-3.753906 0.859375,-4.875 0.859375,-6.125 c 0,-1.226562 0.253906,-2.335938 0.765625,-3.328125 0.519531,-0.988281 1.222656,-1.765625 2.109375,-2.328125 0.882813,-0.5625 1.878906,-0.84375 2.984375,-0.84375 0.925781,0 1.753906,0.214844 2.484375,0.640625 0.738281,0.417969 1.300781,0.9375 1.6875,1.5625 h 0.09375 L 10.890625,-12.125 v -5.0625 H 12.9375 V 0 h -1.953125 v -1.796875 h -0.09375 C 10.503906,-1.191406 9.941406,-0.675781 9.203125,-0.25 8.472656,0.175781 7.644531,0.390625 6.71875,0.390625 Z M 6.9375,-1.46875 c 0.71875,0 1.382812,-0.1875 2,-0.5625 0.613281,-0.382812 1.109375,-0.929688 1.484375,-1.640625 0.375,-0.707031 0.5625,-1.523437 0.5625,-2.453125 0,-0.925781 -0.1875,-1.738281 -0.5625,-2.4375 -0.375,-0.707031 -0.871094,-1.253906 -1.484375,-1.640625 -0.617188,-0.382813 -1.28125,-0.578125 -2,-0.578125 -0.710938,0 -1.375,0.195312 -2,0.578125 -0.617188,0.386719 -1.117188,0.9375 -1.5,1.65625 C 3.0625,-7.835938 2.875,-7.03125 2.875,-6.125 c 0,0.917969 0.1875,1.734375 0.5625,2.453125 0.382812,0.710937 0.882812,1.257813 1.5,1.640625 0.625,0.375 1.289062,0.5625 2,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-9" overflow="visible">
<path id="path1025"
d="m 1.21875,-17.1875 h 1.859375 v 5.3125 H 1.21875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-10" overflow="visible">
<path id="path1028"
d="m 2.921875,-10.390625 h -2.25 v -1.84375 h 2.25 V -13.5625 c 0,-0.769531 0.175781,-1.441406 0.53125,-2.015625 0.351563,-0.570313 0.828125,-1.015625 1.421875,-1.328125 0.59375,-0.3125 1.25,-0.46875 1.96875,-0.46875 0.6875,0 1.285156,0.09375 1.796875,0.28125 v 2 C 8.347656,-15.207031 8.070312,-15.300781 7.8125,-15.375 c -0.25,-0.07031 -0.554688,-0.109375 -0.90625,-0.109375 -0.523438,0 -0.976562,0.1875 -1.359375,0.5625 -0.386719,0.375 -0.578125,0.902344 -0.578125,1.578125 v 1.109375 h 3.140625 v 1.84375 H 4.96875 V 0 H 2.921875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-11" overflow="visible">
<path id="path1031"
d="m 7.15625,0.390625 c -1.199219,0 -2.28125,-0.289063 -3.25,-0.859375 C 2.945312,-1.050781 2.195312,-1.835938 1.65625,-2.828125 1.125,-3.816406 0.859375,-4.914062 0.859375,-6.125 c 0,-1.195312 0.265625,-2.289062 0.796875,-3.28125 0.539062,-0.988281 1.289062,-1.769531 2.25,-2.34375 0.96875,-0.582031 2.050781,-0.875 3.25,-0.875 1.195312,0 2.273438,0.292969 3.234375,0.875 0.957031,0.574219 1.703125,1.355469 2.234375,2.34375 0.539062,0.992188 0.8125,2.085938 0.8125,3.28125 0,1.210938 -0.273438,2.308594 -0.8125,3.296875 -0.53125,0.992187 -1.277344,1.777344 -2.234375,2.359375 C 9.429688,0.101562 8.351562,0.390625 7.15625,0.390625 Z m 0,-1.859375 c 0.75,0 1.445312,-0.1875 2.09375,-0.5625 0.644531,-0.375 1.164062,-0.910156 1.5625,-1.609375 0.394531,-0.707031 0.59375,-1.535156 0.59375,-2.484375 0,-0.9375 -0.199219,-1.753906 -0.59375,-2.453125 -0.398438,-0.707031 -0.917969,-1.25 -1.5625,-1.625 -0.648438,-0.382813 -1.34375,-0.578125 -2.09375,-0.578125 -0.75,0 -1.453125,0.195312 -2.109375,0.578125 -0.65625,0.375 -1.183594,0.917969 -1.578125,1.625 C 3.070312,-7.878906 2.875,-7.0625 2.875,-6.125 c 0,0.949219 0.195312,1.777344 0.59375,2.484375 0.394531,0.699219 0.921875,1.234375 1.578125,1.609375 0.65625,0.375 1.359375,0.5625 2.109375,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-12" overflow="visible">
<path id="path1034"
d="m 1.515625,-12.234375 h 1.9375 v 1.96875 h 0.09375 C 3.785156,-10.941406 4.25,-11.5 4.9375,-11.9375 c 0.6875,-0.4375 1.410156,-0.65625 2.171875,-0.65625 0.550781,0 1.03125,0.07813 1.4375,0.234375 v 2.203125 c -0.511719,-0.25 -1.089844,-0.375 -1.734375,-0.375 -0.59375,0 -1.140625,0.167969 -1.640625,0.5 -0.492187,0.335938 -0.886719,0.789062 -1.1875,1.359375 -0.292969,0.5625 -0.4375,1.171875 -0.4375,1.828125 V 0 h -2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-13" overflow="visible">
<path id="path1037"
d="m 1.515625,-12.234375 h 1.9375 v 1.796875 h 0.09375 C 3.898438,-11.0625 4.425781,-11.582031 5.125,-12 c 0.707031,-0.414062 1.457031,-0.625 2.25,-0.625 0.894531,0 1.671875,0.21875 2.328125,0.65625 0.664063,0.429688 1.144531,1 1.4375,1.71875 0.425781,-0.71875 0.992187,-1.289062 1.703125,-1.71875 0.71875,-0.4375 1.550781,-0.65625 2.5,-0.65625 1.40625,0 2.460938,0.429688 3.171875,1.28125 0.707031,0.855469 1.0625,2.023438 1.0625,3.5 V 0 H 17.5625 v -7.53125 c 0,-1.132812 -0.234375,-1.957031 -0.703125,-2.46875 -0.460937,-0.519531 -1.140625,-0.78125 -2.046875,-0.78125 -0.617188,0 -1.171875,0.179688 -1.671875,0.53125 -0.492187,0.355469 -0.875,0.828125 -1.15625,1.421875 -0.28125,0.59375 -0.421875,1.234375 -0.421875,1.921875 V 0 H 9.53125 v -7.515625 c 0,-1.144531 -0.234375,-1.972656 -0.703125,-2.484375 -0.460937,-0.519531 -1.136719,-0.78125 -2.03125,-0.78125 -0.617187,0 -1.171875,0.183594 -1.671875,0.546875 -0.492188,0.355469 -0.875,0.835937 -1.15625,1.4375 -0.28125,0.605469 -0.421875,1.25 -0.421875,1.9375 V 0 h -2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-14" overflow="visible">
<path id="path1040"
d="m 5.421875,0.390625 c -0.898437,0 -1.699219,-0.179687 -2.40625,-0.53125 C 2.316406,-0.492188 1.773438,-0.976562 1.390625,-1.59375 1.003906,-2.207031 0.8125,-2.910156 0.8125,-3.703125 c 0,-1.289063 0.488281,-2.300781 1.46875,-3.03125 0.976562,-0.726563 2.207031,-1.09375 3.6875,-1.09375 0.738281,0 1.421875,0.085937 2.046875,0.25 0.632813,0.15625 1.125,0.339844 1.46875,0.546875 v -0.75 c 0,-0.90625 -0.324219,-1.632812 -0.96875,-2.1875 -0.636719,-0.550781 -1.445313,-0.828125 -2.421875,-0.828125 -0.667969,0 -1.292969,0.152344 -1.875,0.453125 -0.585938,0.292969 -1.046875,0.699219 -1.390625,1.21875 l -1.53125,-1.140625 C 1.773438,-11.003906 2.4375,-11.582031 3.28125,-12 c 0.851562,-0.414062 1.789062,-0.625 2.8125,-0.625 1.664062,0 2.96875,0.4375 3.90625,1.3125 0.945312,0.867188 1.421875,2.054688 1.421875,3.5625 V 0 h -1.9375 v -1.75 h -0.09375 c -0.355469,0.59375 -0.886719,1.101562 -1.59375,1.515625 -0.699219,0.414063 -1.492187,0.625 -2.375,0.625 z m 0.1875,-1.8125 c 0.6875,0 1.328125,-0.171875 1.921875,-0.515625 0.59375,-0.351562 1.066406,-0.828125 1.421875,-1.421875 0.351563,-0.59375 0.53125,-1.238281 0.53125,-1.9375 -0.386719,-0.257813 -0.859375,-0.46875 -1.421875,-0.625 -0.5625,-0.164063 -1.15625,-0.25 -1.78125,-0.25 -1.117188,0 -1.960938,0.234375 -2.53125,0.703125 -0.5625,0.460938 -0.84375,1.058594 -0.84375,1.796875 0,0.679687 0.253906,1.226563 0.765625,1.640625 0.507813,0.40625 1.15625,0.609375 1.9375,0.609375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-15" overflow="visible">
<path id="path1043"
d="m 6.21875,0.1875 c -0.5,0 -0.964844,-0.078125 -1.390625,-0.234375 -0.417969,-0.15625 -0.773437,-0.375 -1.0625,-0.65625 C 3.128906,-1.304688 2.8125,-2.144531 2.8125,-3.21875 v -7.171875 H 0.671875 v -1.84375 H 2.8125 v -3.46875 h 2.03125 v 3.46875 h 3 v 1.84375 h -3 v 6.671875 c 0,0.667969 0.128906,1.164062 0.390625,1.484375 0.300781,0.355469 0.738281,0.53125 1.3125,0.53125 0.5,0 0.945313,-0.132813 1.34375,-0.40625 V -0.125 C 7.648438,-0.0078125 7.40625,0.0664062 7.15625,0.109375 6.914062,0.160156 6.601562,0.1875 6.21875,0.1875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-16" overflow="visible">
<path id="path1046"
d="m 5.78125,0.390625 c -1.3125,0 -2.414062,-0.3085938 -3.296875,-0.921875 -0.875,-0.625 -1.496094,-1.414062 -1.859375,-2.375 l 1.828125,-0.8125 c 0.300781,0.742188 0.75,1.308594 1.34375,1.703125 0.601563,0.398437 1.265625,0.59375 1.984375,0.59375 0.769531,0 1.425781,-0.15625 1.96875,-0.46875 0.539062,-0.3125 0.8125,-0.753906 0.8125,-1.328125 0,-0.507812 -0.21875,-0.921875 -0.65625,-1.234375 C 7.476562,-4.765625 6.800781,-5.03125 5.875,-5.25 L 4.390625,-5.640625 C 3.410156,-5.878906 2.609375,-6.285156 1.984375,-6.859375 1.367188,-7.441406 1.0625,-8.1875 1.0625,-9.09375 c 0,-0.707031 0.207031,-1.328125 0.625,-1.859375 0.425781,-0.539063 0.988281,-0.953125 1.6875,-1.234375 0.707031,-0.289062 1.46875,-0.4375 2.28125,-0.4375 1.070312,0 2.03125,0.234375 2.875,0.703125 0.84375,0.460937 1.4375,1.105469 1.78125,1.9375 l -1.765625,0.8125 c -0.542969,-1.082031 -1.511719,-1.625 -2.90625,-1.625 -0.679687,0 -1.265625,0.15625 -1.765625,0.46875 -0.5,0.3125 -0.75,0.710937 -0.75,1.1875 0,0.449219 0.171875,0.8125 0.515625,1.09375 0.351563,0.28125 0.882813,0.507813 1.59375,0.671875 l 1.78125,0.46875 c 1.195313,0.304688 2.097656,0.757812 2.703125,1.359375 0.601562,0.59375 0.90625,1.324219 0.90625,2.1875 0,0.75 -0.214844,1.414063 -0.640625,1.984375 -0.429687,0.5625 -1.011719,1 -1.75,1.3125 C 7.492188,0.238281 6.675781,0.390625 5.78125,0.390625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-17" overflow="visible">
<path id="path1049"
d="m 1.421875,-12.234375 h 1.9375 v 1.8125 h 0.09375 c 0.375,-0.625 0.929687,-1.144531 1.671875,-1.5625 0.738281,-0.425781 1.570312,-0.640625 2.5,-0.640625 1.101562,0 2.097656,0.28125 2.984375,0.84375 0.894531,0.5625 1.597656,1.339844 2.109375,2.328125 0.507812,0.992187 0.765625,2.101563 0.765625,3.328125 0,1.25 -0.257813,2.371094 -0.765625,3.359375 -0.511719,0.980469 -1.214844,1.75 -2.109375,2.3125 C 9.722656,0.109375 8.726562,0.390625 7.625,0.390625 6.695312,0.390625 5.863281,0.175781 5.125,-0.25 4.382812,-0.675781 3.828125,-1.191406 3.453125,-1.796875 H 3.359375 L 3.453125,-0.125 v 5.3125 h -2.03125 z m 6,10.765625 c 0.695313,0 1.359375,-0.1875 1.984375,-0.5625 0.625,-0.382812 1.117188,-0.929688 1.484375,-1.640625 0.375,-0.707031 0.5625,-1.523437 0.5625,-2.453125 0,-0.925781 -0.1875,-1.738281 -0.5625,-2.4375 -0.367187,-0.707031 -0.859375,-1.253906 -1.484375,-1.640625 -0.625,-0.382813 -1.289062,-0.578125 -1.984375,-0.578125 -0.71875,0 -1.390625,0.195312 -2.015625,0.578125 -0.617188,0.386719 -1.109375,0.933594 -1.484375,1.640625 -0.375,0.699219 -0.5625,1.511719 -0.5625,2.4375 0,0.929688 0.1875,1.746094 0.5625,2.453125 0.375,0.710937 0.867187,1.257813 1.484375,1.640625 0.625,0.375 1.296875,0.5625 2.015625,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-18" overflow="visible">
<path id="path1052"
d="m 1.515625,-17.1875 h 2.03125 V 0 h -2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-19" overflow="visible">
<path id="path1055"
d="m 6.953125,0.390625 c -1.167969,0 -2.214844,-0.28125 -3.140625,-0.84375 -0.929688,-0.5625 -1.652344,-1.332031 -2.171875,-2.3125 -0.523437,-0.988281 -0.78125,-2.097656 -0.78125,-3.328125 0,-1.164062 0.242187,-2.25 0.734375,-3.25 0.488281,-1 1.1875,-1.796875 2.09375,-2.390625 0.90625,-0.59375 1.941406,-0.890625 3.109375,-0.890625 1.195313,0 2.234375,0.273438 3.109375,0.8125 0.882812,0.53125 1.5625,1.273438 2.03125,2.21875 0.46875,0.9375 0.703125,2.015625 0.703125,3.234375 0,0.1875 -0.01563,0.398437 -0.04687,0.625 h -9.6875 c 0.039062,0.929687 0.257812,1.714844 0.65625,2.359375 0.40625,0.636719 0.914062,1.117188 1.53125,1.4375 0.625,0.3125 1.269531,0.46875 1.9375,0.46875 1.601562,0 2.8125,-0.734375 3.625,-2.203125 l 1.734375,0.84375 c -0.523437,0.96875 -1.242187,1.75 -2.15625,2.34375 -0.90625,0.5820312 -2,0.875 -3.28125,0.875 z m 3.53125,-7.8125 c -0.03125,-0.507813 -0.179687,-1.019531 -0.4375,-1.53125 -0.25,-0.507813 -0.648437,-0.941406 -1.1875,-1.296875 -0.542969,-0.351562 -1.230469,-0.53125 -2.0625,-0.53125 -0.960937,0 -1.777344,0.3125 -2.453125,0.9375 -0.667969,0.617188 -1.105469,1.421875 -1.3125,2.421875 z M 4.25,-17.65625 h 2.234375 l 1.234375,3.046875 H 5.921875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-20" overflow="visible">
<path id="path1058"
d="m 1.921875,-17.1875 h 5.78125 c 0.957031,0 1.84375,0.21875 2.65625,0.65625 0.820313,0.429688 1.476563,1.03125 1.96875,1.8125 0.488281,0.773438 0.734375,1.648438 0.734375,2.625 0,0.980469 -0.246094,1.859375 -0.734375,2.640625 -0.492187,0.773437 -1.148437,1.371094 -1.96875,1.796875 -0.8125,0.429688 -1.699219,0.640625 -2.65625,0.640625 h -3.75 V 0 H 1.921875 Z M 7.75,-8.953125 c 0.644531,0 1.207031,-0.148437 1.6875,-0.453125 0.488281,-0.300781 0.867188,-0.691406 1.140625,-1.171875 0.269531,-0.476563 0.40625,-0.984375 0.40625,-1.515625 0,-0.53125 -0.136719,-1.035156 -0.40625,-1.515625 C 10.304688,-14.085938 9.925781,-14.476562 9.4375,-14.78125 8.957031,-15.082031 8.394531,-15.234375 7.75,-15.234375 H 3.953125 v 6.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-21" overflow="visible">
<path id="path1061" d="M 0,0 Z M 0,0" style="stroke:none" />
</symbol>
<symbol id="glyph3-22" overflow="visible">
<path id="path1064"
d="m 6.890625,5.5625 c -1.4375,0 -2.625,-0.339844 -3.5625,-1.015625 C 2.390625,3.878906 1.757812,3.078125 1.4375,2.140625 L 3.3125,1.34375 C 3.570312,2.050781 4.015625,2.625 4.640625,3.0625 c 0.632813,0.4375 1.382813,0.65625 2.25,0.65625 1.257813,0 2.238281,-0.371094 2.9375,-1.109375 C 10.523438,1.878906 10.875,0.84375 10.875,-0.5 V -1.875 H 10.78125 C 10.375,-1.25 9.804688,-0.738281 9.078125,-0.34375 8.347656,0.0390625 7.519531,0.234375 6.59375,0.234375 c -1.054688,0 -2.015625,-0.2695312 -2.890625,-0.8125 C 2.835938,-1.117188 2.144531,-1.875 1.625,-2.84375 1.113281,-3.820312 0.859375,-4.9375 0.859375,-6.1875 c 0,-1.238281 0.253906,-2.347656 0.765625,-3.328125 0.519531,-0.976563 1.210938,-1.738281 2.078125,-2.28125 0.875,-0.550781 1.835937,-0.828125 2.890625,-0.828125 0.925781,0 1.753906,0.199219 2.484375,0.59375 0.726563,0.386719 1.296875,0.902344 1.703125,1.546875 H 10.875 v -1.75 h 1.9375 v 11.75 c 0,1.96875 -0.546875,3.46875 -1.640625,4.5 C 10.085938,5.046875 8.660156,5.5625 6.890625,5.5625 Z m 0,-7.171875 c 0.726563,0 1.394531,-0.179687 2,-0.546875 0.601563,-0.375 1.082031,-0.90625 1.4375,-1.59375 0.363281,-0.6875 0.546875,-1.5 0.546875,-2.4375 0,-0.957031 -0.183594,-1.78125 -0.546875,-2.46875 -0.355469,-0.695312 -0.835937,-1.222656 -1.4375,-1.578125 -0.605469,-0.363281 -1.273437,-0.546875 -2,-0.546875 -0.742187,0 -1.417969,0.1875 -2.03125,0.5625 C 4.253906,-9.851562 3.769531,-9.328125 3.40625,-8.640625 3.050781,-7.953125 2.875,-7.132812 2.875,-6.1875 c 0,0.9375 0.175781,1.757812 0.53125,2.453125 0.363281,0.699219 0.847656,1.230469 1.453125,1.59375 0.613281,0.355469 1.289063,0.53125 2.03125,0.53125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-23" overflow="visible">
<path id="path1067"
d="m 1.515625,-17.1875 h 2.03125 v 5.0625 l -0.09375,1.6875 h 0.09375 c 0.34375,-0.625 0.875,-1.144531 1.59375,-1.5625 0.726563,-0.414062 1.523437,-0.625 2.390625,-0.625 1.488281,0 2.625,0.4375 3.40625,1.3125 0.789062,0.867188 1.1875,2.023438 1.1875,3.46875 V 0 h -2.046875 v -7.53125 c 0,-1.101562 -0.28125,-1.921875 -0.84375,-2.453125 -0.554687,-0.53125 -1.277344,-0.796875 -2.171875,-0.796875 -0.648438,0 -1.242188,0.195312 -1.78125,0.578125 -0.53125,0.386719 -0.953125,0.886719 -1.265625,1.5 -0.3125,0.605469 -0.46875,1.234375 -0.46875,1.890625 V 0 h -2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-24" overflow="visible">
<path id="path1070"
d="m 4.625,-6.21875 -4.21875,-6.015625 h 2.3125 l 3.140625,4.53125 3.046875,-4.53125 h 2.390625 L 7.015625,-6.21875 11.375,0 H 9 L 5.828125,-4.703125 2.6875,0 h -2.375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-25" overflow="visible">
<path id="path1073"
d="m 5.953125,0.390625 c -1.46875,0 -2.59375,-0.4296875 -3.375,-1.296875 -0.773437,-0.863281 -1.15625,-2.070312 -1.15625,-3.625 v -7.703125 h 2.03125 v 7.390625 c 0,1.167969 0.265625,2.023438 0.796875,2.5625 0.53125,0.542969 1.242188,0.8125 2.140625,0.8125 0.6875,0 1.296875,-0.179688 1.828125,-0.546875 0.539062,-0.363281 0.957031,-0.84375 1.25,-1.4375 0.289062,-0.59375 0.4375,-1.21875 0.4375,-1.875 v -6.90625 h 2.046875 V 0 h -1.9375 V -1.78125 H 9.90625 c -0.335938,0.617188 -0.871094,1.132812 -1.609375,1.546875 -0.730469,0.414063 -1.511719,0.625 -2.34375,0.625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-26" overflow="visible">
<path id="path1076"
d="m 0.171875,-12.234375 h 2.1875 l 3.78125,9.828125 H 6.1875 l 3.84375,-9.828125 h 2.140625 L 7.171875,0 h -2.0625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph3-27" overflow="visible">
<path id="path1079"
d="M 9.984375,0.390625 C 8.367188,0.390625 6.878906,0 5.515625,-0.78125 c -1.355469,-0.789062 -2.433594,-1.875 -3.234375,-3.25 -0.804688,-1.375 -1.203125,-2.894531 -1.203125,-4.5625 0,-1.664062 0.398437,-3.1875 1.203125,-4.5625 0.800781,-1.375 1.878906,-2.453125 3.234375,-3.234375 1.363281,-0.78125 2.851563,-1.171875 4.46875,-1.171875 1.257813,0 2.445313,0.226562 3.5625,0.671875 1.113281,0.449219 2.03125,1.078125 2.75,1.890625 l -1.4375,1.46875 c -0.5625,-0.675781 -1.273437,-1.191406 -2.125,-1.546875 -0.84375,-0.363281 -1.75,-0.546875 -2.71875,-0.546875 -1.210937,0 -2.339844,0.292969 -3.390625,0.875 -1.054688,0.585938 -1.898438,1.40625 -2.53125,2.46875 -0.636719,1.0625 -0.953125,2.292969 -0.953125,3.6875 0,1.398438 0.316406,2.625 0.953125,3.6875 0.632812,1.0625 1.476562,1.886719 2.53125,2.46875 1.050781,0.585938 2.179688,0.875 3.390625,0.875 1.144531,0 2.101563,-0.175781 2.875,-0.53125 0.78125,-0.363281 1.453125,-0.84375 2.015625,-1.4375 0.414062,-0.445312 0.75,-0.984375 1,-1.609375 0.257812,-0.632813 0.421875,-1.335937 0.484375,-2.109375 H 10.03125 v -1.890625 h 8.25 c 0.08203,0.449219 0.125,0.867187 0.125,1.25 0,1.054687 -0.167969,2.078125 -0.5,3.078125 -0.335938,1 -0.871094,1.875 -1.609375,2.625 -1.585937,1.71875 -3.6875,2.578125 -6.3125,2.578125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph4-0" overflow="visible">
<path id="path1082"
d="M 12.03125,0 H 1.890625 V -17.1875 H 12.03125 Z M 10.578125,-1.375 V -15.8125 H 3.34375 V -1.375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph4-1" overflow="visible">
<path id="path1085"
d="m 11.546875,-14.5 c -0.40625,0 -0.757813,-0.140625 -1.046875,-0.421875 -0.28125,-0.289063 -0.421875,-0.632813 -0.421875,-1.03125 0,-0.414063 0.140625,-0.765625 0.421875,-1.046875 0.289062,-0.28125 0.640625,-0.421875 1.046875,-0.421875 0.414063,0 0.765625,0.140625 1.046875,0.421875 0.28125,0.28125 0.421875,0.632812 0.421875,1.046875 0,0.398437 -0.140625,0.742187 -0.421875,1.03125 C 12.3125,-14.640625 11.960938,-14.5 11.546875,-14.5 Z m -8.625,4.109375 h -2.25 v -1.84375 h 2.25 V -13.5625 c 0,-0.769531 0.175781,-1.441406 0.53125,-2.015625 0.351563,-0.570313 0.828125,-1.015625 1.421875,-1.328125 0.59375,-0.3125 1.25,-0.46875 1.96875,-0.46875 0.6875,0 1.285156,0.09375 1.796875,0.28125 v 2 C 8.347656,-15.207031 8.070312,-15.300781 7.8125,-15.375 c -0.25,-0.07031 -0.554688,-0.109375 -0.90625,-0.109375 -0.523438,0 -0.976562,0.1875 -1.359375,0.5625 -0.386719,0.375 -0.578125,0.902344 -0.578125,1.578125 v 1.109375 h 7.609375 V 0 H 10.53125 V -10.390625 H 4.96875 V 0 H 2.921875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph5-0" overflow="visible">
<path id="path1088"
d="m 4.140625,0 h -3.625 v -7.46875 h 3.625 z M 3.859375,-0.4375 V -7.03125 L 2.46875,-3.734375 Z m -3.0625,-6.53125 V -0.5 L 2.15625,-3.734375 Z M 1,-0.28125 H 3.640625 L 2.3125,-3.390625 Z M 2.3125,-4.078125 3.640625,-7.1875 H 1 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph5-1" overflow="visible">
<path id="path1091"
d="m 5.734375,-3.0625 c 0,0.523438 -0.152344,0.921875 -0.453125,1.203125 -0.304688,0.273437 -0.730469,0.40625 -1.28125,0.40625 -0.542969,0 -0.976562,-0.175781 -1.296875,-0.53125 C 2.378906,-2.347656 2.21875,-2.835938 2.21875,-3.453125 v -0.59375 c 0,-0.59375 0.160156,-1.070313 0.484375,-1.4375 0.332031,-0.363281 0.769531,-0.546875 1.3125,-0.546875 0.550781,0 0.972656,0.148438 1.265625,0.4375 0.300781,0.28125 0.453125,0.671875 0.453125,1.171875 H 4.9375 c 0,-0.320313 -0.078125,-0.550781 -0.234375,-0.6875 -0.15625,-0.144531 -0.386719,-0.21875 -0.6875,-0.21875 -0.3125,0 -0.558594,0.117187 -0.734375,0.34375 C 3.101562,-4.753906 3.015625,-4.4375 3.015625,-4.03125 v 0.59375 c 0,0.40625 0.085937,0.726562 0.265625,0.953125 0.175781,0.230469 0.421875,0.34375 0.734375,0.34375 0.300781,0 0.53125,-0.066406 0.6875,-0.203125 C 4.859375,-2.476562 4.9375,-2.71875 4.9375,-3.0625 Z M 7.09375,-3.734375 c 0,-0.570313 -0.132812,-1.097656 -0.390625,-1.578125 -0.25,-0.488281 -0.609375,-0.878906 -1.078125,-1.171875 -0.46875,-0.289063 -0.980469,-0.4375 -1.53125,-0.4375 -0.554688,0 -1.0625,0.140625 -1.53125,0.421875 -0.460938,0.28125 -0.824219,0.667969 -1.09375,1.15625 -0.261719,0.492188 -0.390625,1.027344 -0.390625,1.609375 0,0.585937 0.128906,1.121094 0.390625,1.609375 0.257812,0.492188 0.625,0.882812 1.09375,1.171875 0.46875,0.28125 0.972656,0.421875 1.515625,0.421875 0.550781,0 1.0625,-0.144531 1.53125,-0.4375 0.46875,-0.289062 0.832031,-0.679688 1.09375,-1.171875 0.257813,-0.488281 0.390625,-1.019531 0.390625,-1.59375 z m -6.640625,0 c 0,-0.6875 0.15625,-1.328125 0.46875,-1.921875 C 1.242188,-6.25 1.6875,-6.710938 2.25,-7.046875 2.820312,-7.390625 3.4375,-7.5625 4.09375,-7.5625 c 0.65625,0 1.265625,0.171875 1.828125,0.515625 0.5625,0.335937 1,0.796875 1.3125,1.390625 0.320313,0.59375 0.484375,1.234375 0.484375,1.921875 0,0.6875 -0.164062,1.328125 -0.484375,1.921875 -0.3125,0.59375 -0.75,1.0625 -1.3125,1.40625 C 5.359375,-0.0625 4.75,0.109375 4.09375,0.109375 3.425781,0.109375 2.8125,-0.0625 2.25,-0.40625 1.6875,-0.75 1.242188,-1.21875 0.921875,-1.8125 0.609375,-2.40625 0.453125,-3.046875 0.453125,-3.734375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-0" overflow="visible">
<path id="path1094"
d="M 5.296875,0 H 0.84375 V -7.515625 H 5.296875 Z M 4.640625,-0.609375 V -6.90625 h -3.15625 v 6.296875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-1" overflow="visible">
<path id="path1097"
d="m 0.5,-1.078125 c 1.425781,-1.40625 2.300781,-2.289063 2.625,-2.65625 0.3125,-0.320313 0.519531,-0.582031 0.625,-0.78125 0.113281,-0.207031 0.171875,-0.445313 0.171875,-0.71875 0,-0.28125 -0.109375,-0.523437 -0.328125,-0.734375 -0.210938,-0.207031 -0.496094,-0.3125 -0.859375,-0.3125 -0.335937,0 -0.605469,0.101562 -0.8125,0.296875 C 1.710938,-5.796875 1.570312,-5.570312 1.5,-5.3125 L 0.484375,-5.734375 c 0.070313,-0.25 0.203125,-0.492187 0.390625,-0.734375 0.195312,-0.25 0.453125,-0.457031 0.765625,-0.625 0.320313,-0.164062 0.695313,-0.25 1.125,-0.25 0.445313,0 0.847656,0.09375 1.203125,0.28125 0.351562,0.1875 0.625,0.4375 0.8125,0.75 0.195312,0.3125 0.296875,0.664062 0.296875,1.046875 0,0.75 -0.386719,1.507813 -1.15625,2.265625 -0.304687,0.3125 -0.648437,0.664062 -1.03125,1.046875 C 2.492188,-1.566406 2.195312,-1.269531 2,-1.0625 v 0.03125 H 5.15625 V 0 H 0.5 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-2" overflow="visible">
<path id="path1100"
d="M 3.453125,0.171875 C 2.867188,0.171875 2.351562,0.0078125 1.90625,-0.3125 1.457031,-0.644531 1.113281,-1.097656 0.875,-1.671875 0.632812,-2.242188 0.515625,-2.882812 0.515625,-3.59375 0.515625,-4.300781 0.632812,-4.9375 0.875,-5.5 c 0.238281,-0.570312 0.582031,-1.019531 1.03125,-1.34375 0.445312,-0.332031 0.960938,-0.5 1.546875,-0.5 0.59375,0 1.113281,0.167969 1.5625,0.5 0.445313,0.324219 0.789063,0.773438 1.03125,1.34375 0.238281,0.5625 0.359375,1.199219 0.359375,1.90625 0,0.710938 -0.121094,1.351562 -0.359375,1.921875 -0.242187,0.574219 -0.585937,1.027344 -1.03125,1.359375 -0.449219,0.3203125 -0.96875,0.484375 -1.5625,0.484375 z m 0,-1.078125 c 0.375,0 0.695313,-0.113281 0.96875,-0.34375 0.269531,-0.238281 0.476563,-0.5625 0.625,-0.96875 0.144531,-0.40625 0.21875,-0.863281 0.21875,-1.375 0,-0.507812 -0.074219,-0.96875 -0.21875,-1.375 -0.148437,-0.414062 -0.355469,-0.738281 -0.625,-0.96875 -0.273437,-0.226562 -0.59375,-0.34375 -0.96875,-0.34375 -0.367187,0 -0.683594,0.117188 -0.953125,0.34375 -0.273438,0.230469 -0.480469,0.554688 -0.625,0.96875 -0.136719,0.40625 -0.203125,0.867188 -0.203125,1.375 0,0.511719 0.066406,0.96875 0.203125,1.375 0.144531,0.40625 0.351562,0.730469 0.625,0.96875 0.269531,0.230469 0.585938,0.34375 0.953125,0.34375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-3" overflow="visible">
<path id="path1103"
d="m 2.21875,-5.65625 -1.171875,0.84375 -0.578125,-0.875 2.078125,-1.5 h 0.8125 V 0 H 2.21875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-4" overflow="visible">
<path id="path1106"
d="M 4.40625,0.171875 C 3.695312,0.171875 3.039062,0 2.4375,-0.34375 1.832031,-0.6875 1.351562,-1.15625 1,-1.75 0.644531,-2.351562 0.46875,-3.023438 0.46875,-3.765625 0.46875,-4.492188 0.644531,-5.15625 1,-5.75 1.351562,-6.351562 1.832031,-6.828125 2.4375,-7.171875 3.039062,-7.515625 3.695312,-7.6875 4.40625,-7.6875 c 0.570312,0 1.097656,0.105469 1.578125,0.3125 0.488281,0.199219 0.898437,0.480469 1.234375,0.84375 L 6.421875,-5.734375 C 5.910156,-6.304688 5.238281,-6.59375 4.40625,-6.59375 c -0.492188,0 -0.949219,0.121094 -1.375,0.359375 -0.429688,0.230469 -0.765625,0.5625 -1.015625,1 -0.25,0.429687 -0.375,0.917969 -0.375,1.46875 0,0.5625 0.125,1.0625 0.375,1.5 0.257813,0.429687 0.597656,0.761719 1.015625,1 0.425781,0.230469 0.890625,0.34375 1.390625,0.34375 0.789063,0 1.4375,-0.25 1.9375,-0.75 C 6.515625,-1.828125 6.644531,-2.019531 6.75,-2.25 6.863281,-2.488281 6.941406,-2.753906 6.984375,-3.046875 H 4.40625 V -4.0625 h 3.640625 c 0.039063,0.242188 0.0625,0.445312 0.0625,0.609375 0,0.480469 -0.074219,0.933594 -0.21875,1.359375 -0.148437,0.429688 -0.382813,0.808594 -0.703125,1.140625 -0.335938,0.367187 -0.734375,0.648437 -1.203125,0.84375 -0.46875,0.1875 -0.996094,0.28125 -1.578125,0.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-5" overflow="visible">
<path id="path1109"
d="m 3.1875,0.171875 c -0.542969,0 -1.027344,-0.125 -1.453125,-0.375 -0.429687,-0.25 -0.761719,-0.585937 -1,-1.015625 C 0.492188,-1.65625 0.375,-2.140625 0.375,-2.671875 c 0,-0.53125 0.117188,-1.015625 0.359375,-1.453125 0.238281,-0.4375 0.570313,-0.773438 1,-1.015625 0.425781,-0.25 0.910156,-0.375 1.453125,-0.375 0.53125,0 1.007812,0.125 1.4375,0.375 0.425781,0.25 0.753906,0.59375 0.984375,1.03125 0.238281,0.429687 0.359375,0.90625 0.359375,1.4375 0,0.53125 -0.121094,1.015625 -0.359375,1.453125 -0.230469,0.429688 -0.558594,0.765625 -0.984375,1.015625 -0.429688,0.25 -0.90625,0.375 -1.4375,0.375 z m 0,-1.046875 c 0.300781,0 0.578125,-0.070312 0.828125,-0.21875 0.25,-0.144531 0.445313,-0.351562 0.59375,-0.625 0.15625,-0.269531 0.234375,-0.585938 0.234375,-0.953125 0,-0.363281 -0.078125,-0.679687 -0.234375,-0.953125 -0.148437,-0.28125 -0.34375,-0.492188 -0.59375,-0.640625 -0.25,-0.144531 -0.527344,-0.21875 -0.828125,-0.21875 -0.304688,0 -0.585938,0.074219 -0.84375,0.21875 C 2.09375,-4.117188 1.890625,-3.90625 1.734375,-3.625 1.578125,-3.351562 1.5,-3.035156 1.5,-2.671875 c 0,0.367187 0.078125,0.683594 0.234375,0.953125 0.15625,0.273438 0.359375,0.480469 0.609375,0.625 0.257812,0.148438 0.539062,0.21875 0.84375,0.21875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-6" overflow="visible">
<path id="path1112"
d="m 3.078125,2.4375 c -0.65625,0 -1.199219,-0.152344 -1.625,-0.453125 C 1.023438,1.691406 0.738281,1.332031 0.59375,0.90625 L 1.640625,0.46875 C 1.753906,0.757812 1.9375,0.988281 2.1875,1.15625 c 0.257812,0.175781 0.554688,0.265625 0.890625,0.265625 0.5,0 0.882813,-0.148437 1.15625,-0.4375 0.28125,-0.292969 0.421875,-0.710937 0.421875,-1.25 V -0.78125 h -0.0625 c -0.167969,0.261719 -0.402344,0.464844 -0.703125,0.609375 -0.292969,0.1484375 -0.625,0.21875 -1,0.21875 -0.460937,0 -0.882813,-0.1132812 -1.265625,-0.34375 C 1.25,-0.523438 0.945312,-0.847656 0.71875,-1.265625 0.488281,-1.691406 0.375,-2.179688 0.375,-2.734375 c 0,-0.539063 0.113281,-1.019531 0.34375,-1.4375 C 0.945312,-4.597656 1.25,-4.925781 1.625,-5.15625 c 0.382812,-0.238281 0.804688,-0.359375 1.265625,-0.359375 0.363281,0 0.695313,0.074219 1,0.21875 0.300781,0.148437 0.535156,0.351563 0.703125,0.609375 h 0.0625 V -5.359375 H 5.75 V -0.28125 C 5.75,0.289062 5.632812,0.78125 5.40625,1.1875 5.1875,1.601562 4.875,1.914062 4.46875,2.125 4.0625,2.332031 3.597656,2.4375 3.078125,2.4375 Z M 3.09375,-0.96875 c 0.28125,0 0.539062,-0.066406 0.78125,-0.203125 0.238281,-0.144531 0.425781,-0.347656 0.5625,-0.609375 0.144531,-0.269531 0.21875,-0.585938 0.21875,-0.953125 0,-0.363281 -0.074219,-0.675781 -0.21875,-0.9375 C 4.300781,-3.941406 4.113281,-4.144531 3.875,-4.28125 3.632812,-4.425781 3.375,-4.5 3.09375,-4.5 2.800781,-4.5 2.535156,-4.425781 2.296875,-4.28125 2.054688,-4.144531 1.863281,-3.941406 1.71875,-3.671875 1.570312,-3.410156 1.5,-3.097656 1.5,-2.734375 c 0,0.367187 0.070312,0.683594 0.21875,0.953125 0.144531,0.261719 0.335938,0.464844 0.578125,0.609375 0.238281,0.136719 0.503906,0.203125 0.796875,0.203125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-7" overflow="visible">
<path id="path1115"
d="M 0.65625,-7.515625 H 1.796875 V 0 H 0.65625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-8" overflow="visible">
<path id="path1118"
d="M 3.109375,0.171875 C 2.585938,0.171875 2.117188,0.0507812 1.703125,-0.1875 1.285156,-0.4375 0.957031,-0.773438 0.71875,-1.203125 0.488281,-1.640625 0.375,-2.128906 0.375,-2.671875 0.375,-3.179688 0.488281,-3.65625 0.71875,-4.09375 0.945312,-4.53125 1.265625,-4.875 1.671875,-5.125 c 0.40625,-0.257812 0.863281,-0.390625 1.375,-0.390625 0.539063,0 1.003906,0.121094 1.390625,0.359375 0.394531,0.230469 0.695312,0.554688 0.90625,0.96875 0.207031,0.40625 0.3125,0.871094 0.3125,1.390625 0,0.148437 -0.011719,0.265625 -0.03125,0.359375 H 1.484375 c 0.050781,0.511719 0.234375,0.90625 0.546875,1.1875 0.320312,0.273438 0.691406,0.40625 1.109375,0.40625 0.34375,0 0.632813,-0.078125 0.875,-0.234375 0.25,-0.15625 0.445313,-0.363281 0.59375,-0.625 L 5.546875,-1.25 c -0.25,0.4375 -0.578125,0.789062 -0.984375,1.046875 -0.40625,0.25 -0.890625,0.375 -1.453125,0.375 z M 4.53125,-3.28125 C 4.507812,-3.476562 4.441406,-3.675781 4.328125,-3.875 4.222656,-4.070312 4.0625,-4.234375 3.84375,-4.359375 3.632812,-4.492188 3.375,-4.5625 3.0625,-4.5625 c -0.386719,0 -0.710938,0.121094 -0.96875,0.359375 -0.261719,0.230469 -0.445312,0.539063 -0.546875,0.921875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-9" overflow="visible">
<path id="path1121"
d="M 0.84375,-8.3125 H 1.875 V 1.265625 H 0.84375 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-10" overflow="visible">
<path id="path1124" d="M 0,0 Z M 0,0" style="stroke:none" />
</symbol>
<symbol id="glyph6-11" overflow="visible">
<path id="path1127"
d="M 3,-7.515625 H 4.3125 L 7.15625,0 H 5.875 L 5.1875,-1.9375 H 2.125 L 1.421875,0 H 0.15625 Z M 4.8125,-3 3.96875,-5.296875 3.6875,-6.15625 H 3.625 L 3.34375,-5.296875 2.5,-3 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-12" overflow="visible">
<path id="path1130"
d="m 3.140625,0.171875 c -0.53125,0 -1.011719,-0.1210938 -1.4375,-0.359375 C 1.285156,-0.4375 0.957031,-0.773438 0.71875,-1.203125 0.488281,-1.640625 0.375,-2.128906 0.375,-2.671875 c 0,-0.550781 0.113281,-1.039063 0.34375,-1.46875 0.238281,-0.425781 0.566406,-0.757813 0.984375,-1 0.425781,-0.25 0.90625,-0.375 1.4375,-0.375 0.582031,0 1.078125,0.132813 1.484375,0.390625 0.414062,0.261719 0.710938,0.621094 0.890625,1.078125 L 4.5,-3.625 C 4.238281,-4.195312 3.78125,-4.484375 3.125,-4.484375 2.820312,-4.484375 2.546875,-4.40625 2.296875,-4.25 2.054688,-4.101562 1.863281,-3.894531 1.71875,-3.625 1.570312,-3.351562 1.5,-3.035156 1.5,-2.671875 c 0,0.355469 0.070312,0.667969 0.21875,0.9375 0.144531,0.273437 0.335938,0.484375 0.578125,0.640625 0.25,0.148438 0.523437,0.21875 0.828125,0.21875 0.332031,0 0.617188,-0.070312 0.859375,-0.21875 C 4.222656,-1.25 4.410156,-1.46875 4.546875,-1.75 L 5.5625,-1.3125 C 5.351562,-0.851562 5.039062,-0.488281 4.625,-0.21875 4.21875,0.0390625 3.722656,0.171875 3.140625,0.171875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-13" overflow="visible">
<path id="path1133"
d="m 2.609375,0.171875 c -0.648437,0 -1.140625,-0.1914062 -1.484375,-0.578125 -0.335938,-0.394531 -0.5,-0.9375 -0.5,-1.625 V -5.359375 H 1.75 V -2.1875 c 0,0.429688 0.097656,0.757812 0.296875,0.984375 C 2.253906,-0.984375 2.53125,-0.875 2.875,-0.875 c 0.28125,0 0.53125,-0.070312 0.75,-0.21875 0.21875,-0.144531 0.382812,-0.335938 0.5,-0.578125 0.113281,-0.25 0.171875,-0.519531 0.171875,-0.8125 v -2.875 h 1.125 V 0 h -1.0625 v -0.71875 h -0.0625 c -0.15625,0.25 -0.390625,0.464844 -0.703125,0.640625 -0.304688,0.1640625 -0.632812,0.25 -0.984375,0.25 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-14" overflow="visible">
<path id="path1136"
d="m 1.3125,-6.140625 c -0.210938,0 -0.390625,-0.070313 -0.546875,-0.21875 -0.148437,-0.15625 -0.21875,-0.335937 -0.21875,-0.546875 0,-0.207031 0.070313,-0.382812 0.21875,-0.53125 0.15625,-0.15625 0.335937,-0.234375 0.546875,-0.234375 0.207031,0 0.382812,0.078125 0.53125,0.234375 C 2,-7.289062 2.078125,-7.113281 2.078125,-6.90625 2.078125,-6.695312 2,-6.515625 1.84375,-6.359375 1.695312,-6.210938 1.519531,-6.140625 1.3125,-6.140625 Z M 0.75,-5.359375 H 1.875 V 0 H 0.75 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-15" overflow="visible">
<path id="path1139"
d="M 0.65625,-5.359375 H 1.734375 V -4.625 h 0.0625 c 0.15625,-0.257812 0.382813,-0.472656 0.6875,-0.640625 0.3125,-0.164063 0.644531,-0.25 1,-0.25 0.644531,0 1.132813,0.195313 1.46875,0.578125 0.332031,0.375 0.5,0.898438 0.5,1.5625 V 0 H 4.34375 v -3.234375 c 0,-0.414063 -0.109375,-0.726563 -0.328125,-0.9375 -0.210937,-0.207031 -0.496094,-0.3125 -0.859375,-0.3125 -0.261719,0 -0.496094,0.074219 -0.703125,0.21875 -0.210937,0.148437 -0.371094,0.34375 -0.484375,0.59375 C 1.851562,-3.429688 1.796875,-3.164062 1.796875,-2.875 V 0 H 0.65625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-16" overflow="visible">
<path id="path1142"
d="m 2.34375,0.171875 c -0.386719,0 -0.730469,-0.0742188 -1.03125,-0.21875 -0.304688,-0.15625 -0.539062,-0.367187 -0.703125,-0.640625 -0.167969,-0.28125 -0.25,-0.59375 -0.25,-0.9375 0,-0.375 0.09375,-0.695312 0.28125,-0.96875 0.195313,-0.269531 0.460937,-0.472656 0.796875,-0.609375 0.34375,-0.144531 0.722656,-0.21875 1.140625,-0.21875 0.3125,0 0.59375,0.03125 0.84375,0.09375 0.257813,0.054687 0.46875,0.121094 0.625,0.203125 V -3.40625 C 4.046875,-3.75 3.914062,-4.023438 3.65625,-4.234375 3.40625,-4.453125 3.082031,-4.5625 2.6875,-4.5625 2.414062,-4.5625 2.15625,-4.5 1.90625,-4.375 1.664062,-4.257812 1.472656,-4.097656 1.328125,-3.890625 l -0.78125,-0.59375 C 0.773438,-4.816406 1.078125,-5.070312 1.453125,-5.25 1.835938,-5.425781 2.257812,-5.515625 2.71875,-5.515625 c 0.769531,0 1.363281,0.195313 1.78125,0.578125 0.425781,0.375 0.640625,0.90625 0.640625,1.59375 V 0 h -1.09375 v -0.65625 h -0.0625 C 3.828125,-0.414062 3.601562,-0.21875 3.3125,-0.0625 3.03125,0.09375 2.707031,0.171875 2.34375,0.171875 Z M 2.546875,-0.75 c 0.28125,0 0.535156,-0.066406 0.765625,-0.203125 0.226562,-0.144531 0.40625,-0.332031 0.53125,-0.5625 C 3.976562,-1.742188 4.046875,-1.988281 4.046875,-2.25 3.878906,-2.351562 3.6875,-2.429688 3.46875,-2.484375 3.25,-2.546875 3.019531,-2.578125 2.78125,-2.578125 c -0.4375,0 -0.761719,0.089844 -0.96875,0.265625 C 1.601562,-2.132812 1.5,-1.898438 1.5,-1.609375 c 0,0.25 0.09375,0.460937 0.28125,0.625 C 1.96875,-0.828125 2.222656,-0.75 2.546875,-0.75 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-17" overflow="visible">
<path id="path1145"
d="m 2.328125,-0.296875 -2.25,-5.0625 H 1.34375 l 1.53125,3.65625 h 0.046875 l 1.484375,-3.65625 h 1.25 l -3.296875,7.625 h -1.21875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-18" overflow="visible">
<path id="path1148"
d="M 2.859375,0.078125 C 2.617188,0.078125 2.394531,0.0390625 2.1875,-0.03125 1.976562,-0.101562 1.8125,-0.207031 1.6875,-0.34375 1.382812,-0.625 1.234375,-1.023438 1.234375,-1.546875 V -4.375 h -0.9375 v -0.984375 h 0.9375 v -1.5 h 1.125 v 1.5 h 1.3125 V -4.375 h -1.3125 v 2.578125 c 0,0.292969 0.054687,0.5 0.171875,0.625 0.113281,0.136719 0.296875,0.203125 0.546875,0.203125 0.125,0 0.226563,-0.015625 0.3125,-0.046875 0.09375,-0.039063 0.195313,-0.09375 0.3125,-0.15625 v 1.09375 c -0.242187,0.1015625 -0.523437,0.15625 -0.84375,0.15625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-19" overflow="visible">
<path id="path1151"
d="m 2.609375,0.171875 c -0.605469,0 -1.105469,-0.1328125 -1.5,-0.390625 -0.398437,-0.269531 -0.679687,-0.617188 -0.84375,-1.046875 l 1.03125,-0.453125 c 0.125,0.292969 0.300781,0.515625 0.53125,0.671875 0.226563,0.148437 0.488281,0.21875 0.78125,0.21875 0.300781,0 0.550781,-0.050781 0.75,-0.15625 0.207031,-0.113281 0.3125,-0.28125 0.3125,-0.5 0,-0.195313 -0.089844,-0.351563 -0.265625,-0.46875 C 3.238281,-2.066406 2.972656,-2.164062 2.609375,-2.25 L 1.96875,-2.390625 C 1.539062,-2.492188 1.1875,-2.675781 0.90625,-2.9375 0.632812,-3.207031 0.5,-3.546875 0.5,-3.953125 c 0,-0.3125 0.085938,-0.585937 0.265625,-0.828125 0.1875,-0.238281 0.4375,-0.421875 0.75,-0.546875 0.3125,-0.125 0.65625,-0.1875 1.03125,-0.1875 0.5,0 0.9375,0.101563 1.3125,0.296875 0.375,0.1875 0.644531,0.46875 0.8125,0.84375 l -0.96875,0.453125 C 3.484375,-4.347656 3.097656,-4.5625 2.546875,-4.5625 c -0.261719,0 -0.484375,0.058594 -0.671875,0.171875 -0.179688,0.105469 -0.265625,0.242187 -0.265625,0.40625 0,0.324219 0.273437,0.554687 0.828125,0.6875 l 0.78125,0.1875 c 0.519531,0.136719 0.914062,0.339844 1.1875,0.609375 0.269531,0.261719 0.40625,0.589844 0.40625,0.984375 0,0.335937 -0.101562,0.632813 -0.296875,0.890625 C 4.328125,-0.375 4.0625,-0.175781 3.71875,-0.03125 3.382812,0.101562 3.015625,0.171875 2.609375,0.171875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-20" overflow="visible">
<path id="path1154"
d="m 4.390625,0.171875 c -0.730469,0 -1.398437,-0.171875 -2,-0.515625 -0.59375,-0.34375 -1.0625,-0.816406 -1.40625,-1.421875 -0.34375,-0.601563 -0.515625,-1.269531 -0.515625,-2 0,-0.71875 0.171875,-1.378906 0.515625,-1.984375 0.34375,-0.601562 0.8125,-1.078125 1.40625,-1.421875 0.601563,-0.34375 1.269531,-0.515625 2,-0.515625 1.125,0 2.050781,0.414062 2.78125,1.234375 l -0.8125,0.78125 c -0.261719,-0.300781 -0.554687,-0.53125 -0.875,-0.6875 C 5.171875,-6.515625 4.8125,-6.59375 4.40625,-6.59375 c -0.511719,0 -0.980469,0.121094 -1.40625,0.359375 -0.417969,0.230469 -0.75,0.5625 -1,1 -0.242188,0.429687 -0.359375,0.917969 -0.359375,1.46875 0,0.5625 0.117187,1.0625 0.359375,1.5 0.25,0.429687 0.582031,0.761719 1,1 0.425781,0.230469 0.894531,0.34375 1.40625,0.34375 0.851562,0 1.566406,-0.351563 2.140625,-1.0625 L 7.375,-1.1875 c -0.367188,0.429688 -0.804688,0.761719 -1.3125,1 C 5.550781,0.0507812 4.992188,0.171875 4.390625,0.171875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-21" overflow="visible">
<path id="path1157"
d="M 2.953125,0.171875 C 2.460938,0.171875 2.019531,0.0507812 1.625,-0.1875 1.238281,-0.4375 0.929688,-0.773438 0.703125,-1.203125 0.484375,-1.640625 0.375,-2.128906 0.375,-2.671875 c 0,-0.550781 0.109375,-1.039063 0.328125,-1.46875 0.226563,-0.425781 0.535156,-0.757813 0.921875,-1 0.394531,-0.25 0.835938,-0.375 1.328125,-0.375 0.382813,0 0.726563,0.085937 1.03125,0.25 0.300781,0.167969 0.53125,0.382813 0.6875,0.640625 h 0.0625 l -0.0625,-0.75 v -2.140625 h 1.125 V 0 h -1.0625 v -0.71875 h -0.0625 c -0.15625,0.25 -0.386719,0.464844 -0.6875,0.640625 -0.304687,0.1640625 -0.648437,0.25 -1.03125,0.25 z M 3.125,-0.875 c 0.269531,0 0.53125,-0.070312 0.78125,-0.21875 C 4.15625,-1.25 4.351562,-1.460938 4.5,-1.734375 4.65625,-2.003906 4.734375,-2.316406 4.734375,-2.671875 4.734375,-3.035156 4.65625,-3.351562 4.5,-3.625 4.351562,-3.894531 4.15625,-4.101562 3.90625,-4.25 3.65625,-4.40625 3.394531,-4.484375 3.125,-4.484375 2.84375,-4.484375 2.578125,-4.40625 2.328125,-4.25 2.078125,-4.101562 1.875,-3.894531 1.71875,-3.625 1.570312,-3.351562 1.5,-3.035156 1.5,-2.671875 c 0,0.355469 0.070312,0.667969 0.21875,0.9375 C 1.875,-1.460938 2.078125,-1.25 2.328125,-1.09375 2.578125,-0.945312 2.84375,-0.875 3.125,-0.875 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-22" overflow="visible">
<path id="path1160"
d="M 0.53125,-7.515625 H 1.5625 v 2.34375 H 0.53125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-23" overflow="visible">
<path id="path1163"
d="m 0.84375,-7.515625 h 2.640625 c 0.457031,0 0.867187,0.101563 1.234375,0.296875 0.363281,0.1875 0.648438,0.460938 0.859375,0.8125 0.21875,0.355469 0.328125,0.75 0.328125,1.1875 0,0.5 -0.164062,0.949219 -0.484375,1.34375 -0.324219,0.386719 -0.730469,0.648438 -1.21875,0.78125 L 4.1875,-3.046875 6.265625,-0.0625 V 0 h -1.34375 l -2,-2.953125 H 2 V 0 H 0.84375 Z m 2.609375,3.5 c 0.363281,0 0.671875,-0.113281 0.921875,-0.34375 0.25,-0.226563 0.375,-0.519531 0.375,-0.875 0,-0.320313 -0.117188,-0.601563 -0.34375,-0.84375 C 4.175781,-6.316406 3.875,-6.4375 3.5,-6.4375 H 2 v 2.421875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-24" overflow="visible">
<path id="path1166"
d="M 3.109375,0.171875 C 2.585938,0.171875 2.117188,0.0507812 1.703125,-0.1875 1.285156,-0.4375 0.957031,-0.773438 0.71875,-1.203125 0.488281,-1.640625 0.375,-2.128906 0.375,-2.671875 0.375,-3.179688 0.488281,-3.65625 0.71875,-4.09375 0.945312,-4.53125 1.265625,-4.875 1.671875,-5.125 c 0.40625,-0.257812 0.863281,-0.390625 1.375,-0.390625 0.539063,0 1.003906,0.121094 1.390625,0.359375 0.394531,0.230469 0.695312,0.554688 0.90625,0.96875 0.207031,0.40625 0.3125,0.871094 0.3125,1.390625 0,0.148437 -0.011719,0.265625 -0.03125,0.359375 H 1.484375 c 0.050781,0.511719 0.234375,0.90625 0.546875,1.1875 0.320312,0.273438 0.691406,0.40625 1.109375,0.40625 0.34375,0 0.632813,-0.078125 0.875,-0.234375 0.25,-0.15625 0.445313,-0.363281 0.59375,-0.625 L 5.546875,-1.25 c -0.25,0.4375 -0.578125,0.789062 -0.984375,1.046875 -0.40625,0.25 -0.890625,0.375 -1.453125,0.375 z M 4.53125,-3.28125 C 4.507812,-3.476562 4.441406,-3.675781 4.328125,-3.875 4.222656,-4.070312 4.0625,-4.234375 3.84375,-4.359375 3.632812,-4.492188 3.375,-4.5625 3.0625,-4.5625 c -0.386719,0 -0.710938,0.121094 -0.96875,0.359375 -0.261719,0.230469 -0.445312,0.539063 -0.546875,0.921875 z M 1.75,-7.765625 h 1.296875 l 0.484375,1.375 H 2.578125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-25" overflow="visible">
<path id="path1169"
d="m 1.265625,-4.375 h -0.96875 v -0.984375 h 0.96875 v -0.4375 c 0,-0.5625 0.171875,-1.003906 0.515625,-1.328125 0.351562,-0.320312 0.796875,-0.484375 1.328125,-0.484375 0.300781,0 0.578125,0.046875 0.828125,0.140625 V -6.375 C 3.8125,-6.425781 3.691406,-6.46875 3.578125,-6.5 3.460938,-6.53125 3.335938,-6.546875 3.203125,-6.546875 2.972656,-6.546875 2.78125,-6.46875 2.625,-6.3125 2.46875,-6.164062 2.390625,-5.960938 2.390625,-5.703125 v 0.34375 h 1.34375 V -4.375 H 2.390625 V 0 h -1.125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-26" overflow="visible">
<path id="path1172"
d="M 3.109375,0.171875 C 2.585938,0.171875 2.117188,0.0507812 1.703125,-0.1875 1.285156,-0.4375 0.957031,-0.773438 0.71875,-1.203125 0.488281,-1.640625 0.375,-2.128906 0.375,-2.671875 0.375,-3.179688 0.488281,-3.65625 0.71875,-4.09375 0.945312,-4.53125 1.265625,-4.875 1.671875,-5.125 c 0.40625,-0.257812 0.863281,-0.390625 1.375,-0.390625 0.539063,0 1.003906,0.121094 1.390625,0.359375 0.394531,0.230469 0.695312,0.554688 0.90625,0.96875 0.207031,0.40625 0.3125,0.871094 0.3125,1.390625 0,0.148437 -0.011719,0.265625 -0.03125,0.359375 H 1.484375 c 0.050781,0.511719 0.234375,0.90625 0.546875,1.1875 0.320312,0.273438 0.691406,0.40625 1.109375,0.40625 0.34375,0 0.632813,-0.078125 0.875,-0.234375 0.25,-0.15625 0.445313,-0.363281 0.59375,-0.625 L 5.546875,-1.25 c -0.25,0.4375 -0.578125,0.789062 -0.984375,1.046875 -0.40625,0.25 -0.890625,0.375 -1.453125,0.375 z M 4.53125,-3.28125 C 4.507812,-3.476562 4.441406,-3.675781 4.328125,-3.875 4.222656,-4.070312 4.0625,-4.234375 3.84375,-4.359375 3.632812,-4.492188 3.375,-4.5625 3.0625,-4.5625 c -0.386719,0 -0.710938,0.121094 -0.96875,0.359375 -0.261719,0.230469 -0.445312,0.539063 -0.546875,0.921875 z M 3.078125,-7.765625 h 1.28125 l -0.84375,1.375 h -0.9375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-27" overflow="visible">
<path id="path1175"
d="m 0.84375,-7.515625 h 4.5625 v 1.09375 H 2 V -4.3125 h 3.078125 v 1.09375 H 2 v 2.125 H 5.40625 V 0 h -4.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-28" overflow="visible">
<path id="path1178"
d="m 0.078125,-5.359375 h 1.25 l 1.5,3.90625 h 0.0625 l 1.53125,-3.90625 H 5.65625 L 3.421875,0 H 2.28125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-29" overflow="visible">
<path id="path1181"
d="M 0.65625,-5.359375 H 1.734375 V -4.5625 h 0.0625 C 1.910156,-4.84375 2.113281,-5.070312 2.40625,-5.25 c 0.289062,-0.175781 0.601562,-0.265625 0.9375,-0.265625 0.25,0 0.46875,0.039063 0.65625,0.109375 v 1.171875 c -0.292969,-0.125 -0.570312,-0.1875 -0.828125,-0.1875 -0.398437,0 -0.726563,0.15625 -0.984375,0.46875 -0.261719,0.304687 -0.390625,0.679687 -0.390625,1.125 V 0 H 0.65625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph6-30" overflow="visible">
<path id="path1184"
d="M 0.65625,-5.359375 H 1.734375 V -4.625 h 0.0625 c 0.15625,-0.257812 0.378906,-0.472656 0.671875,-0.640625 0.300781,-0.164063 0.625,-0.25 0.96875,-0.25 0.382812,0 0.71875,0.089844 1,0.265625 0.289062,0.179688 0.5,0.417969 0.625,0.71875 C 5.25,-4.832031 5.492188,-5.070312 5.796875,-5.25 6.109375,-5.425781 6.46875,-5.515625 6.875,-5.515625 c 0.613281,0 1.078125,0.1875 1.390625,0.5625 C 8.585938,-4.585938 8.75,-4.082031 8.75,-3.4375 V 0 H 7.625 v -3.25 c 0,-0.820312 -0.351562,-1.234375 -1.046875,-1.234375 -0.386719,0 -0.703125,0.15625 -0.953125,0.46875 -0.242188,0.304687 -0.359375,0.6875 -0.359375,1.15625 V 0 h -1.125 v -3.25 c 0,-0.820312 -0.359375,-1.234375 -1.078125,-1.234375 -0.367188,0 -0.667969,0.15625 -0.90625,0.46875 -0.242188,0.3125 -0.359375,0.699219 -0.359375,1.15625 V 0 H 0.65625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph7-0" overflow="visible">
<path id="path1187"
d="M 5.296875,0 H 0.84375 V -7.515625 H 5.296875 Z M 4.640625,-0.609375 V -6.90625 h -3.15625 v 6.296875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph7-1" overflow="visible">
<path id="path1190" d="M 0,0 Z M 0,0" style="stroke:none" />
</symbol>
<symbol id="glyph8-0" overflow="visible">
<path id="path1193"
d="m 2.25,-1 h 4.9375 v -9.875 H 2.25 Z m 6,1 H 1.1875 V -11.875 H 8.25 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-1" overflow="visible">
<path id="path1196"
d="M 5.5,-10 3.5625,-4.640625 H 7.515625 L 5.5625,-10 Z M 1.890625,0 h -1.6875 l 4.46875,-11.875 H 6.40625 L 10.875,0 H 9.1875 L 8.046875,-3.21875 h -5 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-2" overflow="visible">
<path id="path1199"
d="m 0.921875,-8.125 h 1.46875 V -7 h 0.0625 c 0.226563,-0.394531 0.582031,-0.722656 1.0625,-0.984375 0.488281,-0.269531 0.988281,-0.40625 1.5,-0.40625 1,0 1.765625,0.289063 2.296875,0.859375 0.539062,0.5625 0.8125,1.371094 0.8125,2.421875 V 0 H 6.59375 V -5 C 6.5625,-6.332031 5.894531,-7 4.59375,-7 3.988281,-7 3.476562,-6.75 3.0625,-6.25 2.65625,-5.757812 2.453125,-5.175781 2.453125,-4.5 V 0 h -1.53125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-3" overflow="visible">
<path id="path1202"
d="m 2.046875,-2.484375 c 0,0.398437 0.164063,0.730469 0.5,1 0.332031,0.261719 0.726563,0.390625 1.1875,0.390625 0.632813,0 1.203125,-0.234375 1.703125,-0.703125 0.507812,-0.476563 0.765625,-1.039063 0.765625,-1.6875 -0.480469,-0.375 -1.148437,-0.5625 -2,-0.5625 -0.617187,0 -1.132813,0.152344 -1.546875,0.453125 C 2.25,-3.300781 2.046875,-2.929688 2.046875,-2.484375 Z m 1.96875,-5.90625 c 1.125,0 2.007813,0.304687 2.65625,0.90625 C 7.328125,-6.878906 7.65625,-6.050781 7.65625,-5 V 0 H 6.203125 v -1.125 h -0.0625 C 5.503906,-0.195312 4.660156,0.265625 3.609375,0.265625 2.710938,0.265625 1.960938,0 1.359375,-0.53125 0.765625,-1.0625 0.46875,-1.722656 0.46875,-2.515625 c 0,-0.84375 0.316406,-1.507813 0.953125,-2 0.632813,-0.5 1.484375,-0.75 2.546875,-0.75 0.90625,0 1.648438,0.164063 2.234375,0.484375 V -5.125 c 0,-0.53125 -0.214844,-0.976562 -0.640625,-1.34375 -0.417969,-0.375 -0.90625,-0.5625 -1.46875,-0.5625 -0.855469,0 -1.527344,0.359375 -2.015625,1.078125 l -1.34375,-0.84375 c 0.738281,-1.0625 1.832031,-1.59375 3.28125,-1.59375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-4" overflow="visible">
<path id="path1205"
d="M 2.453125,-11.875 V 0 h -1.53125 v -11.875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-5" overflow="visible">
<path id="path1208"
d="M 8.1875,-8.125 3.09375,3.578125 H 1.53125 L 3.421875,-0.515625 0.0625,-8.125 h 1.65625 l 2.421875,5.84375 h 0.03125 L 6.53125,-8.125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-6" overflow="visible">
<path id="path1211"
d="M 4.140625,0.125 C 3.484375,0.125 2.9375,-0.078125 2.5,-0.484375 2.0625,-0.890625 1.835938,-1.457031 1.828125,-2.1875 v -4.546875 h -1.4375 V -8.125 h 1.4375 v -2.484375 H 3.34375 V -8.125 h 2 v 1.390625 h -2 V -2.6875 c 0,0.542969 0.101562,0.914062 0.3125,1.109375 0.21875,0.1875 0.457031,0.28125 0.71875,0.28125 0.125,0 0.242188,-0.00781 0.359375,-0.03125 C 4.847656,-1.359375 4.957031,-1.394531 5.0625,-1.4375 l 0.46875,1.359375 C 5.132812,0.0546875 4.671875,0.125 4.140625,0.125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-7" overflow="visible">
<path id="path1214"
d="m 2.90625,-10.921875 c 0,0.292969 -0.109375,0.546875 -0.328125,0.765625 -0.210937,0.210938 -0.460937,0.3125 -0.75,0.3125 -0.304687,0 -0.558594,-0.101562 -0.765625,-0.3125 C 0.851562,-10.375 0.75,-10.628906 0.75,-10.921875 0.75,-11.222656 0.851562,-11.476562 1.0625,-11.6875 1.269531,-11.894531 1.523438,-12 1.828125,-12 c 0.289063,0 0.539063,0.105469 0.75,0.3125 0.21875,0.210938 0.328125,0.464844 0.328125,0.765625 z M 2.59375,-8.125 V 0 H 1.0625 v -8.125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol id="glyph8-8" overflow="visible">
<path id="path1217"
d="m 4.640625,0.265625 c -1.210937,0 -2.210937,-0.410156 -3,-1.234375 C 0.859375,-1.800781 0.46875,-2.832031 0.46875,-4.0625 c 0,-1.25 0.390625,-2.28125 1.171875,-3.09375 0.789063,-0.820312 1.789063,-1.234375 3,-1.234375 0.832031,0 1.554687,0.210937 2.171875,0.625 0.613281,0.417969 1.078125,0.992187 1.390625,1.71875 L 6.8125,-5.46875 C 6.382812,-6.488281 5.628906,-7 4.546875,-7 c -0.699219,0 -1.304687,0.28125 -1.8125,0.84375 -0.5,0.5625 -0.75,1.261719 -0.75,2.09375 0,0.835938 0.25,1.53125 0.75,2.09375 0.507813,0.5625 1.113281,0.84375 1.8125,0.84375 1.113281,0 1.894531,-0.507812 2.34375,-1.53125 L 8.25,-2.078125 c -0.292969,0.730469 -0.757812,1.304687 -1.390625,1.71875 -0.636719,0.4140625 -1.375,0.625 -2.21875,0.625 z m 0,0"
style="stroke:none" />
</symbol>