-
Notifications
You must be signed in to change notification settings - Fork 0
/
TengwarRacina.sfd
11514 lines (11351 loc) · 382 KB
/
TengwarRacina.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: TengwarRacina
FullName: Tengwar Racina
FamilyName: Tengwar Racina
Weight: Regular
Copyright: Shankar Sivarajan\nBased on glyphs from Tengwar Gothika by Enrique Mombello.
Version:
ItalicAngle: 0
UnderlinePosition: -125
UnderlineWidth: 100
Ascent: 1638
Descent: 410
InvalidEm: 0
LayerCount: 2
Layer: 0 1 "Back" 1
Layer: 1 1 "Fore" 0
XUID: [1021 146 -1796264217 19784]
StyleMap: 0x0040
FSType: 0
OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 0
CreationTime: 1115869583
ModificationTime: 1694017564
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
LineGap: 27
VLineGap: 0
Panose: 2 11 5 0 0 0 0 0 0 0
OS2TypoAscent: 1707
OS2TypoAOffset: 0
OS2TypoDescent: -676
OS2TypoDOffset: 0
OS2TypoLinegap: 0
OS2WinAscent: 2009
OS2WinAOffset: 0
OS2WinDescent: 1299
OS2WinDOffset: 0
HheadAscent: 2009
HheadAOffset: 0
HheadDescent: -1299
HheadDOffset: 0
OS2SubXSize: 1434
OS2SubYSize: 1331
OS2SubXOff: 0
OS2SubYOff: 293
OS2SupXSize: 1434
OS2SupYSize: 1331
OS2SupXOff: 0
OS2SupYOff: 928
OS2StrikeYSize: 102
OS2StrikeYPos: 512
OS2CapHeight: 1701
OS2XHeight: 909
OS2Vendor: ' '
OS2CodePages: 00000003.00000000
OS2UnicodeRanges: 800000af.4000284a.00000000.00000000
Lookup: 6 0 0 "OsseTick" { "OsseTick contextual 0" "OsseTick contextual 1" "OsseTick contextual 2" "OsseTick contextual 3" "OsseTick contextual 4" "OsseTick contextual 5" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 1" { "Single Substitution lookup 1 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 2" { "Single Substitution lookup 2 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 3" { "Single Substitution lookup 3 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 4" { "Single Substitution lookup 4 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 5" { "Single Substitution lookup 5 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 6" { "Single Substitution lookup 6 subtable" } []
Lookup: 4 0 1 "Ligatures" { "Ligatures subtable" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 6 0 0 "WidthAdjust" { "WidthAdjust contextual 0" "WidthAdjust contextual 1" "WidthAdjust contextual 2" "WidthAdjust contextual 3" "WidthAdjust contextual 4" "WidthAdjust contextual 5" "WidthAdjust contextual 6" "WidthAdjust contextual 7" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 9" { "Single Substitution lookup 9 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 10" { "Single Substitution lookup 10 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 11" { "Single Substitution lookup 11 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 12" { "Single Substitution lookup 12 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 13" { "Single Substitution lookup 13 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 14" { "Single Substitution lookup 14 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 15" { "Single Substitution lookup 15 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 16" { "Single Substitution lookup 16 subtable" } []
Lookup: 6 0 0 "LambeBar" { "LambeBar contextual 0" "LambeBar contextual 1" "LambeBar contextual 2" "LambeBar contextual 3" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 18" { "Single Substitution lookup 18 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 19" { "Single Substitution lookup 19 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 20" { "Single Substitution lookup 20 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 21" { "Single Substitution lookup 21 subtable" } []
Lookup: 6 0 0 "LambeSarince" { "LambeSarince contextual 0" "LambeSarince contextual 1" "LambeSarince contextual 2" "LambeSarince contextual 3" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 23" { "Single Substitution lookup 23 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 24" { "Single Substitution lookup 24 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 25" { "Single Substitution lookup 25 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 26" { "Single Substitution lookup 26 subtable" } []
Lookup: 6 0 0 "SarinceNoFin" { "SarinceNoFin contextual 0" "SarinceNoFin contextual 1" "SarinceNoFin contextual 2" "SarinceNoFin contextual 3" "SarinceNoFin contextual 4" } ['liga' ('DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 28" { "Single Substitution lookup 28 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 29" { "Single Substitution lookup 29 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 30" { "Single Substitution lookup 30 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 31" { "Single Substitution lookup 31 subtable" } []
Lookup: 1 0 0 "Single Substitution lookup 32" { "Single Substitution lookup 32 subtable" } []
Lookup: 260 0 0 "'mark' Mark Positioning Lookup 0" { "'mark' Mark Positioning lookup 0-1" } ['mark' ('DFLT' <'dflt' > ) ]
Lookup: 262 0 0 "'mkmk' Mark to Mark lookup 1" { "'mkmk' Mark to Mark lookup 1-1" } ['mkmk' ('DFLT' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 2" { } ['kern' ('DFLT' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
ChainSub2: coverage "SarinceNoFin contextual 4" 0 0 0 1
1 0 1
Coverage: 126 parma formen vala parma_ext calma anna umbar ampa malta umbar_ext anga noldo yanta hyarmen hwesta_sindarinwa bombadil_hw vaiya
FCoverage: 11 sarince_end
1
SeqLookup: 0 "Single Substitution lookup 32"
EndFPST
ChainSub2: coverage "SarinceNoFin contextual 3" 0 0 0 1
1 0 2
Coverage: 126 parma formen vala parma_ext calma anna umbar ampa malta umbar_ext anga noldo yanta hyarmen hwesta_sindarinwa bombadil_hw vaiya
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 11 sarince_end
1
SeqLookup: 0 "Single Substitution lookup 31"
EndFPST
ChainSub2: coverage "SarinceNoFin contextual 2" 0 0 0 1
1 0 3
Coverage: 126 parma formen vala parma_ext calma anna umbar ampa malta umbar_ext anga noldo yanta hyarmen hwesta_sindarinwa bombadil_hw vaiya
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 11 sarince_end
1
SeqLookup: 0 "Single Substitution lookup 30"
EndFPST
ChainSub2: coverage "SarinceNoFin contextual 1" 0 0 0 1
1 0 4
Coverage: 126 parma formen vala parma_ext calma anna umbar ampa malta umbar_ext anga noldo yanta hyarmen hwesta_sindarinwa bombadil_hw vaiya
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 11 sarince_end
1
SeqLookup: 0 "Single Substitution lookup 29"
EndFPST
ChainSub2: coverage "SarinceNoFin contextual 0" 0 0 0 1
1 0 5
Coverage: 126 parma formen vala parma_ext calma anna umbar ampa malta umbar_ext anga noldo yanta hyarmen hwesta_sindarinwa bombadil_hw vaiya
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 11 sarince_end
1
SeqLookup: 0 "Single Substitution lookup 28"
EndFPST
ChainSub2: coverage "LambeSarince contextual 3" 0 0 0 1
1 1 0
Coverage: 15 sarince_combine
BCoverage: 5 lambe
1
SeqLookup: 0 "Single Substitution lookup 26"
EndFPST
ChainSub2: coverage "LambeSarince contextual 2" 0 0 0 1
1 2 0
Coverage: 15 sarince_combine
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 5 lambe
1
SeqLookup: 0 "Single Substitution lookup 25"
EndFPST
ChainSub2: coverage "LambeSarince contextual 1" 0 0 0 1
1 3 0
Coverage: 15 sarince_combine
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 5 lambe
1
SeqLookup: 0 "Single Substitution lookup 24"
EndFPST
ChainSub2: coverage "LambeSarince contextual 0" 0 0 0 1
1 4 0
Coverage: 15 sarince_combine
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 5 lambe
1
SeqLookup: 0 "Single Substitution lookup 23"
EndFPST
ChainSub2: coverage "LambeBar contextual 3" 0 0 0 1
1 1 0
Coverage: 14 bar_below_wide
BCoverage: 10 lambe alda
1
SeqLookup: 0 "Single Substitution lookup 21"
EndFPST
ChainSub2: coverage "LambeBar contextual 2" 0 0 0 1
1 2 0
Coverage: 14 bar_below_wide
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 10 lambe alda
1
SeqLookup: 0 "Single Substitution lookup 20"
EndFPST
ChainSub2: coverage "LambeBar contextual 1" 0 0 0 1
1 3 0
Coverage: 14 bar_below_wide
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 10 lambe alda
1
SeqLookup: 0 "Single Substitution lookup 19"
EndFPST
ChainSub2: coverage "LambeBar contextual 0" 0 0 0 1
1 4 0
Coverage: 14 bar_below_wide
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 10 lambe alda
1
SeqLookup: 0 "Single Substitution lookup 18"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 7" 0 0 0 1
1 1 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 125 hyarmen aara telco halla bombadil_hw lowdham_hw digit_four digit_seven digit_ten digit_eleven hyarmen.nofin bombadil_hw.nofin
1
SeqLookup: 0 "Single Substitution lookup 16"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 6" 0 0 0 1
1 2 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 125 hyarmen aara telco halla bombadil_hw lowdham_hw digit_four digit_seven digit_ten digit_eleven hyarmen.nofin bombadil_hw.nofin
1
SeqLookup: 0 "Single Substitution lookup 15"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 5" 0 0 0 1
1 3 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 125 hyarmen aara telco halla bombadil_hw lowdham_hw digit_four digit_seven digit_ten digit_eleven hyarmen.nofin bombadil_hw.nofin
1
SeqLookup: 0 "Single Substitution lookup 14"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 4" 0 0 0 1
1 4 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 125 hyarmen aara telco halla bombadil_hw lowdham_hw digit_four digit_seven digit_ten digit_eleven hyarmen.nofin bombadil_hw.nofin
1
SeqLookup: 0 "Single Substitution lookup 13"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 3" 0 0 0 1
1 1 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 234 ando umbar anga ungwe anto ampa anca unque nuumen malta noldo nwalme ando_ext umbar_ext anga_ext ungwe_ext lambe alda tengwa_mh digit_three digit_six digit_nine umbar.nofin ampa.nofin malta.nofin umbar_ext.nofin anga.nofin noldo.nofin
1
SeqLookup: 0 "Single Substitution lookup 12"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 2" 0 0 0 1
1 2 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 234 ando umbar anga ungwe anto ampa anca unque nuumen malta noldo nwalme ando_ext umbar_ext anga_ext ungwe_ext lambe alda tengwa_mh digit_three digit_six digit_nine umbar.nofin ampa.nofin malta.nofin umbar_ext.nofin anga.nofin noldo.nofin
1
SeqLookup: 0 "Single Substitution lookup 11"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 1" 0 0 0 1
1 3 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 234 ando umbar anga ungwe anto ampa anca unque nuumen malta noldo nwalme ando_ext umbar_ext anga_ext ungwe_ext lambe alda tengwa_mh digit_three digit_six digit_nine umbar.nofin ampa.nofin malta.nofin umbar_ext.nofin anga.nofin noldo.nofin
1
SeqLookup: 0 "Single Substitution lookup 10"
EndFPST
ChainSub2: coverage "WidthAdjust contextual 0" 0 0 0 1
1 4 0
Coverage: 32 bar_above bar_below tengwa_tilde
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
BCoverage: 234 ando umbar anga ungwe anto ampa anca unque nuumen malta noldo nwalme ando_ext umbar_ext anga_ext ungwe_ext lambe alda tengwa_mh digit_three digit_six digit_nine umbar.nofin ampa.nofin malta.nofin umbar_ext.nofin anga.nofin noldo.nofin
1
SeqLookup: 0 "Single Substitution lookup 9"
EndFPST
ChainSub2: coverage "OsseTick contextual 5" 0 0 0 1
1 0 1
Coverage: 14 stemless_calma
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 6"
EndFPST
ChainSub2: coverage "OsseTick contextual 4" 0 0 0 1
1 0 2
Coverage: 14 stemless_calma
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 5"
EndFPST
ChainSub2: coverage "OsseTick contextual 3" 0 0 0 1
1 0 3
Coverage: 14 stemless_calma
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 4"
EndFPST
ChainSub2: coverage "OsseTick contextual 2" 0 0 0 1
1 0 4
Coverage: 14 stemless_calma
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 3"
EndFPST
ChainSub2: coverage "OsseTick contextual 1" 0 0 0 1
1 0 5
Coverage: 14 stemless_calma
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 2"
EndFPST
ChainSub2: coverage "OsseTick contextual 0" 0 0 0 1
1 0 6
Coverage: 14 stemless_calma
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 507 tripledot_above tripledot_below doubledot_above doubledot_below amatixe unutixe tecco_above tecco_below tecco_above_double tecco_below_double rightcurl_above rightcurl_below leftcurl_above leftcurl_below rightcurl_above_double leftcurl_above_double bar_above bar_below tengwa_tilde tehta_breve tehta_grave yanta_above tripledot_above_inverted tehta_dotinside tehta_circumflex tehta_caron lsd_marker bar_above bar_below tengwa_tilde bar_above bar_below tengwa_tilde_narrow tengwa_tilde_narrow lambe_bar_below
FCoverage: 82 calma anga harma anca noldo anna calma_ext anga_ext stemless_calma anna_sindarinwa
1
SeqLookup: 0 "Single Substitution lookup 1"
EndFPST
TtTable: prep
PUSHW_1
0
CALL
SVTCA[y-axis]
PUSHW_3
1
5
2
CALL
SVTCA[x-axis]
PUSHW_3
6
4
2
CALL
SVTCA[x-axis]
PUSHW_8
6
54
44
34
25
15
0
8
CALL
PUSHW_8
7
42
35
28
19
12
0
8
CALL
PUSHW_8
8
42
35
28
19
15
0
8
CALL
PUSHW_8
9
36
29
23
16
10
0
8
CALL
SVTCA[y-axis]
PUSHW_8
1
109
89
69
50
30
0
8
CALL
PUSHW_8
2
91
74
58
41
25
0
8
CALL
PUSHW_8
3
64
52
41
29
18
0
8
CALL
PUSHW_8
4
42
35
28
19
15
0
8
CALL
PUSHW_8
5
36
29
23
16
10
0
8
CALL
SVTCA[y-axis]
PUSHW_3
10
4
7
CALL
PUSHW_1
0
DUP
RCVT
RDTG
ROUND[Black]
RTG
WCVTP
MPPEM
PUSHW_1
500
GT
IF
PUSHB_1
1
ELSE
PUSHB_1
0
EIF
PUSHB_1
1
INSTCTRL
EndTTInstrs
TtTable: fpgm
PUSHW_1
0
FDEF
MPPEM
PUSHW_1
9
LT
IF
PUSHB_2
1
1
INSTCTRL
EIF
PUSHW_1
511
SCANCTRL
PUSHW_1
68
SCVTCI
PUSHW_2
9
3
SDS
SDB
ENDF
PUSHW_1
1
FDEF
DUP
DUP
RCVT
ROUND[Black]
WCVTP
PUSHB_1
1
ADD
ENDF
PUSHW_1
2
FDEF
PUSHW_1
1
LOOPCALL
POP
ENDF
PUSHW_1
3
FDEF
DUP
GC[cur]
PUSHB_1
3
CINDEX
GC[cur]
GT
IF
SWAP
EIF
DUP
ROLL
DUP
ROLL
MD[grid]
ABS
ROLL
DUP
GC[cur]
DUP
ROUND[Grey]
SUB
ABS
PUSHB_1
4
CINDEX
GC[cur]
DUP
ROUND[Grey]
SUB
ABS
GT
IF
SWAP
NEG
ROLL
EIF
MDAP[rnd]
DUP
PUSHB_1
0
GTEQ
IF
ROUND[Black]
DUP
PUSHB_1
0
EQ
IF
POP
PUSHB_1
64
EIF
ELSE
ROUND[Black]
DUP
PUSHB_1
0
EQ
IF
POP
PUSHB_1
64
NEG
EIF
EIF
MSIRP[no-rp0]
ENDF
PUSHW_1
4
FDEF
DUP
GC[cur]
PUSHB_1
4
CINDEX
GC[cur]
GT
IF
SWAP
ROLL
EIF
DUP
GC[cur]
DUP
ROUND[White]
SUB
ABS
PUSHB_1
4
CINDEX
GC[cur]
DUP
ROUND[White]
SUB
ABS
GT
IF
SWAP
ROLL
EIF
MDAP[rnd]
MIRP[rp0,min,rnd,black]
ENDF
PUSHW_1
5
FDEF
MPPEM
DUP
PUSHB_1
3
MINDEX
LT
IF
LTEQ
IF
PUSHB_1
128
WCVTP
ELSE
PUSHB_1
64
WCVTP
EIF
ELSE
POP
POP
DUP
RCVT
PUSHB_1
192
LT
IF
PUSHB_1
192
WCVTP
ELSE
POP
EIF
EIF
ENDF
PUSHW_1
6
FDEF
DUP
DUP
RCVT
ROUND[Black]
WCVTP
PUSHB_1
1
ADD
DUP
DUP
RCVT
RDTG
ROUND[Black]
RTG
WCVTP
PUSHB_1
1
ADD
ENDF
PUSHW_1
7
FDEF
PUSHW_1
6
LOOPCALL
ENDF
PUSHW_1
8
FDEF
MPPEM
DUP
PUSHB_1
3
MINDEX
GTEQ
IF
PUSHB_1
64
ELSE
PUSHB_1
0
EIF
ROLL
ROLL
DUP
PUSHB_1
3
MINDEX
GTEQ
IF
SWAP
POP
PUSHB_1
128
ROLL
ROLL
ELSE
ROLL
SWAP
EIF
DUP
PUSHB_1
3
MINDEX
GTEQ
IF
SWAP
POP
PUSHW_1
192
ROLL
ROLL
ELSE
ROLL
SWAP
EIF
DUP
PUSHB_1
3
MINDEX
GTEQ
IF
SWAP
POP
PUSHW_1
256
ROLL
ROLL
ELSE
ROLL
SWAP
EIF
DUP
PUSHB_1
3
MINDEX
GTEQ
IF
SWAP
POP
PUSHW_1
320
ROLL
ROLL
ELSE
ROLL
SWAP
EIF
DUP
PUSHW_1
3
MINDEX
GTEQ
IF
PUSHB_1
3
CINDEX
RCVT
PUSHW_1
384
LT
IF
SWAP
POP
PUSHW_1
384
SWAP
POP
ELSE
PUSHB_1
3
CINDEX
RCVT
SWAP
POP
SWAP
POP
EIF
ELSE
POP
EIF
WCVTP
ENDF
PUSHW_1
9
FDEF
MPPEM
GTEQ
IF
RCVT
WCVTP
ELSE
POP
POP
EIF
ENDF
EndTTInstrs
ShortTable: cvt 18
42
104
125
178
270
320
212
270
270
320
-1060
20
0
10
909
3
925
5
EndShort
ShortTable: maxp 16
1
0
242
1113
15
0
0
1
0
0
10
0
512
371
0
0
EndShort
LangName: 1033
GaspTable: 3 8 2 16 1 65535 3 0
Encoding: Custom
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 39 14
BeginPrivate: 0
EndPrivate
TeXData: 1 0 0 322560 161280 107520 0 -1048576 107520 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
AnchorClass2: "inside" "'mark' Mark Positioning lookup 0-1" "shook" "'mark' Mark Positioning lookup 0-1" "mkmk_down" "'mkmk' Mark to Mark lookup 1-1" "mkmk_up" "'mkmk' Mark to Mark lookup 1-1" "lambe_bar" "'mark' Mark Positioning lookup 0-1" "TehtaBelow" "'mark' Mark Positioning lookup 0-1" "TehtaAbove" "'mark' Mark Positioning lookup 0-1" "Anchor-0""" "Anchor-1""" "Anchor-2""" "Anchor-3""" "Anchor-4""" "Anchor-5""" "Anchor-6""" "Anchor-7""" "Anchor-8"""
BeginChars: 163 163
StartChar: space
Encoding: 0 32 0
Width: 630
GlyphClass: 1
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: parenleft
Encoding: 2 40 1
Width: 639
GlyphClass: 1
Flags: W
LayerCount: 2
Fore
SplineSet
599 1698 m 1,0,1
415 1388 415 1388 326.5 1057 c 128,-1,2
238 726 238 726 238 359 c 0,3,4
238 203 238 203 256.5 50.5 c 128,-1,5
275 -102 275 -102 314 -249 c 128,-1,6
353 -396 353 -396 413 -536.5 c 128,-1,7
473 -677 473 -677 555 -808 c 1,8,-1
352 -937 l 1,9,10
280 -819 280 -819 227.5 -686 c 128,-1,11
175 -553 175 -553 141.5 -411 c 128,-1,12
108 -269 108 -269 91.5 -120.5 c 128,-1,13
75 28 75 28 75 177 c 0,14,15
75 392 75 392 105.5 600 c 128,-1,16
136 808 136 808 196.5 1003.5 c 128,-1,17
257 1199 257 1199 348 1380 c 128,-1,18
439 1561 439 1561 560 1722 c 1,19,-1
599 1698 l 1,0,1
EndSplineSet
Validated: 1
EndChar
StartChar: parenright
Encoding: 3 41 2
Width: 639
GlyphClass: 1
Flags: W
LayerCount: 2
Fore
SplineSet
40 -914 m 1,0,1
224 -604 224 -604 312.5 -273 c 128,-1,2
401 58 401 58 401 425 c 0,3,4
401 581 401 581 382.5 733.5 c 128,-1,5
364 886 364 886 325 1033 c 128,-1,6
286 1180 286 1180 226 1320.5 c 128,-1,7
166 1461 166 1461 84 1592 c 1,8,-1
287 1721 l 1,9,10
359 1602 359 1602 411.5 1469.5 c 128,-1,11
464 1337 464 1337 497.5 1195 c 128,-1,12
531 1053 531 1053 547.5 904.5 c 128,-1,13
564 756 564 756 564 607 c 0,14,15
564 392 564 392 533.5 184 c 128,-1,16
503 -24 503 -24 442.5 -219.5 c 128,-1,17
382 -415 382 -415 291 -596 c 128,-1,18
200 -777 200 -777 79 -938 c 1,19,-1
40 -914 l 1,0,1
EndSplineSet
Validated: 1
EndChar
StartChar: colon
Encoding: 4 58 3
Width: 513
GlyphClass: 1
Flags: W
LayerCount: 2
Fore
SplineSet
73 770 m 1,0,-1
233 930 l 1,1,-1
393 770 l 1,2,-1
233 610 l 1,3,-1
73 770 l 1,0,-1
73 112 m 1,4,-1
233 272 l 1,5,-1
393 112 l 1,6,-1
233 -48 l 1,7,-1
73 112 l 1,4,-1
EndSplineSet
Validated: 1
EndChar
StartChar: semicolon
Encoding: 5 59 4
Width: 614
GlyphClass: 1
Flags: W
LayerCount: 2
Fore
SplineSet
333 332 m 1,0,1
322 317 322 317 307.5 291.5 c 128,-1,2
293 266 293 266 281 234 c 0,3,4
263 187 263 187 263 149 c 0,5,6
263 116 263 116 276 84.5 c 128,-1,7
289 53 289 53 304 22 c 128,-1,8
319 -9 319 -9 332 -40 c 128,-1,9
345 -71 345 -71 345 -104 c 0,10,11
345 -164 345 -164 321.5 -206.5 c 128,-1,12
298 -249 298 -249 258.5 -280 c 128,-1,13
219 -311 219 -311 167 -332.5 c 128,-1,14
115 -354 115 -354 57 -371 c 1,15,-1
42 -317 l 1,16,17
69 -306 69 -306 98 -294 c 128,-1,18
127 -282 127 -282 150.5 -266.5 c 128,-1,19
174 -251 174 -251 189 -229.5 c 128,-1,20
204 -208 204 -208 204 -178 c 0,21,22
204 -144 204 -144 189 -115.5 c 128,-1,23
174 -87 174 -87 153 -61 c 0,24,25
127 -27 127 -27 105 13.5 c 128,-1,26
83 54 83 54 83 98 c 0,27,28
83 118 83 118 86.5 140.5 c 128,-1,29
90 163 90 163 96 184 c 128,-1,30
102 205 102 205 109.5 223 c 128,-1,31
117 241 117 241 125 252 c 1,32,33
150 265 150 265 168 275 c 128,-1,34
186 285 186 285 204 296 c 128,-1,35
222 307 222 307 243.5 322 c 128,-1,36