-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDomitian-Roman.sfd
39268 lines (38259 loc) · 893 KB
/
Domitian-Roman.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: Domitian-Roman
FullName: Domitian Roman
FamilyName: Domitian
Weight: Roman
Copyright: Copyright (c) 2014, 2015 by (URW)++ Design & Development\nCopyright (c) 2019, 2020 by Daniel Benjamin Miller
Version: 1.0.1
ItalicAngle: 0
UnderlinePosition: -100
UnderlineWidth: 50
Ascent: 726
Descent: 274
InvalidEm: 0
sfntRevision: 0x00010000
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 921 275376880 8219245]
UniqueID: 4064644
StyleMap: 0x0040
FSType: 0
OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 0
CreationTime: 1464719618
ModificationTime: 1590398336
PfmFamily: 81
TTFWeight: 400
TTFWidth: 5
LineGap: 200
VLineGap: 0
Panose: 2 4 5 2 5 5 5 3 3 4
OS2TypoAscent: 726
OS2TypoAOffset: 0
OS2TypoDescent: -274
OS2TypoDOffset: 0
OS2TypoLinegap: 200
OS2WinAscent: 927
OS2WinAOffset: 0
OS2WinDescent: 283
OS2WinDOffset: 0
HheadAscent: 726
HheadAOffset: 0
HheadDescent: -274
HheadDOffset: 0
OS2SubXSize: 650
OS2SubYSize: 600
OS2SubXOff: 0
OS2SubYOff: 75
OS2SupXSize: 650
OS2SupYSize: 600
OS2SupXOff: 0
OS2SupYOff: 350
OS2StrikeYSize: 50
OS2StrikeYPos: 269
OS2CapHeight: 689
OS2XHeight: 449
OS2Vendor: 'XDBM'
OS2CodePages: 6000009f.00000000
OS2UnicodeRanges: 00000287.00000800.00000000.00000000
Lookup: 1 0 0 "'smcp' Lowercase to Small Capitals in Latin lookup 0" { "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ("sc") } ['smcp' ('latn' <'dflt' > ) ]
Lookup: 1 0 0 "'c2sc' Capitals to Small Capitals in Latin lookup 0" { "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" ("sc") } ['c2sc' ('latn' <'dflt' > ) ]
Lookup: 1 0 0 "'aalt' Access All Alternates lookup 0" { "'aalt' Access All Alternates lookup 0 subtable" } ['aalt' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 3 0 0 "'aalt' Access All Alternates lookup 1" { "'aalt' Access All Alternates lookup 1 subtable" } ['aalt' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'locl' Localized Forms in Latin lookup 2" { "'locl' Localized Forms in Latin lookup 2 subtable" } ['locl' ('latn' <'MOL ' 'ROM ' > ) ]
Lookup: 1 0 0 "'sups' Superscript lookup 3" { "'sups' Superscript lookup 3 subtable" ("superior") } ['sups' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'sinf' Scientific Inferiors lookup 24" { "'sinf' Scientific Inferiors lookup 24-1" ("infs") } ['sinf' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'numr' Numerators lookup 4" { "'numr' Numerators lookup 4 subtable" } ['numr' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'dnom' Denominators lookup 5" { "'dnom' Denominators lookup 5 subtable" } ['dnom' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 22" { "'onum' Oldstyle Figures lookup 22-1" ("onum") } ['onum' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 6" { "'frac' Diagonal Fractions lookup 6 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 7" { "'frac' Diagonal Fractions lookup 7 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 8" { "'frac' Diagonal Fractions lookup 8 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 9" { "'frac' Diagonal Fractions lookup 9 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 10" { "'frac' Diagonal Fractions lookup 10 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 11" { "'frac' Diagonal Fractions lookup 11 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 12" { "'frac' Diagonal Fractions lookup 12 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 13" { "'frac' Diagonal Fractions lookup 13 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 0 "'frac' Diagonal Fractions lookup 14" { "'frac' Diagonal Fractions lookup 14 subtable" } ['frac' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 4 0 1 "'liga' Standard Ligatures in Latin lookup 15" { "'liga' Standard Ligatures in Latin lookup 15 subtable" } ['liga' ('latn' <'DEU ' 'MOL ' 'ROM ' 'SRB ' 'dflt' > ) ]
Lookup: 1 0 0 "'hist' Historical Forms lookup 18" { "'hist' Historical Forms lookup 18 subtable" } ['hist' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "'fina' Terminal Forms lookup 19" { "'fina' Terminal Forms lookup 19 subtable" } ['fina' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 6 0 0 "'ordn' Ordinals lookup 20" { "'ordn' Ordinals lookup 20 contextual 0" "'ordn' Ordinals lookup 20 contextual 1" "'ordn' Ordinals lookup 20 contextual 2" "'ordn' Ordinals lookup 20 contextual 3" } ['ordn' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'AZE ' 'CRT ' 'DEU ' 'MOL ' 'ROM ' 'SRB ' 'TRK ' 'dflt' > ) ]
Lookup: 1 0 0 "Single Substitution lookup 21" { "Single Substitution lookup 21 subtable" } []
Lookup: 258 0 0 "kernHorizontalKerninginLatinlookup0" { "kernHorizontalKerninginLatinlookup0 per glyph data 0" [150,15,0] "kernHorizontalKerninginLatinlookup0 kerning class 1" [150,0,0] } ['kern' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
KernClass2: 36 49 "kernHorizontalKerninginLatinlookup0 kerning class 1"
84 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek Aringacute
1 B
19 D Eth Dcaron Dcroat
1 F
40 L Lacute Lcommaaccent Lcaron Ldot Lslash
92 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut Oslashacute
1 P
28 R Racute Rcommaaccent Rcaron
34 T Tcommaaccent Tcaron Tbar uni021A
87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek
1 V
37 W Wcircumflex Wgrave Wacute Wdieresis
37 Y Yacute Ycircumflex Ydieresis Ygrave
117 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc amacron.sc abreve.sc aogonek.sc aringacute.sc
31 d.sc dcaron.sc dcroat.sc eth.sc
4 f ff
4 f.sc
10 j.sc ij.sc
58 l.sc lacute.sc lcommaaccent.sc lcaron.sc ldot.sc lslash.sc
50 n.sc ntilde.sc nacute.sc ncommaaccent.sc ncaron.sc
125 o.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc omacron.sc obreve.sc ohungarumlaut.sc oslashacute.sc
4 p.sc
12 quotedblleft
9 quoteleft
28 r racute rcommaaccent rcaron
40 r.sc racute.sc rcommaaccent.sc rcaron.sc
67 s.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc scommaaccent.sc
49 t.sc tcommaaccent.sc tcaron.sc tbar.sc uni021B.sc
120 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc
1 v
4 v.sc
37 w wcircumflex wgrave wacute wdieresis
52 w.sc wcircumflex.sc wgrave.sc wacute.sc wdieresis.sc
4 x.sc
52 y.sc yacute.sc ycircumflex.sc ydieresis.sc ygrave.sc
95 A Agrave Aacute Acircumflex Atilde Adieresis Aring AE Amacron Abreve Aogonek Aringacute AEacute
95 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut OE Oslashacute
34 T Tcommaaccent Tcaron Tbar uni021A
87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek
1 V
37 W Wcircumflex Wgrave Wacute Wdieresis
37 Y Yacute Ycircumflex Ydieresis Ygrave
84 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek aeacute
134 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc aringacute.sc aeacute.sc
47 c ccedilla cacute ccircumflex cdotaccent ccaron
65 c.sc ccedilla.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc
5 colon
5 comma
15 d dcaron dcroat
79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij
78 e egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron
108 e.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc
29 f germandbls ff fi fl ffi ffl
44 g gcircumflex gbreve gdotaccent gcommaaccent
59 g.sc gcircumflex.sc gbreve.sc gdotaccent.sc gcommaaccent.sc
18 h hcircumflex hbar
27 h.sc hcircumflex.sc hbar.sc
6 hyphen
100 i.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc ij.sc itilde.sc imacron.sc ibreve.sc iogonek.sc
83 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut oe
131 o.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc oslashacute.sc
1 p
6 period
1 q
4 q.sc
13 quotedblright
10 quoteright
28 r racute rcommaaccent rcaron
40 r.sc racute.sc rcommaaccent.sc rcaron.sc
49 s sacute scircumflex scedilla scaron scommaaccent
67 s.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc scommaaccent.sc
9 semicolon
5 space
49 t.sc tcommaaccent.sc tcaron.sc tbar.sc uni021B.sc
87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek
120 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc
1 v
4 v.sc
37 w wcircumflex wgrave wacute wdieresis
52 w.sc wcircumflex.sc wgrave.sc wacute.sc wdieresis.sc
4 x.sc
37 y yacute ydieresis ycircumflex ygrave
52 y.sc yacute.sc ycircumflex.sc ydieresis.sc ygrave.sc
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} -37 {} -111 {} -74 {} -111 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} -55 {} -92 {} -92 {} -74 {} -74 {} 0 {} -74 {} -74 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} -92 {} -74 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} -129 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} -129 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} -55 {} -37 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -37 {} 0 {} -74 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} -92 {} -111 {} 0 {} -55 {} -74 {} 0 {} -55 {} -92 {} -55 {} 0 {} 0 {} 0 {} 0 {} -55 {} -55 {} -55 {} -92 {} -92 {} 0 {} -74 {} 0 {} 0 {} 0 {} 0 {} -90 {} -74 {} -90 {} 0 {} -55 {} 0 {} 0 {} -90 {} -74 {} 0 {} 0 {} -90 {} -74 {} 0 {} -90 {} -74 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} -129 {} 0 {} 0 {} -55 {} -129 {} 0 {} -55 {} -111 {} -111 {} 0 {} 0 {} -55 {} 0 {} 0 {} -74 {} -55 {} -111 {} -111 {} 0 {} -129 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} -92 {} -74 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} -111 {} 0 {} 0 {} -18 {} -92 {} 0 {} -55 {} -92 {} -92 {} 0 {} 0 {} 0 {} 0 {} -55 {} -55 {} -55 {} -92 {} -92 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -50 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} -50 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} -92 {} 0 {} -111 {} 0 {} 0 {} 0 {} -55 {} -92 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -92 {} -92 {} -111 {} 0 {} -90 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -90 {} -90 {} -90 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -18 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} -55 {} 0 {} -74 {} 0 {} -55 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -55 {} 0 {} -55 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} -18 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -74 {} -18 {} 0 {} -18 {} 0 {} 0 {} -18 {} 0 {} -18 {} 0 {} -18 {} 0 {} -18 {} 0 {} 0 {} -74 {} -18 {} 0 {} 0 {} 74 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -74 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} 0 {} -18 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -111 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {}
ChainSub2: coverage "'ordn' Ordinals lookup 20 contextual 3" 0 0 0 1
1 2 0
Coverage: 1 o
BCoverage: 6 period
BCoverage: 49 zero one two three four five six seven eight nine
1
SeqLookup: 0 "Single Substitution lookup 21"
EndFPST
ChainSub2: coverage "'ordn' Ordinals lookup 20 contextual 2" 0 0 0 1
1 2 0
Coverage: 1 a
BCoverage: 6 period
BCoverage: 49 zero one two three four five six seven eight nine
1
SeqLookup: 0 "Single Substitution lookup 21"
EndFPST
ChainSub2: coverage "'ordn' Ordinals lookup 20 contextual 1" 0 0 0 1
1 1 0
Coverage: 1 o
BCoverage: 49 zero one two three four five six seven eight nine
1
SeqLookup: 0 "Single Substitution lookup 21"
EndFPST
ChainSub2: coverage "'ordn' Ordinals lookup 20 contextual 0" 0 0 0 1
1 1 0
Coverage: 1 a
BCoverage: 49 zero one two three four five six seven eight nine
1
SeqLookup: 0 "Single Substitution lookup 21"
EndFPST
LangName: 1033 "Copyright 2014 by (URW)+-+- Design & Development.+AAoA-Copyright 2019 by Daniel Benjamin Miller." "" "" "" "Domitian-Roman" "Version 1.00"
DesignSize: 120
Encoding: UnicodeBmp
Compacted: 1
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -96
AntiAlias: 1
FitToEm: 1
WinInfo: 945 9 8
BeginPrivate: 6
BlueValues 31 [-20 0 689 709 459 469 726 728]
StdHW 4 [51]
StdVW 4 [84]
StemSnapH 22 [20 28 36 40 53 59 63]
StemSnapV 7 [84 95]
OtherBlues 19 [266 276 -283 -278]
EndPrivate
TeXData: 1 12582912 0 262144 131072 87381 481296 1048576 87381 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 65690 1009
StartChar: zero.onum
Encoding: 65536 -1 0
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
263 481 m 0
336.006848994 481 477 431.00276241 477 250 c 0
477 82.9970060149 368.014648438 -20 235 -20 c 0
113.983398438 -20 23 80 23 222 c 0
23 357 123 481 263 481 c 0
247 447 m 0
188 447 108 404 108 247 c 0
108 63.99726778 173.974030353 14 251 14 c 0
331 14 392 76.9864871034 392 225 c 0
392 404.011172836 330.005859375 447 247 447 c 0
EndSplineSet
EndChar
StartChar: space
Encoding: 32 32 1
Width: 250
Flags: MW
LayerCount: 2
Fore
Validated: 1
Kerns2: 198 -18 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 197 -18 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 176 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 175 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 174 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 173 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 172 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 171 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 58 -18 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 34 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0"
EndChar
StartChar: exclam
Encoding: 33 33 2
Width: 278
Flags: MW
LayerCount: 2
Fore
SplineSet
138 111 m 0
169 111 197 83 197 53 c 0
197 22 169 -5 137 -5 c 0
108 -5 81 22 81 53 c 0
81 83 108 111 138 111 c 0
160 694 m 1
194 694 l 1
194 669 l 2
194 654 192 616 187 574 c 0
184 547 183 542 182 526 c 2
158 248 l 1
158 223 l 1
130 200 l 1
120 205 l 1
120 215 l 1
120 221 l 1
118 245 l 1
92 550 l 2
90 579 88 604 85 656 c 1
160 694 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: quotedbl
Encoding: 34 34 3
Width: 371
Flags: MW
LayerCount: 2
Fore
SplineSet
105 469 m 1
85 469 l 1
52 665 l 1
52 670 l 2
52 690 73 709 95 709 c 0
116 709 138 690 138 670 c 0
138 669 138 667 137 665 c 2
105 469 l 1
286 469 m 1
266 469 l 1
233 665 l 1
233 670 l 2
233 690 254 709 276 709 c 0
297 709 319 690 319 670 c 0
319 669 319 667 318 665 c 2
286 469 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: numbersign
Encoding: 35 35 4
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
470 280 m 1
470 224 l 1
361 224 l 1
330 0 l 1
272 0 l 1
303 224 l 1
169 224 l 1
136 0 l 1
78 0 l 1
111 224 l 1
4 224 l 1
4 280 l 1
120 280 l 1
141 419 l 1
31 419 l 1
31 475 l 1
149 475 l 1
180 684 l 1
238 684 l 1
207 475 l 1
340 475 l 1
370 684 l 1
428 684 l 1
398 475 l 1
495 475 l 1
495 419 l 1
390 419 l 1
370 280 l 1
470 280 l 1
332 419 m 1
199 419 l 1
178 280 l 1
312 280 l 1
332 419 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: dollar
Encoding: 36 36 5
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
223 18 m 1
223 297 l 1
144 306 109 316 80 338 c 0
46 363 30 402 30 457 c 0
30 532 61 592 118 629 c 0
148 649 172 657 223 666 c 1
219 731 l 1
264 731 l 1
262 712 261 700 260 669 c 1
340 663 379 653 426 626 c 1
417 594 413 554 413 500 c 1
381 500 l 1
381 542 l 1
386 598 353 623 260 633 c 1
260 373 l 1
347 364 385 353 417 330 c 0
454 304 471 264 471 207 c 0
471 131 437 68 375 27 c 0
341 5 315 -5 260 -16 c 1
264 -116 l 1
219 -116 l 1
221 -95 221 -82 223 -18 c 1
161 -17 95 -2 30 24 c 1
36 63 39 93 42 172 c 1
74 172 l 1
74 108 l 1
65 65 130 26 223 18 c 1
260 292 m 1
260 18 l 1
341 32 392 92 392 173 c 0
392 246 358 277 260 292 c 1
223 379 m 1
223 630 l 1
187 626 171 620 151 604 c 0
121 580 105 542 105 494 c 0
105 421 137 390 223 379 c 1
EndSplineSet
Validated: 33
EndChar
StartChar: percent
Encoding: 37 37 6
Width: 840
Flags: MW
LayerCount: 2
Fore
SplineSet
203 689 m 0
291 689 355 624 355 535 c 0
355 439 286 368 193 368 c 0
103 368 39 432 39 522 c 0
39 619 108 689 203 689 c 0
200 666 m 0
145 666 111 612 111 526 c 0
111 440 141 391 194 391 c 0
248 391 283 446 283 532 c 0
283 615 252 666 200 666 c 0
650 321 m 0
738 321 802 256 802 167 c 0
802 71 733 0 640 0 c 0
550 0 486 64 486 154 c 0
486 251 555 321 650 321 c 0
647 298 m 0
592 298 558 244 558 158 c 0
558 72 588 23 641 23 c 0
695 23 730 78 730 164 c 0
730 247 699 298 647 298 c 0
250 -20 m 1
210 -20 l 1
576 709 l 1
616 709 l 1
250 -20 l 1
EndSplineSet
Validated: 1
Ligature2: "'frac' Diagonal Fractions lookup 6 subtable" zerosuperior fraction zerosuperior
Ligature2: "'frac' Diagonal Fractions lookup 6 subtable" zerosuperior slash zerosuperior
Ligature2: "'frac' Diagonal Fractions lookup 6 subtable" zero fraction zero
Ligature2: "'frac' Diagonal Fractions lookup 6 subtable" zero slash zero
EndChar
StartChar: ampersand
Encoding: 38 38 7
Width: 778
Flags: MW
LayerCount: 2
Fore
SplineSet
418 344 m 1
451 389 l 1
486 388 517 387 531 387 c 2
548 387 l 1
742 394 l 1
733 364 730 347 730 322 c 1
691 328 661 331 590 334 c 1
594 320 595 311 595 295 c 0
595 232 573 184 514 118 c 1
599 69 637 55 686 55 c 0
703 55 717 59 747 74 c 1
753 49 l 1
666 -14 l 2
660 -18 650 -20 632 -20 c 0
584 -20 509 12 451 57 c 1
379 2 322 -20 249 -20 c 0
129 -20 43 60 43 171 c 0
43 260 88 323 198 387 c 1
177 441 168 478 168 520 c 0
168 562 177 592 192 606 c 2
260 666 l 2
278 682 299 689 326 689 c 0
388 689 424 656 424 599 c 0
424 553 404 510 360 463 c 0
340 443 322 428 280 397 c 1
336 306 395 232 484 141 c 1
520 189 532 218 532 254 c 0
532 295 520 330 505 334 c 0
494 337 476 339 418 344 c 1
213 352 m 1
152 304 130 267 130 209 c 0
130 115 206 36 296 36 c 0
336 36 373 50 420 82 c 1
306 208 258 272 213 352 c 1
264 431 m 1
324 476 357 525 357 569 c 0
357 608 332 636 299 636 c 0
259 636 238 609 238 557 c 0
238 522 245 486 264 431 c 1
EndSplineSet
Validated: 1
EndChar
StartChar: quoteright
Encoding: 8217 8217 8
Width: 278
Flags: MW
LayerCount: 2
Fore
SplineSet
104 470 m 1
60 446 l 1
45 456 l 1
93 533 117 599 123 679 c 1
174 694 184 697 220 709 c 1
233 696 l 1
199 610 161 543 104 470 c 1
EndSplineSet
Validated: 1
Kerns2: 8 -37 "kernHorizontalKerninginLatinlookup0 per glyph data 0"
EndChar
StartChar: parenleft
Encoding: 40 40 9
Width: 333
Flags: MW
LayerCount: 2
Fore
SplineSet
301 -194 m 1
282 -215 l 1
200 -138 168 -99 132 -32 c 0
85 57 60 159 60 266 c 0
60 342 73 413 99 480 c 0
137 577 178 633 282 726 c 1
301 700 l 1
228 615 201 568 175 485 c 0
155 420 146 350 146 267 c 0
146 180 156 105 177 33 c 0
203 -57 229 -105 301 -194 c 1
EndSplineSet
Validated: 1
EndChar
StartChar: parenright
Encoding: 41 41 10
Width: 333
Flags: MW
LayerCount: 2
Fore
SplineSet
51 -215 m 1
32 -194 l 1
104 -105 130 -57 156 33 c 0
177 105 187 181 187 266 c 0
187 349 177 420 158 485 c 0
132 567 105 614 32 700 c 1
51 726 l 1
155 632 196 577 234 480 c 0
260 413 273 342 273 266 c 0
273 145 241 29 180 -68 c 0
149 -117 120 -150 51 -215 c 1
EndSplineSet
Validated: 1
EndChar
StartChar: asterisk
Encoding: 42 42 11
Width: 389
Flags: MW
LayerCount: 2
Fore
SplineSet
168 514 m 1
37 578 l 1
34 588 l 1
78 640 l 1
88 640 l 1
183 542 l 1
209 685 l 1
218 689 l 1
280 670 l 1
283 655 l 1
214 530 l 1
353 554 l 1
359 550 l 1
359 488 l 1
350 480 l 1
212 500 l 1
280 378 l 1
280 368 l 1
212 342 l 1
202 346 l 1
184 488 l 1
78 400 l 1
68 400 l 1
32 451 l 1
37 460 l 1
168 514 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: plus
Encoding: 43 43 12
Width: 606
Flags: MW
LayerCount: 2
Fore
SplineSet
275 289 m 1
275 512 l 1
331 512 l 1
331 289 l 1
555 289 l 1
555 233 l 1
331 233 l 1
331 7 l 1
275 7 l 1
275 233 l 1
51 233 l 1
51 289 l 1
275 289 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: comma
Encoding: 44 44 13
Width: 250
Flags: MW
LayerCount: 2
Fore
SplineSet
204 123 m 1
218 109 l 1
190 32 152 -31 71 -136 c 1
30 -155 l 1
16 -144 l 1
74 -48 99 17 106 93 c 1
159 108 177 114 204 123 c 1
EndSplineSet
Validated: 1
EndChar
StartChar: hyphen
Encoding: 45 45 14
Width: 333
Flags: MW
LayerCount: 2
Fore
SplineSet
282 215 m 1
22 215 l 1
17 220 l 1
44 287 l 1
307 287 l 1
312 282 l 1
282 215 l 1
EndSplineSet
Validated: 1
Kerns2: 698 -18 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 697 7 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 624 -83 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 623 -64 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 606 -35 "kernHorizontalKerninginLatinlookup0 per glyph data 0"
AlternateSubs2: "'aalt' Access All Alternates lookup 1 subtable" endash emdash minus
EndChar
StartChar: period
Encoding: 46 46 15
Width: 250
Flags: MW
LayerCount: 2
Fore
SplineSet
124 111 m 0
155 111 183 83 183 53 c 0
183 22 155 -5 123 -5 c 0
94 -5 67 22 67 53 c 0
67 83 94 111 124 111 c 0
EndSplineSet
Validated: 1
Kerns2: 169 -18 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 164 -10 "kernHorizontalKerninginLatinlookup0 per glyph data 0" 150 -34 "kernHorizontalKerninginLatinlookup0 per glyph data 0"
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" ellipsis
EndChar
StartChar: slash
Encoding: 47 47 16
Width: 606
Flags: MW
LayerCount: 2
Fore
SplineSet
519 726 m 1
147 -119 l 1
87 -119 l 1
459 726 l 1
519 726 l 1
EndSplineSet
Validated: 1
Substitution2: "'dnom' Denominators lookup 5 subtable" fraction
Substitution2: "'numr' Numerators lookup 4 subtable" fraction
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" fraction
EndChar
StartChar: zero
Encoding: 48 48 17
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
263 689 m 0
400 689 465 585 465 367 c 0
465 109 389 -20 238 -20 c 0
176 -20 120 8 85 57 c 0
50 106 29 207 29 324 c 0
29 566 108 689 263 689 c 0
245 654 m 0
150 654 113 572 113 360 c 0
113 116 153 15 251 15 c 0
292 15 323 34 343 71 c 0
370 119 381 193 381 316 c 0
381 556 342 654 245 654 c 0
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" zero.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" zero.onum
Substitution2: "'sups' Superscript lookup 3 subtable" zerosuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" zerosuperior
EndChar
StartChar: one
Encoding: 49 49 18
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
67 555 m 1
60 598 l 1
153 631 220 659 287 694 c 1
301 689 l 1
301 96 l 2
301 44 312 33 366 30 c 2
418 27 l 1
418 -3 l 1
371 -2 344 -2 330 -1 c 0
297 0 274 0 261 0 c 0
239 0 183 -1 96 -3 c 1
96 27 l 1
152 30 l 2
206 33 217 44 217 96 c 2
217 581 l 2
217 605 215 614 209 614 c 0
208 614 207 614 206 613 c 2
77 555 l 1
67 555 l 1
EndSplineSet
Validated: 1
Kerns2: 18 -55 "kernHorizontalKerninginLatinlookup0 per glyph data 0"
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" one.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" one.onum
Substitution2: "'sups' Superscript lookup 3 subtable" onesuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" onesuperior
EndChar
StartChar: two
Encoding: 50 50 19
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
16 23 m 1
186 204 l 2
299 324 341 397 341 473 c 0
341 559 287 612 200 612 c 0
133 612 97 587 81 529 c 2
68 483 l 1
39 483 l 1
56 619 l 1
106 669 154 689 226 689 c 0
353 689 431 618 431 503 c 0
431 428 401 373 304 270 c 2
122 77 l 1
307 81 353 82 468 87 c 1
466 66 466 56 466 42 c 0
466 27 466 17 468 -3 c 1
341 -1 282 0 239 0 c 0
195 0 138 -1 16 -3 c 1
16 23 l 1
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" two.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" two.onum
Substitution2: "'sups' Superscript lookup 3 subtable" twosuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" twosuperior
EndChar
StartChar: three
Encoding: 51 51 20
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
43 498 m 1
72 622 l 1
119 670 165 689 233 689 c 0
344 689 418 630 418 541 c 0
418 481 388 436 308 374 c 1
357 365 381 357 406 339 c 0
442 314 462 273 462 224 c 0
462 177 445 133 411 92 c 0
356 25 264 -20 184 -20 c 0
146 -20 103 -12 50 6 c 1
44 56 36 92 15 153 c 1
42 163 l 1
61 109 73 87 98 64 c 0
127 36 168 21 215 21 c 0
308 21 369 88 369 190 c 0
369 281 321 334 238 334 c 0
210 334 192 329 154 312 c 1
147 318 l 1
159 371 l 1
166 370 172 370 174 370 c 0
188 369 199 368 206 368 c 0
277 368 336 431 336 505 c 0
336 570 283 622 219 622 c 0
166 622 103 588 92 554 c 2
74 498 l 1
43 498 l 1
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" three.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" three.onum
Substitution2: "'sups' Superscript lookup 3 subtable" threesuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" threesuperior
EndChar
StartChar: four
Encoding: 52 52 21
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
280 181 m 1
13 181 l 1
2 204 l 1
285 667 l 1
359 694 l 1
371 689 l 1
366 663 364 571 364 384 c 2
364 245 l 1
388 245 l 1
391 245 l 2
422 245 441 245 472 248 c 1
472 177 l 1
444 180 423 181 364 181 c 1
364 106 l 2
366 44 374 34 424 30 c 2
472 27 l 1
472 -3 l 1
385 -1 345 0 315 0 c 0
287 0 248 -1 158 -3 c 1
158 27 l 1
220 30 l 2
270 33 278 44 280 106 c 2
280 181 l 1
280 245 m 1
280 597 l 1
65 245 l 1
280 245 l 1
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" four.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" four.onum
Substitution2: "'sups' Superscript lookup 3 subtable" foursuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" foursuperior
EndChar
StartChar: five
Encoding: 53 53 22
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
127 605 m 1
118 396 l 1
180 434 216 446 264 446 c 0
378 446 459 366 459 253 c 0
459 179 427 110 367 57 c 0
311 9 240 -20 173 -20 c 0
129 -20 90 -12 62 4 c 1
48 48 36 80 13 137 c 1
37 151 l 1
83 69 l 2
97 43 146 25 201 25 c 0
310 25 374 90 374 201 c 0
374 309 314 377 218 377 c 0
169 377 142 364 95 316 c 1
75 322 l 1
78 364 81 458 81 545 c 0
81 577 80 623 79 684 c 1
84 689 l 1
157 685 201 684 258 684 c 0
315 684 359 685 432 689 c 1
437 684 l 1
435 666 435 658 435 645 c 0
435 631 435 623 437 605 c 1
432 600 l 1
309 600 254 601 127 605 c 1
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" five.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" five.onum
Substitution2: "'sups' Superscript lookup 3 subtable" fivesuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" fivesuperior
EndChar
StartChar: six
Encoding: 54 54 23
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
131 331 m 1
154 349 l 2
213 396 243 409 293 409 c 0
399 409 468 334 468 219 c 0
468 82 371 -20 241 -20 c 0
111 -20 32 81 32 247 c 0
32 384 88 506 191 593 c 0
242 637 283 657 379 689 c 1
416 672 l 1
416 664 l 1
236 610 152 512 131 331 c 1
254 349 m 0
207 349 160 325 138 291 c 0
127 274 123 256 123 220 c 0
123 85 168 13 254 13 c 0
332 13 382 80 382 184 c 0
382 284 332 349 254 349 c 0
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" six.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" six.onum
Substitution2: "'sups' Superscript lookup 3 subtable" sixsuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" sixsuperior
EndChar
StartChar: seven
Encoding: 55 55 24
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
56 10 m 1
300 402 l 2
338 463 369 521 409 603 c 1
142 603 l 2
95 602 89 595 81 533 c 2
74 477 l 1
44 477 l 1
46 538 47 564 47 579 c 0
47 594 46 622 44 684 c 1
54 689 l 1
149 685 197 684 273 684 c 0
352 684 408 685 497 689 c 1
497 659 l 1
314 330 l 2
248 210 199 106 157 -3 c 1
128 -1 119 0 111 0 c 0
103 0 94 -1 65 -3 c 1
56 10 l 1
EndSplineSet
Validated: 1
Substitution2: "'sinf' Scientific Inferiors lookup 24-1" seven.infs
Substitution2: "'onum' Oldstyle Figures lookup 22-1" seven.onum
Substitution2: "'sups' Superscript lookup 3 subtable" sevensuperior
Substitution2: "'aalt' Access All Alternates lookup 0 subtable" sevensuperior
EndChar
StartChar: eight
Encoding: 56 56 25
Width: 500
Flags: MW
LayerCount: 2
Fore
SplineSet
168 345 m 1
79 402 53 440 53 508 c 0
53 613 140 689 259 689 c 0
365 689 436 631 436 545 c 0
436 485 404 443 313 381 c 1
428 329 464 286 464 207 c 0
464 82 357 -20 226 -20 c 0
112 -20 30 55 30 159 c 0
30 211 50 256 88 294 c 0
110 315 127 326 168 345 c 1
284 295 m 2
204 331 l 1
130 286 101 240 101 167 c 0
101 73 156 14 241 14 c 0
322 14 385 80 385 164 c 0
385 218 348 266 284 295 c 2
223 423 m 2
278 396 l 1