-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeajiaq.sfd
5289 lines (5149 loc) · 142 KB
/
Neajiaq.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: Neajiaq
FullName: Neajiaq
FamilyName: Neajiaq
Weight: Regular
Copyright: CC0
Version: 1.0
ItalicAngle: 0
UnderlinePosition: 81
UnderlineWidth: 54
Ascent: 800
Descent: 200
InvalidEm: 0
sfntRevision: 0x00010000
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 73 1113128204 6565]
StyleMap: 0x0040
FSType: 4
OS2Version: 4
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1670694376
ModificationTime: 1683836821
PfmFamily: 81
TTFWeight: 400
TTFWidth: 5
LineGap: 0
VLineGap: 0
Panose: 0 0 4 0 0 0 0 0 0 0
OS2TypoAscent: 1283
OS2TypoAOffset: 0
OS2TypoDescent: -513
OS2TypoDOffset: 0
OS2TypoLinegap: 0
OS2WinAscent: 1283
OS2WinAOffset: 0
OS2WinDescent: 513
OS2WinDOffset: 0
HheadAscent: 1283
HheadAOffset: 0
HheadDescent: -513
HheadDOffset: 0
OS2SubXSize: 550
OS2SubYSize: 550
OS2SubXOff: 0
OS2SubYOff: -256
OS2SupXSize: 550
OS2SupYSize: 550
OS2SupXOff: 0
OS2SupYOff: 550
OS2StrikeYSize: 55
OS2StrikeYPos: 220
OS2CapHeight: 770
OS2XHeight: 513
OS2Vendor: 'FSTR'
OS2CodePages: 200101ff.cdff0000
OS2UnicodeRanges: 00000001.10000000.00000000.00000000
Lookup: 1 0 0 "Switch to dia variant" { "Switch to dia variant" } []
Lookup: 1 0 0 "Switch to conn variant" { "Switch to conn variant" } []
Lookup: 1 0 0 "Hiatus to hiatus diphthong" { "Hiatus to hiatus diphthong" } []
Lookup: 2 0 0 "Remove diphthong" { "Remove diphthong" } []
Lookup: 1 0 0 "Add cartouche" { "Add cartouche" } []
Lookup: 1 0 0 "Switch to cartouche end variant" { "Switch to cartouche end variant" } []
Lookup: 5 0 0 "Form hiatus-diphthong ligatures" { "Form hiatus-diphthong ligatures" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 0 0 "Use dia variants" { "Use dia variants" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "Use conn variants" { "Use conn variants" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 0 1 "Form mark +- base ligatures" { "Form mark +- base ligatures" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "Start cartouches" { "Start cartouches" } ['rclt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 6 8 0 "Extend cartouches" { "Extend cartouches" } ['rclt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 5 8 0 "End cartouches" { "End cartouches" } ['rclt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 260 0 0 "'mark' Mark Positioning in Latin lookup 0" { "'mark' Mark Positioning in Latin lookup 0 subtable" } ['mark' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 1" { "'kern' Horizontal Kerning in Latin lookup 1 subtable" [150,15,0] "'kern' Horizontal Kerning in Latin lookup 1-1" [150,15,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
KernClass2: 4+ 3 "'kern' Horizontal Kerning in Latin lookup 1-1"
0
167 mamei_coda bubue saqseoq laoliq nhanhoq jujuo veva bubue_c jujuo_c laoliq_c saqseoq_c veva_c nhanhoq_c bubue_c_end jujuo_c_end laoliq_c_end saqseoq_c_end nhanhoq_c_end
125 cecoa aqaq gugui kikue cecoa_c gugui_c kikue_c aqaq_c cecoa_c_end gugui_c_end aqaq_c_end low_glottal_conn rising_falling_conn
0
472 mamei mamei_coda bubue fofuaq rairua laoliq jujuo veva hehaq bubue_c fofuaq_c hehaq_c jujuo_c laoliq_c mamei_c rairua_c veva_c bubue_c_end fofuaq_c_end hehaq_c_end laoliq_c_end mamei_c_end rairua_c_end veva_c_end zozeo_c_end mamei_coda_c mamei_coda_c_end hehaq_conn hehaq_conn_c hehaq_c_nonn_end hiatus_bubue hiatus_bubue_c hiatus_bubue_c_end hiatus_fofuaq hiatus_fofuaq_c hiatus_fofuaq_c_end fofuaq_hiatus_diphthong fofuaq_hiatus_diphthong_c fofuaq_hiatus_diphthong_c_end
336 gugui_c nanaq_c pipoq_c aqaq_c saqseoq_c titieq_c nhanhoq_c cecoa_c_end gugui_c_end nanaq_c_end pipoq_c_end aqaq_c_end saqseoq_c_end titieq_c_end nhanhoq_c_end shoshia_c_end chichao_c_end cecoa_dia cecoa_dia_c cecoa_dia_c_end aqaq_dia aqaq_dia_c aqaq_dia_c_end gugui_dia gugui_dia_c gugui_dia_c_end kikue_dia kikue_dia_c kikue_dia_c_end
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -220 {} 0 {} 0 {} 0 {} 0 {}
ContextSub2: class "Use conn variants" 3 3 3 1
Class: 11 zozeo hehaq
Class: 32 bubue fofuaq cecoa saqseoq gugui
BClass: 11 zozeo hehaq
BClass: 32 bubue fofuaq cecoa saqseoq gugui
FClass: 11 zozeo hehaq
FClass: 32 bubue fofuaq cecoa saqseoq gugui
2 0 0
ClsList: 1 2
BClsList:
FClsList:
2
SeqLookup: 0 "Switch to conn variant"
SeqLookup: 1 "Switch to conn variant"
ClassNames: "All_Others" "conn_left" "conn_right"
BClassNames: "All_Others" "conn_left" "conn_right"
FClassNames: "All_Others" "conn_left" "conn_right"
EndFPST
ContextSub2: class "Use dia variants" 3 3 3 1
Class: 22 cecoa aqaq gugui kikue
Class: 33 rising low_glottal rising_falling
BClass: 22 cecoa aqaq gugui kikue
BClass: 33 rising low_glottal rising_falling
FClass: 22 cecoa aqaq gugui kikue
FClass: 33 rising low_glottal rising_falling
2 0 0
ClsList: 1 2
BClsList:
FClsList:
2
SeqLookup: 0 "Switch to dia variant"
SeqLookup: 1 "Switch to conn variant"
ClassNames: "All_Others" "base" "tone"
BClassNames: "All_Others" "base" "tone"
FClassNames: "All_Others" "base" "tone"
EndFPST
ContextSub2: class "End cartouches" 3 1 1 1
Class: 415 bubue_c cecoa_c dudeo_c fofuaq_c gugui_c hehaq_c jujuo_c kikue_c laoliq_c mamei_c nanaq_c pipoq_c aqaq_c rairua_c saqseoq_c titieq_c veva_c nhanhoq_c shoshia_c chichao_c zozeo_c space_c prefix_c oaomo_c quote_c mamei_coda_c bubue_conn_c hehaq_conn_c zozeo_conn_c fofuaq_conn_c cecoa_dia_c aqaq_dia_c gugui_dia_c kikue_dia_c hiatus_bubue_c hiatus_fofuaq_c fofuaq_hiatus_diphthong_c fofuaq_diphthong_c fofuaq_hiatus_c
Class: 13 cartouche_end
2 0 0
ClsList: 1 2
BClsList:
FClsList:
1
SeqLookup: 0 "Switch to cartouche end variant"
ClassNames: "0" "1" "2"
BClassNames: "All_Others"
FClassNames: "All_Others"
EndFPST
ChainSub2: class "Extend cartouches" 2 2 1 1
Class: 370 space nbsp mamei mamei_coda bubue pipoq fofuaq nanaq dudeo titieq zozeo cecoa saqseoq rairua laoliq nhanhoq jujuo chichao shoshia veva aqaq gugui kikue oaomo hehaq rising_falling prefix quote space_compat bubue_conn hehaq_conn zozeo_conn fofuaq_conn cecoa_dia aqaq_dia gugui_dia kikue_dia hiatus_bubue hiatus_fofuaq fofuaq_hiatus_diphthong fofuaq_diphthonq fofuaq_hiatus
BClass: 415 bubue_c cecoa_c dudeo_c fofuaq_c gugui_c hehaq_c jujuo_c kikue_c laoliq_c mamei_c nanaq_c pipoq_c aqaq_c rairua_c saqseoq_c titieq_c veva_c nhanhoq_c shoshia_c chichao_c zozeo_c space_c prefix_c oaomo_c quote_c mamei_coda_c bubue_conn_c hehaq_conn_c zozeo_conn_c fofuaq_conn_c cecoa_dia_c aqaq_dia_c gugui_dia_c kikue_dia_c hiatus_bubue_c hiatus_fofuaq_c fofuaq_hiatus_diphthong_c fofuaq_diphthong_c fofuaq_hiatus_c
1 1 0
ClsList: 1
BClsList: 1
FClsList:
1
SeqLookup: 0 "Add cartouche"
ClassNames: "0" "1"
BClassNames: "0" "1"
FClassNames: "0"
EndFPST
ContextSub2: class "Start cartouches" 3 1 1 1
Class: 355 space nbsp mamei mamei_coda bubue pipoq fofuaq nanaq dudeo titieq zozeo cecoa saqseoq rairua laoliq nhanhoq jujuo chichao shoshia veva aqaq gugui kikue oaomo hehaq prefix quote space_compat bubue_conn hehaq_conn zozeo_conn fofuaq_conn cecoa_dia aqaq_dia gugui_dia kikue_dia hiatus_bubue hiatus_fofuaq fofuaq_hiatus_diphthong fofuaq_diphthonq fofuaq_hiatus
Class: 15 cartouche_start
2 0 0
ClsList: 2 1
BClsList:
FClsList:
1
SeqLookup: 1 "Add cartouche"
ClassNames: "0" "1" "2"
BClassNames: "All_Others"
FClassNames: "All_Others"
EndFPST
ContextSub2: class "Form hiatus-diphthong ligatures" 4 1 1 1
Class: 6 hiatus
Class: 9 diphthong
Class: 96 bubue cecoa dudeo fofuaq hehaq kikue nanaq pipoq aqaq saqseoq veva nhanhoq shoshia chichao zozeo
3 0 0
ClsList: 1 3 2
BClsList:
FClsList:
2
SeqLookup: 0 "Hiatus to hiatus diphthong"
SeqLookup: 2 "Remove diphthong"
ClassNames: "0" "1" "2" "3"
BClassNames: "All_Others"
FClassNames: "All_Others"
EndFPST
LangName: 1033 "Copyright Miles Forster 2022+AAogHAAA-derani" "" "" "" "" "1.0" "" "FontStruct is a trademark of FontStruct.com" "https://fontstruct.com" "Miles Forster" "+IBwA-derani+IB0A was built with FontStruct+AAogHAAA-derani" "https://fontstruct.com/fontstructions/show/2208618/derani-1" "https://fontstruct.com/fontstructors/show/1815854/n1004" "Creative Commons Attribution Non-commercial" "http://creativecommons.org/licenses/by-nc/3.0/" "" "" "" "" "Five big quacking zephyrs jolt my wax bed"
Encoding: Custom
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -128
AntiAlias: 1
FitToEm: 0
WinInfo: 72 12 6
BeginPrivate: 6
OtherBlues 2 []
BlueShift 1 1
StdHW 5 [128]
StdVW 5 [116]
StemSnapH 5 [128]
StemSnapV 5 [115]
EndPrivate
Grid
-1000 510 m 4
2000 510 l 1024
520 1295 m 0
520 -704 l 1024
260 1298 m 0
260 -701 l 1024
EndSplineSet
AnchorClass2: "1""" "Anchor-0" "'mark' Mark Positioning in Latin lookup 0 subtable" "Anchor-1" "'mark' Mark Positioning in Latin lookup 0 subtable"
BeginChars: 156 140
StartChar: .notdef
Encoding: 41 -1 0
Width: 500
GlyphClass: 1
Flags: MW
HStem: 0 50<100 400 100 450> 483 50<100 400 100 100>
VStem: 50 50<50 50 50 483> 400 50<50 483 483 483>
LayerCount: 2
Fore
SplineSet
50 0 m 1
50 533 l 1
450 533 l 1
450 0 l 1
50 0 l 1
100 50 m 1
400 50 l 1
400 483 l 1
100 483 l 1
100 50 l 1
EndSplineSet
EndChar
StartChar: space
Encoding: 0 32 1
Width: 300
GlyphClass: 1
Flags: W
LayerCount: 2
Kerns2: 4 -144 "'kern' Horizontal Kerning in Latin lookup 1 subtable" 12 -105 "'kern' Horizontal Kerning in Latin lookup 1 subtable"
Substitution2: "Add cartouche" space_c
EndChar
StartChar: other_stop
Encoding: 35 988886 2
Width: 504
GlyphClass: 2
Flags: MW
HStem: 0 21G<158 158>
LayerCount: 2
Fore
SplineSet
158 48 m 6
150 40 138 40 130 48 c 6
63 115 l 6
55 123 55 135 63 143 c 6
130 210 l 6
138 218 150 218 158 210 c 6
225 143 l 6
233 135 232.999023438 123 225 115 c 6
158 48 l 6
159 304 m 6
151 296 139 296 131 304 c 6
64 371 l 6
56 379 56 391 64 399 c 6
131 466 l 6
139 474 151 474 159 466 c 6
226 399 l 6
234 391 233.999023438 379 226 371 c 6
159 304 l 6
441 -124 m 6
441 -271 391 -377 262 -506 c 4
258 -510 253 -513 247 -513 c 4
236 -513 227 -504 227 -493 c 4
227 -486 231 -483 234 -478 c 4
311 -375 334 -310 334 -191 c 6
334 923 l 5
334 942 309 947 301 939 c 4
285 923 261 899 261 899 c 6
257 895 253 893 247 893 c 4
236 893 227 902 227 913 c 4
227 1064 278 1185 406 1295 c 4
410 1299 415 1302 421 1302 c 4
432 1302 441 1293 441 1282 c 4
441 1275 437 1271 434 1267 c 4
385 1201 352 1133 339 1075 c 4
334 1051 347 1041 364 1058 c 6
407 1101 l 6
411 1105 415 1107 421 1107 c 4
432 1107 441 1098 441 1087 c 6
441 -124 l 6
EndSplineSet
EndChar
StartChar: quote
Encoding: 32 988883 3
Width: 290
GlyphClass: 2
Flags: HMW
LayerCount: 2
Fore
SplineSet
158 48 m 2
150 40 138 40 130 48 c 2
63 115 l 2
55 123 55 135 63 143 c 2
130 210 l 2
138 218 150 218 158 210 c 2
225 143 l 2
233 135 232.999023438 123 225 115 c 2
158 48 l 2
159 304 m 2
151 296 139 296 131 304 c 2
64 371 l 2
56 379 56 391 64 399 c 2
131 466 l 2
139 474 151 474 159 466 c 2
226 399 l 2
234 391 233.999023438 379 226 371 c 2
159 304 l 2
EndSplineSet
Substitution2: "Add cartouche" quote_c
EndChar
StartChar: null
Encoding: 39 988890 4
Width: 807
GlyphClass: 2
Flags: HMW
HStem: 1026 129
VStem: 202 115<256 291.333> 317 115<220.667 256 220.667 291.667> 577 115
LayerCount: 2
Fore
SplineSet
192 1049 m 2
149 1049 86.5550191543 1039.66626437 35 1001 c 0
31 998 27 994 20 994 c 0
9 994 0 1003 0 1014 c 0
0 1020 3.09398225722 1024.90798141 7 1029 c 0
91 1117 135 1155 260 1155 c 2
437 1155 l 1
577.380859375 1154.27832031 691 1040.54764673 691 900 c 2
691 -125 l 2
691 -271.991210938 641 -378 512 -507 c 0
508 -511 503 -514 497 -514 c 0
486 -514 477 -505 477 -494 c 0
477 -487 481 -484 484 -479 c 0
561 -376 584 -310.995117188 584 -192 c 2
584 833 l 2
584 953 489 1049 369 1049 c 2
192 1049 l 2
363 403 m 2
367 407 371 409 377 409 c 0
388 409 397 400 397 389 c 0
397 238 346 117 218 7 c 0
214 3 209 0 203 0 c 0
192 0 183 9 183 20 c 0
183 27 187 31 190 35 c 0
239 101 272 169 285 227 c 0
290.461914062 251.370117188 274.517578125 258.517578125 256 240 c 2
217 201 l 2
213 197 209 195 203 195 c 0
192 195 183 204 183 215 c 0
183 366 234 487 362 597 c 0
366 601 371 604 377 604 c 0
388 604 397 595 397 584 c 0
397 577 393 573 390 569 c 0
341 503 308 435 295 377 c 0
290 353 303 343 320 360 c 2
363 403 l 2
EndSplineSet
EndChar
StartChar: diphthong
Encoding: 30 988878 5
Width: 0
GlyphClass: 4
Flags: HMW
HStem: -256 128
VStem: 555 116<-291.333 -255.999 -291.333 -255.999>
AnchorPoint: "Anchor-0" 260 -70 mark 0
LayerCount: 2
Fore
SplineSet
436 -177 m 4
-34 -177 l 4
-45 -177 -54 -168 -54 -157 c 7
-54 -152 -52 -147 -48 -143 c 4
12 -83 l 6
25 -70 25 -70 45 -70 c 4
545 -70 l 4
556 -70 565 -79 565 -90 c 7
565 -215 523 -253 437 -339 c 4
433 -343 428 -346 422 -346 c 4
411 -346 402 -337 402 -326 c 4
402 -319 405 -315 409 -311 c 4
441 -279 456 -243 456 -197 c 7
456 -186 447 -177 436 -177 c 4
EndSplineSet
MultipleSubs2: "Remove diphthong"
EndChar
StartChar: subordination
Encoding: 33 988884 6
Width: 964
GlyphClass: 2
Flags: MW
LayerCount: 2
Back
SplineSet
-225 -131 m 4
-225 -120 -216 -111 -205 -111 c 4
-194 -111 -185 -120 -185 -131 c 4
-185 -142 -194 -151 -205 -151 c 4
-216 -151 -225 -142 -225 -131 c 4
-292 -198 m 4
-292 -187 -283 -178 -272 -178 c 4
-261 -178 -252 -187 -252 -198 c 4
-252 -209 -261 -218 -272 -218 c 4
-283 -218 -292 -209 -292 -198 c 4
EndSplineSet
Fore
SplineSet
807 -249 m 0
802.74609375 -252.729492188 798 -256 792 -256 c 0
781 -256 772 -247 772 -236 c 0
772 -229 775.173828125 -225.166015625 779 -221 c 0
828.069335938 -167.569335938 856 -87.4052734375 856 0 c 1
772 0 l 1
760.31640625 -92.6396484375 717.08203125 -163 619 -249 c 0
614.74609375 -252.729492188 610 -256 604 -256 c 0
593 -256 584 -247 584 -236 c 0
584 -229 587.173828125 -225.166015625 591 -221 c 0
640.069335938 -167.569335938 668 -87.4052734375 668 0 c 1
584 0 l 1
572.31640625 -92.6396484375 529.08203125 -163 431 -249 c 0
426.74609375 -252.729492188 422 -256 416 -256 c 0
405 -256 396 -247 396 -236 c 0
396 -229 399.173828125 -225.166015625 403 -221 c 0
452.069335938 -167.569335938 480 -87.4052734375 480 0 c 1
396 0 l 1
384.31640625 -92.6396484375 341.08203125 -163 243 -249 c 0
238.74609375 -252.729492188 234 -256 228 -256 c 0
217 -256 208 -247 208 -236 c 0
208 -229 211.173828125 -225.166015625 215 -221 c 0
264.069335938 -167.569335938 292 -87.4052734375 292 0 c 1
208 0 l 1
196.31640625 -92.6396484375 153.08203125 -163 55 -249 c 0
50.74609375 -252.729492188 46 -256 40 -256 c 0
29 -256 20 -247 20 -236 c 0
20 -229 23.173828125 -225.166015625 27 -221 c 0
76.0693359375 -167.569335938 104 -87.4052734375 104 0 c 1
20 0 l 0
9 0 0 9 0 20 c 3
0 25 2 30 6 34 c 0
66 94 l 2
79 107 79 107 99 107 c 0
944 103 l 0
955 103 964 94 964 83 c 0
964 -66.9326171875 928.115234375 -142.815429688 807 -249 c 0
EndSplineSet
EndChar
StartChar: oaomo
Encoding: 24 988869 7
Width: 290
GlyphClass: 2
Flags: MW
LayerCount: 2
Fore
SplineSet
159 174 m 6
151 166 139 166 131 174 c 6
64 241 l 6
56 249 56 261 64 269 c 6
131 336 l 6
139 344 151 344 159 336 c 6
226 269 l 6
234 261 233.999023438 249 226 241 c 6
159 174 l 6
EndSplineSet
Substitution2: "Add cartouche" oaomo_c
EndChar
StartChar: declarative_stop
Encoding: 34 988885 8
Width: 499
GlyphClass: 2
Flags: HMW
LayerCount: 2
Fore
SplineSet
159 174 m 2
151 166 139 166 131 174 c 2
64 241 l 2
56 249 56 261 64 269 c 2
131 336 l 2
139 344 151 344 159 336 c 2
226 269 l 2
234 261 234 249 226 241 c 2
159 174 l 2
441 -124 m 2
441 -271 391 -377 262 -506 c 0
258 -510 253 -513 247 -513 c 0
236 -513 227 -504 227 -493 c 0
227 -486 231 -483 234 -478 c 0
311 -375 334 -310 334 -191 c 2
334 923 l 5
334 942 309 947 301 939 c 4
285 923 261 899 261 899 c 6
257 895 253 893 247 893 c 4
236 893 227 902 227 913 c 4
227 1064 278 1185 406 1295 c 4
410 1299 415 1302 421 1302 c 4
432 1302 441 1293 441 1282 c 4
441 1275 437 1271 434 1267 c 4
385 1201 352 1133 339 1075 c 4
334 1051 347 1041 364 1058 c 6
407 1101 l 6
411 1105 415 1107 421 1107 c 4
432 1107 441 1098 441 1087 c 6
441 -124 l 2
EndSplineSet
EndChar
StartChar: rising
Encoding: 26 988874 9
Width: 0
GlyphClass: 4
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 mark 0
LayerCount: 2
Fore
SplineSet
424.125 818.875 m 1
356.973632812 751.725585938 l 1
353.361328125 748.188476562 348.423828125 746 343 746 c 3
208 746 270 639 110 639 c 3
99 639 90 648 90 659 c 0
90 664.752929688 92.4619140625 669.958984375 96.3837890625 673.616210938 c 1
163.223632812 740.46484375 l 1
166.817382812 743.890625 171.673828125 746 177 746 c 3
312 746 250 853 410 853 c 3
421 853 430 844 430 833 c 0
430 827.5 427.75 822.5 424.125 818.875 c 1
356.973632812 751.725585938 m 1025
EndSplineSet
Substitution2: "Switch to conn variant" rising_conn
EndChar
StartChar: prefix
Encoding: 31 988882 10
Width: 290
GlyphClass: 2
Flags: HMW
LayerCount: 2
Fore
SplineSet
236 201 m 2
244 193 244 181 236 173 c 2
169 106 l 2
161 98 149 98 141 106 c 2
74 173 l 2
66 181 66 193 74 201 c 2
114 241 l 2
122 249 122 261 114 269 c 2
74 309 l 2
66.0009765625 316.999023438 66 329 74 337 c 2
141 404 l 2
149 412 161 412 169 404 c 2
236 337 l 2
244 329 243 316 235 308 c 2
196 269 l 2
188 261 188 249 196 241 c 2
236 201 l 2
EndSplineSet
Substitution2: "Add cartouche" prefix_c
EndChar
StartChar: interrogative_stop
Encoding: 36 988887 11
Width: 504
GlyphClass: 2
Flags: HMW
LayerCount: 2
Fore
SplineSet
159 386 m 2
151 378 139 378 131 386 c 2
64 453 l 2
56 461 56 473 64 481 c 2
131 548 l 2
139 556 151 556 159 548 c 2
226 481 l 2
234 473 233.999023438 461 226 453 c 2
159 386 l 2
159 6 m 2
151 -2 139 -2 131 6 c 2
64 73 l 2
56 81 56 93 64 101 c 2
131 168 l 2
139 176 151 176 159 168 c 2
226 101 l 2
234 93 233.999023438 81 226 73 c 2
159 6 l 2
159 196 m 2
151 188 139 188 131 196 c 2
64 263 l 2
56 271 56 283 64 291 c 2
131 358 l 2
139 366 151 366 159 358 c 2
226 291 l 2
234 283 233.999023438 271 226 263 c 2
159 196 l 2
441 -124 m 2
441 -271 391 -377 262 -506 c 0
258 -510 253 -513 247 -513 c 0
236 -513 227 -504 227 -493 c 0
227 -486 231 -483 234 -478 c 0
311 -375 334 -310 334 -191 c 2
334 923 l 1
334 942 309 947 301 939 c 0
285 923 261 899 261 899 c 2
257 895 253 893 247 893 c 0
236 893 227 902 227 913 c 0
227 1064 278 1185 406 1295 c 0
410 1299 415 1302 421 1302 c 0
432 1302 441 1293 441 1282 c 0
441 1275 437 1271 434 1267 c 0
385 1201 352 1133 339 1075 c 0
334 1051 347 1041 364 1058 c 2
407 1101 l 2
411 1105 415 1107 421 1107 c 0
432 1107 441 1098 441 1087 c 2
441 -124 l 2
EndSplineSet
EndChar
StartChar: cartouche_start
Encoding: 37 988888 12
Width: 150
GlyphClass: 2
Flags: HMW
HStem: 1026 129
LayerCount: 2
Fore
SplineSet
192 1050 m 2
149.048828125 1050 86.5550191543 1039.66626437 35 1001 c 0
31 998 27 994 20 994 c 0
9 994 0 1003 0 1014 c 0
0 1020 3.09398225722 1024.90798141 7 1029 c 0
91 1117 135.142486105 1155 260 1155 c 2
328 1155 l 1
260 1050 l 1
192 1050 l 2
EndSplineSet
EndChar
StartChar: low_glottal
Encoding: 27 988875 13
Width: 0
GlyphClass: 4
Flags: HMW
HStem: 834 128 1090 0
VStem: -115 115
AnchorPoint: "Anchor-1" 260 510 mark 0
LayerCount: 2
Fore
SplineSet
260 934 m 3
339.088867188 934 423.970703125 963.970703125 485 1025 c 0
489 1029 493 1032 500 1032 c 0
511 1032 520 1023 520 1012 c 0
520 1010.87988281 519.658203125 1004.11816406 515 999 c 0
439.77734375 916.349609375 353.690429688 827 193 827 c 3
116.216730112 827 107 821.305161563 107 773.862271152 c 3
107 677.828125 236 617 327 617 c 0
338 617 347 608 347 597 c 0
347 591 345 586 341 582 c 2
274 515 l 2
270 512 265.000001133 509.965986387 260 510 c 4
137.432960141 510.833789387 0 575.075177414 0 739.828250126 c 3
0 847.047966578 83.3684999361 934 260 934 c 3
EndSplineSet
Substitution2: "Switch to conn variant" low_glottal_conn
EndChar
StartChar: cartouche_end
Encoding: 38 988889 14
Width: 317
GlyphClass: 2
Flags: HMW
LayerCount: 2
Fore
SplineSet
214 901 m 2
214 -124 l 2
214 -271 164 -377 35 -506 c 0
31 -510 26 -513 20 -513 c 0
9 -513 0 -504 0 -493 c 0
0 -486 4 -483 7 -478 c 0
84 -375 107 -310 107 -191 c 2
107 834 l 2
107 954 12 1050 -108 1050 c 1
-42 1155 l 1
99 1155 214 1042 214 901 c 2
EndSplineSet
EndChar
StartChar: bubue
Encoding: 5 988850 15
Width: 520
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 basechar 0
AnchorPoint: "Anchor-0" 520 -70 basechar 0
LayerCount: 2
Fore
SplineSet
408 188 m 7
408 306 310 404 192 404 c 7
149 404 87 399 39 356 c 4
35 353 31 349 24 349 c 4
13 349 4 358 4 369 c 4
4 375 7.09407933821 379.908083116 11 384 c 4
95 472 135 510 260 510 c 7
401 510 516 397 516 256 c 7
516 131 475 92 388 7 c 4
384 3 379 0 373 0 c 4
362 0 353 9 353 20 c 4
353 27 356 31 360 35 c 4
403 84 408 146 408 188 c 7
EndSplineSet
Substitution2: "Switch to conn variant" bubue_conn
Substitution2: "Add cartouche" bubue_c
EndChar
StartChar: cecoa
Encoding: 12 988857 16
Width: 520
GlyphClass: 2
Flags: MW
AnchorPoint: "Anchor-1" 260 510 basechar 0
AnchorPoint: "Anchor-0" 520 -71 basechar 0
LayerCount: 2
Fore
SplineSet
328 108 m 7
209.756835938 108 112 205.756835938 112 324 c 7
112 367 117.004946282 428.995569415 160 477 c 4
163.3359375 480.724609375 167 485 167 492 c 4
167 503 158 512 147 512 c 4
141 512 136 509 132 505 c 4
44 421 4 381 4 256 c 7
4 115 119 0 260 0 c 7
385 0 422.994186243 41.994186243 509 128 c 4
513 132 516 137 516 143 c 4
516 154 507 163 496 163 c 4
489 163 485.251953125 159.731445312 481 156 c 4
432 113 370 108 328 108 c 7
EndSplineSet
Substitution2: "Switch to dia variant" cecoa_dia
Substitution2: "Add cartouche" cecoa_c
EndChar
StartChar: dudeo
Encoding: 9 988854 17
Width: 450
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 225 510 basechar 0
LayerCount: 2
Fore
SplineSet
4 324.845324758 m 3
4 436.626436589 96.6279296875 510 225 510 c 3
362.977539062 510 446 416.768554688 446 276 c 3
446 173.08984375 401.97265625 92.212890625 290 0 c 0
273 -14 246 9 263 29 c 0
305.987791539 79.1524234627 331.307539009 136.692460991 323 145 c 0
315 153 316 142 248.560569983 142 c 3
94.308895279 142 4 210.010402618 4 324.845324758 c 3
140 404 m 0
111 404 107.988382985 393.997763267 113 368 c 0
131.784731858 270.554203484 228.122827575 250.842025952 302.99999918 250.842025952 c 3
323.181352616 250.842025952 336.397682439 255.911201543 331 282 c 0
315 360 244 404 140 404 c 0
Spiro
140 404 o
119.011 400.451 o
111.326 388.872 o
113 368 o
153.909 294.369 o
224.715 259.542 o
303 250.842 o
320.414 253.117 o
330.63 262.341 o
331 282 o
297.532 348.242 o
232.106 389.732 o
0 0 z
EndSpiro
EndSplineSet
Substitution2: "Add cartouche" dudeo_c
EndChar
StartChar: fofuaq
Encoding: 7 988852 18
Width: 520
GlyphClass: 2
Flags: MW
AnchorPoint: "Anchor-1" 260 510 basechar 0
AnchorPoint: "Anchor-0" 520 -70 basechar 0
LayerCount: 2
Fore
SplineSet
260 512 m 4
469 512 515 302 515 44 c 7
515 -214 479 -337 295 -506 c 4
291 -510 286 -513 280 -513 c 4
269 -513 260 -504 260 -493 c 4
260 -486 263 -482 267 -478 c 4
368 -377 408 -258 408 -23 c 7
408 277 342 412 179 412 c 7
136 412 87 399 39 356 c 4
35 353 31 349 24 349 c 4
13 349 4 358 4 369 c 4
4 375 7.09407933821 379.908083116 11 384 c 4
95 472 135 512 260 512 c 4
EndSplineSet
Substitution2: "Switch to conn variant" fofuaq_conn
Substitution2: "Add cartouche" fofuaq_c
EndChar
StartChar: gugui
Encoding: 22 988867 19
Width: 890
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 basechar 0
AnchorPoint: "Anchor-0" 890 -70 basechar 0
LayerCount: 2
Fore
SplineSet
528 186 m 4
565.188476562 138.029296875 635.321289062 109 700 109 c 7
743 109 807 114 855 157 c 4
858.724609375 160.3359375 863 164 870 164 c 4
881 164 890 155 890 144 c 4
890 138 887 133 883 129 c 4
799 41 757 1 632 1 c 7
565.89453125 1 504.504882812 22.6171875 459 64 c 4
451.665039062 70.6708984375 440.005859375 73.2900390625 430.682617188 65 c 4
396.651367188 34.7412109375 340.130859375 0 260 0 c 7
119 0 4 115 4 256 c 7
4 381 45 420 132 505 c 4
136 509 141 512 147 512 c 4
158 512 167 503 167 492 c 4
167 485 163.731445312 481.251953125 160 477 c 4
117 428 112 366 112 324 c 7
112 205.756835938 209.756835938 108 328 108 c 7
395.392578125 108 436.64453125 127.541015625 499 189 c 4
504.940429688 194.85546875 518.870117188 197.77734375 528 186 c 4
EndSplineSet
Substitution2: "Switch to dia variant" gugui_dia
Substitution2: "Add cartouche" gugui_c
EndChar
StartChar: hehaq
Encoding: 25 988870 20
Width: 520
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 basechar 0
LayerCount: 2
Back
SplineSet
253 0 m 3
242 0 233 9 233 20 c 0
233 25.4275202881 235.155205211 30.4040182883 238.732406205 33.9809734846 c 0
299 94.2444261536 l 2
311.754176026 106.997725811 311.754175828 107.000555433 332 107.000555433 c 3
537.883142765 107.000555433 725.000555433 107.000555433 866 248 c 0
870 252 874 255 881 255 c 0
892 255 901 246 901 235 c 0
901 229 897.740582212 224.243348638 894 220 c 0
708 9 566 0 253 0 c 3
260 510 m 0
468.908203125 510 515 302.410585084 515 44.087890625 c 3
515 -214.31640625 479.110258769 -337.232262795 295 -506 c 0
290.830026469 -509.822475736 286 -513 280 -513 c 0
269 -513 260 -504 260 -493 c 0
260 -486 263 -482 267 -478 c 0
367.508632243 -377.491367757 408 -257.684628634 408 -22.9117281515 c 3
408 276.978731039 341.931900444 412 179 412 c 3
136 412 87 399 39 356 c 0
35 353 31 349 24 349 c 0
13 349 4 358 4 369 c 0
4 375 7.09407933821 379.908083116 11 384 c 0
95 472 135 510 260 510 c 0
EndSplineSet
Fore
SplineSet
253 0 m 4
242 0 233 9 233 20 c 4
233 25.4275202881 235.155205211 30.4040182883 238.732406205 33.9809734846 c 6
299 94.2444261536 l 6
311.754176026 106.997725811 311.754175828 107.000555433 332 107.000555433 c 4
348.45789996 107.000555433 364.795885138 107.10516807 380.999983688 107.170344996 c 4
391.783274856 107.213718083 402.024761113 117.368496611 400.998969137 127.000012577 c 4
380.190261622 322.380170811 311.741611721 412 179 412 c 4
136 412 87 399 39 356 c 4
35 353 31 349 24 349 c 4
13 349 4 358 4 369 c 4
4 375 7.09407933821 379.908083116 11 384 c 4
95 472 135 510 260 510 c 4
449.35579853 510 504.060511431 339.55444915 513 126 c 4
513.524564728 113.468731496 521.828125 105.47265625 533.05859375 106.421875 c 4
658.997070312 117.0625 772.58970161 154.58970161 866 248 c 4
870 252 874 255 881 255 c 4
892 255 901 246 901 235 c 4
901 229 897.740582212 224.243348638 894 220 c 4
774.508808481 84.4481644595 672.692382812 23.263671875 532.515625 3.2763671875 c 4
520.080078125 1.5029296875 514.291394244 -4.26697866314 514 -15 c 4
508 -236 465.19361002 -349.989190846 295 -506 c 4
290.830026469 -509.822475736 286 -513 280 -513 c 4
269 -513 260 -504 260 -493 c 4
260 -486 263 -482 267 -478 c 4
367.508632243 -377.491367757 408 -257.684628634 408 -22.9117281515 c 4
408 -8.41139482108 399.65860709 1.72620551385 388 1.39500441445 c 4
346.627247949 0.219675246996 301.900538821 -9.22940651855e-16 253 0 c 4
EndSplineSet
Substitution2: "Switch to conn variant" hehaq_conn
Substitution2: "Add cartouche" hehaq_c
EndChar
StartChar: jujuo
Encoding: 17 988862 21
Width: 890
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 basechar 0
LayerCount: 2
Fore
SplineSet
364 327 m 4
327 375 257 404 192 404 c 7
149 404 87 399 39 356 c 4
35 353 31 349 24 349 c 4
13 349 4 358 4 369 c 4
4 375 7.09407933821 379.908083116 11 384 c 4
97.2244573824 474.330383924 141.323751297 510 260 510 c 7
324.171092473 510 386.776074471 487.925410972 433 449 c 4
440.572234533 442.623381446 452 440 461 448 c 4
495 478 550 513 630 513 c 7
771 513 886 398 886 257 c 7
886 132 845 93 758 8 c 4
754 4 749 1 743 1 c 4
732 1 723 10 723 21 c 4
723 28 726 32 730 36 c 4
773 85 778 147 778 189 c 7
778 307 680 405 562 405 c 7
495 405 455 385 393 324 c 4
387 318 373 315 364 327 c 4
EndSplineSet
Substitution2: "Add cartouche" jujuo_c
EndChar
StartChar: kikue
Encoding: 23 988868 22
Width: 520
GlyphClass: 2
Flags: HMW
AnchorPoint: "Anchor-1" 260 510 basechar 0
LayerCount: 2
Fore
SplineSet
274 -260 m 6
267 -267 254 -266 246 -258 c 6
179 -191 l 6
171 -184 172 -172 180 -164 c 6
247 -97 l 6
254 -89 267 -89 275 -97 c 6
342 -164 l 6
350 -172 350 -184 342 -192 c 6
274 -260 l 6
328 108 m 7
210 108 112 206 112 324 c 7
112 367 117 429 160 477 c 4
163 481 167 485 167 492 c 4
167 503 158 512 147 512 c 4
141 512 136 509 132 505 c 4
44 421 4 381 4 256 c 7
4 115 119 0 260 0 c 7
385 0 423 42 509 128 c 4
513 132 516 137 516 143 c 4
516 154 507 163 496 163 c 4
489 163 485 160 481 156 c 4
432 113 370 108 328 108 c 7
EndSplineSet
Substitution2: "Switch to dia variant" kikue_dia
Substitution2: "Add cartouche" kikue_c
EndChar
StartChar: laoliq
Encoding: 15 988860 23
Width: 1040
GlyphClass: 2