-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuikDotSans.sfd
4361 lines (4219 loc) · 112 KB
/
QuikDotSans.sfd
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
SplineFontDB: 3.2
FontName: QuikDotSans
FullName: QuikDot Sans
FamilyName: QuikDot Sans
Weight: Book
Copyright: Dotsies glyphs created by @refola, 2020-05-11.\nVersion 0.9.\n\nBased on Quikscript Sans, with:\nGlyphs created by Alternate Script Bureau, 2017-11-03\nVersion 1.4.1.1 created on 2019-03-13
Version: 0.9
ItalicAngle: 0
UnderlinePosition: -188
UnderlineWidth: 48
Ascent: 1638
Descent: 410
InvalidEm: 0
sfntRevision: 0x00010000
LayerCount: 2
Layer: 0 1 "Back" 1
Layer: 1 1 "Fore" 0
XUID: [1021 578 453645874 15151264]
StyleMap: 0x0040
FSType: 4
OS2Version: 1
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1152836617
ModificationTime: 1589266647
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
LineGap: 0
VLineGap: 0
Panose: 2 0 0 0 0 0 0 0 0 0
OS2TypoAscent: 1900
OS2TypoAOffset: 0
OS2TypoDescent: -600
OS2TypoDOffset: 0
OS2TypoLinegap: 0
OS2WinAscent: 1900
OS2WinAOffset: 0
OS2WinDescent: 600
OS2WinDOffset: 0
HheadAscent: 1900
HheadAOffset: 0
HheadDescent: -600
HheadDOffset: 0
OS2SubXSize: 1434
OS2SubYSize: 1331
OS2SubXOff: 0
OS2SubYOff: 283
OS2SupXSize: 1434
OS2SupYSize: 1331
OS2SupXOff: 0
OS2SupYOff: 977
OS2StrikeYSize: 102
OS2StrikeYPos: 530
OS2Vendor: 'HL '
OS2CodePages: 00000001.00000000
OS2UnicodeRanges: 80000003.10000000.00000000.00000000
Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0" { "'liga' Standard Ligatures lookup 0-1" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0" { "kerning_table" [307,30,2] } ['kern' ('DFLT' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
ShortTable: cvt 2
68
1297
EndShort
ShortTable: maxp 16
1
0
67
32
2
0
0
2
8
64
10
0
82
46
0
0
EndShort
LangName: 1033 "" "" "Regular" "FontForge 20190801 : QuikDotSans : 2020-05-11" "" "Version 0.9; 11 May 2020" "" "QDSans" "" "Perry Hartono (c) 2017-11-03, @refola (c) 2020-05-11" "Quikdot Sans is a copy of Quikscript Sans with added Dotsies characters. The original description is below.+AAoACgAA-Quikscript Sans (formerly Quikscript Geometric) is a sans-serif font for Quikscript, an alternate phonetic alphabet for the English language. Created by 'pcdandy' as part of the Alternate Script Bureau project, Quikscript Sans is intended to have a more serious character than the other (few) Quikscript fonts out there, and merge seamlessly with existing sans-serif fonts such as Noto Sans.+AAoACgAA-This font is based on Frog Orbits' Private Use Area (PUA) encoding in Unicode, which can be found here: https://www.frogorbits.com/qs/csur/." "" "" "Copyright (c) 2020, @refola+AAoA-with Reserved Font Name Quikdot Sans.+AAoACgAA-Copyright (c) 2019, Perry Hartono,+AAoA-with Reserved Font Name Quikscript Sans.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL"
GaspTable: 1 65535 2 1
Encoding: UnicodeBmp
UnicodeInterp: none
NameList: Adobe Glyph List
DisplaySize: -36
AntiAlias: 1
FitToEm: 0
WidthSeparation: 307
WinInfo: 7800 25 17
BeginPrivate: 0
EndPrivate
TeXData: 1 0 0 512000 256000 170666 0 -1048576 170666 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 65545 142
StartChar: .notdef
Encoding: 65536 -1 0
Width: 748
Flags: W
HStem: 0 68<136 544> 1297 68<136 544>
VStem: 68 68<68 1297> 544 68<68 1297>
TtInstrs:
PUSHB_2
1
0
MDAP[rnd]
ALIGNRP
PUSHB_3
7
4
0
MIRP[min,rnd,black]
SHP[rp2]
PUSHB_2
6
5
MDRP[rp0,min,rnd,grey]
ALIGNRP
PUSHB_3
3
2
0
MIRP[min,rnd,black]
SHP[rp2]
SVTCA[y-axis]
PUSHB_2
3
0
MDAP[rnd]
ALIGNRP
PUSHB_3
5
4
0
MIRP[min,rnd,black]
SHP[rp2]
PUSHB_3
7
6
1
MIRP[rp0,min,rnd,grey]
ALIGNRP
PUSHB_3
1
2
0
MIRP[min,rnd,black]
SHP[rp2]
EndTTInstrs
LayerCount: 2
Fore
SplineSet
68 0 m 1,0,-1
68 1365 l 1,1,-1
612 1365 l 1,2,-1
612 0 l 1,3,-1
68 0 l 1,0,-1
136 68 m 1,4,-1
544 68 l 1,5,-1
544 1297 l 1,6,-1
136 1297 l 1,7,-1
136 68 l 1,4,-1
EndSplineSet
Validated: 1
EndChar
StartChar: glyph1
Encoding: 0 -1 1
AltUni2: 000000.ffffffff.0
Width: 2048
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni000D
Encoding: 13 13 2
Width: 204
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: space
Encoding: 32 32 3
Width: 1000
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni00A0
Encoding: 160 160 4
Width: 1000
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2000
Encoding: 8192 8192 5
Width: 974
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2001
Encoding: 8193 8193 6
Width: 1948
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2002
Encoding: 8194 8194 7
Width: 974
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2003
Encoding: 8195 8195 8
Width: 1948
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2004
Encoding: 8196 8196 9
Width: 649
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2005
Encoding: 8197 8197 10
Width: 487
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2006
Encoding: 8198 8198 11
Width: 324
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2007
Encoding: 8199 8199 12
Width: 324
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2008
Encoding: 8200 8200 13
Width: 243
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni2009
Encoding: 8201 8201 14
Width: 389
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni200A
Encoding: 8202 8202 15
Width: 108
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni202F
Encoding: 8239 8239 16
Width: 389
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uni205F
Encoding: 8287 8287 17
Width: 487
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uniE000
Encoding: 57344 57344 18
Width: 500
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: uniE650
Encoding: 58960 58960 19
Width: 751
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 0 21G<441 601> 1456 160<308.502 392.467>
VStem: 100 159<1109 1295> 441 160<0 1435.34>
LayerCount: 2
Fore
SplineSet
350 1616 m 0,0,1
393 1616 393 1616 436 1598 c 0,2,3
475 1582 475 1582 505 1552 c 0,4,5
549 1508 549 1508 575 1433 c 0,6,7
585 1403 585 1403 593 1360 c 0,8,9
600 1321 600 1321 600 1301 c 2,10,-1
601 1280 l 1,11,-1
601 0 l 1,12,-1
441 0 l 1,13,-1
441 1280 l 2,14,15
440 1332 440 1332 424 1383 c 0,16,17
411 1424 411 1424 393 1440 c 0,18,19
376 1455 376 1455 350 1456 c 128,-1,20
324 1457 324 1457 308 1440 c 0,21,22
291 1422 291 1422 277 1383 c 0,23,24
269 1362 269 1362 265 1335 c 0,25,26
261 1310 261 1310 260 1295 c 2,27,-1
259 1280 l 1,28,-1
259 1109 l 1,29,-1
100 1109 l 1,30,-1
100 1280 l 2,31,32
100 1283 100 1283 100 1286 c 128,-1,33
100 1289 100 1289 100 1291 c 0,34,35
100 1296 l 0,36,37
100 1300 100 1300 100 1301 c 0,38,39
100 1303 100 1303 100 1305 c 128,-1,40
100 1307 100 1307 100 1309 c 128,-1,41
100 1311 100 1311 100 1313 c 128,-1,42
100 1315 100 1315 100 1316 c 0,43,44
100 1360 100 1360 125 1433 c 0,45,46
150 1507 150 1507 195 1552 c 0,47,48
224 1581 224 1581 264 1598 c 0,49,50
305 1616 305 1616 350 1616 c 0,0,1
EndSplineSet
Validated: 1
Kerns2: 38 -80 "kerning_table" 36 -120 "kerning_table"
EndChar
StartChar: uniE651
Encoding: 58961 58961 20
Width: 834
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: -421 159<284.118 416.112> 6 159<285.088 441 601 734>
VStem: 100 159<-238.884 -15.8613> 441 160<-240.75 6 165 1195>
LayerCount: 2
Fore
SplineSet
441 1195 m 1,0,-1
601 1195 l 1,1,-1
601 165 l 1,2,-1
734 165 l 1,3,-1
734 6 l 1,4,-1
601 6 l 1,5,-1
601 -128 l 2,6,7
601 -250 601 -250 528 -335 c 0,8,9
454 -421 454 -421 350 -421 c 0,10,11
245 -421 245 -421 173 -336 c 0,12,13
100 -250 100 -250 100 -128 c 0,14,15
100 -7 100 -7 173 79 c 128,-1,16
246 165 246 165 350 165 c 2,17,-1
441 165 l 1,18,-1
441 1195 l 1,0,-1
350 6 m 2,19,20
322 6 322 6 290 -30 c 0,21,22
259 -65 259 -65 259 -128 c 0,23,24
259 -189 259 -189 290 -226 c 0,25,26
320 -262 320 -262 350 -262 c 128,-1,27
380 -262 380 -262 411 -226 c 0,28,29
441 -191 441 -191 441 -128 c 2,30,-1
441 6 l 1,31,-1
350 6 l 2,19,20
EndSplineSet
Validated: 1
Kerns2: 57 -80 "kerning_table" 56 -80 "kerning_table" 55 -80 "kerning_table" 46 -80 "kerning_table" 45 -80 "kerning_table" 36 -80 "kerning_table" 35 -40 "kerning_table" 33 -80 "kerning_table" 19 -80 "kerning_table"
EndChar
StartChar: uniE652
Encoding: 58962 58962 21
Width: 459
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 0 21G<150 309>
VStem: 150 159<0 1621>
LayerCount: 2
Fore
SplineSet
150 1621 m 1,0,-1
309 1621 l 1,1,-1
309 0 l 1,2,-1
150 0 l 1,3,-1
150 1621 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 65 -80 "kerning_table" 38 -80 "kerning_table" 36 -120 "kerning_table"
EndChar
StartChar: uniE653
Encoding: 58963 58963 22
Width: 740
VWidth: 1997
GlyphClass: 2
Flags: W
VStem: 150 159<-127 1195>
LayerCount: 2
Fore
SplineSet
150 1195 m 1,0,-1
309 1195 l 1,1,-1
309 -127 l 1,2,-1
502 210 l 1,3,-1
640 131 l 1,4,-1
299 -466 l 1,5,-1
150 -427 l 1,6,-1
150 1195 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 70 -120 "kerning_table" 67 -80 "kerning_table" 23 -80 "kerning_table" 61 -80 "kerning_table" 60 -80 "kerning_table" 66 -80 "kerning_table" 65 -80 "kerning_table" 44 -80 "kerning_table" 46 -120 "kerning_table" 45 -120 "kerning_table" 41 -120 "kerning_table" 34 -80 "kerning_table" 33 -120 "kerning_table" 57 -120 "kerning_table" 56 -120 "kerning_table" 55 -120 "kerning_table" 19 -180 "kerning_table" 36 -120 "kerning_table"
EndChar
StartChar: uniE654
Encoding: 58964 58964 23
Width: 805
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 6 159<382.51 692>
VStem: 100 159<326.852 868.148>
LayerCount: 2
Fore
SplineSet
236 1635 m 1,0,-1
705 1166 l 1,1,-1
649 1030 l 1,2,-1
521 1030 l 2,3,4
448 1030 448 1030 403 1001 c 128,-1,5
358 972 358 972 324 911 c 0,6,7
259 795 259 795 259 597.5 c 128,-1,8
259 400 259 400 324 284 c 0,9,10
358 223 358 223 403 194 c 128,-1,11
448 165 448 165 521 165 c 2,12,-1
692 165 l 1,13,-1
692 6 l 1,14,-1
521 6 l 2,15,16
410 6 410 6 322.5 61 c 128,-1,17
235 116 235 116 185 207 c 0,18,19
100 359 100 359 100 597.5 c 128,-1,20
100 836 100 836 185 988 c 0,21,22
228 1065 228 1065 299 1117.5 c 128,-1,23
370 1170 370 1170 461 1184 c 1,24,-1
123 1522 l 1,25,-1
236 1635 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 46 -80 "kerning_table" 36 -80 "kerning_table"
EndChar
StartChar: uniE655
Encoding: 58965 58965 24
Width: 834
VWidth: 1963
GlyphClass: 2
Flags: W
HStem: -427 160<284.878 501.091> 0 159<650 734> 1024 159<382.51 734>
VStem: 100 159<-243.841 -25.6633 387.856 862.188> 527 159<-243.153 -34.6724>
LayerCount: 2
Fore
SplineSet
393 0 m 2,0,1
348 0 348 0 325 -11 c 128,-1,2
302 -22 302 -22 286 -43 c 0,3,4
259 -79 259 -79 259 -134 c 128,-1,5
259 -189 259 -189 286 -225 c 0,6,7
296 -239 296 -239 307 -247 c 128,-1,8
318 -255 318 -255 340 -261 c 128,-1,9
362 -267 362 -267 393 -267 c 0,10,11
438 -267 438 -267 461 -256.5 c 128,-1,12
484 -246 484 -246 500 -225 c 0,13,14
526 -190 526 -190 527 -135 c 0,15,16
526 -106 526 -106 514.5 -81.5 c 128,-1,17
503 -57 503 -57 477 -28 c 0,18,19
467 -16 467 -16 451 0 c 1,20,-1
393 0 l 2,0,1
521 1183 m 2,21,-1
734 1183 l 1,22,-1
734 1024 l 1,23,-1
521 1024 l 2,24,25
448 1024 448 1024 403 995 c 128,-1,26
358 966 358 966 324 905 c 0,27,28
259 789 259 789 259 592 c 0,29,30
259 525 259 525 272.5 469.5 c 128,-1,31
286 414 286 414 315 369 c 128,-1,32
344 324 344 324 372 293 c 128,-1,33
400 262 400 262 445 221 c 0,34,35
455 212 455 212 466.5 201.5 c 128,-1,36
478 191 478 191 491.5 179 c 128,-1,37
505 167 505 167 514 159 c 1,38,-1
734 159 l 1,39,-1
734 0 l 1,40,-1
650 0 l 1,41,42
684 -65 684 -65 686 -132 c 2,43,-1
686 -133 l 1,44,-1
686 -134 l 2,45,46
686 -242 686 -242 627 -320 c 0,47,48
591 -368 591 -368 530 -397.5 c 128,-1,49
469 -427 469 -427 393 -427 c 128,-1,50
317 -427 317 -427 256 -397.5 c 128,-1,51
195 -368 195 -368 159 -320 c 0,52,53
100 -242 100 -242 100 -133.5 c 128,-1,54
100 -25 100 -25 159 53 c 0,55,56
208 118 208 118 294 144 c 1,57,58
253 185 253 185 221.5 227.5 c 128,-1,59
190 270 190 270 161 325.5 c 128,-1,60
132 381 132 381 116 449 c 128,-1,61
100 517 100 517 100 592 c 0,62,63
100 830 100 830 185 982 c 0,64,65
235 1072 235 1072 322.5 1127.5 c 128,-1,66
410 1183 410 1183 521 1183 c 2,21,-1
EndSplineSet
Validated: 1025
Kerns2: 46 -80 "kerning_table"
EndChar
StartChar: uniE656
Encoding: 58966 58966 25
Width: 834
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 1456 160<100 451.548>
VStem: 575 159<704.122 1290.55>
LayerCount: 2
Fore
SplineSet
100 1616 m 1,0,-1
313 1616 l 2,1,2
424 1616 424 1616 511.5 1560.5 c 128,-1,3
599 1505 599 1505 650 1415 c 0,4,5
734 1265 734 1265 734 1030 c 0,6,7
734 1027 734 1027 734 1024 c 0,8,9
734 877 734 877 703.5 741.5 c 128,-1,10
673 606 673 606 624 507.5 c 128,-1,11
575 409 575 409 515.5 324 c 128,-1,12
456 239 456 239 397 183.5 c 128,-1,13
338 128 338 128 289 88.5 c 128,-1,14
240 49 240 49 209 32 c 2,15,-1
178 14 l 1,16,-1
107 157 l 1,17,18
117 162 117 162 134 171 c 128,-1,19
151 180 151 180 199.5 216 c 128,-1,20
248 252 248 252 292 295.5 c 128,-1,21
336 339 336 339 390 413 c 128,-1,22
444 487 444 487 483 571 c 128,-1,23
522 655 522 655 548.5 774 c 128,-1,24
575 893 575 893 575 1024 c 0,25,26
575 1221 575 1221 510 1337 c 0,27,28
487 1378 487 1378 462 1403 c 128,-1,29
437 1428 437 1428 400 1442 c 128,-1,30
363 1456 363 1456 313 1456 c 2,31,-1
100 1456 l 1,32,-1
100 1616 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 69 -80 "kerning_table" 54 -80 "kerning_table" 52 -80 "kerning_table" 49 -120 "kerning_table" 65 -180 "kerning_table" 38 -180 "kerning_table" 20 -120 "kerning_table" 36 -240 "kerning_table"
EndChar
StartChar: uniE657
Encoding: 58967 58967 26
Width: 834
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: -421 159<382.51 734>
VStem: 100 159<-99.9659 490.583>
LayerCount: 2
Fore
SplineSet
656 1181 m 1,0,-1
727 1038 l 1,1,2
717 1033 717 1033 700.5 1023.5 c 128,-1,3
684 1014 684 1014 635.5 978 c 128,-1,4
587 942 587 942 542.5 899 c 128,-1,5
498 856 498 856 444 782 c 128,-1,6
390 708 390 708 351.5 624 c 128,-1,7
313 540 313 540 286 421 c 128,-1,8
259 302 259 302 259 171 c 0,9,10
259 -26 259 -26 324 -143 c 0,11,12
358 -204 358 -204 403 -233 c 128,-1,13
448 -262 448 -262 521 -262 c 2,14,-1
734 -262 l 1,15,-1
734 -421 l 1,16,-1
521 -421 l 2,17,18
410 -421 410 -421 322.5 -365.5 c 128,-1,19
235 -310 235 -310 185 -220 c 0,20,21
100 -68 100 -68 100 171 c 0,22,23
100 287 100 287 119 395.5 c 128,-1,24
138 504 138 504 170 590 c 128,-1,25
202 676 202 676 244 753.5 c 128,-1,26
286 831 286 831 332 889.5 c 128,-1,27
378 948 378 948 424 997 c 128,-1,28
470 1046 470 1046 512 1079.5 c 128,-1,29
554 1113 554 1113 586 1136 c 128,-1,30
618 1159 618 1159 637 1170 c 2,31,-1
656 1181 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 69 -80 "kerning_table" 54 -80 "kerning_table" 52 -80 "kerning_table" 49 -80 "kerning_table" 46 -80 "kerning_table"
EndChar
StartChar: uniE658
Encoding: 58968 58968 27
Width: 921
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 6 159<338.066 531.899> 1030 159<357.004 612>
VStem: 100 159<270.802 923.198> 612 159<271.137 1030 1189 1621>
LayerCount: 2
Fore
SplineSet
612 1621 m 1,0,-1
771 1621 l 1,1,-1
771 597 l 2,2,3
771 353 771 353 718 216 c 0,4,5
681 120 681 120 616 68 c 0,6,7
541 6 541 6 436 6 c 128,-1,8
331 6 331 6 255 68 c 0,9,10
191 121 191 121 153 216 c 0,11,12
100 353 100 353 100 597 c 128,-1,13
100 841 100 841 153 978 c 0,14,15
190 1074 190 1074 255 1127 c 0,16,17
330 1189 330 1189 436 1189 c 2,18,-1
612 1189 l 1,19,-1
612 1621 l 1,0,-1
436 1030 m 2,20,21
388 1030 388 1030 356 1004 c 0,22,23
324 977 324 977 302 920 c 0,24,25
259 811 259 811 259 597.5 c 128,-1,26
259 384 259 384 302 274 c 0,27,28
324 217 324 217 356 191 c 0,29,30
387 165 387 165 435.5 165 c 128,-1,31
484 165 484 165 515 191 c 0,32,33
547 218 547 218 569 274 c 0,34,35
612 384 612 384 612 597 c 2,36,-1
612 1030 l 1,37,-1
436 1030 l 2,20,21
EndSplineSet
Validated: 1
Kerns2: 65 -80 "kerning_table" 38 -80 "kerning_table" 20 -120 "kerning_table" 36 -180 "kerning_table"
EndChar
StartChar: uniE659
Encoding: 58969 58969 28
Width: 876
VWidth: 1980
GlyphClass: 2
Flags: W
HStem: -421 159<296.528 586.061> 6 159<100 106 265 519.996> 1030 159<345.101 529.373>
VStem: 106 159<-228.09 6 165 922.863> 618 159<-226.745 -85 270.994 923.207>
LayerCount: 2
Fore
SplineSet
441 1189 m 128,-1,1
546 1189 546 1189 622 1127 c 0,2,3
686 1074 686 1074 724 978 c 0,4,5
777 841 777 841 777 597.5 c 128,-1,6
777 354 777 354 724 216 c 0,7,8
687 120 687 120 622 68 c 0,9,10
547 6 547 6 441 6 c 2,11,-1
265 6 l 1,12,-1
265 -128 l 2,13,14
265 -182 265 -182 293 -214 c 0,15,16
336 -262 336 -262 442 -262 c 0,17,18
443 -262 443 -262 444 -262 c 0,19,20
549 -262 549 -262 589 -214 c 0,21,22
617 -182 617 -182 618 -128 c 2,23,-1
618 -85 l 1,24,-1
777 -85 l 1,25,-1
777 -128 l 2,26,27
777 -242 777 -242 709 -319 c 0,28,29
667 -367 667 -367 599 -394 c 128,-1,30
531 -421 531 -421 441.5 -421 c 128,-1,31
352 -421 352 -421 283.5 -394 c 128,-1,32
215 -367 215 -367 173 -319 c 0,33,34
106 -243 106 -243 106 -131 c 0,35,36
106 -130 106 -130 106 -128 c 2,37,-1
106 6 l 1,38,-1
100 6 l 1,39,-1
100 165 l 1,40,-1
106 165 l 1,41,-1
106 597 l 2,42,43
106 841 106 841 159 978 c 0,44,45
196 1074 196 1074 261 1127 c 0,46,0
336 1189 336 1189 441 1189 c 128,-1,1
441 1030 m 128,-1,48
393 1030 393 1030 362 1004 c 0,49,50
330 977 330 977 308 920 c 0,51,52
265 811 265 811 265 597 c 2,53,-1
265 165 l 1,54,-1
441 165 l 2,55,56
489 165 489 165 521 191 c 0,57,58
553 218 553 218 575 274 c 0,59,60
618 384 618 384 618 597.5 c 128,-1,61
618 811 618 811 575 920 c 0,62,63
553 977 553 977 521 1004 c 0,64,47
489 1030 489 1030 441 1030 c 128,-1,48
EndSplineSet
Validated: 1025
Kerns2: 46 -120 "kerning_table"
EndChar
StartChar: uniE65A
Encoding: 58970 58970 29
Width: 712
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 6 159<100 337.797> 1456 160<374.422 612>
VStem: 106 159<1015.8 1346.65> 447 159<276.627 614.156>
LayerCount: 2
Fore
SplineSet
527 1616 m 2,0,-1
612 1616 l 1,1,-1
612 1456 l 1,2,-1
527 1456 l 2,3,4
465 1456 465 1456 414 1434 c 0,5,6
362 1411 362 1411 331 1375 c 0,7,8
299 1337 299 1337 282 1291 c 128,-1,9
265 1245 265 1245 265 1195 c 0,10,11
265 1154 265 1154 269 1129 c 128,-1,12
273 1104 273 1104 287 1068 c 0,13,14
299 1037 299 1037 309 1017 c 0,15,16
319 993 319 993 341 964 c 0,17,18
365 932 365 932 376 917 c 0,19,20
418 865 l 0,21,22
471 800 471 800 472 798 c 0,23,24
488 777 488 777 521 724 c 0,25,26
550 678 550 678 566 637 c 0,27,28
582 597 582 597 594 540 c 0,29,30
605 489 605 489 606 427 c 0,31,32
606 425 606 425 606 422 c 0,33,34
606 346 606 346 576 272 c 0,35,36
545 196 545 196 492 137 c 0,37,38
440 79 440 79 358 42 c 0,39,40
278 6 278 6 185 6 c 2,41,-1
100 6 l 1,42,-1
100 165 l 1,43,-1
185 165 l 2,44,45
249 165 249 165 298 187 c 0,46,47
349 210 349 210 381 247 c 0,48,49
414 285 414 285 430 330 c 0,50,51
447 377 447 377 447 427 c 0,52,53
447 466 447 466 438 511 c 0,54,55
430 549 430 549 419 579 c 0,56,57
408 608 408 608 384 645 c 0,58,59
362 680 362 680 344 703 c 0,60,61
316 741 316 741 295 765 c 0,62,63
262 804 262 804 241 832 c 0,64,65
210 874 210 874 192 903 c 0,66,67
166 945 166 945 147 989 c 0,68,69
129 1030 129 1030 118 1083 c 0,70,71
107 1135 107 1135 106 1195 c 0,72,73
106 1197 106 1197 106 1200 c 0,74,75
106 1275 106 1275 136 1349 c 0,76,77
166 1424 166 1424 220 1484 c 128,-1,78
274 1544 274 1544 354 1580 c 0,79,80
435 1616 435 1616 527 1616 c 2,0,-1
EndSplineSet
Validated: 1025
Kerns2: 56 -80 "kerning_table" 55 -80 "kerning_table" 65 -80 "kerning_table" 38 -80 "kerning_table" 20 -120 "kerning_table" 36 -180 "kerning_table"
EndChar
StartChar: uniE65B
Encoding: 58971 58971 30
Width: 712
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: -421 159<375.216 612> 1030 159<100 337.253>
VStem: 106 159<-150.489 179.687> 447 159<580.553 918.489>
LayerCount: 2
Fore
SplineSet
100 1189 m 1,0,-1
185 1189 l 2,1,2
277 1189 277 1189 358 1153 c 128,-1,3
439 1117 439 1117 492 1058 c 0,4,5
547 997 547 997 576 923 c 0,6,7
605 851 605 851 606 768 c 0,8,9
606 764 606 764 606 760 c 0,10,11
606 709 606 709 594 654 c 0,12,13
581 595 581 595 566 558 c 0,14,15
547 512 547 512 521 470 c 0,16,17
489 418 489 418 472 397 c 0,18,19
440 355 440 355 418 329 c 0,20,21
387 292 387 292 376 277 c 0,22,23
344 234 344 234 341 230 c 0,24,25
325 208 325 208 309 178 c 0,26,27
303 168 303 168 287 127 c 0,28,29
272 91 272 91 269 66 c 0,30,31
265 37 265 37 265 0 c 0,32,33
265 -49 265 -49 282 -96 c 128,-1,34
299 -143 299 -143 331 -180 c 0,35,36
362 -215 362 -215 414 -239 c 0,37,38
465 -262 465 -262 527 -262 c 2,39,-1
612 -262 l 1,40,-1
612 -421 l 1,41,-1
527 -421 l 2,42,43
435 -421 435 -421 354 -385 c 128,-1,44
273 -349 273 -349 220 -290 c 0,45,46
165 -229 165 -229 136 -155 c 0,47,48
107 -83 107 -83 106 0 c 0,49,50
106 4 106 4 106 8 c 0,51,52
106 62 106 62 118 112 c 0,53,54
131 164 131 164 147 205 c 0,55,56
162 242 162 242 192 291 c 0,57,58
223 341 223 341 241 363 c 0,59,60
284 416 284 416 295 430 c 0,61,62
329 472 329 472 344 492 c 0,63,64
363 516 363 516 384 549 c 0,65,66
408 587 408 587 419 615 c 0,67,68
432 649 432 649 439 683 c 0,69,70
447 724 447 724 447 768 c 2,71,72
447 805 447 805 436 846 c 0,73,74
426 885 426 885 404 917 c 0,75,76
383 948 383 948 351 975 c 0,77,78
321 1000 321 1000 278 1015 c 128,-1,79
235 1030 235 1030 185 1030 c 2,80,-1
100 1030 l 1,81,-1
100 1189 l 1,0,-1
EndSplineSet
Validated: 1025
Kerns2: 54 -80 "kerning_table" 52 -80 "kerning_table" 46 -120 "kerning_table" 19 -80 "kerning_table"
EndChar
StartChar: uniE65C
Encoding: 58972 58972 31
Width: 834
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: 6 159<382.51 734>
VStem: 100 159<326.812 921.124>
LayerCount: 2
Fore
SplineSet
656 1607 m 1,0,-1
727 1465 l 1,1,2
721 1462 721 1462 710.5 1456.5 c 128,-1,3
700 1451 700 1451 668.5 1429.5 c 128,-1,4
637 1408 637 1408 606 1383 c 128,-1,5
575 1358 575 1358 532.5 1315 c 128,-1,6
490 1272 490 1272 454 1224 c 128,-1,7
418 1176 418 1176 381 1108 c 128,-1,8
344 1040 344 1040 318 966 c 128,-1,9
292 892 292 892 275.5 796.5 c 128,-1,10
259 701 259 701 259 597 c 0,11,12
259 400 259 400 324 284 c 0,13,14
358 223 358 223 403 194 c 128,-1,15
448 165 448 165 521 165 c 2,16,-1
734 165 l 1,17,-1
734 6 l 1,18,-1
521 6 l 2,19,20
410 6 410 6 322.5 61 c 128,-1,21
235 116 235 116 185 207 c 0,22,23
100 359 100 359 100 597 c 0,24,25
100 713 100 713 119 822 c 128,-1,26
138 931 138 931 170 1016.5 c 128,-1,27
202 1102 202 1102 244 1180 c 128,-1,28
286 1258 286 1258 332 1316 c 128,-1,29
378 1374 378 1374 424 1423.5 c 128,-1,30
470 1473 470 1473 512 1506 c 128,-1,31
554 1539 554 1539 586 1562.5 c 128,-1,32
618 1586 618 1586 637 1597 c 2,33,-1
656 1607 l 1,0,-1
EndSplineSet
Validated: 1
Kerns2: 56 -80 "kerning_table" 55 -80 "kerning_table" 65 -80 "kerning_table" 36 -120 "kerning_table"
EndChar
StartChar: uniE65D
Encoding: 58973 58973 32
Width: 882
VWidth: 1997
GlyphClass: 2
Flags: W
HStem: -421 159<289.72 447.485> 6 159<291.088 535 718 783> 1030 159<100 451.49>
VStem: 106 159<-241.033 -14.9672> 575 159<170.427 868.418>
LayerCount: 2
Fore
SplineSet
100 1189 m 1,0,-1
313 1189 l 2,1,2
424 1189 424 1189 511.5 1133.5 c 128,-1,3
599 1078 599 1078 650 988 c 0,4,5
734 838 734 838 734 603 c 0,6,7
734 600 734 600 734 597 c 0,8,9
734 336 734 336 718 165 c 1,10,-1
783 165 l 1,11,-1
783 6 l 1,12,-1
697 6 l 1,13,14
688 -46 688 -46 679 -83 c 0,15,16
641 -235 641 -235 572 -318 c 0,17,18
532 -366 532 -366 475.5 -393.5 c 128,-1,19
419 -421 419 -421 356 -421 c 0,20,21
252 -421 252 -421 179 -335.5 c 128,-1,22
106 -250 106 -250 106 -128 c 128,-1,23
106 -6 106 -6 179 79.5 c 128,-1,24
252 165 252 165 356 165 c 2,25,-1
558 165 l 1,26,27
575 338 575 338 575 597 c 0,28,29
575 794 575 794 510 911 c 0,30,31
476 972 476 972 431 1001 c 128,-1,32
386 1030 386 1030 313 1030 c 2,33,-1
100 1030 l 1,34,-1
100 1189 l 1,0,-1
356 6 m 2,35,36
326 6 326 6 295.5 -29.5 c 128,-1,37
265 -65 265 -65 265 -128 c 128,-1,38
265 -191 265 -191 295.5 -226.5 c 128,-1,39
326 -262 326 -262 356 -262 c 0,40,41
377 -262 377 -262 393 -257.5 c 128,-1,42
409 -253 409 -253 422 -243 c 128,-1,43
435 -233 435 -233 449 -216 c 0,44,45
494 -161 494 -161 524 -45 c 0,46,47
529 -27 529 -27 535 6 c 1,48,-1
356 6 l 2,35,36
EndSplineSet
Validated: 1025
Kerns2: 46 -80 "kerning_table" 33 -80 "kerning_table" 19 -120 "kerning_table"
EndChar
StartChar: uniE65E
Encoding: 58974 58974 33
Width: 1053
VWidth: 1673