File: akzidgrostdita.svg

package info (click to toggle)
node-mongodb 3.6.4%2B~cs11.13.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 76,604 kB
  • sloc: javascript: 138,083; python: 429; sh: 52; makefile: 37
file content (1862 lines) | stat: -rwxr-xr-x 127,450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="akzidenz-grotesk_std_regulaIt" horiz-adv-x="1110" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="555" />
<glyph unicode="&#xfb01;" horiz-adv-x="1024" d="M111 0l194 842h-153l28 123h152l61 266q53 233 236 233q35 0 72 -8t49 -14l-29 -123q-44 8 -76 8q-45 0 -64.5 -27.5t-35.5 -99.5l-56 -235h173l-27 -123h-174l-195 -842h-155zM639 0l223 965h162l-221 -965h-164zM928 1262l43 184h168l-43 -184h-168z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1024" d="M111 0l194 842h-153l28 123h152l61 266q53 233 236 233q35 0 72 -8t49 -14l-29 -123q-44 8 -76 8q-45 0 -64.5 -27.5t-35.5 -99.5l-56 -235h173l-27 -123h-174l-195 -842h-155zM639 0l334 1446h160l-334 -1446h-160z" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="682" />
<glyph unicode=" "  horiz-adv-x="555" />
<glyph unicode="&#x09;" horiz-adv-x="555" />
<glyph unicode="&#xa0;" horiz-adv-x="555" />
<glyph unicode="!" horiz-adv-x="555" d="M154 0l51 225h205l-54 -225h-202zM307 463l76 530l104 453h187l-111 -477l-160 -506h-96z" />
<glyph unicode="&#x22;" horiz-adv-x="710" d="M291 920l82 602h180l-197 -602h-65zM639 920l80 602h180l-194 -602h-66z" />
<glyph unicode="#" horiz-adv-x="1366" d="M135 469l27 158h305l72 221h-291l28 158h312l139 438h164l-139 -438h225l141 438h160l-137 -438h282l-28 -158h-303l-72 -221h285l-29 -158h-307l-150 -469h-162l150 469h-227l-150 -469h-166l154 469h-283zM629 627h229l70 221h-228z" />
<glyph unicode="$" horiz-adv-x="1366" d="M121 481l188 37q-2 -25 -2 -61q0 -124 76.5 -214.5t194.5 -115.5l133 578q-85 33 -144.5 64.5t-113.5 75t-81.5 99.5t-27.5 125q0 42 11.5 85.5t35.5 90t66.5 87t99.5 73t140 51.5t182 19l36 157h138l-37 -166q172 -30 278.5 -127.5t118.5 -255.5l-186 -45 q-11 72 -32.5 121.5t-56 80.5t-69.5 48t-88 33l-107 -496q15 -7 52.5 -22.5t63.5 -27t65.5 -32.5t67 -40.5t58.5 -50t50.5 -62.5t32 -75.5t12.5 -92.5q0 -91 -37 -171.5t-106.5 -143t-179 -98.5t-246.5 -36h-25l-45 -192h-139l45 201q-88 13 -160.5 46t-133 90.5t-94.5 150 t-34 212.5zM535 1083q0 -72 54.5 -115.5t160.5 -80.5l96 442q-54 0 -108 -16t-100 -45.5t-74.5 -78t-28.5 -106.5zM717 117q93 0 176.5 33t140 101.5t56.5 158.5q0 27 -7 51t-16.5 41.5t-27.5 35t-32.5 28.5t-40 25t-41 21t-44 20t-41.5 19z" />
<glyph unicode="%" horiz-adv-x="1878" d="M186 797q0 76 15 155t48.5 156t81.5 136.5t119.5 96.5t157.5 37q54 0 98 -16t73 -41t50.5 -60t33 -68t18 -69.5t8.5 -59.5t2 -44q0 -54 -10.5 -115.5t-31 -127t-55.5 -125t-80 -107t-108.5 -75.5t-136.5 -28q-35 0 -70 8.5t-74.5 33t-69 62.5t-49.5 103t-20 148zM309 766 q0 -103 45.5 -167t122.5 -64q78 0 146 74t106.5 189t38.5 238q0 49 -7.5 90.5t-25 78.5t-51 58t-80.5 21q-67 0 -124 -47t-93.5 -122.5t-57 -166.5t-20.5 -182zM602 -12l744 1427l88 -45l-742 -1429zM1153 338q0 76 15 155t48.5 156t81.5 137t119.5 97t157.5 37 q74 0 130 -31t84 -73t45.5 -97t21.5 -90.5t4 -67.5q0 -66 -14.5 -140.5t-47.5 -153t-80.5 -141t-121 -102.5t-160.5 -40q-35 0 -70 8.5t-74.5 33t-69 62t-49.5 102.5t-20 148zM1276 307q0 -62 16.5 -109t42.5 -72.5t53.5 -37.5t55.5 -12q78 0 146 74t106.5 189.5t38.5 238.5 q0 128 -44 188.5t-120 60.5q-115 0 -205 -152.5t-90 -367.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1280" d="M113 319q0 76 32 151.5t85 136t106 106t110 80.5q0 3 -3.5 25.5t-6.5 45t-5.5 55t-2.5 58.5q0 109 39 212.5t117 162.5q95 71 211 71q28 0 61 -6t73 -23.5t71.5 -43.5t53 -70.5t21.5 -99.5q0 -51 -28 -116.5t-93 -129.5q-16 -16 -31 -29t-36.5 -28t-34 -24t-44 -28 t-46 -27t-60.5 -34.5t-67 -38.5q43 -93 71 -147.5t81 -130t116 -136.5q56 50 102.5 103.5t118.5 154.5l133 -84q-68 -98 -115 -154t-122 -124q44 -28 72 -40.5t110 -39.5l-37 -152q-135 32 -278 127q-37 -24 -63 -39t-75.5 -37t-111 -33t-131.5 -11q-109 0 -180 28 q-98 38 -155.5 121.5t-57.5 187.5zM295 328q0 -97 60.5 -148t150.5 -51q52 0 124.5 21.5t131.5 68.5q-57 62 -104 125.5t-80.5 126t-47.5 91.5t-36 79q-199 -139 -199 -313zM592 983q0 -19 10 -111q18 10 56 29.5t53.5 29.5t47.5 34.5t68 60.5q88 84 88 156q0 33 -14.5 56.5 t-36 33.5t-38 14t-29.5 4q-35 0 -77 -20.5t-73 -71.5q-25 -38 -40 -101t-15 -114z" />
<glyph unicode="'" horiz-adv-x="362" d="M291 920l82 602h180l-197 -602h-65z" />
<glyph unicode="(" horiz-adv-x="645" d="M168 432q0 386 200.5 700.5t544.5 505.5l64 -90q-309 -194 -470 -483t-161 -651q0 -204 51 -360.5t166 -295.5l-90 -86q-155 161 -230 347.5t-75 412.5z" />
<glyph unicode=")" horiz-adv-x="645" d="M-162 -240q308 203 469.5 489t161.5 646q0 201 -52.5 361t-164.5 294l90 86q155 -161 229 -347t74 -412q0 -387 -198.5 -700t-544.5 -507z" />
<glyph unicode="*" horiz-adv-x="714" d="M250 1253l61 107l191 -105l49 207l123 -28l-49 -209l221 18l16 -119l-225 -22l88 -197l-115 -49l-90 199l-158 -142l-83 95l157 141z" />
<glyph unicode="+" horiz-adv-x="1482" d="M260 539l37 157h459l106 467h180l-108 -467h461l-37 -157h-461l-106 -471h-181l109 471h-459z" />
<glyph unicode="," horiz-adv-x="468" d="M16 -315q53 95 82.5 162.5t48.5 152.5h-84l54 225h194q-38 -299 -194 -540h-101z" />
<glyph unicode="-" horiz-adv-x="757" d="M143 537l37 155h574l-35 -155h-576z" />
<glyph unicode="." horiz-adv-x="468" d="M70 0l47 225h205l-46 -225h-206z" />
<glyph unicode="/" horiz-adv-x="641" d="M37 0l592 1446h159l-587 -1446h-164z" />
<glyph unicode="0" horiz-adv-x="1193" d="M156 508q0 166 44 322.5t122.5 280.5t200 199.5t265.5 75.5q89 0 162 -29.5t122 -80t82 -120.5t48 -147.5t15 -164.5q0 -116 -25.5 -236.5t-79 -234t-127 -202.5t-178.5 -142.5t-225 -53.5q-194 0 -310 141t-116 392zM332 463q0 -167 73.5 -262t184.5 -95q84 0 158.5 50 t127 131t91 182.5t57 205t18.5 197.5q0 79 -12 142t-33.5 103.5t-46.5 69t-55.5 42.5t-56 20t-52.5 6q-127 0 -232.5 -114t-163.5 -295.5t-58 -382.5z" />
<glyph unicode="1" horiz-adv-x="1193" d="M365 1006l32 139q2 0 14 -0.5t29.5 -1t32.5 -0.5q55 0 101.5 10.5t78 25.5t58 39t41.5 44t27.5 47.5t17 41.5t10.5 35h168l-320 -1386h-170l246 1061q-45 -27 -120 -44.5t-142 -17.5q-43 0 -104 7z" />
<glyph unicode="2" horiz-adv-x="1193" d="M61 0l41 176q297 160 551 356q28 21 60 49t81.5 80.5t87.5 106t65.5 124.5t27.5 138q0 109 -65 163t-156 54q-52 0 -102 -20.5t-92 -60t-67.5 -105.5t-25.5 -148q0 -26 6 -86l-186 39v25q0 222 121 358.5t348 136.5q52 0 103.5 -9.5t106.5 -35t96.5 -64t68 -101.5 t26.5 -142q0 -222 -178 -426q-35 -40 -83 -84.5t-129 -107.5t-203.5 -135t-268.5 -138q684 11 733 11l-35 -154h-932z" />
<glyph unicode="3" horiz-adv-x="1193" d="M92 410l184 20q3 -44 12.5 -84.5t33 -84t57.5 -75.5t90 -52.5t127 -20.5q137 0 222 78t85 194q0 67 -34.5 121.5t-96.5 85.5q-53 27 -114.5 34.5t-206.5 10.5l34 139q40 -4 90 -4q55 0 107.5 7t107 26.5t95 49t66.5 78.5t26 111q0 100 -67 152.5t-162 52.5 q-59 0 -108 -18t-78 -44t-51 -60.5t-31.5 -60.5t-14.5 -52q-4 -21 -6 -45.5t-2 -26.5l-189 35q24 123 72 205q28 47 66 84t79.5 58t79 34.5t78 19t62.5 7t45 1.5q90 0 162.5 -23t116.5 -59t73.5 -83.5t41 -92t11.5 -88.5q0 -143 -103.5 -237.5t-254.5 -100.5 q134 -15 212 -103t78 -216q0 -73 -22.5 -134.5t-62 -105t-89.5 -77t-108 -53t-114 -29t-111 -9.5q-122 0 -218.5 38.5t-153.5 102t-86.5 139t-29.5 155.5z" />
<glyph unicode="4" horiz-adv-x="1193" d="M121 373l33 147l813 866h168l-187 -866h187l-35 -147h-187l-86 -373h-161l86 373h-631zM352 520h434l164 668z" />
<glyph unicode="5" horiz-adv-x="1193" d="M96 383l168 27q11 -74 38 -130t60 -87t73.5 -50.5t73 -25.5t64.5 -6q158 0 271.5 119t113.5 296q0 132 -68.5 200.5t-168.5 68.5q-92 0 -173 -49.5t-124 -114.5l-182 28l190 703h770l-35 -145h-628l-115 -429q32 32 52.5 49.5t61.5 44t93 39.5t114 13q177 0 283.5 -112 t106.5 -287q0 -117 -48 -229t-133 -191q-149 -140 -374 -140q-205 0 -338 111q-44 38 -74.5 82t-44.5 88.5t-18.5 68.5t-8.5 58z" />
<glyph unicode="6" horiz-adv-x="1193" d="M193 526q0 189 70 368t167 286q80 91 192.5 148.5t239.5 57.5q150 0 262 -81q42 -30 71.5 -65.5t45 -73t21.5 -58t12 -49.5l-176 -35q-6 93 -71.5 156t-168.5 63q-74 0 -141 -30t-116.5 -80.5t-90 -111t-69 -128.5t-46 -126t-26.5 -110q19 31 32 50t41.5 55t58.5 59 t70.5 47.5t92.5 37t110 12.5q178 0 287.5 -112.5t109.5 -299.5q0 -71 -18 -143t-59 -142.5t-99.5 -124.5t-147 -87.5t-194.5 -33.5q-224 0 -342 150t-118 401zM393 399q0 -123 72.5 -204.5t196.5 -81.5q77 0 142.5 34t107.5 90t65.5 125t23.5 140q0 133 -69 203.5t-180 70.5 q-82 0 -151.5 -34.5t-114 -89t-69 -121t-24.5 -132.5z" />
<glyph unicode="7" horiz-adv-x="1193" d="M240 965l92 397h848q-4 -73 -37 -168q-14 -43 -37 -90t-45 -84.5t-68 -114t-82 -139.5q-251 -444 -333 -766h-205q41 144 133.5 348t191.5 369q41 68 129 201q132 197 150 303h-522l-60 -256h-155z" />
<glyph unicode="8" horiz-adv-x="1193" d="M143 336q0 137 88.5 247.5t212.5 135.5q-21 11 -34 19t-40 31t-43.5 47.5t-30 65.5t-13.5 89q0 59 17.5 117t56.5 112t94 95.5t136 66t177 24.5q182 0 297 -90t115 -245q0 -128 -75.5 -214t-187.5 -118q99 -24 158 -110.5t59 -188.5q0 -84 -33 -161.5t-96.5 -142 t-169 -103t-237.5 -38.5q-110 0 -197.5 29t-142 79.5t-83 114.5t-28.5 138zM315 344q0 -114 85.5 -179t203.5 -65q144 0 249 90.5t105 223.5q0 100 -77.5 169.5t-196.5 69.5q-146 0 -257.5 -85.5t-111.5 -223.5zM455 985q0 -36 12 -70t38 -66t77 -51.5t120 -19.5 q74 0 134 25t95.5 64.5t54 84.5t18.5 90q0 96 -68.5 152.5t-181.5 56.5q-76 0 -136.5 -27t-94.5 -68.5t-51 -85.5t-17 -85z" />
<glyph unicode="9" horiz-adv-x="1193" d="M86 309l168 21q12 -56 38.5 -98.5t62 -67t75.5 -36t84 -11.5q88 0 163.5 36.5t126.5 93t91.5 134.5t63.5 151.5t38 153.5q-14 -22 -20 -31.5t-29.5 -40t-43 -49t-54.5 -45.5t-70 -42.5t-84 -27.5t-102 -12q-179 0 -287 113.5t-108 292.5q0 103 35 199t99.5 173t167 123.5 t226.5 46.5q114 0 202 -41.5t141.5 -114.5t80.5 -167t27 -205q0 -119 -25 -240.5t-79.5 -237.5t-131.5 -205.5t-190.5 -144.5t-247.5 -55q-72 0 -140.5 19.5t-128.5 58t-100.5 104.5t-48.5 152zM369 846q0 -130 71 -198t176 -68q62 0 124 23.5t117 68t89.5 121t34.5 172.5 q0 131 -70 208.5t-190 77.5q-72 0 -133 -27t-100.5 -69.5t-67 -97t-39.5 -108t-12 -103.5z" />
<glyph unicode=":" horiz-adv-x="555" d="M152 0l53 227h203l-54 -227h-202zM322 780l51 228h200l-51 -228h-200z" />
<glyph unicode=";" horiz-adv-x="555" d="M109 -317q94 181 129 317h-86l51 223h200q-18 -137 -69.5 -286t-122.5 -254h-102zM315 782l54 226h204l-51 -226h-207z" />
<glyph unicode="&#x3c;" horiz-adv-x="1482" d="M305 537l43 184l1065 475l-47 -192l-874 -388l698 -387l-41 -176z" />
<glyph unicode="=" horiz-adv-x="1482" d="M215 336l37 156h1077l-37 -156h-1077zM303 719l39 158h1075l-37 -158h-1077z" />
<glyph unicode="&#x3e;" horiz-adv-x="1482" d="M201 35l47 194l874 385l-698 390l41 174l844 -484l-43 -184z" />
<glyph unicode="?" d="M291 1014q8 92 43 172t94 141.5t148.5 97t197.5 35.5q107 0 194 -33t140.5 -88t82 -123t28.5 -143q0 -55 -13.5 -107.5t-43.5 -102.5t-75 -90t-112 -68.5t-150 -38.5l-69 -306h-160l102 441h27q131 0 221 71.5t90 198.5q0 115 -71.5 178.5t-182.5 63.5q-81 0 -143 -29.5 t-97.5 -78.5t-53.5 -105t-19 -115zM500 0l51 229h188l-51 -229h-188z" />
<glyph unicode="@" horiz-adv-x="1765" d="M164 446q0 204 78.5 391t211 323t314 217t379.5 81q267 0 425.5 -153.5t158.5 -411.5q0 -183 -73 -358t-190.5 -283.5t-240.5 -108.5q-75 0 -117 45t-43 129q-131 -172 -297 -172q-120 0 -189 84.5t-69 229.5q0 151 64 290.5t169.5 224.5t219.5 85q162 0 229 -172l35 127 h139q-109 -435 -127 -529q-20 -102 -20 -135q0 -84 59 -84q33 0 81 35t89 90q75 102 118.5 234t43.5 262q0 212 -131.5 336.5t-356.5 124.5q-165 0 -321 -73.5t-270.5 -195.5t-184 -287.5t-69.5 -340.5q0 -268 178 -430t473 -162q219 0 407 96q80 42 142 85t145 118l62 -84 q-163 -158 -359.5 -243t-400.5 -85q-223 0 -396.5 88t-269.5 247.5t-96 364.5zM674 473q0 -91 42 -142.5t115 -51.5q80 0 152.5 70.5t113 173t40.5 200.5q0 95 -42 151t-120 56q-74 0 -144.5 -65.5t-113.5 -172t-43 -219.5z" />
<glyph unicode="A" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723z" />
<glyph unicode="B" horiz-adv-x="1449" d="M117 0l334 1446h561q113 0 198.5 -27t136 -74t75 -106t24.5 -129q0 -71 -23 -130t-59 -97.5t-84.5 -66.5t-94 -42t-93.5 -20q117 -2 202.5 -85.5t85.5 -219.5q0 -42 -10.5 -91.5t-46 -115.5t-91 -117.5t-156.5 -88t-232 -36.5h-727zM330 152h499q85 0 150.5 19.5 t105 50.5t64.5 73t34 81.5t9 82.5q0 112 -81 167.5t-198 55.5h-460zM487 834h443q165 0 247.5 78t82.5 190q0 35 -11 67.5t-33 62.5t-63.5 48t-95.5 18h-461z" />
<glyph unicode="C" horiz-adv-x="1579" d="M178 639q0 170 54.5 321t153 266t248 182t329.5 67q118 0 215.5 -26t164.5 -67.5t118.5 -100.5t81.5 -119t48 -128l-182 -35q-12 46 -30.5 87.5t-54.5 87.5t-82.5 79t-119.5 54.5t-161 21.5q-95 0 -176.5 -25.5t-140.5 -68.5t-106.5 -101.5t-77.5 -121.5t-50 -132 t-28.5 -129t-8.5 -116q0 -108 25 -197.5t77.5 -162t144.5 -113.5t216 -41q373 0 536 381l182 -25q-100 -247 -290 -375.5t-437 -128.5q-65 0 -127.5 9.5t-128 32t-122.5 57t-107.5 88t-86 120.5t-56.5 159t-21 200z" />
<glyph unicode="D" horiz-adv-x="1492" d="M119 0l334 1446h493q254 0 403.5 -142t149.5 -417q0 -79 -12 -161.5t-40 -170t-69.5 -167t-104.5 -151t-140.5 -124t-182.5 -83t-225 -30.5h-606zM334 147h360q57 0 100.5 4.5t101 20t111.5 50.5t103 89q53 59 93.5 132t61.5 135.5t34 128.5t16.5 105.5t3.5 72.5 q0 170 -66 268q-31 46 -73 76.5t-93 44.5t-96.5 19t-103.5 5h-289z" />
<glyph unicode="E" horiz-adv-x="1280" d="M115 0l334 1446h940l-35 -154h-758l-111 -477h695l-33 -143h-694l-121 -518h860l-35 -154h-1042z" />
<glyph unicode="F" horiz-adv-x="1150" d="M117 0l334 1446h931l-34 -152h-752l-109 -471h701l-35 -147h-700l-156 -676h-180z" />
<glyph unicode="G" horiz-adv-x="1622" d="M193 618q0 160 44.5 298.5t122.5 240t181.5 174t223.5 108.5t247 36q108 0 207 -28t182.5 -82t144 -139.5t86.5 -193.5l-192 -24q-107 313 -426 313q-133 0 -242.5 -46.5t-179.5 -120t-118 -168t-68.5 -187t-20.5 -181.5q0 -70 12.5 -135.5t44.5 -132.5t81 -116.5 t129 -81t182 -31.5q215 0 356.5 123.5t179.5 355.5h-543l33 150h707l-172 -750h-164l41 180q-58 -100 -190 -153.5t-279 -53.5q-150 0 -268.5 51.5t-192 141t-111.5 204.5t-38 248z" />
<glyph unicode="H" horiz-adv-x="1536" d="M119 0l334 1446h178l-139 -604h798l140 604h178l-334 -1446h-178l159 690h-798l-160 -690h-178z" />
<glyph unicode="I" horiz-adv-x="555" d="M117 0l334 1446h176l-334 -1446h-176z" />
<glyph unicode="J" horiz-adv-x="894" d="M35 12l39 174q104 -49 207 -49q36 0 67 7.5t54.5 18t45 32t35.5 37.5t28.5 47.5t22 49.5t17.5 56t14 54.5t13 56.5l219 950h180l-229 -993q-15 -67 -27.5 -112.5t-33 -100t-43.5 -90.5t-57.5 -72.5t-77 -57.5t-100 -34t-128.5 -13q-61 0 -110.5 6.5t-71.5 12.5t-64 20z " />
<glyph unicode="K" horiz-adv-x="1323" d="M119 0l334 1446h174l-158 -680l858 680h242l-686 -547l397 -899h-197l-344 786l-323 -256l-123 -530h-174z" />
<glyph unicode="L" d="M117 0l334 1446h180l-299 -1290h686l-35 -156h-866z" />
<glyph unicode="M" horiz-adv-x="1705" d="M119 0l334 1446h215l147 -1294l750 1294h213l-334 -1446h-172l313 1229l-702 -1229h-195l-137 1251l-260 -1251h-172z" />
<glyph unicode="N" horiz-adv-x="1492" d="M117 0l334 1446h194l473 -1251l273 1251h172l-334 -1446h-187l-479 1255l-272 -1255h-174z" />
<glyph unicode="O" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181z" />
<glyph unicode="P" horiz-adv-x="1323" d="M115 0l334 1446h583q183 0 297.5 -95t114.5 -274q0 -206 -150 -333.5t-426 -127.5h-432l-141 -616h-180zM471 768h338q69 0 108.5 2.5t96 13t100.5 36t80 67.5q70 81 70 188q0 98 -61.5 157.5t-172.5 59.5h-436z" />
<glyph unicode="Q" horiz-adv-x="1622" d="M174 637q0 120 31.5 239.5t96 227t154 190.5t215 132t269.5 49q94 0 183 -22.5t171.5 -74t144 -126t98 -186.5t36.5 -249q0 -201 -67 -356.5t-163 -253.5l185 -148l-129 -122l-197 155q-58 -45 -167 -82t-238 -37q-117 0 -217.5 35t-174.5 97.5t-126.5 146t-78.5 181.5 t-26 204zM369 623q0 -94 19 -171.5t49 -129t71.5 -90.5t81.5 -60t84 -34t74 -17t57 -4q117 0 222.5 52t183.5 142.5t124.5 222t46.5 283.5q0 108 -27 200.5t-80 163.5t-138.5 111.5t-194.5 40.5q-112 0 -207.5 -41t-162 -110.5t-113 -161.5t-68.5 -192.5t-22 -204.5z" />
<glyph unicode="R" horiz-adv-x="1366" d="M117 0l334 1446h583q84 0 140.5 -11t115.5 -49q49 -31 83 -75t48.5 -90t19.5 -79t5 -63q0 -167 -107.5 -283t-294.5 -143l250 -653h-196l-234 629h-424l-145 -629h-178zM475 780h420q97 0 171 26t115.5 70.5t62 96t20.5 108.5q0 93 -61 152t-173 59h-436z" />
<glyph unicode="S" horiz-adv-x="1366" d="M125 467l192 37q0 -3 -1 -15.5t-1 -21.5q0 -70 21 -131.5t64 -113.5t119 -82.5t175 -30.5q103 0 182.5 26t125 69.5t68 93.5t22.5 103q0 47 -17 84t-51.5 64.5t-70 46t-89.5 39.5l-176 70q-130 51 -190 91q-152 103 -152 271q0 97 39.5 172.5t98 118.5t135.5 70.5t143 37 t131 9.5q77 0 146.5 -12t135 -41t115 -73t83.5 -111.5t42 -152.5l-178 -43q-49 293 -352 293q-158 0 -253 -70.5t-95 -177.5q0 -35 13.5 -64t32 -48.5t56.5 -41t68.5 -34.5t85.5 -35l165 -65q73 -29 127.5 -61t100 -76t69 -103t23.5 -131q0 -46 -10.5 -92.5t-34 -99.5 t-68 -98.5t-105.5 -83.5t-154 -59.5t-206 -21.5q-56 0 -107 5t-110.5 19t-109 36.5t-96.5 60.5t-80 88.5t-52.5 123.5t-19.5 161z" />
<glyph unicode="T" d="M256 1290l35 156h1061l-35 -156h-443l-296 -1290h-183l307 1290h-446z" />
<glyph unicode="U" horiz-adv-x="1449" d="M219 393q0 123 47 324l168 729h180l-174 -748q-14 -62 -25.5 -148.5t-11.5 -127.5q0 -70 19.5 -123.5t50.5 -85t74 -52t84.5 -27.5t87.5 -7q74 0 133 14.5t104 47t78 73t60.5 104t47 128.5t40.5 157l182 795h180l-201 -868q-14 -59 -26.5 -105t-31.5 -99.5t-39 -94.5 t-49 -84t-62.5 -75t-77.5 -61t-95 -47t-115 -28.5t-138 -10.5q-236 0 -363 114.5t-127 305.5z" />
<glyph unicode="V" horiz-adv-x="1193" d="M291 1446h182l94 -1237l658 1237h192l-796 -1446h-191z" />
<glyph unicode="W" horiz-adv-x="2048" d="M262 1446h174l117 -1217l627 1217h174l114 -1217l619 1217h188l-768 -1446h-166l-108 1255l-639 -1255h-182z" />
<glyph unicode="X" horiz-adv-x="1193" d="M-39 0l643 756l-282 690h186l223 -559l459 559h213l-606 -715l305 -731h-191l-245 602l-494 -602h-211z" />
<glyph unicode="Y" horiz-adv-x="1193" d="M289 1446h182l195 -653l565 653h217l-735 -817l-144 -629h-182l150 649z" />
<glyph unicode="Z" horiz-adv-x="1193" d="M-2 0l43 184l1028 1100h-784l37 162h1001l-37 -162l-1048 -1126h921l-37 -158h-1124z" />
<glyph unicode="[" horiz-adv-x="567" d="M25 -295l436 1890h379l-29 -120h-213l-381 -1649h213l-29 -121h-376z" />
<glyph unicode="\" horiz-adv-x="768" d="M264 1446h160l274 -1446h-163z" />
<glyph unicode="]" horiz-adv-x="567" d="M-121 -295l29 123h213l379 1649h-213l28 118h377l-436 -1890h-377z" />
<glyph unicode="^" horiz-adv-x="1482" d="M281 588l608 858h186l223 -858h-178l-162 692l-477 -692h-200z" />
<glyph unicode="_" horiz-adv-x="1024" d="M-184 -438l37 153h1062l-34 -153h-1065z" />
<glyph unicode="`" horiz-adv-x="598" d="M147 1399h207l97 -312h-109z" />
<glyph unicode="a" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178z" />
<glyph unicode="b" horiz-adv-x="1150" d="M90 0l336 1446h156l-144 -625q114 162 318 162q115 0 197 -57.5t119.5 -147t37.5 -198.5q0 -43 -6 -91t-23 -107t-42 -114t-67 -108t-94.5 -91.5t-128.5 -62.5t-165 -24q-116 0 -194.5 47t-100.5 149l-41 -178h-158zM348 358q0 -61 16 -108t40.5 -74.5t57 -44.5t61 -23 t57.5 -6q86 0 157.5 44t116.5 114.5t69.5 154.5t24.5 169q0 113 -59 189.5t-180 76.5q-26 0 -53.5 -4.5t-63.5 -19t-67 -36.5t-63 -62t-54 -91q-26 -58 -43 -137.5t-17 -141.5z" />
<glyph unicode="c" horiz-adv-x="1042" d="M127 381q0 170 69.5 309t193 219t274.5 80q95 0 176.5 -31t138 -99.5t63.5 -162.5l-151 -34q-7 28 -13 47t-23.5 50t-40 50t-62 34t-90.5 15q-67 0 -124.5 -25t-96.5 -66t-68.5 -91t-46.5 -103.5t-25 -99t-8 -82.5q0 -56 14.5 -107t43.5 -94.5t80 -69.5t116 -26 q92 0 170 55t114 164l168 -22q-21 -50 -45.5 -91t-64.5 -84.5t-87.5 -73t-116.5 -48.5t-150 -19q-54 0 -106 10t-108 38t-98 72t-69 117.5t-27 168.5z" />
<glyph unicode="d" horiz-adv-x="1150" d="M129 389q0 159 63 293.5t185 217.5t280 83q115 0 198.5 -53t92.5 -152l156 668h158l-334 -1446h-158l29 131q-102 -149 -301 -149q-97 0 -170 33.5t-115.5 91.5t-63 129t-20.5 153zM297 395q0 -134 64.5 -211.5t177.5 -77.5q70 0 130 32.5t100.5 85t69 120t41.5 135.5 t13 133q0 47 -12.5 88.5t-38 77.5t-71.5 57t-107 21q-154 0 -260.5 -133t-106.5 -328z" />
<glyph unicode="e" horiz-adv-x="1067" d="M127 387q0 166 66.5 303.5t189 218t276.5 80.5q172 0 268.5 -101.5t96.5 -293.5q0 -63 -12 -129h-723q-4 -28 -4 -68q0 -75 22 -132t52.5 -87t71 -49t70 -24t56.5 -5q86 0 164 52t110 145l154 -27q-11 -32 -31.5 -66.5t-60 -76.5t-88.5 -75t-122.5 -55t-158.5 -22 q-190 0 -293.5 114t-103.5 298zM319 584h545q0 3 1 16.5t1 22.5q0 108 -60.5 174.5t-156.5 66.5q-114 0 -206 -83t-124 -197z" />
<glyph unicode="f" horiz-adv-x="555" d="M111 0l194 842h-153l28 123h152l61 266q53 233 236 233q35 0 72 -8t49 -14l-29 -123q-44 8 -76 8q-45 0 -64.5 -27.5t-35.5 -99.5l-56 -235h173l-27 -123h-174l-195 -842h-155z" />
<glyph unicode="g" d="M27 -154q0 16 6 66l164 18q-13 -51 -13 -73q0 -71 58 -128t174 -57q37 0 69 7t57.5 18t48 31.5t39 40t32.5 52t27 58.5t24 67.5t21 72t20 79.5q-28 -25 -47.5 -40t-55.5 -35.5t-80.5 -30.5t-97.5 -10q-92 0 -162 37t-108.5 97.5t-57 127.5t-18.5 137q0 40 6.5 87.5 t23.5 106.5t42.5 115t67 110t93 94t125 64.5t158.5 24.5q51 0 95.5 -13.5t71.5 -29t53.5 -43t35 -39.5t23.5 -35l30 142h156l-209 -912q-30 -130 -68 -220t-95 -156t-137 -97t-189 -31q-73 0 -139.5 17.5t-122 52t-88.5 93.5t-33 134zM293 381q0 -78 21 -135t56.5 -86.5 t72.5 -42.5t77 -13q78 0 140.5 42.5t98 103.5t59.5 135t32 130t8 97q0 33 -4.5 64t-18.5 65t-36 58.5t-60 40.5t-88 16q-65 0 -120.5 -23.5t-93.5 -63t-67 -88.5t-45 -103.5t-24 -103.5t-8 -93z" />
<glyph unicode="h" d="M92 0l334 1446h160l-150 -645q122 188 342 188q131 0 202 -63t71 -164q0 -43 -23 -158l-139 -604h-162l143 623q15 61 15 96q0 66 -44.5 102.5t-113.5 36.5q-53 0 -101 -16t-98.5 -54t-92.5 -114.5t-68 -184.5l-115 -489h-160z" />
<glyph unicode="i" horiz-adv-x="468" d="M84 0l223 965h162l-221 -965h-164zM373 1262l43 184h168l-43 -184h-168z" />
<glyph unicode="j" horiz-adv-x="468" d="M-199 -459l31 131q36 -4 66 -4q77 0 102.5 33t50.5 141l268 1123h156l-260 -1121q-22 -96 -40.5 -148.5t-52.5 -93t-83 -55t-129 -14.5q-59 0 -109 8zM381 1264l41 182h164l-43 -182h-162z" />
<glyph unicode="k" horiz-adv-x="980" d="M84 0l334 1446h160l-205 -883l510 402h215l-496 -390l369 -575h-197l-297 473l-151 -117l-82 -356h-160z" />
<glyph unicode="l" horiz-adv-x="468" d="M84 0l334 1446h160l-334 -1446h-160z" />
<glyph unicode="m" horiz-adv-x="1622" d="M88 0l223 965h158l-37 -156q61 86 134 133t184 47q92 0 155.5 -47t73.5 -133q21 29 47 55.5t67.5 57t100 49t123.5 18.5q33 0 65 -6.5t65 -23t57.5 -42t40.5 -66.5t16 -93q0 -54 -29 -185l-131 -573h-158l129 565q29 130 29 164q0 65 -42.5 99t-107.5 34q-48 0 -91 -15.5 t-84 -48.5t-74 -93.5t-52 -143.5l-129 -561h-157l112 492q3 15 13 56t16 65.5t11 56.5t5 53q0 67 -36.5 103t-108.5 36q-32 0 -64 -8.5t-69.5 -32.5t-69.5 -62t-62 -102t-49 -147l-116 -510h-158z" />
<glyph unicode="n" d="M84 0l223 965h162l-33 -140q156 164 332 164q28 0 60.5 -6t72 -23.5t70.5 -43.5t52 -71t21 -102q0 -58 -22 -161l-135 -582h-160l137 596q15 61 15 111q0 74 -45.5 113.5t-120.5 39.5q-81 0 -141 -27t-101 -81t-67.5 -119.5t-47.5 -157.5l-110 -475h-162z" />
<glyph unicode="o" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167z" />
<glyph unicode="p" d="M-12 -440l323 1405h160l-29 -121q21 26 41 45t55 43.5t83.5 37.5t107.5 13q17 0 37 -2t55.5 -10.5t67.5 -23t68 -43.5t61 -68t42 -100t17 -136q0 -76 -16.5 -156.5t-56 -164.5t-96 -149t-145 -106.5t-194.5 -41.5q-214 0 -282 184l-142 -606h-157zM342 342 q0 -61 19.5 -107t52 -71.5t70 -38t79.5 -12.5q63 0 125 32.5t114 91.5t84 154.5t32 210.5q0 70 -21.5 122t-57 78.5t-73 39t-76.5 12.5q-31 0 -64.5 -8.5t-74 -28.5t-78.5 -63t-65 -103q-29 -64 -47.5 -151t-18.5 -158z" />
<glyph unicode="q" d="M129 383q0 106 27 200.5t75 166.5t111.5 125t139 80.5t155.5 27.5q116 0 188.5 -48t85.5 -138l39 168h158l-324 -1405h-157l131 573q-24 -32 -44.5 -53.5t-55 -46.5t-81 -38t-104.5 -13q-65 0 -124.5 23t-109.5 69t-80 126t-30 183zM297 381q0 -74 20 -128.5t53 -83.5 t68.5 -42.5t73.5 -13.5q45 0 89.5 15t93.5 56.5t83 106.5q33 63 58.5 170t25.5 184q0 95 -59 153t-154 58q-149 0 -250.5 -137t-101.5 -338z" />
<glyph unicode="r" horiz-adv-x="641" d="M86 0l221 965h158l-39 -170q108 188 287 188l37 -2l-35 -154q-25 2 -43 2q-125 0 -207 -98q-81 -95 -119 -278l-104 -453h-156z" />
<glyph unicode="s" horiz-adv-x="980" d="M94 268q0 31 6 64l164 26q0 -1 -3.5 -16.5t-6 -32.5t-2.5 -33q0 -180 227 -180q110 0 178 46.5t68 123.5q0 48 -32.5 78t-112.5 62l-170 65q-199 77 -199 231q0 48 20.5 95.5t63.5 92t121.5 72t181.5 27.5q81 0 143.5 -17t99 -43t59 -61t30.5 -67t8 -66q0 -23 -2 -37 l-156 -26q6 18 6 55q0 61 -52 102t-134 41q-105 0 -162 -45.5t-57 -101.5q0 -48 32 -72t115 -57l158 -62q102 -39 156.5 -91.5t54.5 -145.5q0 -32 -8 -67.5t-34.5 -82.5t-69 -83t-120 -61.5t-178.5 -25.5q-199 0 -296 78t-97 215z" />
<glyph unicode="t" horiz-adv-x="555" d="M152 840l28 125h154l72 305h153l-72 -305h170l-26 -125h-172l-121 -529q-23 -109 -23 -123q0 -35 18 -48t54 -13q17 0 111 16l-29 -120q-65 -29 -156 -29q-72 0 -115.5 33.5t-43.5 103.5q0 48 22 150l131 559h-155z" />
<glyph unicode="u" d="M152 209q0 35 30 182l131 574h162l-133 -574q-20 -87 -20 -141q0 -63 44 -99t128 -36q29 0 60.5 4.5t83.5 28t89 63.5q28 30 48.5 64t36 80t22.5 72t20 83l104 455h154l-223 -965h-154l35 152q-61 -81 -155 -125.5t-197 -44.5q-129 0 -197.5 65.5t-68.5 161.5z" />
<glyph unicode="v" horiz-adv-x="937" d="M197 965h151l66 -797l467 797h176l-596 -965h-170z" />
<glyph unicode="w" horiz-adv-x="1536" d="M199 965h153l64 -789l411 789h158l70 -789l426 789h170l-559 -965h-158l-66 786l-417 -786h-158z" />
<glyph unicode="x" horiz-adv-x="894" d="M-47 0l465 502l-137 463h155l94 -351l314 351h186l-446 -486l141 -479h-158l-94 369l-328 -369h-192z" />
<glyph unicode="y" horiz-adv-x="937" d="M-111 -467l33 139q50 -4 76 -4q33 0 60 8.5t43.5 18.5t35.5 33.5t28 38t28 47.5l118 202l-108 949h159l76 -770l426 770h178l-729 -1233q-41 -69 -74.5 -109t-72.5 -61.5t-76.5 -28t-97.5 -6.5q-49 0 -103 6z" />
<glyph unicode="z" horiz-adv-x="937" d="M-2 0l31 129l729 696h-545l31 140h737l-35 -152l-706 -674h612l-33 -139h-821z" />
<glyph unicode="{" horiz-adv-x="575" d="M98 590l27 123q46 1 74.5 6.5t53.5 18t41 37.5t29.5 61t26.5 94l76 330q17 74 31 121t34.5 89t43.5 64.5t58.5 39t79 22.5t105.5 6h68l-29 -117h-35q-46 0 -75.5 -9t-50 -34.5t-32.5 -58.5t-26 -93l-86 -370q-31 -135 -80.5 -195t-148.5 -82q116 -42 116 -164 q0 -47 -16 -119l-74 -323q-24 -108 -24 -131q0 -90 114 -90h33l-26 -119h-78q-98 0 -152.5 51.5t-54.5 142.5q0 52 24 160l76 320q17 70 17 104q0 54 -31 79t-109 36z" />
<glyph unicode="|" horiz-adv-x="483" d="M23 -293l434 1888h166l-437 -1888h-163z" />
<glyph unicode="}" horiz-adv-x="575" d="M-117 -303l29 119h35q29 0 51.5 4.5t38.5 11t29 21t21.5 26.5t16.5 35.5t12.5 40.5t12.5 49l88 375q32 136 81.5 196t147.5 82q-116 39 -116 162q0 47 16 119l74 324q24 108 24 131q0 92 -114 92h-33l27 117h77q98 0 152.5 -51.5t54.5 -143.5q0 -50 -24 -158l-76 -321 q-16 -78 -16 -103q0 -55 30.5 -80t110.5 -34l-29 -123q-55 -2 -87.5 -9.5t-60 -31t-44.5 -64.5t-33 -112l-76 -332q-16 -71 -28.5 -114.5t-31 -86.5t-41 -66t-56.5 -42t-78 -26t-105 -7h-80z" />
<glyph unicode="~" horiz-adv-x="1482" d="M213 594q111 115 190.5 159t178.5 44q53 0 99 -14.5t122 -53.5l117 -59q64 -33 91.5 -42.5t57.5 -9.5q62 0 128 36t157 126l82 -135q-114 -111 -202.5 -157t-176.5 -46q-52 0 -103 16.5t-131 61.5l-65 37q-106 61 -197 61q-61 0 -105 -26t-137 -113l-24 -22z" />
<glyph unicode="&#xa1;" horiz-adv-x="555" d="M72 0l114 475l156 508h94l-78 -532l-104 -451h-182zM338 1219l53 227h203l-53 -227h-203z" />
<glyph unicode="&#xa2;" horiz-adv-x="1024" d="M141 381q0 107 30.5 203.5t80 165.5t105.5 117.5t114 74.5q93 41 193 41l36 164h123l-37 -164q111 -15 187 -97t88 -192l-152 -37q-21 91 -58.5 133.5t-96.5 53.5l-160 -740q46 0 86.5 17.5t67 41.5t49 56.5t33 53.5t18.5 42l170 -20q-25 -72 -92 -156 q-137 -157 -336 -157h-25l-43 -189h-133l43 195q-77 22 -110 41q-50 29 -87 73.5t-54 83.5t-27 85t-11.5 67.5t-1.5 42.5zM311 379q0 -149 88 -225q9 -8 20.5 -15t18.5 -10.5t15.5 -7.5t9.5 -4l170 735q-67 -11 -101 -27q-94 -47 -157.5 -166.5t-63.5 -279.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1474" d="M4 166q0 86 78.5 141t196.5 55q16 0 32 -1.5t27 -2.5t29 -5.5t25 -6t27.5 -8.5t25 -8.5t29 -10.5t28.5 -10q29 58 43 107t43 180h-328l31 131h327q10 50 22.5 133t22.5 137.5t29 120t53.5 119t85.5 96.5q152 127 373 127q93 0 167 -23.5t118.5 -59.5t73.5 -83.5t40 -91 t11 -86.5l-182 -35q4 36 4 49q0 82 -76.5 137.5t-177.5 55.5q-68 0 -125 -22.5t-95.5 -61t-64 -80.5t-39.5 -88q-14 -44 -22.5 -86t-21 -116t-26.5 -142h359l-31 -131h-358q-31 -168 -125 -346l66 -33t67.5 -32.5t56.5 -23t64 -19t59 -5.5q28 0 55.5 9.5t56 30t50 60.5 t31.5 93l174 -21q-14 -62 -42 -117t-72 -102t-109.5 -74.5t-145.5 -27.5q-94 0 -188.5 37.5t-210.5 103.5q-57 -64 -138.5 -102.5t-168.5 -38.5q-29 0 -59 5t-62 17.5t-56.5 31.5t-40.5 51.5t-16 72.5zM133 172q0 -18 12 -31.5t30 -19t32 -8t24 -2.5q52 0 110 29t79 61 q-3 1 -16.5 6t-22 8t-25 7.5t-31 7t-34.5 4.5t-41 2q-25 0 -49.5 -5t-46 -20t-21.5 -39z" />
<glyph unicode="&#xa4;" horiz-adv-x="1378" d="M150 252l165 139q-40 72 -56.5 129.5t-16.5 126.5q0 109 39 211t114 180l-135 160l127 111l131 -156q153 84 311 84q187 0 332 -113l164 140l105 -125l-164 -142q69 -110 69 -239q0 -227 -151 -404l133 -159l-127 -109l-133 158q-149 -86 -316 -86q-100 0 -169 24 t-152 88l-168 -141zM412 655q0 -151 94 -248.5t239 -97.5q179 0 301.5 123.5t122.5 304.5q0 155 -95.5 249.5t-252.5 94.5q-177 0 -293 -121.5t-116 -304.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1249" d="M137 446l29 132h381l8 43l-8 47h-361l33 133h275l-197 579h182l203 -628l557 628h217l-534 -579h274l-31 -133h-370l-66 -72l-4 -18h420l-31 -132h-420l-102 -446h-178l102 446h-379z" />
<glyph unicode="&#xa6;" horiz-adv-x="483" d="M20 -293l191 823h170l-191 -823h-170zM268 772l189 823h170l-191 -823h-168z" />
<glyph unicode="&#xa7;" horiz-adv-x="1236" d="M125 -123l39 168q255 -201 467 -201q88 0 153.5 45.5t65.5 130.5q0 44 -27 81.5t-71 64t-100 54.5t-114.5 52.5t-114.5 58.5t-100 71.5t-71 92.5t-27 121q0 120 74 202.5t195 119.5q-103 100 -103 221q0 138 108 224.5t249 86.5q108 0 217 -34t196 -95l-35 -159 q-194 139 -368 139q-81 0 -140 -41t-59 -119q0 -30 10 -54.5t23 -40t38.5 -32t43 -24.5t51.5 -23l164 -69q69 -30 114.5 -56t90.5 -66t67.5 -94.5t22.5 -123.5q0 -117 -76.5 -203t-196.5 -123q105 -94 105 -223q0 -80 -31.5 -144t-85 -103.5t-122 -60t-146.5 -20.5 q-120 0 -265 51t-241 125zM383 647q0 -120 192 -209l201 -94q103 0 176.5 52.5t73.5 150.5q0 75 -48 123.5t-130 85.5l-207 94q-66 -2 -122 -22t-96 -66.5t-40 -114.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="598" d="M-16 1130l47 207h186l-47 -207h-186zM381 1130l47 207h186l-47 -207h-186z" />
<glyph unicode="&#xa9;" horiz-adv-x="1720" d="M231 725q0 150 57.5 285t155 232.5t233.5 154.5t286 57q117 0 227.5 -36.5t200 -103t157.5 -154.5t105 -197t37 -224q0 -157 -56 -295t-153 -236t-233 -155t-290 -57q-198 0 -365.5 97t-264.5 264.5t-97 367.5zM307 723q0 -181 87 -332t237 -238t330 -87q175 0 326 87.5 t240 236.5t89 321q0 189 -85.5 343t-235.5 242t-334 88q-178 0 -328.5 -88t-238 -240.5t-87.5 -332.5zM541 666q0 150 63 271.5t175 191t249 69.5q160 0 252.5 -75t124.5 -232l-145 -29q-23 111 -81.5 160t-166.5 49q-143 0 -231.5 -109t-88.5 -286q0 -138 69.5 -216.5 t192.5 -78.5q97 0 160.5 47.5t104.5 151.5l135 -39q-62 -152 -162 -223.5t-254 -71.5q-175 0 -286 117.5t-111 302.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="724" d="M291 1018q0 40 13.5 71t40 52t55.5 35t71.5 23.5t75 15t79.5 11.5t72 11q11 44 11 63q0 39 -28 58.5t-75 19.5q-57 0 -90 -31t-41 -81l-117 8q54 184 256 184q31 0 63 -7t65 -22t54 -44.5t21 -69.5q0 -33 -10 -78l-43 -184q-12 -50 -12 -66q0 -24 22 -24t45 14l-22 -92 q-1 -1 -11 -3.5t-24 -5t-25 -2.5q-44 0 -62 19t-26 53q-22 -27 -51.5 -45t-58.5 -24.5t-45 -8.5t-29 -2q-71 0 -122.5 40t-51.5 112zM403 1018q0 -72 86 -72q61 0 108.5 31t61.5 90l21 82l-23 -2q-56 -5 -96 -12.5t-79 -21.5t-59 -38t-20 -57z" />
<glyph unicode="&#xab;" horiz-adv-x="811" d="M152 602l30 135l338 236l-45 -195l-182 -119l123 -139l-39 -162zM502 600l33 137l335 232l-43 -193l-184 -119l125 -135l-39 -170z" />
<glyph unicode="&#xac;" horiz-adv-x="1482" d="M195 537l36 161h1160l-158 -686h-180l118 525h-976z" />
<glyph unicode="&#xad;" horiz-adv-x="757" d="M143 537l37 155h574l-35 -155h-576z" />
<glyph unicode="&#xae;" horiz-adv-x="1720" d="M231 725q0 150 57.5 285t155 232.5t233.5 154.5t286 57q117 0 227.5 -36.5t200 -103t157.5 -154.5t105 -197t37 -224q0 -157 -56 -295t-153 -236t-233 -155t-290 -57q-198 0 -365.5 97t-264.5 264.5t-97 367.5zM307 723q0 -181 87 -332t237 -238t330 -87q175 0 326 87.5 t240 236.5t89 321q0 189 -85.5 343t-235.5 242t-334 88q-178 0 -328.5 -88t-238 -240.5t-87.5 -332.5zM586 276l211 910h202q116 0 176 -18.5t97 -65.5q23 -29 37 -71.5t14 -82.5q0 -116 -65 -186t-191 -90l139 -396h-147l-131 381h-111l-90 -381h-141zM846 780h158 q89 0 132.5 45.5t43.5 112.5q0 125 -133 125h-136z" />
<glyph unicode="&#xaf;" horiz-adv-x="598" d="M-10 1110l30 135h588l-30 -135h-588z" />
<glyph unicode="&#xb0;" horiz-adv-x="724" d="M129 1217q0 136 96.5 232.5t233.5 96.5q138 0 235 -95.5t97 -233.5q0 -137 -97.5 -234.5t-234.5 -97.5t-233.5 97.5t-96.5 234.5zM297 1221q0 -66 48 -114t114 -48q67 0 114.5 47.5t47.5 114.5t-47 114t-115 47t-115 -47t-47 -114z" />
<glyph unicode="&#xb1;" horiz-adv-x="1482" d="M176 0l37 158h1098l-37 -158h-1098zM344 729l37 158h457l102 444h180l-102 -444h459l-35 -158h-461l-102 -450h-181l103 450h-457z" />
<glyph unicode="&#xb2;" horiz-adv-x="811" d="M147 477l27 121q80 42 201 121q57 37 98 66t97.5 77t92 90.5t61.5 97t26 107.5q0 35 -11.5 62t-28 41.5t-38.5 23.5t-37.5 11.5t-30.5 2.5q-87 0 -134.5 -66t-47.5 -149q0 -13 4 -63l-129 27v24q0 67 16 121t43 88t58.5 58.5t68.5 36.5t67 17t58 5q72 0 131 -23.5 t98.5 -78.5t39.5 -134q0 -53 -17 -106t-40 -93.5t-62 -83.5t-66.5 -68.5t-72 -58t-60 -42t-47.5 -29.5q-106 -65 -188 -100q424 6 469 6l-25 -109h-621z" />
<glyph unicode="&#xb3;" horiz-adv-x="811" d="M180 750l129 16q0 -20 3.5 -42.5t17 -54t34.5 -56t60 -41.5t90 -17q54 0 95 17t63 44.5t32.5 56.5t10.5 58q0 37 -12.5 65.5t-36 45.5t-48.5 28t-59.5 15.5t-58 6t-54.5 1.5h-30l22 100q36 -4 62 -4q131 0 196.5 48.5t65.5 129.5q0 21 -7 42t-22.5 41.5t-46.5 33 t-72 12.5q-87 0 -136.5 -58t-49.5 -144l-133 24q21 92 47 137q85 140 281 140q66 0 124 -23t99 -77t41 -130q0 -92 -61.5 -152.5t-155.5 -72.5q65 -16 92 -37q82 -66 82 -176q-1 -56 -23 -102t-56 -76t-78 -51t-88 -30t-87 -9q-238 0 -309 180q-6 16 -11 35.5t-6.5 32.5 t-3.5 27t-2 16z" />
<glyph unicode="&#xb4;" horiz-adv-x="598" d="M90 1092l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xb5;" horiz-adv-x="1120" d="M-4 -442l328 1407h155l-110 -480q-31 -140 -31 -194q0 -82 48.5 -128t133.5 -46q71 0 135 37t111 106q34 48 53 99t45 167l101 439h161l-170 -752q-6 -24 -6 -47q0 -51 51 -51q24 0 60 14l-31 -133q-60 -14 -102 -14q-156 0 -156 124v39q-66 -91 -133.5 -129.5 t-161.5 -38.5q-144 0 -194 115l-119 -534h-168z" />
<glyph unicode="&#xb6;" horiz-adv-x="1310" d="M309 1012q0 103 45.5 193.5t128.5 150.5q71 51 153.5 70.5t229.5 19.5h463l-26 -111h-70l-387 -1677h-117l387 1677h-297l-387 -1677h-117l232 1004q-115 38 -176.5 129t-61.5 221z" />
<glyph unicode="&#xb7;" horiz-adv-x="409" d="M127 467l57 254h207l-55 -254h-209z" />
<glyph unicode="&#xb8;" horiz-adv-x="598" d="M147 -387l13 53h24q101 0 101 64q0 16 -8 29t-16.5 20t-27 13t-27 7.5t-28.5 5.5l164 228h74l-88 -121q56 -3 89.5 -33.5t33.5 -87.5q0 -81 -69.5 -132.5t-160.5 -51.5q-41 0 -74 6z" />
<glyph unicode="&#xb9;" horiz-adv-x="811" d="M332 1139l22 100q20 -2 52 -2q184 0 219 160h118l-213 -920h-118l161 694q-72 -36 -172 -36q-15 0 -69 4z" />
<glyph unicode="&#xba;" horiz-adv-x="724" d="M285 1106q0 67 19.5 128.5t57 112t99 81t137.5 30.5q30 0 59.5 -6t61.5 -23.5t56 -44.5t39.5 -72.5t16.5 -103.5q0 -149 -89 -248.5t-218 -99.5q-110 0 -174.5 69.5t-64.5 176.5zM391 1108q0 -65 33 -114.5t102 -49.5q64 0 111.5 45.5t67.5 105.5t20 122t-32.5 109.5 t-98.5 47.5q-76 0 -139.5 -71.5t-63.5 -194.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="811" d="M100 356l45 193l183 119l-125 135l39 166l227 -244l-33 -137zM453 354l45 193l180 121l-121 139l37 160l225 -242l-31 -137z" />
<glyph unicode="&#xbc;" horiz-adv-x="1878" d="M313 1139l23 100q20 -2 51 -2q184 0 219 160h119l-213 -920h-119l162 694q-72 -36 -172 -36q-16 0 -70 4zM563 -12l744 1427l88 -45l-742 -1429zM1130 246l25 102l537 572h116l-122 -572h122l-24 -102h-123l-55 -246h-115l57 246h-418zM1298 348h273l104 424z" />
<glyph unicode="&#xbd;" horiz-adv-x="1878" d="M313 1139l23 100q20 -2 51 -2q184 0 219 160h119l-213 -920h-119l162 694q-72 -36 -172 -36q-16 0 -70 4zM518 -12l744 1427l86 -45l-740 -1429zM1094 0l26 121q80 42 201 121q57 37 98 66t97.5 77t92 90.5t61.5 97t26 107.5q0 35 -11.5 62t-28 41.5t-38.5 23.5 t-37.5 11.5t-30.5 2.5q-87 0 -134.5 -66t-47.5 -149q0 -13 4 -63l-129 26v25q0 67 16 121t43 88t58.5 58.5t68.5 36.5t67 17t58 5q72 0 131 -23.5t98.5 -78.5t39.5 -134q0 -53 -17 -106t-40 -93.5t-62 -83.5t-66.5 -68.5t-72 -58t-60 -42t-47.5 -29.5q-111 -68 -188 -101 q424 7 469 7l-25 -109h-620z" />
<glyph unicode="&#xbe;" horiz-adv-x="1878" d="M152 750l129 16q0 -20 3.5 -42.5t16.5 -54t34 -56t60 -41.5t90 -17q54 0 95 17t63 44.5t32.5 56.5t10.5 58q0 37 -12.5 65.5t-36 45.5t-48 28t-59 15.5t-58 6t-54.5 1.5h-31l23 100q36 -4 61 -4q131 0 196.5 48.5t65.5 129.5q0 21 -7 42t-22.5 41.5t-46 33t-71.5 12.5 q-87 0 -137 -58t-50 -144l-133 24q21 92 47 137q85 140 281 140q66 0 124 -23t99 -77t41 -130q0 -92 -61.5 -152.5t-155.5 -72.5q65 -16 92 -37q82 -66 82 -176q-1 -56 -23 -102t-56 -76t-78 -51t-88 -30t-87 -9q-238 0 -309 180q-6 16 -10.5 35.5t-6.5 33t-3.5 27 t-1.5 15.5zM653 -12l744 1427l88 -45l-742 -1429zM1130 246l25 102l537 572h116l-122 -572h122l-24 -102h-123l-55 -246h-115l57 246h-418zM1298 348h273l104 424z" />
<glyph unicode="&#xbf;" d="M88 371q0 70 22 134.5t67 122t123 97.5t181 53l70 305h160l-103 -440h-26q-131 0 -221.5 -71.5t-90.5 -198.5q0 -115 71.5 -178.5t182.5 -63.5q65 0 118.5 20t89 52.5t60 75.5t35 88t11.5 92l178 -29q-8 -92 -43 -172t-94.5 -141.5t-149 -97t-197.5 -35.5q-107 0 -194 33 t-140 88t-81.5 123t-28.5 143zM569 1217l52 229h188l-51 -229h-189z" />
<glyph unicode="&#xc0;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM770 1833h213l74 -256h-111z" />
<glyph unicode="&#xc1;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM856 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xc2;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM690 1571l264 262h148l117 -262h-138l-67 162l-160 -162h-164z" />
<glyph unicode="&#xc3;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM684 1634q47 97 93.5 135.5t103.5 38.5q28 0 108.5 -33.5t122.5 -33.5q49 0 94 76l82 -43q-43 -93 -83.5 -131.5t-102.5 -38.5q-38 0 -120.5 34.5t-115.5 34.5q-57 0 -94 -76z" />
<glyph unicode="&#xc4;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM655 1591l50 211h186l-47 -211h-189zM1053 1591l49 211h186l-49 -211h-186z" />
<glyph unicode="&#xc5;" horiz-adv-x="1366" d="M0 0l838 1446h221l184 -1446h-186l-51 455h-549l-262 -455h-195zM543 604h446l-71 723zM788 1755q0 78 54 131t131 53t130.5 -53.5t53.5 -130.5t-53.5 -130.5t-130.5 -53.5t-131 54t-54 130zM877 1753q0 -41 28.5 -69.5t69.5 -28.5q40 0 68 29t28 69q0 41 -28.5 68.5 t-69.5 27.5q-40 0 -68 -28t-28 -68z" />
<glyph unicode="&#xc6;" horiz-adv-x="2174" d="M-37 0l1329 1446h897l-35 -152h-708l-94 -477h710l-32 -143h-713l-119 -520h866l-34 -154h-1039l105 461h-492l-416 -461h-225zM735 604h395l162 656z" />
<glyph unicode="&#xc7;" horiz-adv-x="1579" d="M178 637q0 168 53.5 319t151.5 267t248.5 184t331.5 68q82 0 156 -12.5t149.5 -43.5t135.5 -80t110 -127t77 -178l-182 -35q-23 93 -76 166q-66 89 -165.5 126.5t-204.5 37.5q-120 0 -220.5 -42t-167.5 -111t-113.5 -160.5t-67.5 -188t-21 -196.5q0 -112 27.5 -203.5 t83 -161t146.5 -107.5t210 -38q84 0 154 18t122.5 52t90 69.5t73.5 83.5q69 93 92 158l182 -25q-202 -478 -684 -502l-45 -63q1 0 11 -2.5t23 -6.5t24 -9q33 -18 54.5 -42.5t30 -49.5t11 -39t2.5 -27q0 -93 -74 -157t-182 -64q-31 0 -115 12l15 59q4 0 29 -1t36 -1 q58 0 84.5 26t26.5 58q0 87 -154 113l146 194q-56 5 -82.5 8.5t-69 12t-80.5 22.5q-79 29 -144.5 78.5t-121 123.5t-86.5 181t-31 236z" />
<glyph unicode="&#xc8;" horiz-adv-x="1280" d="M115 0l334 1446h940l-35 -154h-758l-111 -477h695l-33 -143h-694l-121 -518h860l-35 -154h-1042zM727 1833h213l74 -256h-111z" />
<glyph unicode="&#xc9;" horiz-adv-x="1280" d="M115 0l334 1446h940l-35 -154h-758l-111 -477h695l-33 -143h-694l-121 -518h860l-35 -154h-1042zM813 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xca;" horiz-adv-x="1280" d="M115 0l334 1446h940l-35 -154h-758l-111 -477h695l-33 -143h-694l-121 -518h860l-35 -154h-1042zM647 1571l264 262h148l117 -262h-138l-67 162l-160 -162h-164z" />
<glyph unicode="&#xcb;" horiz-adv-x="1280" d="M115 0l334 1446h940l-35 -154h-758l-111 -477h695l-33 -143h-694l-121 -518h860l-35 -154h-1042zM643 1591l49 211h187l-48 -211h-188zM1040 1591l50 211h186l-49 -211h-187z" />
<glyph unicode="&#xcc;" horiz-adv-x="555" d="M117 0l334 1446h176l-334 -1446h-176zM365 1833h213l73 -256h-110z" />
<glyph unicode="&#xcd;" horiz-adv-x="555" d="M117 0l334 1446h176l-334 -1446h-176zM451 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xce;" horiz-adv-x="555" d="M117 0l334 1446h176l-334 -1446h-176zM285 1571l264 262h147l117 -262h-137l-68 162l-159 -162h-164z" />
<glyph unicode="&#xcf;" horiz-adv-x="555" d="M117 0l334 1446h176l-334 -1446h-176zM281 1591l49 211h186l-47 -211h-188zM678 1591l49 211h186l-49 -211h-186z" />
<glyph unicode="&#xd0;" horiz-adv-x="1492" d="M119 0l162 707h-162l33 137h161l140 602h397q70 0 116 -2.5t115.5 -12t129 -34.5t108.5 -64q98 -80 139 -197t41 -241q0 -83 -12.5 -170t-46.5 -189.5t-85.5 -190t-137.5 -166.5t-195 -124q-62 -26 -134.5 -38.5t-119.5 -14.5t-133 -2h-516zM334 147h401q120 0 220.5 50 t166 128t111.5 177.5t66 196t20 184.5q0 84 -16.5 150.5t-41 109.5t-64 73.5t-73.5 46t-83 24t-79 10t-73 1.5h-291l-104 -454h378l-30 -137h-381z" />
<glyph unicode="&#xd1;" horiz-adv-x="1492" d="M117 0l334 1446h194l473 -1251l273 1251h172l-334 -1446h-187l-479 1255l-272 -1255h-174zM748 1634q48 97 93.5 135.5t102.5 38.5q28 0 109 -33.5t123 -33.5q49 0 94 76l82 -43q-43 -93 -83.5 -131.5t-103.5 -38.5q-38 0 -120 34.5t-115 34.5q-57 0 -94 -76z" />
<glyph unicode="&#xd2;" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181zM897 1833h213l74 -256h-111z" />
<glyph unicode="&#xd3;" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181zM983 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xd4;" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181zM819 1571l264 262h148l117 -262h-138l-67 162l-160 -162h-164z" />
<glyph unicode="&#xd5;" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181zM811 1634q47 97 93.5 135.5t103.5 38.5q28 0 108.5 -33.5t122.5 -33.5q49 0 94 76l82 -43 q-43 -93 -83.5 -131.5t-102.5 -38.5q-38 0 -120.5 34.5t-115.5 34.5q-57 0 -94 -76z" />
<glyph unicode="&#xd6;" horiz-adv-x="1622" d="M197 631q0 177 55 331.5t154.5 268t247 179t323.5 65.5q158 0 283 -52t203.5 -142.5t119.5 -209t41 -256.5q0 -180 -62 -337.5t-168 -267.5t-251.5 -173.5t-308.5 -63.5q-194 0 -339.5 85t-221.5 233.5t-76 339.5zM391 629q0 -142 53 -257t158 -185t244 -70 q112 0 208.5 40t165 109t118 159.5t73 192t23.5 207.5q0 129 -38.5 229t-104 159t-145 88.5t-169.5 29.5q-126 0 -228.5 -46.5t-167.5 -119.5t-109 -168t-62.5 -187t-18.5 -181zM715 1591l49 211h186l-47 -211h-188zM1112 1591l49 211h187l-50 -211h-186z" />
<glyph unicode="&#xd7;" horiz-adv-x="1482" d="M276 285l414 336l-291 360l140 115l290 -363l418 340l96 -121l-417 -340l293 -364l-142 -115l-291 365l-411 -334z" />
<glyph unicode="&#xd8;" horiz-adv-x="1622" d="M193 627q0 139 34.5 266.5t102.5 233t162.5 183.5t221.5 121.5t273 43.5q216 0 389 -123l109 125l98 -91l-110 -124q147 -178 147 -443q0 -178 -57.5 -334.5t-159 -269t-246 -177.5t-311.5 -65q-230 0 -416 125l-117 -129l-100 84l123 137q-12 12 -24 26.5t-35.5 54.5 t-40.5 85t-30 117.5t-13 153.5zM377 614q0 -71 13.5 -133.5t26 -91t34.5 -70.5l813 910q-123 106 -289 106q-109 0 -205.5 -39.5t-167.5 -108.5t-122 -160.5t-77 -197t-26 -215.5zM535 215q129 -98 299 -98q178 0 316.5 94t211 249t72.5 341q0 117 -21.5 188.5t-60.5 138.5z " />
<glyph unicode="&#xd9;" horiz-adv-x="1449" d="M219 393q0 123 47 324l168 729h180l-174 -748q-14 -62 -25.5 -148.5t-11.5 -127.5q0 -70 19.5 -123.5t50.5 -85t74 -52t84.5 -27.5t87.5 -7q74 0 133 14.5t104 47t78 73t60.5 104t47 128.5t40.5 157l182 795h180l-201 -868q-14 -59 -26.5 -105t-31.5 -99.5t-39 -94.5 t-49 -84t-62.5 -75t-77.5 -61t-95 -47t-115 -28.5t-138 -10.5q-236 0 -363 114.5t-127 305.5zM813 1833h213l74 -256h-111z" />
<glyph unicode="&#xda;" horiz-adv-x="1449" d="M219 393q0 123 47 324l168 729h180l-174 -748q-14 -62 -25.5 -148.5t-11.5 -127.5q0 -70 19.5 -123.5t50.5 -85t74 -52t84.5 -27.5t87.5 -7q74 0 133 14.5t104 47t78 73t60.5 104t47 128.5t40.5 157l182 795h180l-201 -868q-14 -59 -26.5 -105t-31.5 -99.5t-39 -94.5 t-49 -84t-62.5 -75t-77.5 -61t-95 -47t-115 -28.5t-138 -10.5q-236 0 -363 114.5t-127 305.5zM899 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xdb;" horiz-adv-x="1449" d="M219 393q0 123 47 324l168 729h180l-174 -748q-14 -62 -25.5 -148.5t-11.5 -127.5q0 -70 19.5 -123.5t50.5 -85t74 -52t84.5 -27.5t87.5 -7q74 0 133 14.5t104 47t78 73t60.5 104t47 128.5t40.5 157l182 795h180l-201 -868q-14 -59 -26.5 -105t-31.5 -99.5t-39 -94.5 t-49 -84t-62.5 -75t-77.5 -61t-95 -47t-115 -28.5t-138 -10.5q-236 0 -363 114.5t-127 305.5zM733 1571l264 262h148l117 -262h-138l-67 162l-160 -162h-164z" />
<glyph unicode="&#xdc;" horiz-adv-x="1449" d="M219 393q0 123 47 324l168 729h180l-174 -748q-14 -62 -25.5 -148.5t-11.5 -127.5q0 -70 19.5 -123.5t50.5 -85t74 -52t84.5 -27.5t87.5 -7q74 0 133 14.5t104 47t78 73t60.5 104t47 128.5t40.5 157l182 795h180l-201 -868q-14 -59 -26.5 -105t-31.5 -99.5t-39 -94.5 t-49 -84t-62.5 -75t-77.5 -61t-95 -47t-115 -28.5t-138 -10.5q-236 0 -363 114.5t-127 305.5zM731 1591l49 211h187l-47 -211h-189zM1128 1591l50 211h186l-49 -211h-187z" />
<glyph unicode="&#xdd;" horiz-adv-x="1193" d="M289 1446h182l195 -653l565 653h217l-735 -817l-144 -629h-182l150 649zM770 1573l178 260h256l-297 -260h-137z" />
<glyph unicode="&#xde;" horiz-adv-x="1323" d="M115 0l334 1446h180l-62 -264h404q59 0 114.5 -10.5t110.5 -37.5t95.5 -67.5t65.5 -106t25 -147.5q0 -94 -30.5 -172t-83.5 -130.5t-125 -89t-153.5 -53t-170.5 -16.5h-444l-80 -352h-180zM410 502h395q103 0 181.5 25.5t124.5 69t68.5 97.5t22.5 115q0 107 -66 163 t-180 56h-424z" />
<glyph unicode="&#xdf;" d="M92 0l236 1030q29 127 73.5 213.5t104.5 134t125.5 67t150.5 19.5q70 0 132 -17.5t112.5 -52t79.5 -92.5t29 -133q0 -155 -96.5 -243t-250.5 -88q47 -10 83 -22.5t72 -36.5t58.5 -57.5t37 -85.5t14.5 -120q0 -28 -3 -62.5t-18.5 -100.5t-41.5 -122.5t-79 -114t-125 -89.5 q-104 -45 -266 -45q-88 0 -172 18l35 145q18 -3 48 -9.5t52 -9.5t49 -3q129 0 205 46t117 163q35 105 35 190q0 82 -37 140q-33 51 -91 72t-171 26l35 151h34q142 0 225 64t83 184q0 86 -55.5 129t-131.5 43q-37 0 -69 -8.5t-57 -20.5t-47.5 -35t-38 -42.5t-30.5 -52.5 t-24.5 -55.5t-20 -61t-16 -60t-14.5 -61.5l-217 -934h-154z" />
<glyph unicode="&#xe0;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM500 1399h207l96 -312h-109z" />
<glyph unicode="&#xe1;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM567 1092l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xe2;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM373 1083l317 316h150l139 -316h-139l-92 217l-205 -217h-170z" />
<glyph unicode="&#xe3;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM418 1176q47 95 92 136.5t98 41.5q28 0 108 -33t122 -33q47 0 90 72l80 -39q-43 -92 -82.5 -133t-98.5 -41q-37 0 -118 32.5t-115 32.5 q-56 0 -90 -71z" />
<glyph unicode="&#xe4;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM377 1130l47 207h186l-47 -207h-186zM774 1130l47 207h187l-47 -207h-187z" />
<glyph unicode="&#xe5;" horiz-adv-x="1024" d="M74 219q0 119 80.5 202t222.5 111q59 12 196 31t203 33q21 102 21 127q0 60 -44 98.5t-143 38.5q-204 0 -235 -194l-182 16q14 39 27 67.5t36.5 66.5t56 65t76 51.5t106 37.5t138.5 13q54 0 109 -12.5t106 -38.5t83 -73t32 -107q0 -52 -19 -138l-88 -378q-8 -36 -8 -60 q0 -49 51 -49q25 0 64 14l-31 -133q-57 -14 -96 -14q-21 0 -43 5t-45.5 17.5t-38.5 38t-15 60.5q0 18 2 26q-14 -26 -38.5 -51.5t-64 -51.5t-100.5 -42t-133 -16q-65 0 -116 16t-82 40.5t-51.5 57t-28.5 63.5t-8 62zM252 233q0 -52 39 -92.5t125 -40.5q48 0 109.5 20.5 t97.5 49.5q16 13 29.5 27.5t23 30.5t16.5 30t12 31t7.5 26t5.5 24t4 17l27 115l-35 -4q-207 -25 -295 -56q-166 -57 -166 -178zM506 1249q0 77 54 131t130 54q75 0 129.5 -54.5t54.5 -130.5q0 -75 -55 -129.5t-131 -54.5q-75 0 -128.5 54t-53.5 130zM594 1245 q0 -40 28.5 -68t69.5 -28q40 0 68 29t28 69t-28.5 68t-69.5 28q-40 0 -68 -28.5t-28 -69.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1705" d="M70 223q0 32 8 64.5t27.5 72.5t61.5 76.5t101 61.5q35 15 83 28t108.5 23.5t102 16.5t109 14.5t85.5 11.5q16 99 16 125q0 75 -46 113t-124 38q-96 0 -156.5 -55t-72.5 -131l-178 27q14 36 33 69.5t53.5 73.5t76.5 69t106 48.5t138 19.5q69 0 125.5 -16.5t92 -44 t57.5 -54.5t34 -55q49 68 144 119t219 51q100 0 176 -33t120.5 -90.5t66.5 -129t22 -154.5q0 -41 -8 -119h-744q-4 -50 -4 -68q0 -50 15 -99t46 -95t89.5 -74.5t136.5 -28.5q99 0 172.5 52t107.5 145l158 -21q-13 -39 -34 -76.5t-58.5 -79t-85 -72.5t-118 -51t-152.5 -20 q-147 0 -249 55.5t-157 153.5q-152 -209 -407 -209q-124 0 -210.5 67t-86.5 181zM244 246q0 -70 48 -112t132 -42q66 0 127 35.5t98 93.5q57 84 88 256l-82 -12q-218 -33 -314.5 -83t-96.5 -136zM930 580h571q2 29 2 43q0 55 -16 98t-40.5 69t-57 43.5t-62.5 24t-61 6.5 q-119 0 -213.5 -81.5t-122.5 -202.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1042" d="M127 373q0 116 29.5 216t81 172.5t119.5 124.5t147 77.5t162 25.5q91 0 164 -26t117 -69.5t68 -93.5t27 -104l-151 -34q-6 32 -19 61t-38.5 62t-70.5 53t-104 20q-77 0 -146.5 -39.5t-117 -104t-75 -148t-27.5 -169.5q0 -42 7.5 -82.5t26.5 -81t46.5 -71t71.5 -49.5 t98 -19q203 0 288 219l168 -20q-13 -36 -34.5 -73.5t-59.5 -82.5t-84 -79t-112.5 -57.5t-141.5 -23.5l-47 -63q121 -20 121 -125q0 -60 -41 -106q-41 -48 -90.5 -62t-114.5 -14q-26 0 -55 4l12 55h27q46 0 72 16.5t26 47.5q0 62 -106 75l125 175l-29 2q-85 6 -151 40 t-106.5 88.5t-61.5 121t-21 141.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1067" d="M127 387q0 166 66.5 303.5t189 218t276.5 80.5q172 0 268.5 -101.5t96.5 -293.5q0 -63 -12 -129h-723q-4 -28 -4 -68q0 -75 22 -132t52.5 -87t71 -49t70 -24t56.5 -5q86 0 164 52t110 145l154 -27q-11 -32 -31.5 -66.5t-60 -76.5t-88.5 -75t-122.5 -55t-158.5 -22 q-190 0 -293.5 114t-103.5 298zM319 584h545q0 3 1 16.5t1 22.5q0 108 -60.5 174.5t-156.5 66.5q-114 0 -206 -83t-124 -197zM522 1399h207l96 -312h-108z" />
<glyph unicode="&#xe9;" horiz-adv-x="1067" d="M127 387q0 166 66.5 303.5t189 218t276.5 80.5q172 0 268.5 -101.5t96.5 -293.5q0 -63 -12 -129h-723q-4 -28 -4 -68q0 -75 22 -132t52.5 -87t71 -49t70 -24t56.5 -5q86 0 164 52t110 145l154 -27q-11 -32 -31.5 -66.5t-60 -76.5t-88.5 -75t-122.5 -55t-158.5 -22 q-190 0 -293.5 114t-103.5 298zM319 584h545q0 3 1 16.5t1 22.5q0 108 -60.5 174.5t-156.5 66.5q-114 0 -206 -83t-124 -197zM590 1092l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xea;" horiz-adv-x="1067" d="M127 387q0 166 66.5 303.5t189 218t276.5 80.5q172 0 268.5 -101.5t96.5 -293.5q0 -63 -12 -129h-723q-4 -28 -4 -68q0 -75 22 -132t52.5 -87t71 -49t70 -24t56.5 -5q86 0 164 52t110 145l154 -27q-11 -32 -31.5 -66.5t-60 -76.5t-88.5 -75t-122.5 -55t-158.5 -22 q-190 0 -293.5 114t-103.5 298zM319 584h545q0 3 1 16.5t1 22.5q0 108 -60.5 174.5t-156.5 66.5q-114 0 -206 -83t-124 -197zM393 1083l318 316h149l139 -316h-139l-92 217l-205 -217h-170z" />
<glyph unicode="&#xeb;" horiz-adv-x="1067" d="M127 387q0 166 66.5 303.5t189 218t276.5 80.5q172 0 268.5 -101.5t96.5 -293.5q0 -63 -12 -129h-723q-4 -28 -4 -68q0 -75 22 -132t52.5 -87t71 -49t70 -24t56.5 -5q86 0 164 52t110 145l154 -27q-11 -32 -31.5 -66.5t-60 -76.5t-88.5 -75t-122.5 -55t-158.5 -22 q-190 0 -293.5 114t-103.5 298zM319 584h545q0 3 1 16.5t1 22.5q0 108 -60.5 174.5t-156.5 66.5q-114 0 -206 -83t-124 -197zM438 1130l47 207h187l-47 -207h-187zM836 1130l47 207h186l-47 -207h-186z" />
<glyph unicode="&#xec;" horiz-adv-x="468" d="M86 0l221 965h160l-223 -965h-158zM213 1399h207l96 -312h-108z" />
<glyph unicode="&#xed;" horiz-adv-x="468" d="M86 0l221 965h160l-223 -965h-158zM311 1092l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xee;" horiz-adv-x="468" d="M86 0l221 965h160l-223 -965h-158zM96 1083l318 316h149l139 -316h-139l-92 217l-205 -217h-170z" />
<glyph unicode="&#xef;" horiz-adv-x="468" d="M86 0l221 965h160l-223 -965h-158zM141 1130l47 207h187l-47 -207h-187zM539 1130l47 207h186l-47 -207h-186z" />
<glyph unicode="&#xf0;" d="M125 408q0 107 39.5 211t108 186.5t170.5 133t219 50.5q98 0 156.5 -35.5t105.5 -101.5q-27 153 -111 311l-338 -92l-31 90l316 88q-98 127 -131 164l112 64q20 -24 34.5 -41.5t27 -33.5t19 -24.5t16 -22.5t13.5 -19.5t16 -24t18 -27.5l178 49l35 -92l-162 -43 q141 -247 141 -557q0 -133 -31 -245t-84 -188.5t-123.5 -130t-147.5 -78t-159 -24.5q-128 0 -221.5 58.5t-139.5 155t-46 219.5zM291 387q0 -78 21.5 -136t57.5 -90.5t78 -47.5t89 -15q75 0 138.5 33.5t104.5 86.5t70.5 118.5t42 127.5t12.5 116q0 49 -11 95t-35.5 90.5 t-73 71.5t-115.5 27q-92 0 -167 -44.5t-120 -115.5t-68.5 -153t-23.5 -164z" />
<glyph unicode="&#xf1;" d="M84 0l223 965h162l-33 -140q156 164 332 164q28 0 60.5 -6t72 -23.5t70.5 -43.5t52 -71t21 -102q0 -58 -22 -161l-135 -582h-160l137 596q15 61 15 111q0 74 -45.5 113.5t-120.5 39.5q-81 0 -141 -27t-101 -81t-67.5 -119.5t-47.5 -157.5l-110 -475h-162zM459 1176 q47 95 92 136.5t98 41.5q28 0 108 -33t122 -33q47 0 90 72l80 -39q-43 -92 -82.5 -133t-98.5 -41q-36 0 -117.5 32.5t-115.5 32.5q-56 0 -90 -71z" />
<glyph unicode="&#xf2;" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167zM543 1399h207l96 -312h-109z" />
<glyph unicode="&#xf3;" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167zM610 1092l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xf4;" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167zM414 1083l317 316h150l139 -316h-139l-93 217l-204 -217h-170z" />
<glyph unicode="&#xf5;" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167zM461 1176q47 95 92 136.5t98 41.5q28 0 108 -33t122 -33q47 0 90 72l80 -39q-43 -92 -82.5 -133t-98.5 -41q-36 0 -117.5 32.5t-115.5 32.5 q-56 0 -90 -71z" />
<glyph unicode="&#xf6;" d="M127 399q0 82 20.5 164t64.5 159t106 136.5t152.5 95t197.5 35.5q186 0 293.5 -122.5t107.5 -307.5q0 -107 -36.5 -210t-102.5 -187t-170 -135.5t-228 -51.5q-189 0 -297 119.5t-108 304.5zM291 387q0 -78 21.5 -136t57.5 -90.5t76.5 -47.5t85.5 -15q107 0 194 71 t133 180.5t46 230.5q0 72 -18.5 126t-44.5 83t-61 47t-61 23t-50 5q-91 0 -165 -43.5t-119.5 -113.5t-70 -153t-24.5 -167zM416 1130l47 207h186l-47 -207h-186zM813 1130l47 207h187l-48 -207h-186z" />
<glyph unicode="&#xf7;" horiz-adv-x="1482" d="M219 535l39 163h1157l-37 -163h-1159zM623 184l47 207h209l-48 -207h-208zM772 836l47 206h207l-47 -206h-207z" />
<glyph unicode="&#xf8;" d="M70 59l112 111q-55 101 -55 229q0 119 40.5 227t111 188t172 127.5t217.5 47.5q130 0 252 -82l90 90l71 -69l-92 -94q80 -108 80 -273q0 -74 -19.5 -152.5t-62.5 -156.5t-103.5 -139.5t-151 -99.5t-197.5 -38q-76 0 -138 20t-91 40t-64 53l-103 -98zM283 393 q0 -55 12 -108l528 528q-22 15 -35.5 23t-47.5 18t-74 10q-77 0 -143 -33t-109 -84t-73.5 -115t-44 -125t-13.5 -114zM338 186q82 -90 194 -90q70 0 132.5 30t107.5 80t77.5 113.5t49 132.5t16.5 136q0 75 -32 145z" />
<glyph unicode="&#xf9;" d="M152 209q0 35 30 182l131 574h162l-133 -574q-20 -87 -20 -141q0 -63 44 -99t128 -36q29 0 60.5 4.5t83.5 28t89 63.5q28 30 48.5 64t36 80t22.5 72t20 83l104 455h154l-223 -965h-154l35 152q-61 -81 -155 -125.5t-197 -44.5q-129 0 -197.5 65.5t-68.5 161.5zM520 1399 h207l96 -312h-108z" />
<glyph unicode="&#xfa;" d="M152 209q0 35 30 182l131 574h162l-133 -574q-20 -87 -20 -141q0 -63 44 -99t128 -36q29 0 60.5 4.5t83.5 28t89 63.5q28 30 48.5 64t36 80t22.5 72t20 83l104 455h154l-223 -965h-154l35 152q-61 -81 -155 -125.5t-197 -44.5q-129 0 -197.5 65.5t-68.5 161.5zM610 1092 l178 307h240l-293 -307h-125z" />
<glyph unicode="&#xfb;" d="M152 209q0 35 30 182l131 574h162l-133 -574q-20 -87 -20 -141q0 -63 44 -99t128 -36q29 0 60.5 4.5t83.5 28t89 63.5q28 30 48.5 64t36 80t22.5 72t20 83l104 455h154l-223 -965h-154l35 152q-61 -81 -155 -125.5t-197 -44.5q-129 0 -197.5 65.5t-68.5 161.5zM414 1083 l317 316h150l139 -316h-139l-93 217l-204 -217h-170z" />
<glyph unicode="&#xfc;" d="M152 209q0 35 30 182l131 574h162l-133 -574q-20 -87 -20 -141q0 -63 44 -99t128 -36q29 0 60.5 4.5t83.5 28t89 63.5q28 30 48.5 64t36 80t22.5 72t20 83l104 455h154l-223 -965h-154l35 152q-61 -81 -155 -125.5t-197 -44.5q-129 0 -197.5 65.5t-68.5 161.5zM463 1130 l47 207h186l-47 -207h-186zM860 1130l47 207h187l-47 -207h-187z" />
<glyph unicode="&#xfd;" horiz-adv-x="937" d="M-111 -467l33 139q50 -4 76 -4q33 0 60 8.5t43.5 18.5t35.5 33.5t28 38t28 47.5l118 202l-108 949h159l76 -770l426 770h178l-729 -1233q-41 -69 -74.5 -109t-72.5 -61.5t-76.5 -28t-97.5 -6.5q-49 0 -103 6zM526 1092l179 307h239l-293 -307h-125z" />
<glyph unicode="&#xfe;" d="M-12 -440l436 1886h158l-140 -602q109 139 287 139q44 0 87.5 -10t92 -37t85 -68t60 -110.5t23.5 -157.5q0 -87 -19 -173.5t-72.5 -184t-137.5 -164.5q-121 -96 -283 -96q-63 0 -111.5 15t-80 43.5t-50.5 57t-36 68.5l-142 -606h-157zM342 342q0 -56 16.5 -99t40.5 -67 t55.5 -39t57.5 -19.5t51 -4.5q149 0 252 141t103 338q0 69 -20 121t-47 78t-62.5 41.5t-56.5 18.5t-40 3q-74 0 -134.5 -32.5t-99.5 -85t-66 -121t-38.5 -137t-11.5 -136.5z" />
<glyph unicode="&#xff;" horiz-adv-x="937" d="M-111 -467l33 139q50 -4 76 -4q33 0 60 8.5t43.5 18.5t35.5 33.5t28 38t28 47.5l118 202l-108 949h159l76 -770l426 770h178l-729 -1233q-41 -69 -74.5 -109t-72.5 -61.5t-76.5 -28t-97.5 -6.5q-49 0 -103 6zM375 1130l47 207h186l-47 -207h-186zM772 1130l47 207h187 l-48 -207h-186z" />
<glyph unicode="&#x152;" horiz-adv-x="2260" d="M193 627q0 192 63 352.5t168 265t239 162t279 57.5q95 0 173 -21t131 -58.5t88.5 -81.5t58.5 -97l47 240h858l-23 -150h-692l-98 -477h669l-34 -141h-668l-106 -526h823l-35 -152h-993l43 182q-53 -75 -135.5 -122t-154 -62.5t-142.5 -15.5q-117 0 -220 47t-178 130 t-118 204.5t-43 263.5zM383 616q0 -220 109 -350.5t290 -130.5q93 0 172.5 36t135.5 98t98.5 140.5t67.5 169.5t37 179t12 174q0 180 -94.5 283.5t-276.5 103.5q-110 0 -209.5 -49.5t-175.5 -138.5t-121 -223t-45 -292z" />
<glyph unicode="&#x153;" horiz-adv-x="1792" d="M127 395q0 79 18.5 160t59.5 159.5t99 139t145.5 98t191.5 37.5q111 0 209.5 -51t140.5 -145q147 196 381 196q54 0 105.5 -12.5t101.5 -42t87 -73.5t60 -112t23 -153q0 -53 -14 -137h-719q-4 -45 -4 -78q0 -123 84.5 -205t191.5 -82q83 0 160.5 55t114.5 152l155 -25 q-1 -2 -6.5 -15t-11 -24t-15.5 -29t-22 -35t-28 -36.5t-36.5 -39t-44.5 -36.5q-48 -35 -112 -56t-101 -25.5t-67 -4.5q-131 0 -229.5 57t-147.5 136q-32 -34 -60 -59t-77.5 -59.5t-113 -53.5t-134.5 -19q-93 0 -167.5 34t-121.5 92.5t-71.5 133t-24.5 158.5zM289 399 q0 -78 21.5 -138t57 -93t74 -49.5t78.5 -16.5q65 0 127 36t111.5 99t79.5 157t30 202q0 134 -66 202t-163 68q-103 0 -185.5 -72t-123.5 -177.5t-41 -217.5zM1038 580h547q4 16 4 55q0 53 -16.5 95t-41 66.5t-56 40.5t-57.5 21.5t-50 5.5q-63 0 -123 -29.5t-102 -74.5 t-69.5 -92.5t-35.5 -87.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1193" d="M289 1446h182l195 -653l565 653h217l-735 -817l-144 -629h-182l150 649zM600 1591l49 211h187l-48 -211h-188zM997 1591l50 211h186l-49 -211h-187z" />
<glyph unicode="&#x2c6;" horiz-adv-x="598" d="M-4 1083l317 316h150l139 -316h-139l-92 217l-205 -217h-170z" />
<glyph unicode="&#x2dc;" horiz-adv-x="598" d="M4 1176q46 95 91.5 136.5t99.5 41.5q28 0 107.5 -33t121.5 -33q47 0 90 72l80 -39q-43 -93 -82 -133.5t-98 -40.5q-37 0 -118.5 32.5t-115.5 32.5q-56 0 -90 -71z" />
<glyph unicode="&#x2000;" horiz-adv-x="969" />
<glyph unicode="&#x2001;" horiz-adv-x="1939" />
<glyph unicode="&#x2002;" horiz-adv-x="969" />
<glyph unicode="&#x2003;" horiz-adv-x="1939" />
<glyph unicode="&#x2004;" horiz-adv-x="646" />
<glyph unicode="&#x2005;" horiz-adv-x="484" />
<glyph unicode="&#x2006;" horiz-adv-x="323" />
<glyph unicode="&#x2007;" horiz-adv-x="323" />
<glyph unicode="&#x2008;" horiz-adv-x="242" />
<glyph unicode="&#x2009;" horiz-adv-x="387" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="757" d="M143 537l37 155h574l-35 -155h-576z" />
<glyph unicode="&#x2011;" horiz-adv-x="757" d="M143 537l37 155h574l-35 -155h-576z" />
<glyph unicode="&#x2012;" horiz-adv-x="757" d="M143 537l37 155h574l-35 -155h-576z" />
<glyph unicode="&#x2013;" horiz-adv-x="1228" d="M143 537l37 155h1045l-37 -155h-1045z" />
<glyph unicode="&#x2014;" horiz-adv-x="1832" d="M143 537l37 155h1649l-37 -155h-1649z" />
<glyph unicode="&#x2018;" horiz-adv-x="468" d="M274 905q19 152 64 274.5t127 266.5h102q-39 -71 -57 -106.5t-38.5 -92.5t-31.5 -117h76l-43 -225h-199z" />
<glyph unicode="&#x2019;" horiz-adv-x="468" d="M297 899q92 153 129 320h-78l53 227h203q-17 -141 -68.5 -271.5t-134.5 -275.5h-104z" />
<glyph unicode="&#x201a;" horiz-adv-x="468" d="M16 -315q53 95 82.5 162.5t48.5 152.5h-84l54 225h194q-38 -299 -194 -540h-101z" />
<glyph unicode="&#x201c;" horiz-adv-x="724" d="M248 907q36 278 190 539h97q-83 -163 -123 -313h82l-54 -226h-192zM555 907q35 270 199 539h98q-95 -149 -131 -313h86l-53 -226h-199z" />
<glyph unicode="&#x201d;" horiz-adv-x="724" d="M283 909q91 181 118 316h-90l51 221h199q-7 -47 -14.5 -87.5t-21 -84t-21 -68.5t-28.5 -74.5l-28 -66t-36 -78t-37 -78.5h-92zM598 909q83 166 125 316h-86l51 221h203q-27 -149 -73.5 -271t-127.5 -266h-92z" />
<glyph unicode="&#x201e;" horiz-adv-x="724" d="M-2 -311q90 167 127 311h-86l53 227h197q-21 -147 -67 -271.5t-126 -266.5h-98zM313 -311q93 190 123 311h-84l54 227h192q-32 -262 -188 -538h-97z" />
<glyph unicode="&#x2022;" horiz-adv-x="681" d="M150 494l106 460h465l-105 -460h-466z" />
<glyph unicode="&#x2026;" horiz-adv-x="2048" d="M172 0l45 190h193l-43 -190h-195zM856 0l43 190h195l-45 -190h-193zM1540 0l43 190h195l-45 -190h-193z" />
<glyph unicode="&#x202f;" horiz-adv-x="387" />
<glyph unicode="&#x2039;" horiz-adv-x="468" d="M152 602l30 135l338 236l-47 -197l-180 -119l123 -135l-39 -164z" />
<glyph unicode="&#x203a;" horiz-adv-x="468" d="M113 354l45 193l182 123l-123 135l37 164l227 -242l-32 -141z" />
<glyph unicode="&#x205f;" horiz-adv-x="484" />
<glyph unicode="&#x20ac;" horiz-adv-x="1581" d="M121 547l78 127h104q3 51 12 100h-147l78 127h96q81 275 278.5 418t485.5 143q164 0 285.5 -51.5t214.5 -173.5l-99 -164q-62 120 -168 181t-243 61q-210 0 -345.5 -105t-209.5 -309h872l-76 -127h-825q-9 -49 -12 -100h782l-78 -127h-706q17 -205 138.5 -321.5 t324.5 -116.5q156 0 268.5 41.5t222.5 144.5l-55 -223q-185 -109 -443 -109q-184 0 -324.5 67.5t-225.5 200t-99 316.5h-184z" />
<glyph unicode="&#x2122;" horiz-adv-x="1421" d="M252 1346l22 100h512l-22 -100h-193l-135 -580h-121l134 580h-197zM700 766l158 680h158l39 -543l291 543h153l-156 -680h-110l127 534l-277 -534h-110l-39 526l-119 -526h-115z" />
<glyph unicode="&#x25fc;" horiz-adv-x="962" d="M0 0v963h963v-963h-963z" />
<hkern u1="&#x2d;" u2="Y" k="168" />
<hkern u1="&#x2d;" u2="X" k="84" />
<hkern u1="&#x2d;" u2="T" k="168" />
<hkern u1="&#x2d;" u2="S" k="-86" />
<hkern u1="&#x2d;" u2="Q" k="-86" />
<hkern u1="&#x2d;" u2="J" k="168" />
<hkern u1="&#x2d;" u2="G" k="-86" />
<hkern u1="&#x2f;" u2="&#xdc;" k="-86" />
<hkern u1="&#x2f;" u2="&#xdb;" k="-86" />
<hkern u1="&#x2f;" u2="&#xda;" k="-86" />
<hkern u1="&#x2f;" u2="&#xd9;" k="-86" />
<hkern u1="&#x2f;" u2="Z" k="-86" />
<hkern u1="&#x2f;" u2="U" k="-86" />
<hkern u1="&#x2f;" u2="R" k="-86" />
<hkern u1="&#x2f;" u2="P" k="-86" />
<hkern u1="&#x2f;" u2="N" k="-86" />
<hkern u1="&#x2f;" u2="M" k="-86" />
<hkern u1="&#x2f;" u2="L" k="-86" />
<hkern u1="&#x2f;" u2="K" k="-86" />
<hkern u1="&#x2f;" u2="I" k="-86" />
<hkern u1="&#x2f;" u2="H" k="-86" />
<hkern u1="&#x2f;" u2="F" k="-86" />
<hkern u1="&#x2f;" u2="E" k="-86" />
<hkern u1="&#x2f;" u2="D" k="-86" />
<hkern u1="&#x2f;" u2="B" k="-86" />
<hkern u1="&#x30;" u2="&#x39;" k="-43" />
<hkern u1="&#x30;" u2="&#x38;" k="-43" />
<hkern u1="&#x30;" u2="&#x37;" k="31" />
<hkern u1="&#x30;" u2="&#x36;" k="-43" />
<hkern u1="&#x30;" u2="&#x35;" k="-43" />
<hkern u1="&#x30;" u2="&#x34;" k="-43" />
<hkern u1="&#x30;" u2="&#x31;" k="96" />
<hkern u1="&#x31;" u2="&#x39;" k="-43" />
<hkern u1="&#x31;" u2="&#x38;" k="-43" />
<hkern u1="&#x31;" u2="&#x36;" k="-43" />
<hkern u1="&#x31;" u2="&#x35;" k="-43" />
<hkern u1="&#x31;" u2="&#x33;" k="-43" />
<hkern u1="&#x31;" u2="&#x32;" k="-43" />
<hkern u1="&#x31;" u2="&#x30;" k="143" />
<hkern u1="&#x32;" u2="&#x39;" k="-43" />
<hkern u1="&#x32;" u2="&#x38;" k="-43" />
<hkern u1="&#x32;" u2="&#x37;" k="41" />
<hkern u1="&#x32;" u2="&#x36;" k="-43" />
<hkern u1="&#x32;" u2="&#x35;" k="-43" />
<hkern u1="&#x32;" u2="&#x34;" k="84" />
<hkern u1="&#x32;" u2="&#x30;" k="-43" />
<hkern u1="&#x33;" u2="&#x39;" k="-43" />
<hkern u1="&#x33;" u2="&#x38;" k="-43" />
<hkern u1="&#x33;" u2="&#x37;" k="41" />
<hkern u1="&#x33;" u2="&#x36;" k="-43" />
<hkern u1="&#x33;" u2="&#x35;" k="-43" />
<hkern u1="&#x33;" u2="&#x34;" k="-43" />
<hkern u1="&#x33;" u2="&#x30;" k="-43" />
<hkern u1="&#x34;" u2="&#x39;" k="-43" />
<hkern u1="&#x34;" u2="&#x38;" k="-43" />
<hkern u1="&#x34;" u2="&#x37;" k="41" />
<hkern u1="&#x34;" u2="&#x36;" k="-43" />
<hkern u1="&#x34;" u2="&#x35;" k="-43" />
<hkern u1="&#x34;" u2="&#x34;" k="-43" />
<hkern u1="&#x34;" u2="&#x30;" k="-43" />
<hkern u1="&#x35;" u2="&#x39;" k="-43" />
<hkern u1="&#x35;" u2="&#x38;" k="-43" />
<hkern u1="&#x35;" u2="&#x37;" k="41" />
<hkern u1="&#x35;" u2="&#x36;" k="-43" />
<hkern u1="&#x35;" u2="&#x35;" k="-43" />
<hkern u1="&#x35;" u2="&#x34;" k="-43" />
<hkern u1="&#x35;" u2="&#x30;" k="-43" />
<hkern u1="&#x36;" u2="&#x39;" k="-43" />
<hkern u1="&#x36;" u2="&#x38;" k="-43" />
<hkern u1="&#x36;" u2="&#x37;" k="41" />
<hkern u1="&#x36;" u2="&#x36;" k="-43" />
<hkern u1="&#x36;" u2="&#x35;" k="-43" />
<hkern u1="&#x36;" u2="&#x34;" k="-43" />
<hkern u1="&#x36;" u2="&#x33;" k="-43" />
<hkern u1="&#x36;" u2="&#x32;" k="-43" />
<hkern u1="&#x36;" u2="&#x30;" k="-43" />
<hkern u1="&#x37;" u2="&#x39;" k="96" />
<hkern u1="&#x37;" u2="&#x38;" k="113" />
<hkern u1="&#x37;" u2="&#x37;" k="84" />
<hkern u1="&#x37;" u2="&#x36;" k="127" />
<hkern u1="&#x37;" u2="&#x35;" k="41" />
<hkern u1="&#x37;" u2="&#x34;" k="168" />
<hkern u1="&#x37;" u2="&#x33;" k="84" />
<hkern u1="&#x37;" u2="&#x32;" k="96" />
<hkern u1="&#x37;" u2="&#x30;" k="113" />
<hkern u1="&#x37;" u2="&#x2e;" k="254" />
<hkern u1="&#x37;" u2="&#x2c;" k="254" />
<hkern u1="&#x38;" u2="&#x39;" k="-43" />
<hkern u1="&#x38;" u2="&#x38;" k="-43" />
<hkern u1="&#x38;" u2="&#x37;" k="31" />
<hkern u1="&#x38;" u2="&#x36;" k="-43" />
<hkern u1="&#x38;" u2="&#x35;" k="-43" />
<hkern u1="&#x38;" u2="&#x34;" k="-43" />
<hkern u1="&#x38;" u2="&#x30;" k="-43" />
<hkern u1="&#x39;" u2="&#x39;" k="-43" />
<hkern u1="&#x39;" u2="&#x38;" k="-43" />
<hkern u1="&#x39;" u2="&#x37;" k="84" />
<hkern u1="&#x39;" u2="&#x36;" k="-43" />
<hkern u1="&#x39;" u2="&#x35;" k="-43" />
<hkern u1="&#x39;" u2="&#x34;" k="-43" />
<hkern u1="&#x39;" u2="&#x30;" k="-43" />
<hkern u1="A" u2="w" k="41" />
<hkern u1="A" u2="v" k="41" />
<hkern u1="A" u2="q" k="41" />
<hkern u1="A" u2="g" k="41" />
<hkern u1="A" u2="d" k="41" />
<hkern u1="A" u2="Y" k="127" />
<hkern u1="A" u2="W" k="127" />
<hkern u1="A" u2="V" k="127" />
<hkern u1="A" u2="T" k="168" />
<hkern u1="A" u2="S" k="41" />
<hkern u1="A" u2="Q" k="41" />
<hkern u1="A" u2="J" k="41" />
<hkern u1="A" u2="G" k="41" />
<hkern u1="A" u2="&#x3f;" k="168" />
<hkern u1="B" u2="&#x153;" k="-43" />
<hkern u1="B" u2="&#xfc;" k="-43" />
<hkern u1="B" u2="&#xfb;" k="-43" />
<hkern u1="B" u2="&#xfa;" k="-43" />
<hkern u1="B" u2="&#xf9;" k="-43" />
<hkern u1="B" u2="&#xf8;" k="-43" />
<hkern u1="B" u2="&#xf6;" k="-43" />
<hkern u1="B" u2="&#xf5;" k="-43" />
<hkern u1="B" u2="&#xf4;" k="-43" />
<hkern u1="B" u2="&#xf3;" k="-43" />
<hkern u1="B" u2="&#xf2;" k="-43" />
<hkern u1="B" u2="&#xeb;" k="-43" />
<hkern u1="B" u2="&#xea;" k="-43" />
<hkern u1="B" u2="&#xe9;" k="-43" />
<hkern u1="B" u2="&#xe8;" k="-43" />
<hkern u1="B" u2="&#xe7;" k="-43" />
<hkern u1="B" u2="&#xe5;" k="-43" />
<hkern u1="B" u2="&#xe4;" k="-43" />
<hkern u1="B" u2="&#xe3;" k="-43" />
<hkern u1="B" u2="&#xe2;" k="-43" />
<hkern u1="B" u2="&#xe1;" k="-43" />
<hkern u1="B" u2="&#xe0;" k="-43" />
<hkern u1="B" u2="&#xdc;" k="-43" />
<hkern u1="B" u2="&#xdb;" k="-43" />
<hkern u1="B" u2="&#xda;" k="-43" />
<hkern u1="B" u2="&#xd9;" k="-43" />
<hkern u1="B" u2="&#xd8;" k="-43" />
<hkern u1="B" u2="&#xd6;" k="-43" />
<hkern u1="B" u2="&#xd5;" k="-43" />
<hkern u1="B" u2="&#xd4;" k="-43" />
<hkern u1="B" u2="&#xd3;" k="-43" />
<hkern u1="B" u2="&#xd2;" k="-43" />
<hkern u1="B" u2="&#xc7;" k="-43" />
<hkern u1="B" u2="u" k="-43" />
<hkern u1="B" u2="q" k="-43" />
<hkern u1="B" u2="o" k="-43" />
<hkern u1="B" u2="g" k="-43" />
<hkern u1="B" u2="e" k="-43" />
<hkern u1="B" u2="d" k="-43" />
<hkern u1="B" u2="c" k="-43" />
<hkern u1="B" u2="a" k="-43" />
<hkern u1="B" u2="Z" k="-43" />
<hkern u1="B" u2="Y" k="41" />
<hkern u1="B" u2="U" k="-43" />
<hkern u1="B" u2="T" k="41" />
<hkern u1="B" u2="S" k="-43" />
<hkern u1="B" u2="R" k="-43" />
<hkern u1="B" u2="Q" k="-43" />
<hkern u1="B" u2="P" k="-43" />
<hkern u1="B" u2="O" k="-43" />
<hkern u1="B" u2="N" k="-43" />
<hkern u1="B" u2="M" k="-43" />
<hkern u1="B" u2="L" k="-43" />
<hkern u1="B" u2="K" k="-43" />
<hkern u1="B" u2="J" k="41" />
<hkern u1="B" u2="I" k="-43" />
<hkern u1="B" u2="H" k="-43" />
<hkern u1="B" u2="G" k="-43" />
<hkern u1="B" u2="F" k="-43" />
<hkern u1="B" u2="E" k="-43" />
<hkern u1="B" u2="D" k="-43" />
<hkern u1="B" u2="C" k="-43" />
<hkern u1="B" u2="B" k="-43" />
<hkern u1="C" u2="q" k="-43" />
<hkern u1="C" u2="g" k="-43" />
<hkern u1="C" u2="d" k="-43" />
<hkern u1="C" u2="Y" k="127" />
<hkern u1="C" u2="X" k="84" />
<hkern u1="C" u2="W" k="84" />
<hkern u1="C" u2="V" k="84" />
<hkern u1="C" u2="T" k="84" />
<hkern u1="C" u2="S" k="-43" />
<hkern u1="C" u2="Q" k="-43" />
<hkern u1="C" u2="J" k="41" />
<hkern u1="C" u2="G" k="-43" />
<hkern u1="D" u2="q" k="-43" />
<hkern u1="D" u2="g" k="-43" />
<hkern u1="D" u2="d" k="-43" />
<hkern u1="D" u2="Y" k="84" />
<hkern u1="D" u2="X" k="84" />
<hkern u1="D" u2="W" k="84" />
<hkern u1="D" u2="V" k="41" />
<hkern u1="D" u2="T" k="84" />
<hkern u1="D" u2="S" k="-43" />
<hkern u1="D" u2="Q" k="-43" />
<hkern u1="D" u2="J" k="84" />
<hkern u1="D" u2="G" k="-43" />
<hkern u1="E" u2="Z" k="-86" />
<hkern u1="E" u2="Y" k="41" />
<hkern u1="E" u2="W" k="-43" />
<hkern u1="E" u2="V" k="-43" />
<hkern u1="E" u2="T" k="41" />
<hkern u1="E" u2="S" k="-43" />
<hkern u1="E" u2="R" k="-86" />
<hkern u1="E" u2="Q" k="-43" />
<hkern u1="E" u2="P" k="-86" />
<hkern u1="E" u2="N" k="-86" />
<hkern u1="E" u2="M" k="-86" />
<hkern u1="E" u2="L" k="-86" />
<hkern u1="E" u2="K" k="-86" />
<hkern u1="E" u2="J" k="41" />
<hkern u1="E" u2="I" k="-86" />
<hkern u1="E" u2="H" k="-86" />
<hkern u1="E" u2="G" k="-43" />
<hkern u1="E" u2="F" k="-86" />
<hkern u1="E" u2="E" k="-86" />
<hkern u1="E" u2="D" k="-86" />
<hkern u1="E" u2="B" k="-86" />
<hkern u1="E" u2="&#x2f;" k="-86" />
<hkern u1="F" u2="&#xd8;" k="-43" />
<hkern u1="F" u2="&#xd6;" k="-43" />
<hkern u1="F" u2="&#xd5;" k="-43" />
<hkern u1="F" u2="&#xd4;" k="-43" />
<hkern u1="F" u2="&#xd3;" k="-43" />
<hkern u1="F" u2="&#xd2;" k="-43" />
<hkern u1="F" u2="&#xc7;" k="-43" />
<hkern u1="F" u2="&#xc6;" k="127" />
<hkern u1="F" u2="&#xc5;" k="127" />
<hkern u1="F" u2="&#xc4;" k="127" />
<hkern u1="F" u2="&#xc3;" k="127" />
<hkern u1="F" u2="&#xc2;" k="127" />
<hkern u1="F" u2="&#xc1;" k="127" />
<hkern u1="F" u2="&#xc0;" k="127" />
<hkern u1="F" u2="r" k="41" />
<hkern u1="F" u2="X" k="84" />
<hkern u1="F" u2="S" k="-43" />
<hkern u1="F" u2="Q" k="-43" />
<hkern u1="F" u2="O" k="-43" />
<hkern u1="F" u2="J" k="254" />
<hkern u1="F" u2="G" k="-43" />
<hkern u1="F" u2="C" k="-43" />
<hkern u1="F" u2="A" k="127" />
<hkern u1="F" u2="&#x2e;" k="127" />
<hkern u1="F" u2="&#x2c;" k="127" />
<hkern u1="G" u2="&#xdc;" k="-86" />
<hkern u1="G" u2="&#xdb;" k="-86" />
<hkern u1="G" u2="&#xda;" k="-86" />
<hkern u1="G" u2="&#xd9;" k="-86" />
<hkern u1="G" u2="&#xd8;" k="-43" />
<hkern u1="G" u2="&#xd6;" k="-43" />
<hkern u1="G" u2="&#xd5;" k="-43" />
<hkern u1="G" u2="&#xd4;" k="-43" />
<hkern u1="G" u2="&#xd3;" k="-43" />
<hkern u1="G" u2="&#xd2;" k="-43" />
<hkern u1="G" u2="&#xc7;" k="-43" />
<hkern u1="G" u2="Z" k="-86" />
<hkern u1="G" u2="Y" k="84" />
<hkern u1="G" u2="W" k="41" />
<hkern u1="G" u2="V" k="41" />
<hkern u1="G" u2="U" k="-86" />
<hkern u1="G" u2="T" k="84" />
<hkern u1="G" u2="S" k="-43" />
<hkern u1="G" u2="R" k="-86" />
<hkern u1="G" u2="Q" k="-43" />
<hkern u1="G" u2="P" k="-86" />
<hkern u1="G" u2="O" k="-43" />
<hkern u1="G" u2="N" k="-86" />
<hkern u1="G" u2="M" k="-86" />
<hkern u1="G" u2="L" k="-86" />
<hkern u1="G" u2="K" k="-86" />
<hkern u1="G" u2="J" k="41" />
<hkern u1="G" u2="I" k="-86" />
<hkern u1="G" u2="H" k="-86" />
<hkern u1="G" u2="G" k="-43" />
<hkern u1="G" u2="F" k="-86" />
<hkern u1="G" u2="E" k="-86" />
<hkern u1="G" u2="D" k="-86" />
<hkern u1="G" u2="C" k="-43" />
<hkern u1="G" u2="B" k="-86" />
<hkern u1="G" u2="&#x2f;" k="-86" />
<hkern u1="H" u2="&#xdc;" k="-86" />
<hkern u1="H" u2="&#xdb;" k="-86" />
<hkern u1="H" u2="&#xda;" k="-86" />
<hkern u1="H" u2="&#xd9;" k="-86" />
<hkern u1="H" u2="&#xd8;" k="-43" />
<hkern u1="H" u2="&#xd6;" k="-43" />
<hkern u1="H" u2="&#xd5;" k="-43" />
<hkern u1="H" u2="&#xd4;" k="-43" />
<hkern u1="H" u2="&#xd3;" k="-43" />
<hkern u1="H" u2="&#xd2;" k="-43" />
<hkern u1="H" u2="&#xc7;" k="-43" />
<hkern u1="H" u2="Z" k="-86" />
<hkern u1="H" u2="Y" k="-43" />
<hkern u1="H" u2="W" k="-43" />
<hkern u1="H" u2="V" k="-43" />
<hkern u1="H" u2="U" k="-86" />
<hkern u1="H" u2="T" k="-43" />
<hkern u1="H" u2="S" k="-43" />
<hkern u1="H" u2="R" k="-86" />
<hkern u1="H" u2="Q" k="-43" />
<hkern u1="H" u2="P" k="-86" />
<hkern u1="H" u2="O" k="-43" />
<hkern u1="H" u2="N" k="-86" />
<hkern u1="H" u2="M" k="-86" />
<hkern u1="H" u2="L" k="-86" />
<hkern u1="H" u2="K" k="-86" />
<hkern u1="H" u2="J" k="41" />
<hkern u1="H" u2="I" k="-86" />
<hkern u1="H" u2="H" k="-86" />
<hkern u1="H" u2="G" k="-43" />
<hkern u1="H" u2="F" k="-86" />
<hkern u1="H" u2="E" k="-86" />
<hkern u1="H" u2="D" k="-86" />
<hkern u1="H" u2="C" k="-43" />
<hkern u1="H" u2="B" k="-86" />
<hkern u1="H" u2="&#x2f;" k="-86" />
<hkern u1="I" u2="&#xdc;" k="-86" />
<hkern u1="I" u2="&#xdb;" k="-86" />
<hkern u1="I" u2="&#xda;" k="-86" />
<hkern u1="I" u2="&#xd9;" k="-86" />
<hkern u1="I" u2="&#xd8;" k="-43" />
<hkern u1="I" u2="&#xd6;" k="-43" />
<hkern u1="I" u2="&#xd5;" k="-43" />
<hkern u1="I" u2="&#xd4;" k="-43" />
<hkern u1="I" u2="&#xd3;" k="-43" />
<hkern u1="I" u2="&#xd2;" k="-43" />
<hkern u1="I" u2="&#xc7;" k="-43" />
<hkern u1="I" u2="Z" k="-86" />
<hkern u1="I" u2="Y" k="-43" />
<hkern u1="I" u2="W" k="-43" />
<hkern u1="I" u2="V" k="-43" />
<hkern u1="I" u2="U" k="-86" />
<hkern u1="I" u2="T" k="-43" />
<hkern u1="I" u2="S" k="-43" />
<hkern u1="I" u2="R" k="-86" />
<hkern u1="I" u2="Q" k="-43" />
<hkern u1="I" u2="P" k="-86" />
<hkern u1="I" u2="O" k="-43" />
<hkern u1="I" u2="N" k="-86" />
<hkern u1="I" u2="M" k="-86" />
<hkern u1="I" u2="L" k="-86" />
<hkern u1="I" u2="K" k="-86" />
<hkern u1="I" u2="J" k="41" />
<hkern u1="I" u2="I" k="-86" />
<hkern u1="I" u2="H" k="-86" />
<hkern u1="I" u2="G" k="-43" />
<hkern u1="I" u2="F" k="-86" />
<hkern u1="I" u2="E" k="-86" />
<hkern u1="I" u2="D" k="-86" />
<hkern u1="I" u2="C" k="-43" />
<hkern u1="I" u2="B" k="-86" />
<hkern u1="I" u2="&#x2f;" k="-86" />
<hkern u1="J" u2="&#xdc;" k="-86" />
<hkern u1="J" u2="&#xdb;" k="-86" />
<hkern u1="J" u2="&#xda;" k="-86" />
<hkern u1="J" u2="&#xd9;" k="-86" />
<hkern u1="J" u2="&#xd8;" k="-43" />
<hkern u1="J" u2="&#xd6;" k="-43" />
<hkern u1="J" u2="&#xd5;" k="-43" />
<hkern u1="J" u2="&#xd4;" k="-43" />
<hkern u1="J" u2="&#xd3;" k="-43" />
<hkern u1="J" u2="&#xd2;" k="-43" />
<hkern u1="J" u2="&#xc7;" k="-43" />
<hkern u1="J" u2="Z" k="-86" />
<hkern u1="J" u2="Y" k="-43" />
<hkern u1="J" u2="W" k="-43" />
<hkern u1="J" u2="V" k="-43" />
<hkern u1="J" u2="U" k="-86" />
<hkern u1="J" u2="T" k="-43" />
<hkern u1="J" u2="S" k="-43" />
<hkern u1="J" u2="R" k="-86" />
<hkern u1="J" u2="Q" k="-43" />
<hkern u1="J" u2="P" k="-86" />
<hkern u1="J" u2="O" k="-43" />
<hkern u1="J" u2="N" k="-86" />
<hkern u1="J" u2="M" k="-86" />
<hkern u1="J" u2="L" k="-86" />
<hkern u1="J" u2="K" k="-86" />
<hkern u1="J" u2="J" k="41" />
<hkern u1="J" u2="I" k="-86" />
<hkern u1="J" u2="H" k="-86" />
<hkern u1="J" u2="G" k="-43" />
<hkern u1="J" u2="F" k="-86" />
<hkern u1="J" u2="E" k="-86" />
<hkern u1="J" u2="D" k="-86" />
<hkern u1="J" u2="C" k="-43" />
<hkern u1="J" u2="B" k="-86" />
<hkern u1="J" u2="&#x2f;" k="-86" />
<hkern u1="K" u2="&#x2014;" k="84" />
<hkern u1="K" u2="&#x2013;" k="84" />
<hkern u1="K" u2="&#x153;" k="41" />
<hkern u1="K" u2="&#xff;" k="84" />
<hkern u1="K" u2="&#xfd;" k="84" />
<hkern u1="K" u2="&#xf8;" k="41" />
<hkern u1="K" u2="&#xf6;" k="41" />
<hkern u1="K" u2="&#xf5;" k="41" />
<hkern u1="K" u2="&#xf4;" k="41" />
<hkern u1="K" u2="&#xf3;" k="41" />
<hkern u1="K" u2="&#xf2;" k="41" />
<hkern u1="K" u2="&#xeb;" k="41" />
<hkern u1="K" u2="&#xea;" k="41" />
<hkern u1="K" u2="&#xe9;" k="41" />
<hkern u1="K" u2="&#xe8;" k="41" />
<hkern u1="K" u2="&#xe7;" k="41" />
<hkern u1="K" u2="&#xdc;" k="-43" />
<hkern u1="K" u2="&#xdb;" k="-43" />
<hkern u1="K" u2="&#xda;" k="-43" />
<hkern u1="K" u2="&#xd9;" k="-43" />
<hkern u1="K" u2="&#xad;" k="84" />
<hkern u1="K" u2="y" k="84" />
<hkern u1="K" u2="w" k="84" />
<hkern u1="K" u2="v" k="84" />
<hkern u1="K" u2="q" k="41" />
<hkern u1="K" u2="o" k="41" />
<hkern u1="K" u2="g" k="41" />
<hkern u1="K" u2="e" k="41" />
<hkern u1="K" u2="d" k="41" />
<hkern u1="K" u2="c" k="41" />
<hkern u1="K" u2="Z" k="-43" />
<hkern u1="K" u2="U" k="-43" />
<hkern u1="K" u2="R" k="-43" />
<hkern u1="K" u2="P" k="-43" />
<hkern u1="K" u2="N" k="-43" />
<hkern u1="K" u2="M" k="-43" />
<hkern u1="K" u2="L" k="-43" />
<hkern u1="K" u2="K" k="-43" />
<hkern u1="K" u2="I" k="-43" />
<hkern u1="K" u2="H" k="-43" />
<hkern u1="K" u2="F" k="-43" />
<hkern u1="K" u2="E" k="-43" />
<hkern u1="K" u2="D" k="-43" />
<hkern u1="K" u2="B" k="-43" />
<hkern u1="K" u2="&#x2d;" k="84" />
<hkern u1="L" u2="w" k="84" />
<hkern u1="L" u2="v" k="84" />
<hkern u1="L" u2="q" k="84" />
<hkern u1="L" u2="g" k="84" />
<hkern u1="L" u2="d" k="84" />
<hkern u1="L" u2="Y" k="211" />
<hkern u1="L" u2="W" k="211" />
<hkern u1="L" u2="V" k="211" />
<hkern u1="L" u2="T" k="297" />
<hkern u1="L" u2="S" k="127" />
<hkern u1="L" u2="Q" k="211" />
<hkern u1="L" u2="J" k="41" />
<hkern u1="L" u2="G" k="211" />
<hkern u1="L" u2="&#x3f;" k="168" />
<hkern u1="M" u2="&#xdc;" k="-86" />
<hkern u1="M" u2="&#xdb;" k="-86" />
<hkern u1="M" u2="&#xda;" k="-86" />
<hkern u1="M" u2="&#xd9;" k="-86" />
<hkern u1="M" u2="&#xd8;" k="-43" />
<hkern u1="M" u2="&#xd6;" k="-43" />
<hkern u1="M" u2="&#xd5;" k="-43" />
<hkern u1="M" u2="&#xd4;" k="-43" />
<hkern u1="M" u2="&#xd3;" k="-43" />
<hkern u1="M" u2="&#xd2;" k="-43" />
<hkern u1="M" u2="&#xc7;" k="-43" />
<hkern u1="M" u2="Z" k="-86" />
<hkern u1="M" u2="Y" k="-43" />
<hkern u1="M" u2="W" k="-43" />
<hkern u1="M" u2="V" k="-43" />
<hkern u1="M" u2="U" k="-86" />
<hkern u1="M" u2="T" k="-43" />
<hkern u1="M" u2="S" k="-43" />
<hkern u1="M" u2="R" k="-86" />
<hkern u1="M" u2="Q" k="-43" />
<hkern u1="M" u2="P" k="-86" />
<hkern u1="M" u2="O" k="-43" />
<hkern u1="M" u2="N" k="-86" />
<hkern u1="M" u2="M" k="-86" />
<hkern u1="M" u2="L" k="-86" />
<hkern u1="M" u2="K" k="-86" />
<hkern u1="M" u2="J" k="41" />
<hkern u1="M" u2="I" k="-86" />
<hkern u1="M" u2="H" k="-86" />
<hkern u1="M" u2="G" k="-43" />
<hkern u1="M" u2="F" k="-86" />
<hkern u1="M" u2="E" k="-86" />
<hkern u1="M" u2="D" k="-86" />
<hkern u1="M" u2="C" k="-43" />
<hkern u1="M" u2="B" k="-86" />
<hkern u1="M" u2="&#x2f;" k="-86" />
<hkern u1="N" u2="Z" k="-86" />
<hkern u1="N" u2="Y" k="-43" />
<hkern u1="N" u2="W" k="-43" />
<hkern u1="N" u2="V" k="-43" />
<hkern u1="N" u2="T" k="-43" />
<hkern u1="N" u2="S" k="-43" />
<hkern u1="N" u2="R" k="-86" />
<hkern u1="N" u2="Q" k="-43" />
<hkern u1="N" u2="P" k="-86" />
<hkern u1="N" u2="N" k="-86" />
<hkern u1="N" u2="M" k="-86" />
<hkern u1="N" u2="L" k="-86" />
<hkern u1="N" u2="K" k="-86" />
<hkern u1="N" u2="J" k="41" />
<hkern u1="N" u2="I" k="-86" />
<hkern u1="N" u2="H" k="-86" />
<hkern u1="N" u2="G" k="-43" />
<hkern u1="N" u2="F" k="-86" />
<hkern u1="N" u2="E" k="-86" />
<hkern u1="N" u2="D" k="-86" />
<hkern u1="N" u2="B" k="-86" />
<hkern u1="N" u2="&#x2f;" k="-86" />
<hkern u1="O" u2="x" k="84" />
<hkern u1="O" u2="w" k="-43" />
<hkern u1="O" u2="v" k="-43" />
<hkern u1="O" u2="q" k="-43" />
<hkern u1="O" u2="g" k="-43" />
<hkern u1="O" u2="d" k="-43" />
<hkern u1="O" u2="Y" k="127" />
<hkern u1="O" u2="X" k="84" />
<hkern u1="O" u2="W" k="84" />
<hkern u1="O" u2="V" k="84" />
<hkern u1="O" u2="T" k="127" />
<hkern u1="O" u2="Q" k="-43" />
<hkern u1="O" u2="J" k="84" />
<hkern u1="O" u2="G" k="-43" />
<hkern u1="P" u2="&#xd8;" k="-43" />
<hkern u1="P" u2="&#xd6;" k="-43" />
<hkern u1="P" u2="&#xd5;" k="-43" />
<hkern u1="P" u2="&#xd4;" k="-43" />
<hkern u1="P" u2="&#xd3;" k="-43" />
<hkern u1="P" u2="&#xd2;" k="-43" />
<hkern u1="P" u2="&#xc7;" k="-43" />
<hkern u1="P" u2="&#xc6;" k="127" />
<hkern u1="P" u2="&#xc5;" k="127" />
<hkern u1="P" u2="&#xc4;" k="127" />
<hkern u1="P" u2="&#xc3;" k="127" />
<hkern u1="P" u2="&#xc2;" k="127" />
<hkern u1="P" u2="&#xc1;" k="127" />
<hkern u1="P" u2="&#xc0;" k="127" />
<hkern u1="P" u2="t" k="-43" />
<hkern u1="P" u2="f" k="-43" />
<hkern u1="P" u2="Y" k="84" />
<hkern u1="P" u2="X" k="84" />
<hkern u1="P" u2="S" k="-43" />
<hkern u1="P" u2="Q" k="-43" />
<hkern u1="P" u2="O" k="-43" />
<hkern u1="P" u2="J" k="254" />
<hkern u1="P" u2="G" k="-43" />
<hkern u1="P" u2="C" k="-43" />
<hkern u1="P" u2="A" k="127" />
<hkern u1="P" u2="&#x2e;" k="127" />
<hkern u1="P" u2="&#x2c;" k="127" />
<hkern u1="R" u2="&#xff;" k="-43" />
<hkern u1="R" u2="&#xfd;" k="-43" />
<hkern u1="R" u2="&#xe5;" k="-43" />
<hkern u1="R" u2="&#xe4;" k="-43" />
<hkern u1="R" u2="&#xe3;" k="-43" />
<hkern u1="R" u2="&#xe2;" k="-43" />
<hkern u1="R" u2="&#xe1;" k="-43" />
<hkern u1="R" u2="&#xe0;" k="-43" />
<hkern u1="R" u2="&#xdc;" k="-86" />
<hkern u1="R" u2="&#xdb;" k="-86" />
<hkern u1="R" u2="&#xda;" k="-86" />
<hkern u1="R" u2="&#xd9;" k="-86" />
<hkern u1="R" u2="&#xd8;" k="-43" />
<hkern u1="R" u2="&#xd6;" k="-43" />
<hkern u1="R" u2="&#xd5;" k="-43" />
<hkern u1="R" u2="&#xd4;" k="-43" />
<hkern u1="R" u2="&#xd3;" k="-43" />
<hkern u1="R" u2="&#xd2;" k="-43" />
<hkern u1="R" u2="&#xc7;" k="-43" />
<hkern u1="R" u2="y" k="-43" />
<hkern u1="R" u2="a" k="-43" />
<hkern u1="R" u2="Z" k="-86" />
<hkern u1="R" u2="Y" k="-43" />
<hkern u1="R" u2="X" k="-43" />
<hkern u1="R" u2="W" k="-43" />
<hkern u1="R" u2="V" k="-43" />
<hkern u1="R" u2="U" k="-86" />
<hkern u1="R" u2="T" k="-43" />
<hkern u1="R" u2="S" k="-43" />
<hkern u1="R" u2="R" k="-86" />
<hkern u1="R" u2="Q" k="-43" />
<hkern u1="R" u2="P" k="-86" />
<hkern u1="R" u2="O" k="-43" />
<hkern u1="R" u2="N" k="-86" />
<hkern u1="R" u2="M" k="-86" />
<hkern u1="R" u2="L" k="-86" />
<hkern u1="R" u2="K" k="-86" />
<hkern u1="R" u2="I" k="-86" />
<hkern u1="R" u2="H" k="-86" />
<hkern u1="R" u2="G" k="-43" />
<hkern u1="R" u2="F" k="-86" />
<hkern u1="R" u2="E" k="-86" />
<hkern u1="R" u2="D" k="-86" />
<hkern u1="R" u2="C" k="-43" />
<hkern u1="R" u2="B" k="-86" />
<hkern u1="R" u2="&#x2f;" k="-86" />
<hkern u1="S" u2="q" k="-43" />
<hkern u1="S" u2="g" k="-43" />
<hkern u1="S" u2="d" k="-43" />
<hkern u1="S" u2="Z" k="-43" />
<hkern u1="S" u2="Y" k="84" />
<hkern u1="S" u2="W" k="41" />
<hkern u1="S" u2="V" k="41" />
<hkern u1="S" u2="T" k="84" />
<hkern u1="S" u2="R" k="-43" />
<hkern u1="S" u2="Q" k="-43" />
<hkern u1="S" u2="P" k="-43" />
<hkern u1="S" u2="N" k="-43" />
<hkern u1="S" u2="M" k="-43" />
<hkern u1="S" u2="L" k="-43" />
<hkern u1="S" u2="K" k="-43" />
<hkern u1="S" u2="J" k="41" />
<hkern u1="S" u2="I" k="-43" />
<hkern u1="S" u2="H" k="-43" />
<hkern u1="S" u2="F" k="-43" />
<hkern u1="S" u2="E" k="-43" />
<hkern u1="S" u2="D" k="-43" />
<hkern u1="S" u2="B" k="-43" />
<hkern u1="T" u2="&#x2014;" k="168" />
<hkern u1="T" u2="&#x2013;" k="168" />
<hkern u1="T" u2="&#x153;" k="211" />
<hkern u1="T" u2="&#xff;" k="254" />
<hkern u1="T" u2="&#xfd;" k="254" />
<hkern u1="T" u2="&#xfc;" k="254" />
<hkern u1="T" u2="&#xfb;" k="254" />
<hkern u1="T" u2="&#xfa;" k="254" />
<hkern u1="T" u2="&#xf9;" k="254" />
<hkern u1="T" u2="&#xf8;" k="211" />
<hkern u1="T" u2="&#xf6;" k="211" />
<hkern u1="T" u2="&#xf5;" k="211" />
<hkern u1="T" u2="&#xf4;" k="211" />
<hkern u1="T" u2="&#xf3;" k="211" />
<hkern u1="T" u2="&#xf2;" k="211" />
<hkern u1="T" u2="&#xf1;" k="127" />
<hkern u1="T" u2="&#xeb;" k="211" />
<hkern u1="T" u2="&#xea;" k="211" />
<hkern u1="T" u2="&#xe9;" k="211" />
<hkern u1="T" u2="&#xe8;" k="211" />
<hkern u1="T" u2="&#xe7;" k="211" />
<hkern u1="T" u2="&#xe5;" k="211" />
<hkern u1="T" u2="&#xe4;" k="211" />
<hkern u1="T" u2="&#xe3;" k="211" />
<hkern u1="T" u2="&#xe2;" k="211" />
<hkern u1="T" u2="&#xe1;" k="211" />
<hkern u1="T" u2="&#xe0;" k="211" />
<hkern u1="T" u2="&#xd8;" k="41" />
<hkern u1="T" u2="&#xd6;" k="41" />
<hkern u1="T" u2="&#xd5;" k="41" />
<hkern u1="T" u2="&#xd4;" k="41" />
<hkern u1="T" u2="&#xd3;" k="41" />
<hkern u1="T" u2="&#xd2;" k="41" />
<hkern u1="T" u2="&#xc7;" k="41" />
<hkern u1="T" u2="&#xc6;" k="168" />
<hkern u1="T" u2="&#xc5;" k="168" />
<hkern u1="T" u2="&#xc4;" k="168" />
<hkern u1="T" u2="&#xc3;" k="168" />
<hkern u1="T" u2="&#xc2;" k="168" />
<hkern u1="T" u2="&#xc1;" k="168" />
<hkern u1="T" u2="&#xc0;" k="168" />
<hkern u1="T" u2="&#xad;" k="168" />
<hkern u1="T" u2="z" k="127" />
<hkern u1="T" u2="y" k="254" />
<hkern u1="T" u2="x" k="127" />
<hkern u1="T" u2="w" k="168" />
<hkern u1="T" u2="v" k="168" />
<hkern u1="T" u2="u" k="254" />
<hkern u1="T" u2="t" k="41" />
<hkern u1="T" u2="s" k="127" />
<hkern u1="T" u2="r" k="211" />
<hkern u1="T" u2="q" k="211" />
<hkern u1="T" u2="p" k="127" />
<hkern u1="T" u2="o" k="211" />
<hkern u1="T" u2="n" k="127" />
<hkern u1="T" u2="m" k="127" />
<hkern u1="T" u2="l" k="41" />
<hkern u1="T" u2="k" k="41" />
<hkern u1="T" u2="j" k="41" />
<hkern u1="T" u2="i" k="41" />
<hkern u1="T" u2="h" k="41" />
<hkern u1="T" u2="g" k="211" />
<hkern u1="T" u2="f" k="41" />
<hkern u1="T" u2="e" k="211" />
<hkern u1="T" u2="d" k="211" />
<hkern u1="T" u2="c" k="211" />
<hkern u1="T" u2="b" k="41" />
<hkern u1="T" u2="a" k="211" />
<hkern u1="T" u2="S" k="41" />
<hkern u1="T" u2="Q" k="41" />
<hkern u1="T" u2="O" k="41" />
<hkern u1="T" u2="J" k="254" />
<hkern u1="T" u2="G" k="41" />
<hkern u1="T" u2="C" k="41" />
<hkern u1="T" u2="A" k="168" />
<hkern u1="T" u2="&#x2e;" k="211" />
<hkern u1="T" u2="&#x2d;" k="168" />
<hkern u1="T" u2="&#x2c;" k="211" />
<hkern u1="U" u2="Z" k="-86" />
<hkern u1="U" u2="Y" k="-43" />
<hkern u1="U" u2="W" k="-43" />
<hkern u1="U" u2="V" k="-43" />
<hkern u1="U" u2="T" k="-43" />
<hkern u1="U" u2="S" k="-43" />
<hkern u1="U" u2="R" k="-86" />
<hkern u1="U" u2="Q" k="-43" />
<hkern u1="U" u2="P" k="-86" />
<hkern u1="U" u2="N" k="-86" />
<hkern u1="U" u2="M" k="-86" />
<hkern u1="U" u2="L" k="-86" />
<hkern u1="U" u2="K" k="-86" />
<hkern u1="U" u2="J" k="41" />
<hkern u1="U" u2="I" k="-86" />
<hkern u1="U" u2="H" k="-86" />
<hkern u1="U" u2="G" k="-43" />
<hkern u1="U" u2="F" k="-86" />
<hkern u1="U" u2="E" k="-86" />
<hkern u1="U" u2="D" k="-86" />
<hkern u1="U" u2="B" k="-86" />
<hkern u1="U" u2="&#x2f;" k="-86" />
<hkern u1="V" u2="&#x153;" k="84" />
<hkern u1="V" u2="&#xff;" k="41" />
<hkern u1="V" u2="&#xfd;" k="41" />
<hkern u1="V" u2="&#xfc;" k="41" />
<hkern u1="V" u2="&#xfb;" k="41" />
<hkern u1="V" u2="&#xfa;" k="41" />
<hkern u1="V" u2="&#xf9;" k="41" />
<hkern u1="V" u2="&#xf8;" k="84" />
<hkern u1="V" u2="&#xf6;" k="84" />
<hkern u1="V" u2="&#xf5;" k="84" />
<hkern u1="V" u2="&#xf4;" k="84" />
<hkern u1="V" u2="&#xf3;" k="84" />
<hkern u1="V" u2="&#xf2;" k="84" />
<hkern u1="V" u2="&#xf1;" k="41" />
<hkern u1="V" u2="&#xeb;" k="84" />
<hkern u1="V" u2="&#xea;" k="84" />
<hkern u1="V" u2="&#xe9;" k="84" />
<hkern u1="V" u2="&#xe8;" k="84" />
<hkern u1="V" u2="&#xe7;" k="84" />
<hkern u1="V" u2="&#xe5;" k="127" />
<hkern u1="V" u2="&#xe4;" k="127" />
<hkern u1="V" u2="&#xe3;" k="127" />
<hkern u1="V" u2="&#xe2;" k="127" />
<hkern u1="V" u2="&#xe1;" k="127" />
<hkern u1="V" u2="&#xe0;" k="127" />
<hkern u1="V" u2="&#xdc;" k="-43" />
<hkern u1="V" u2="&#xdb;" k="-43" />
<hkern u1="V" u2="&#xda;" k="-43" />
<hkern u1="V" u2="&#xd9;" k="-43" />
<hkern u1="V" u2="&#xd8;" k="-43" />
<hkern u1="V" u2="&#xd6;" k="-43" />
<hkern u1="V" u2="&#xd5;" k="-43" />
<hkern u1="V" u2="&#xd4;" k="-43" />
<hkern u1="V" u2="&#xd3;" k="-43" />
<hkern u1="V" u2="&#xd2;" k="-43" />
<hkern u1="V" u2="&#xc7;" k="-43" />
<hkern u1="V" u2="&#xc6;" k="84" />
<hkern u1="V" u2="&#xc5;" k="84" />
<hkern u1="V" u2="&#xc4;" k="84" />
<hkern u1="V" u2="&#xc3;" k="84" />
<hkern u1="V" u2="&#xc2;" k="84" />
<hkern u1="V" u2="&#xc1;" k="84" />
<hkern u1="V" u2="&#xc0;" k="84" />
<hkern u1="V" u2="z" k="41" />
<hkern u1="V" u2="y" k="41" />
<hkern u1="V" u2="x" k="41" />
<hkern u1="V" u2="w" k="41" />
<hkern u1="V" u2="v" k="41" />
<hkern u1="V" u2="u" k="41" />
<hkern u1="V" u2="t" k="41" />
<hkern u1="V" u2="s" k="41" />
<hkern u1="V" u2="r" k="41" />
<hkern u1="V" u2="q" k="84" />
<hkern u1="V" u2="p" k="41" />
<hkern u1="V" u2="o" k="84" />
<hkern u1="V" u2="n" k="41" />
<hkern u1="V" u2="m" k="41" />
<hkern u1="V" u2="l" k="41" />
<hkern u1="V" u2="k" k="41" />
<hkern u1="V" u2="j" k="41" />
<hkern u1="V" u2="i" k="41" />
<hkern u1="V" u2="h" k="41" />
<hkern u1="V" u2="g" k="84" />
<hkern u1="V" u2="f" k="41" />
<hkern u1="V" u2="e" k="84" />
<hkern u1="V" u2="d" k="84" />
<hkern u1="V" u2="c" k="84" />
<hkern u1="V" u2="b" k="41" />
<hkern u1="V" u2="a" k="127" />
<hkern u1="V" u2="Z" k="-43" />
<hkern u1="V" u2="U" k="-43" />
<hkern u1="V" u2="S" k="-43" />
<hkern u1="V" u2="R" k="-43" />
<hkern u1="V" u2="Q" k="-43" />
<hkern u1="V" u2="P" k="-43" />
<hkern u1="V" u2="O" k="-43" />
<hkern u1="V" u2="N" k="-43" />
<hkern u1="V" u2="M" k="-43" />
<hkern u1="V" u2="L" k="-43" />
<hkern u1="V" u2="K" k="-43" />
<hkern u1="V" u2="J" k="168" />
<hkern u1="V" u2="I" k="-43" />
<hkern u1="V" u2="H" k="-43" />
<hkern u1="V" u2="G" k="-43" />
<hkern u1="V" u2="F" k="-43" />
<hkern u1="V" u2="E" k="-43" />
<hkern u1="V" u2="D" k="-43" />
<hkern u1="V" u2="C" k="-43" />
<hkern u1="V" u2="B" k="-43" />
<hkern u1="V" u2="A" k="84" />
<hkern u1="V" u2="&#x2e;" k="84" />
<hkern u1="V" u2="&#x2c;" k="84" />
<hkern u1="W" u2="&#x153;" k="41" />
<hkern u1="W" u2="&#xff;" k="41" />
<hkern u1="W" u2="&#xfd;" k="41" />
<hkern u1="W" u2="&#xfc;" k="41" />
<hkern u1="W" u2="&#xfb;" k="41" />
<hkern u1="W" u2="&#xfa;" k="41" />
<hkern u1="W" u2="&#xf9;" k="41" />
<hkern u1="W" u2="&#xf8;" k="41" />
<hkern u1="W" u2="&#xf6;" k="41" />
<hkern u1="W" u2="&#xf5;" k="41" />
<hkern u1="W" u2="&#xf4;" k="41" />
<hkern u1="W" u2="&#xf3;" k="41" />
<hkern u1="W" u2="&#xf2;" k="41" />
<hkern u1="W" u2="&#xf1;" k="41" />
<hkern u1="W" u2="&#xeb;" k="84" />
<hkern u1="W" u2="&#xea;" k="84" />
<hkern u1="W" u2="&#xe9;" k="84" />
<hkern u1="W" u2="&#xe8;" k="84" />
<hkern u1="W" u2="&#xe7;" k="84" />
<hkern u1="W" u2="&#xe5;" k="41" />
<hkern u1="W" u2="&#xe4;" k="41" />
<hkern u1="W" u2="&#xe3;" k="41" />
<hkern u1="W" u2="&#xe2;" k="41" />
<hkern u1="W" u2="&#xe1;" k="41" />
<hkern u1="W" u2="&#xe0;" k="41" />
<hkern u1="W" u2="&#xdc;" k="-43" />
<hkern u1="W" u2="&#xdb;" k="-43" />
<hkern u1="W" u2="&#xda;" k="-43" />
<hkern u1="W" u2="&#xd9;" k="-43" />
<hkern u1="W" u2="&#xd8;" k="-43" />
<hkern u1="W" u2="&#xd6;" k="-43" />
<hkern u1="W" u2="&#xd5;" k="-43" />
<hkern u1="W" u2="&#xd4;" k="-43" />
<hkern u1="W" u2="&#xd3;" k="-43" />
<hkern u1="W" u2="&#xd2;" k="-43" />
<hkern u1="W" u2="&#xc7;" k="-43" />
<hkern u1="W" u2="&#xc6;" k="84" />
<hkern u1="W" u2="&#xc5;" k="84" />
<hkern u1="W" u2="&#xc4;" k="84" />
<hkern u1="W" u2="&#xc3;" k="84" />
<hkern u1="W" u2="&#xc2;" k="84" />
<hkern u1="W" u2="&#xc1;" k="84" />
<hkern u1="W" u2="&#xc0;" k="84" />
<hkern u1="W" u2="z" k="41" />
<hkern u1="W" u2="y" k="41" />
<hkern u1="W" u2="x" k="41" />
<hkern u1="W" u2="v" k="41" />
<hkern u1="W" u2="u" k="41" />
<hkern u1="W" u2="t" k="41" />
<hkern u1="W" u2="s" k="41" />
<hkern u1="W" u2="r" k="41" />
<hkern u1="W" u2="q" k="84" />
<hkern u1="W" u2="p" k="41" />
<hkern u1="W" u2="o" k="41" />
<hkern u1="W" u2="n" k="41" />
<hkern u1="W" u2="m" k="41" />
<hkern u1="W" u2="l" k="41" />
<hkern u1="W" u2="k" k="41" />
<hkern u1="W" u2="j" k="41" />
<hkern u1="W" u2="i" k="41" />
<hkern u1="W" u2="h" k="41" />
<hkern u1="W" u2="g" k="84" />
<hkern u1="W" u2="f" k="41" />
<hkern u1="W" u2="e" k="84" />
<hkern u1="W" u2="d" k="84" />
<hkern u1="W" u2="c" k="84" />
<hkern u1="W" u2="b" k="41" />
<hkern u1="W" u2="a" k="41" />
<hkern u1="W" u2="Z" k="-43" />
<hkern u1="W" u2="U" k="-43" />
<hkern u1="W" u2="S" k="-43" />
<hkern u1="W" u2="R" k="-43" />
<hkern u1="W" u2="Q" k="-43" />
<hkern u1="W" u2="P" k="-43" />
<hkern u1="W" u2="O" k="-43" />
<hkern u1="W" u2="N" k="-43" />
<hkern u1="W" u2="M" k="-43" />
<hkern u1="W" u2="L" k="-43" />
<hkern u1="W" u2="K" k="-43" />
<hkern u1="W" u2="J" k="168" />
<hkern u1="W" u2="I" k="-43" />
<hkern u1="W" u2="H" k="-43" />
<hkern u1="W" u2="G" k="-43" />
<hkern u1="W" u2="F" k="-43" />
<hkern u1="W" u2="E" k="-43" />
<hkern u1="W" u2="D" k="-43" />
<hkern u1="W" u2="C" k="-43" />
<hkern u1="W" u2="B" k="-43" />
<hkern u1="W" u2="A" k="84" />
<hkern u1="W" u2="&#x2e;" k="84" />
<hkern u1="W" u2="&#x2c;" k="84" />
<hkern u1="X" u2="&#x2014;" k="84" />
<hkern u1="X" u2="&#x2013;" k="84" />
<hkern u1="X" u2="&#x153;" k="41" />
<hkern u1="X" u2="&#xff;" k="84" />
<hkern u1="X" u2="&#xfd;" k="84" />
<hkern u1="X" u2="&#xf8;" k="41" />
<hkern u1="X" u2="&#xf6;" k="41" />
<hkern u1="X" u2="&#xf5;" k="41" />
<hkern u1="X" u2="&#xf4;" k="41" />
<hkern u1="X" u2="&#xf3;" k="41" />
<hkern u1="X" u2="&#xf2;" k="41" />
<hkern u1="X" u2="&#xeb;" k="41" />
<hkern u1="X" u2="&#xea;" k="41" />
<hkern u1="X" u2="&#xe9;" k="41" />
<hkern u1="X" u2="&#xe8;" k="41" />
<hkern u1="X" u2="&#xe7;" k="41" />
<hkern u1="X" u2="&#xdc;" k="-43" />
<hkern u1="X" u2="&#xdb;" k="-43" />
<hkern u1="X" u2="&#xda;" k="-43" />
<hkern u1="X" u2="&#xd9;" k="-43" />
<hkern u1="X" u2="&#xad;" k="84" />
<hkern u1="X" u2="y" k="84" />
<hkern u1="X" u2="w" k="84" />
<hkern u1="X" u2="v" k="84" />
<hkern u1="X" u2="q" k="41" />
<hkern u1="X" u2="o" k="41" />
<hkern u1="X" u2="g" k="41" />
<hkern u1="X" u2="e" k="41" />
<hkern u1="X" u2="d" k="41" />
<hkern u1="X" u2="c" k="41" />
<hkern u1="X" u2="Z" k="-43" />
<hkern u1="X" u2="U" k="-43" />
<hkern u1="X" u2="R" k="-43" />
<hkern u1="X" u2="P" k="-43" />
<hkern u1="X" u2="N" k="-43" />
<hkern u1="X" u2="M" k="-43" />
<hkern u1="X" u2="L" k="-43" />
<hkern u1="X" u2="K" k="-43" />
<hkern u1="X" u2="J" k="41" />
<hkern u1="X" u2="I" k="-43" />
<hkern u1="X" u2="H" k="-43" />
<hkern u1="X" u2="F" k="-43" />
<hkern u1="X" u2="E" k="-43" />
<hkern u1="X" u2="D" k="-43" />
<hkern u1="X" u2="B" k="-43" />
<hkern u1="X" u2="&#x2d;" k="84" />
<hkern u1="Y" u2="&#x2014;" k="168" />
<hkern u1="Y" u2="&#x2013;" k="168" />
<hkern u1="Y" u2="&#x153;" k="211" />
<hkern u1="Y" u2="&#xff;" k="84" />
<hkern u1="Y" u2="&#xfd;" k="84" />
<hkern u1="Y" u2="&#xfc;" k="127" />
<hkern u1="Y" u2="&#xfb;" k="127" />
<hkern u1="Y" u2="&#xfa;" k="127" />
<hkern u1="Y" u2="&#xf9;" k="127" />
<hkern u1="Y" u2="&#xf8;" k="211" />
<hkern u1="Y" u2="&#xf6;" k="211" />
<hkern u1="Y" u2="&#xf5;" k="211" />
<hkern u1="Y" u2="&#xf4;" k="211" />
<hkern u1="Y" u2="&#xf3;" k="211" />
<hkern u1="Y" u2="&#xf2;" k="211" />
<hkern u1="Y" u2="&#xf1;" k="127" />
<hkern u1="Y" u2="&#xeb;" k="211" />
<hkern u1="Y" u2="&#xea;" k="211" />
<hkern u1="Y" u2="&#xe9;" k="211" />
<hkern u1="Y" u2="&#xe8;" k="211" />
<hkern u1="Y" u2="&#xe7;" k="211" />
<hkern u1="Y" u2="&#xe5;" k="211" />
<hkern u1="Y" u2="&#xe4;" k="211" />
<hkern u1="Y" u2="&#xe3;" k="211" />
<hkern u1="Y" u2="&#xe2;" k="211" />
<hkern u1="Y" u2="&#xe1;" k="211" />
<hkern u1="Y" u2="&#xe0;" k="211" />
<hkern u1="Y" u2="&#xc7;" k="41" />
<hkern u1="Y" u2="&#xc6;" k="168" />
<hkern u1="Y" u2="&#xc5;" k="168" />
<hkern u1="Y" u2="&#xc4;" k="168" />
<hkern u1="Y" u2="&#xc3;" k="168" />
<hkern u1="Y" u2="&#xc2;" k="168" />
<hkern u1="Y" u2="&#xc1;" k="168" />
<hkern u1="Y" u2="&#xc0;" k="168" />
<hkern u1="Y" u2="&#xad;" k="168" />
<hkern u1="Y" u2="z" k="127" />
<hkern u1="Y" u2="y" k="84" />
<hkern u1="Y" u2="x" k="127" />
<hkern u1="Y" u2="w" k="84" />
<hkern u1="Y" u2="v" k="84" />
<hkern u1="Y" u2="u" k="127" />
<hkern u1="Y" u2="t" k="41" />
<hkern u1="Y" u2="s" k="127" />
<hkern u1="Y" u2="r" k="127" />
<hkern u1="Y" u2="q" k="211" />
<hkern u1="Y" u2="p" k="168" />
<hkern u1="Y" u2="o" k="211" />
<hkern u1="Y" u2="n" k="127" />
<hkern u1="Y" u2="m" k="127" />
<hkern u1="Y" u2="l" k="41" />
<hkern u1="Y" u2="k" k="41" />
<hkern u1="Y" u2="j" k="41" />
<hkern u1="Y" u2="i" k="41" />
<hkern u1="Y" u2="h" k="41" />
<hkern u1="Y" u2="g" k="211" />
<hkern u1="Y" u2="f" k="41" />
<hkern u1="Y" u2="e" k="211" />
<hkern u1="Y" u2="d" k="211" />
<hkern u1="Y" u2="c" k="211" />
<hkern u1="Y" u2="b" k="41" />
<hkern u1="Y" u2="a" k="211" />
<hkern u1="Y" u2="S" k="41" />
<hkern u1="Y" u2="Q" k="41" />
<hkern u1="Y" u2="J" k="254" />
<hkern u1="Y" u2="G" k="41" />
<hkern u1="Y" u2="C" k="41" />
<hkern u1="Y" u2="A" k="168" />
<hkern u1="Y" u2="&#x2e;" k="211" />
<hkern u1="Y" u2="&#x2d;" k="168" />
<hkern u1="Y" u2="&#x2c;" k="211" />
<hkern u1="Z" u2="i" k="-43" />
<hkern u1="Z" u2="Z" k="-86" />
<hkern u1="Z" u2="Y" k="-43" />
<hkern u1="Z" u2="W" k="-43" />
<hkern u1="Z" u2="V" k="-43" />
<hkern u1="Z" u2="T" k="-43" />
<hkern u1="Z" u2="S" k="-43" />
<hkern u1="Z" u2="R" k="-86" />
<hkern u1="Z" u2="Q" k="-43" />
<hkern u1="Z" u2="P" k="-86" />
<hkern u1="Z" u2="N" k="-86" />
<hkern u1="Z" u2="M" k="-86" />
<hkern u1="Z" u2="L" k="-86" />
<hkern u1="Z" u2="K" k="-86" />
<hkern u1="Z" u2="J" k="41" />
<hkern u1="Z" u2="I" k="-86" />
<hkern u1="Z" u2="H" k="-86" />
<hkern u1="Z" u2="G" k="-43" />
<hkern u1="Z" u2="F" k="-86" />
<hkern u1="Z" u2="E" k="-86" />
<hkern u1="Z" u2="D" k="-86" />
<hkern u1="Z" u2="B" k="-86" />
<hkern u1="Z" u2="&#x2f;" k="-86" />
<hkern u1="c" u2="k" k="41" />
<hkern u1="c" u2="h" k="41" />
<hkern u1="o" u2="x" k="41" />
<hkern u1="o" u2="w" k="41" />
<hkern u1="o" u2="v" k="41" />
<hkern u1="r" u2="w" k="-43" />
<hkern u1="r" u2="v" k="-43" />
<hkern u1="r" u2="t" k="-43" />
<hkern u1="r" u2="f" k="-43" />
<hkern u1="r" u2="&#x2e;" k="84" />
<hkern u1="r" u2="&#x2c;" k="84" />
<hkern u1="t" u2="w" k="-43" />
<hkern u1="t" u2="v" k="-43" />
<hkern u1="v" u2="t" k="-43" />
<hkern u1="v" u2="f" k="-43" />
<hkern u1="v" u2="&#x2e;" k="84" />
<hkern u1="v" u2="&#x2c;" k="84" />
<hkern u1="w" u2="&#x153;" k="-43" />
<hkern u1="w" u2="&#xf8;" k="-43" />
<hkern u1="w" u2="&#xf6;" k="-43" />
<hkern u1="w" u2="&#xf5;" k="-43" />
<hkern u1="w" u2="&#xf4;" k="-43" />
<hkern u1="w" u2="&#xf3;" k="-43" />
<hkern u1="w" u2="&#xf2;" k="-43" />
<hkern u1="w" u2="t" k="-43" />
<hkern u1="w" u2="o" k="-43" />
<hkern u1="w" u2="f" k="-43" />
<hkern u1="w" u2="&#x2e;" k="84" />
<hkern u1="w" u2="&#x2c;" k="84" />
<hkern u1="x" u2="t" k="-43" />
<hkern u1="x" u2="f" k="-43" />
<hkern u1="y" u2="t" k="-43" />
<hkern u1="y" u2="f" k="-43" />
<hkern u1="&#xad;" u2="Y" k="168" />
<hkern u1="&#xad;" u2="X" k="84" />
<hkern u1="&#xad;" u2="T" k="168" />
<hkern u1="&#xad;" u2="S" k="-86" />
<hkern u1="&#xad;" u2="Q" k="-86" />
<hkern u1="&#xad;" u2="J" k="168" />
<hkern u1="&#xad;" u2="G" k="-86" />
<hkern u1="&#xc0;" u2="w" k="41" />
<hkern u1="&#xc0;" u2="v" k="41" />
<hkern u1="&#xc0;" u2="q" k="41" />
<hkern u1="&#xc0;" u2="g" k="41" />
<hkern u1="&#xc0;" u2="d" k="41" />
<hkern u1="&#xc0;" u2="Y" k="127" />
<hkern u1="&#xc0;" u2="W" k="127" />
<hkern u1="&#xc0;" u2="V" k="127" />
<hkern u1="&#xc0;" u2="T" k="168" />
<hkern u1="&#xc0;" u2="S" k="41" />
<hkern u1="&#xc0;" u2="Q" k="41" />
<hkern u1="&#xc0;" u2="J" k="41" />
<hkern u1="&#xc0;" u2="G" k="41" />
<hkern u1="&#xc0;" u2="&#x3f;" k="168" />
<hkern u1="&#xc1;" u2="w" k="41" />
<hkern u1="&#xc1;" u2="v" k="41" />
<hkern u1="&#xc1;" u2="q" k="41" />
<hkern u1="&#xc1;" u2="g" k="41" />
<hkern u1="&#xc1;" u2="d" k="41" />
<hkern u1="&#xc1;" u2="Y" k="127" />
<hkern u1="&#xc1;" u2="W" k="127" />
<hkern u1="&#xc1;" u2="V" k="127" />
<hkern u1="&#xc1;" u2="T" k="168" />
<hkern u1="&#xc1;" u2="S" k="41" />
<hkern u1="&#xc1;" u2="Q" k="41" />
<hkern u1="&#xc1;" u2="J" k="41" />
<hkern u1="&#xc1;" u2="G" k="41" />
<hkern u1="&#xc1;" u2="&#x3f;" k="168" />
<hkern u1="&#xc2;" u2="w" k="41" />
<hkern u1="&#xc2;" u2="v" k="41" />
<hkern u1="&#xc2;" u2="q" k="41" />
<hkern u1="&#xc2;" u2="g" k="41" />
<hkern u1="&#xc2;" u2="d" k="41" />
<hkern u1="&#xc2;" u2="Y" k="127" />
<hkern u1="&#xc2;" u2="W" k="127" />
<hkern u1="&#xc2;" u2="V" k="127" />
<hkern u1="&#xc2;" u2="T" k="168" />
<hkern u1="&#xc2;" u2="S" k="41" />
<hkern u1="&#xc2;" u2="Q" k="41" />
<hkern u1="&#xc2;" u2="J" k="41" />
<hkern u1="&#xc2;" u2="G" k="41" />
<hkern u1="&#xc2;" u2="&#x3f;" k="168" />
<hkern u1="&#xc3;" u2="w" k="41" />
<hkern u1="&#xc3;" u2="v" k="41" />
<hkern u1="&#xc3;" u2="q" k="41" />
<hkern u1="&#xc3;" u2="g" k="41" />
<hkern u1="&#xc3;" u2="d" k="41" />
<hkern u1="&#xc3;" u2="Y" k="127" />
<hkern u1="&#xc3;" u2="W" k="127" />
<hkern u1="&#xc3;" u2="V" k="127" />
<hkern u1="&#xc3;" u2="T" k="168" />
<hkern u1="&#xc3;" u2="S" k="41" />
<hkern u1="&#xc3;" u2="Q" k="41" />
<hkern u1="&#xc3;" u2="J" k="41" />
<hkern u1="&#xc3;" u2="G" k="41" />
<hkern u1="&#xc3;" u2="&#x3f;" k="168" />
<hkern u1="&#xc4;" u2="w" k="41" />
<hkern u1="&#xc4;" u2="v" k="41" />
<hkern u1="&#xc4;" u2="q" k="41" />
<hkern u1="&#xc4;" u2="g" k="41" />
<hkern u1="&#xc4;" u2="d" k="41" />
<hkern u1="&#xc4;" u2="Y" k="127" />
<hkern u1="&#xc4;" u2="W" k="127" />
<hkern u1="&#xc4;" u2="V" k="127" />
<hkern u1="&#xc4;" u2="T" k="168" />
<hkern u1="&#xc4;" u2="S" k="41" />
<hkern u1="&#xc4;" u2="Q" k="41" />
<hkern u1="&#xc4;" u2="J" k="41" />
<hkern u1="&#xc4;" u2="G" k="41" />
<hkern u1="&#xc4;" u2="&#x3f;" k="168" />
<hkern u1="&#xc5;" u2="w" k="41" />
<hkern u1="&#xc5;" u2="v" k="41" />
<hkern u1="&#xc5;" u2="q" k="41" />
<hkern u1="&#xc5;" u2="g" k="41" />
<hkern u1="&#xc5;" u2="d" k="41" />
<hkern u1="&#xc5;" u2="Y" k="127" />
<hkern u1="&#xc5;" u2="W" k="127" />
<hkern u1="&#xc5;" u2="V" k="127" />
<hkern u1="&#xc5;" u2="T" k="168" />
<hkern u1="&#xc5;" u2="S" k="41" />
<hkern u1="&#xc5;" u2="Q" k="41" />
<hkern u1="&#xc5;" u2="J" k="41" />
<hkern u1="&#xc5;" u2="G" k="41" />
<hkern u1="&#xc5;" u2="&#x3f;" k="168" />
<hkern u1="&#xc6;" u2="Z" k="-86" />
<hkern u1="&#xc6;" u2="Y" k="41" />
<hkern u1="&#xc6;" u2="W" k="-43" />
<hkern u1="&#xc6;" u2="V" k="-43" />
<hkern u1="&#xc6;" u2="T" k="41" />
<hkern u1="&#xc6;" u2="S" k="-43" />
<hkern u1="&#xc6;" u2="R" k="-86" />
<hkern u1="&#xc6;" u2="Q" k="-43" />
<hkern u1="&#xc6;" u2="P" k="-86" />
<hkern u1="&#xc6;" u2="N" k="-86" />
<hkern u1="&#xc6;" u2="M" k="-86" />
<hkern u1="&#xc6;" u2="L" k="-86" />
<hkern u1="&#xc6;" u2="K" k="-86" />
<hkern u1="&#xc6;" u2="J" k="41" />
<hkern u1="&#xc6;" u2="I" k="-86" />
<hkern u1="&#xc6;" u2="H" k="-86" />
<hkern u1="&#xc6;" u2="G" k="-43" />
<hkern u1="&#xc6;" u2="F" k="-86" />
<hkern u1="&#xc6;" u2="E" k="-86" />
<hkern u1="&#xc6;" u2="D" k="-86" />
<hkern u1="&#xc6;" u2="B" k="-86" />
<hkern u1="&#xc6;" u2="&#x2f;" k="-86" />
<hkern u1="&#xc7;" u2="q" k="-43" />
<hkern u1="&#xc7;" u2="g" k="-43" />
<hkern u1="&#xc7;" u2="d" k="-43" />
<hkern u1="&#xc7;" u2="Y" k="127" />
<hkern u1="&#xc7;" u2="X" k="84" />
<hkern u1="&#xc7;" u2="W" k="84" />
<hkern u1="&#xc7;" u2="V" k="84" />
<hkern u1="&#xc7;" u2="T" k="84" />
<hkern u1="&#xc7;" u2="S" k="-43" />
<hkern u1="&#xc7;" u2="Q" k="-43" />
<hkern u1="&#xc7;" u2="J" k="41" />
<hkern u1="&#xc7;" u2="G" k="-43" />
<hkern u1="&#xc8;" u2="Z" k="-86" />
<hkern u1="&#xc8;" u2="Y" k="41" />
<hkern u1="&#xc8;" u2="W" k="-43" />
<hkern u1="&#xc8;" u2="V" k="-43" />
<hkern u1="&#xc8;" u2="T" k="41" />
<hkern u1="&#xc8;" u2="S" k="-43" />
<hkern u1="&#xc8;" u2="R" k="-86" />
<hkern u1="&#xc8;" u2="Q" k="-43" />
<hkern u1="&#xc8;" u2="P" k="-86" />
<hkern u1="&#xc8;" u2="N" k="-86" />
<hkern u1="&#xc8;" u2="M" k="-86" />
<hkern u1="&#xc8;" u2="L" k="-86" />
<hkern u1="&#xc8;" u2="K" k="-86" />
<hkern u1="&#xc8;" u2="J" k="41" />
<hkern u1="&#xc8;" u2="I" k="-86" />
<hkern u1="&#xc8;" u2="H" k="-86" />
<hkern u1="&#xc8;" u2="G" k="-43" />
<hkern u1="&#xc8;" u2="F" k="-86" />
<hkern u1="&#xc8;" u2="E" k="-86" />
<hkern u1="&#xc8;" u2="D" k="-86" />
<hkern u1="&#xc8;" u2="B" k="-86" />
<hkern u1="&#xc8;" u2="&#x2f;" k="-86" />
<hkern u1="&#xc9;" u2="Z" k="-86" />
<hkern u1="&#xc9;" u2="Y" k="41" />
<hkern u1="&#xc9;" u2="W" k="-43" />
<hkern u1="&#xc9;" u2="V" k="-43" />
<hkern u1="&#xc9;" u2="T" k="41" />
<hkern u1="&#xc9;" u2="S" k="-43" />
<hkern u1="&#xc9;" u2="R" k="-86" />
<hkern u1="&#xc9;" u2="Q" k="-43" />
<hkern u1="&#xc9;" u2="P" k="-86" />
<hkern u1="&#xc9;" u2="N" k="-86" />
<hkern u1="&#xc9;" u2="M" k="-86" />
<hkern u1="&#xc9;" u2="L" k="-86" />
<hkern u1="&#xc9;" u2="K" k="-86" />
<hkern u1="&#xc9;" u2="J" k="41" />
<hkern u1="&#xc9;" u2="I" k="-86" />
<hkern u1="&#xc9;" u2="H" k="-86" />
<hkern u1="&#xc9;" u2="G" k="-43" />
<hkern u1="&#xc9;" u2="F" k="-86" />
<hkern u1="&#xc9;" u2="E" k="-86" />
<hkern u1="&#xc9;" u2="D" k="-86" />
<hkern u1="&#xc9;" u2="B" k="-86" />
<hkern u1="&#xc9;" u2="&#x2f;" k="-86" />
<hkern u1="&#xca;" u2="Z" k="-86" />
<hkern u1="&#xca;" u2="Y" k="41" />
<hkern u1="&#xca;" u2="W" k="-43" />
<hkern u1="&#xca;" u2="V" k="-43" />
<hkern u1="&#xca;" u2="T" k="41" />
<hkern u1="&#xca;" u2="S" k="-43" />
<hkern u1="&#xca;" u2="R" k="-86" />
<hkern u1="&#xca;" u2="Q" k="-43" />
<hkern u1="&#xca;" u2="P" k="-86" />
<hkern u1="&#xca;" u2="N" k="-86" />
<hkern u1="&#xca;" u2="M" k="-86" />
<hkern u1="&#xca;" u2="L" k="-86" />
<hkern u1="&#xca;" u2="K" k="-86" />
<hkern u1="&#xca;" u2="J" k="41" />
<hkern u1="&#xca;" u2="I" k="-86" />
<hkern u1="&#xca;" u2="H" k="-86" />
<hkern u1="&#xca;" u2="G" k="-43" />
<hkern u1="&#xca;" u2="F" k="-86" />
<hkern u1="&#xca;" u2="E" k="-86" />
<hkern u1="&#xca;" u2="D" k="-86" />
<hkern u1="&#xca;" u2="B" k="-86" />
<hkern u1="&#xca;" u2="&#x2f;" k="-86" />
<hkern u1="&#xcb;" u2="Z" k="-86" />
<hkern u1="&#xcb;" u2="Y" k="41" />
<hkern u1="&#xcb;" u2="W" k="-43" />
<hkern u1="&#xcb;" u2="V" k="-43" />
<hkern u1="&#xcb;" u2="T" k="41" />
<hkern u1="&#xcb;" u2="S" k="-43" />
<hkern u1="&#xcb;" u2="R" k="-86" />
<hkern u1="&#xcb;" u2="Q" k="-43" />
<hkern u1="&#xcb;" u2="P" k="-86" />
<hkern u1="&#xcb;" u2="N" k="-86" />
<hkern u1="&#xcb;" u2="M" k="-86" />
<hkern u1="&#xcb;" u2="L" k="-86" />
<hkern u1="&#xcb;" u2="K" k="-86" />
<hkern u1="&#xcb;" u2="J" k="41" />
<hkern u1="&#xcb;" u2="I" k="-86" />
<hkern u1="&#xcb;" u2="H" k="-86" />
<hkern u1="&#xcb;" u2="G" k="-43" />
<hkern u1="&#xcb;" u2="F" k="-86" />
<hkern u1="&#xcb;" u2="E" k="-86" />
<hkern u1="&#xcb;" u2="D" k="-86" />
<hkern u1="&#xcb;" u2="B" k="-86" />
<hkern u1="&#xcb;" u2="&#x2f;" k="-86" />
<hkern u1="&#xd0;" u2="q" k="-43" />
<hkern u1="&#xd0;" u2="g" k="-43" />
<hkern u1="&#xd0;" u2="d" k="-43" />
<hkern u1="&#xd0;" u2="Y" k="84" />
<hkern u1="&#xd0;" u2="X" k="84" />
<hkern u1="&#xd0;" u2="W" k="84" />
<hkern u1="&#xd0;" u2="V" k="41" />
<hkern u1="&#xd0;" u2="T" k="84" />
<hkern u1="&#xd0;" u2="S" k="-43" />
<hkern u1="&#xd0;" u2="Q" k="-43" />
<hkern u1="&#xd0;" u2="J" k="84" />
<hkern u1="&#xd0;" u2="G" k="-43" />
<hkern u1="&#xd1;" u2="Z" k="-86" />
<hkern u1="&#xd1;" u2="Y" k="-43" />
<hkern u1="&#xd1;" u2="W" k="-43" />
<hkern u1="&#xd1;" u2="V" k="-43" />
<hkern u1="&#xd1;" u2="T" k="-43" />
<hkern u1="&#xd1;" u2="S" k="-43" />
<hkern u1="&#xd1;" u2="R" k="-86" />
<hkern u1="&#xd1;" u2="Q" k="-43" />
<hkern u1="&#xd1;" u2="P" k="-86" />
<hkern u1="&#xd1;" u2="N" k="-86" />
<hkern u1="&#xd1;" u2="M" k="-86" />
<hkern u1="&#xd1;" u2="L" k="-86" />
<hkern u1="&#xd1;" u2="K" k="-86" />
<hkern u1="&#xd1;" u2="J" k="41" />
<hkern u1="&#xd1;" u2="I" k="-86" />
<hkern u1="&#xd1;" u2="H" k="-86" />
<hkern u1="&#xd1;" u2="G" k="-43" />
<hkern u1="&#xd1;" u2="F" k="-86" />
<hkern u1="&#xd1;" u2="E" k="-86" />
<hkern u1="&#xd1;" u2="D" k="-86" />
<hkern u1="&#xd1;" u2="B" k="-86" />
<hkern u1="&#xd1;" u2="&#x2f;" k="-86" />
<hkern u1="&#xd2;" u2="x" k="84" />
<hkern u1="&#xd2;" u2="w" k="-43" />
<hkern u1="&#xd2;" u2="v" k="-43" />
<hkern u1="&#xd2;" u2="q" k="-43" />
<hkern u1="&#xd2;" u2="g" k="-43" />
<hkern u1="&#xd2;" u2="d" k="-43" />
<hkern u1="&#xd2;" u2="Y" k="127" />
<hkern u1="&#xd2;" u2="X" k="84" />
<hkern u1="&#xd2;" u2="W" k="84" />
<hkern u1="&#xd2;" u2="V" k="84" />
<hkern u1="&#xd2;" u2="T" k="127" />
<hkern u1="&#xd2;" u2="Q" k="-43" />
<hkern u1="&#xd2;" u2="J" k="84" />
<hkern u1="&#xd2;" u2="G" k="-43" />
<hkern u1="&#xd3;" u2="x" k="84" />
<hkern u1="&#xd3;" u2="w" k="-43" />
<hkern u1="&#xd3;" u2="v" k="-43" />
<hkern u1="&#xd3;" u2="q" k="-43" />
<hkern u1="&#xd3;" u2="g" k="-43" />
<hkern u1="&#xd3;" u2="d" k="-43" />
<hkern u1="&#xd3;" u2="Y" k="127" />
<hkern u1="&#xd3;" u2="X" k="84" />
<hkern u1="&#xd3;" u2="W" k="84" />
<hkern u1="&#xd3;" u2="V" k="84" />
<hkern u1="&#xd3;" u2="T" k="127" />
<hkern u1="&#xd3;" u2="Q" k="-43" />
<hkern u1="&#xd3;" u2="J" k="84" />
<hkern u1="&#xd3;" u2="G" k="-43" />
<hkern u1="&#xd4;" u2="x" k="84" />
<hkern u1="&#xd4;" u2="w" k="-43" />
<hkern u1="&#xd4;" u2="v" k="-43" />
<hkern u1="&#xd4;" u2="q" k="-43" />
<hkern u1="&#xd4;" u2="g" k="-43" />
<hkern u1="&#xd4;" u2="d" k="-43" />
<hkern u1="&#xd4;" u2="Y" k="127" />
<hkern u1="&#xd4;" u2="X" k="84" />
<hkern u1="&#xd4;" u2="W" k="84" />
<hkern u1="&#xd4;" u2="V" k="84" />
<hkern u1="&#xd4;" u2="T" k="127" />
<hkern u1="&#xd4;" u2="Q" k="-43" />
<hkern u1="&#xd4;" u2="J" k="84" />
<hkern u1="&#xd4;" u2="G" k="-43" />
<hkern u1="&#xd5;" u2="x" k="84" />
<hkern u1="&#xd5;" u2="w" k="-43" />
<hkern u1="&#xd5;" u2="v" k="-43" />
<hkern u1="&#xd5;" u2="q" k="-43" />
<hkern u1="&#xd5;" u2="g" k="-43" />
<hkern u1="&#xd5;" u2="d" k="-43" />
<hkern u1="&#xd5;" u2="Y" k="127" />
<hkern u1="&#xd5;" u2="X" k="84" />
<hkern u1="&#xd5;" u2="W" k="84" />
<hkern u1="&#xd5;" u2="V" k="84" />
<hkern u1="&#xd5;" u2="T" k="127" />
<hkern u1="&#xd5;" u2="Q" k="-43" />
<hkern u1="&#xd5;" u2="J" k="84" />
<hkern u1="&#xd5;" u2="G" k="-43" />
<hkern u1="&#xd6;" u2="x" k="84" />
<hkern u1="&#xd6;" u2="w" k="-43" />
<hkern u1="&#xd6;" u2="v" k="-43" />
<hkern u1="&#xd6;" u2="q" k="-43" />
<hkern u1="&#xd6;" u2="g" k="-43" />
<hkern u1="&#xd6;" u2="d" k="-43" />
<hkern u1="&#xd6;" u2="Y" k="127" />
<hkern u1="&#xd6;" u2="X" k="84" />
<hkern u1="&#xd6;" u2="W" k="84" />
<hkern u1="&#xd6;" u2="V" k="84" />
<hkern u1="&#xd6;" u2="T" k="127" />
<hkern u1="&#xd6;" u2="Q" k="-43" />
<hkern u1="&#xd6;" u2="J" k="84" />
<hkern u1="&#xd6;" u2="G" k="-43" />
<hkern u1="&#xd8;" u2="x" k="84" />
<hkern u1="&#xd8;" u2="w" k="-43" />
<hkern u1="&#xd8;" u2="v" k="-43" />
<hkern u1="&#xd8;" u2="q" k="-43" />
<hkern u1="&#xd8;" u2="g" k="-43" />
<hkern u1="&#xd8;" u2="d" k="-43" />
<hkern u1="&#xd8;" u2="Y" k="127" />
<hkern u1="&#xd8;" u2="X" k="84" />
<hkern u1="&#xd8;" u2="W" k="84" />
<hkern u1="&#xd8;" u2="V" k="84" />
<hkern u1="&#xd8;" u2="T" k="127" />
<hkern u1="&#xd8;" u2="Q" k="-43" />
<hkern u1="&#xd8;" u2="J" k="84" />
<hkern u1="&#xd8;" u2="G" k="-43" />
<hkern u1="&#xd9;" u2="Z" k="-86" />
<hkern u1="&#xd9;" u2="Y" k="-43" />
<hkern u1="&#xd9;" u2="W" k="-43" />
<hkern u1="&#xd9;" u2="V" k="-43" />
<hkern u1="&#xd9;" u2="T" k="-43" />
<hkern u1="&#xd9;" u2="S" k="-43" />
<hkern u1="&#xd9;" u2="R" k="-86" />
<hkern u1="&#xd9;" u2="Q" k="-43" />
<hkern u1="&#xd9;" u2="P" k="-86" />
<hkern u1="&#xd9;" u2="N" k="-86" />
<hkern u1="&#xd9;" u2="M" k="-86" />
<hkern u1="&#xd9;" u2="L" k="-86" />
<hkern u1="&#xd9;" u2="K" k="-86" />
<hkern u1="&#xd9;" u2="J" k="41" />
<hkern u1="&#xd9;" u2="I" k="-86" />
<hkern u1="&#xd9;" u2="H" k="-86" />
<hkern u1="&#xd9;" u2="G" k="-43" />
<hkern u1="&#xd9;" u2="F" k="-86" />
<hkern u1="&#xd9;" u2="E" k="-86" />
<hkern u1="&#xd9;" u2="D" k="-86" />
<hkern u1="&#xd9;" u2="B" k="-86" />
<hkern u1="&#xd9;" u2="&#x2f;" k="-86" />
<hkern u1="&#xda;" u2="Z" k="-86" />
<hkern u1="&#xda;" u2="Y" k="-43" />
<hkern u1="&#xda;" u2="W" k="-43" />
<hkern u1="&#xda;" u2="V" k="-43" />
<hkern u1="&#xda;" u2="T" k="-43" />
<hkern u1="&#xda;" u2="S" k="-43" />
<hkern u1="&#xda;" u2="R" k="-86" />
<hkern u1="&#xda;" u2="Q" k="-43" />
<hkern u1="&#xda;" u2="P" k="-86" />
<hkern u1="&#xda;" u2="N" k="-86" />
<hkern u1="&#xda;" u2="M" k="-86" />
<hkern u1="&#xda;" u2="L" k="-86" />
<hkern u1="&#xda;" u2="K" k="-86" />
<hkern u1="&#xda;" u2="J" k="41" />
<hkern u1="&#xda;" u2="I" k="-86" />
<hkern u1="&#xda;" u2="H" k="-86" />
<hkern u1="&#xda;" u2="G" k="-43" />
<hkern u1="&#xda;" u2="F" k="-86" />
<hkern u1="&#xda;" u2="E" k="-86" />
<hkern u1="&#xda;" u2="D" k="-86" />
<hkern u1="&#xda;" u2="B" k="-86" />
<hkern u1="&#xda;" u2="&#x2f;" k="-86" />
<hkern u1="&#xdb;" u2="Z" k="-86" />
<hkern u1="&#xdb;" u2="Y" k="-43" />
<hkern u1="&#xdb;" u2="W" k="-43" />
<hkern u1="&#xdb;" u2="V" k="-43" />
<hkern u1="&#xdb;" u2="T" k="-43" />
<hkern u1="&#xdb;" u2="S" k="-43" />
<hkern u1="&#xdb;" u2="R" k="-86" />
<hkern u1="&#xdb;" u2="Q" k="-43" />
<hkern u1="&#xdb;" u2="P" k="-86" />
<hkern u1="&#xdb;" u2="N" k="-86" />
<hkern u1="&#xdb;" u2="M" k="-86" />
<hkern u1="&#xdb;" u2="L" k="-86" />
<hkern u1="&#xdb;" u2="K" k="-86" />
<hkern u1="&#xdb;" u2="J" k="41" />
<hkern u1="&#xdb;" u2="I" k="-86" />
<hkern u1="&#xdb;" u2="H" k="-86" />
<hkern u1="&#xdb;" u2="G" k="-43" />
<hkern u1="&#xdb;" u2="F" k="-86" />
<hkern u1="&#xdb;" u2="E" k="-86" />
<hkern u1="&#xdb;" u2="D" k="-86" />
<hkern u1="&#xdb;" u2="B" k="-86" />
<hkern u1="&#xdb;" u2="&#x2f;" k="-86" />
<hkern u1="&#xdc;" u2="Z" k="-86" />
<hkern u1="&#xdc;" u2="Y" k="-43" />
<hkern u1="&#xdc;" u2="W" k="-43" />
<hkern u1="&#xdc;" u2="V" k="-43" />
<hkern u1="&#xdc;" u2="T" k="-43" />
<hkern u1="&#xdc;" u2="S" k="-43" />
<hkern u1="&#xdc;" u2="R" k="-86" />
<hkern u1="&#xdc;" u2="Q" k="-43" />
<hkern u1="&#xdc;" u2="P" k="-86" />
<hkern u1="&#xdc;" u2="N" k="-86" />
<hkern u1="&#xdc;" u2="M" k="-86" />
<hkern u1="&#xdc;" u2="L" k="-86" />
<hkern u1="&#xdc;" u2="K" k="-86" />
<hkern u1="&#xdc;" u2="J" k="41" />
<hkern u1="&#xdc;" u2="I" k="-86" />
<hkern u1="&#xdc;" u2="H" k="-86" />
<hkern u1="&#xdc;" u2="G" k="-43" />
<hkern u1="&#xdc;" u2="F" k="-86" />
<hkern u1="&#xdc;" u2="E" k="-86" />
<hkern u1="&#xdc;" u2="D" k="-86" />
<hkern u1="&#xdc;" u2="B" k="-86" />
<hkern u1="&#xdc;" u2="&#x2f;" k="-86" />
<hkern u1="&#xe7;" u2="k" k="41" />
<hkern u1="&#xe7;" u2="h" k="41" />
<hkern u1="&#xf2;" u2="x" k="41" />
<hkern u1="&#xf2;" u2="w" k="41" />
<hkern u1="&#xf2;" u2="v" k="41" />
<hkern u1="&#xf3;" u2="x" k="41" />
<hkern u1="&#xf3;" u2="w" k="41" />
<hkern u1="&#xf3;" u2="v" k="41" />
<hkern u1="&#xf4;" u2="x" k="41" />
<hkern u1="&#xf4;" u2="w" k="41" />
<hkern u1="&#xf4;" u2="v" k="41" />
<hkern u1="&#xf5;" u2="x" k="41" />
<hkern u1="&#xf5;" u2="w" k="41" />
<hkern u1="&#xf5;" u2="v" k="41" />
<hkern u1="&#xf6;" u2="x" k="41" />
<hkern u1="&#xf6;" u2="w" k="41" />
<hkern u1="&#xf6;" u2="v" k="41" />
<hkern u1="&#xf8;" u2="x" k="41" />
<hkern u1="&#xf8;" u2="w" k="41" />
<hkern u1="&#xf8;" u2="v" k="41" />
<hkern u1="&#xfd;" u2="t" k="-43" />
<hkern u1="&#xfd;" u2="f" k="-43" />
<hkern u1="&#xff;" u2="t" k="-43" />
<hkern u1="&#xff;" u2="f" k="-43" />
<hkern u1="&#x152;" u2="Z" k="-86" />
<hkern u1="&#x152;" u2="Y" k="41" />
<hkern u1="&#x152;" u2="W" k="-43" />
<hkern u1="&#x152;" u2="V" k="-43" />
<hkern u1="&#x152;" u2="T" k="41" />
<hkern u1="&#x152;" u2="S" k="-43" />
<hkern u1="&#x152;" u2="R" k="-86" />
<hkern u1="&#x152;" u2="Q" k="-43" />
<hkern u1="&#x152;" u2="P" k="-86" />
<hkern u1="&#x152;" u2="N" k="-86" />
<hkern u1="&#x152;" u2="M" k="-86" />
<hkern u1="&#x152;" u2="L" k="-86" />
<hkern u1="&#x152;" u2="K" k="-86" />
<hkern u1="&#x152;" u2="J" k="41" />
<hkern u1="&#x152;" u2="I" k="-86" />
<hkern u1="&#x152;" u2="H" k="-86" />
<hkern u1="&#x152;" u2="G" k="-43" />
<hkern u1="&#x152;" u2="F" k="-86" />
<hkern u1="&#x152;" u2="E" k="-86" />
<hkern u1="&#x152;" u2="D" k="-86" />
<hkern u1="&#x152;" u2="B" k="-86" />
<hkern u1="&#x152;" u2="&#x2f;" k="-86" />
<hkern u1="&#x153;" u2="x" k="41" />
<hkern u1="&#x153;" u2="w" k="41" />
<hkern u1="&#x153;" u2="v" k="41" />
<hkern u1="&#x2013;" u2="Y" k="168" />
<hkern u1="&#x2013;" u2="X" k="84" />
<hkern u1="&#x2013;" u2="T" k="168" />
<hkern u1="&#x2013;" u2="S" k="-86" />
<hkern u1="&#x2013;" u2="Q" k="-86" />
<hkern u1="&#x2013;" u2="J" k="168" />
<hkern u1="&#x2013;" u2="G" k="-86" />
<hkern u1="&#x2014;" u2="Y" k="168" />
<hkern u1="&#x2014;" u2="X" k="84" />
<hkern u1="&#x2014;" u2="T" k="168" />
<hkern u1="&#x2014;" u2="S" k="-86" />
<hkern u1="&#x2014;" u2="Q" k="-86" />
<hkern u1="&#x2014;" u2="J" k="168" />
<hkern u1="&#x2014;" u2="G" k="-86" />
<hkern u1="&#x2018;" u2="J" k="297" />
<hkern u1="&#x2019;" u2="s" k="33" />
<hkern u1="&#x201a;" u2="Y" k="168" />
<hkern u1="&#x201a;" u2="W" k="168" />
<hkern u1="&#x201a;" u2="V" k="168" />
<hkern u1="&#x201a;" u2="T" k="168" />
<hkern u1="&#x201c;" u2="J" k="297" />
<hkern u1="&#x201e;" u2="Y" k="168" />
<hkern u1="&#x201e;" u2="W" k="168" />
<hkern u1="&#x201e;" u2="V" k="168" />
<hkern u1="&#x201e;" u2="T" k="168" />
<hkern g1="C,Ccedilla" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="c,ccedilla" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="C,Ccedilla" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="D,Eth" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="D,Eth" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="D,Eth" 	g2="c,ccedilla" 	k="-43" />
<hkern g1="D,Eth" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="-43" />
<hkern g1="D,Eth" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="D,Eth" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="L" 	g2="C,Ccedilla" 	k="211" />
<hkern g1="L" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="211" />
<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="84" />
<hkern g1="L" 	g2="c,ccedilla" 	k="84" />
<hkern g1="L" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="84" />
<hkern g1="L" 	g2="hyphen,uni00AD,endash,emdash" 	k="254" />
<hkern g1="L" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="84" />
<hkern g1="L" 	g2="quoteright,quotedblright" 	k="340" />
<hkern g1="L" 	g2="y,yacute,ydieresis" 	k="84" />
<hkern g1="N,Ntilde" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="N,Ntilde" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="N,Ntilde" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="c,ccedilla" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="S" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-43" />
<hkern g1="S" 	g2="c,ccedilla" 	k="-43" />
<hkern g1="S" 	g2="e,egrave,eacute,ecircumflex,edieresis" 	k="-43" />
<hkern g1="S" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="41" />
<hkern g1="Z" 	g2="C,Ccedilla" 	k="-43" />
<hkern g1="Z" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-43" />
<hkern g1="Z" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="-86" />
<hkern g1="Z" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="-43" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	g2="y,yacute,ydieresis" 	k="41" />
<hkern g1="y,yacute,ydieresis" 	g2="c,ccedilla" 	k="-43" />
<hkern g1="y,yacute,ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" 	k="-43" />
<hkern g1="y,yacute,ydieresis" 	g2="comma,period" 	k="84" />
<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="C,Ccedilla" 	k="-86" />
<hkern g1="hyphen,uni00AD,endash,emdash" 	g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" 	k="-86" />
<hkern g1="quoteleft,quotedblleft" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" 	k="84" />
</font>
</defs></svg>