-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMegavoltPXL.glyphs
27541 lines (27535 loc) · 293 KB
/
MegavoltPXL.glyphs
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
{
.appVersion = "3039";
.formatVersion = 3;
DisplayStrings = (
JILL,
ONERS,
"D/.notdef @D©DER",
"/S.ss05/S.ss05/Z.ss05/Z.ss05
/s.ss05/s.ss05/z.ss05 z",
"DḌḎḤĿḶḸNṂṄṆRṚṜSṠṢṬYẎZẒodḍḏḥĭŀlḷḹṃṅṇṛṝṡṣtṭyẏẓ",
"",
"/l.ss06",
"/a.ss07"
);
date = "2021-01-24 15:42:49 +0000";
familyName = Megavolt;
featurePrefixes = (
{
automatic = 1;
code = "languagesystem DFLT dflt;
languagesystem latn dflt;
languagesystem latn AZE;
languagesystem latn CRT;
languagesystem latn KAZ;
languagesystem latn TAT;
languagesystem latn TRK;
languagesystem latn ROM;
languagesystem latn MOL;
languagesystem latn CAT;
languagesystem latn NLD;
";
name = Languagesystems;
}
);
features = (
{
automatic = 1;
code = "feature locl;
feature ordn;
feature ss01;
feature ss02;
feature ss03;
feature ss04;
feature ss05;
feature ss06;
feature ss07;
";
tag = aalt;
},
{
automatic = 1;
code = "lookup ccmp_Other_1 {
@CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb];
@CombiningNonTopAccents = [brevebelowcomb cedillacomb dotbelowcomb macronbelowcomb ogonekcomb horncomb];
sub [i j]' @CombiningTopAccents by [idotless jdotless];
sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless];
} ccmp_Other_1;
lookup ccmp_latn_1 {
lookupflag 0;
sub brevecomb acutecomb by brevecomb_acutecomb;
sub brevecomb gravecomb by brevecomb_gravecomb;
sub brevecomb hookabovecomb by brevecomb_hookabovecomb;
sub brevecomb tildecomb by brevecomb_tildecomb;
sub circumflexcomb acutecomb by circumflexcomb_acutecomb;
sub circumflexcomb gravecomb by circumflexcomb_gravecomb;
sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb;
sub circumflexcomb tildecomb by circumflexcomb_tildecomb;
} ccmp_latn_1;
script latn;
lookup ccmp_latn_1;
";
tag = ccmp;
},
{
automatic = 1;
code = "lookup locl_latn_0 {
script latn;
language AZE;
sub i by idotaccent;
language CRT;
sub i by idotaccent;
language KAZ;
sub i by idotaccent;
language TAT;
sub i by idotaccent;
language TRK;
sub i by idotaccent;
} locl_latn_0;
lookup locl_latn_1 {
script latn;
language ROM;
sub Scedilla by Scommaaccent;
sub scedilla by scommaaccent;
sub Tcedilla by Tcommaaccent;
sub tcedilla by tcommaaccent;
language MOL;
sub Scedilla by Scommaaccent;
sub scedilla by scommaaccent;
sub Tcedilla by Tcommaaccent;
sub tcedilla by tcommaaccent;
} locl_latn_1;
lookup locl_latn_2 {
script latn;
language CAT;
sub l' periodcentered' l by ldot;
sub L' periodcentered' L by Ldot;
} locl_latn_2;
lookup locl_latn_3 {
script latn;
language NLD;
sub iacute j' by jacute;
sub Iacute J' by Jacute;
} locl_latn_3;
";
tag = locl;
},
{
automatic = 1;
code = "sub N o period by numero;
";
tag = ordn;
},
{
automatic = 1;
code = "sub B by B.ss01;
sub H by H.ss01;
sub Hbar by Hbar.ss01;
sub Hcircumflex by Hcircumflex.ss01;
sub P by P.ss01;
sub Q by Q.ss01;
";
labels = (
{
language = ENG;
value = "Unicase caps";
},
{
language = dflt;
value = "Unicase caps";
}
);
tag = ss01;
},
{
automatic = 1;
code = "sub G by G.ss02;
sub Gbreve by Gbreve.ss02;
sub Gcircumflex by Gcircumflex.ss02;
sub Gcommaaccent by Gcommaaccent.ss02;
sub Gdotaccent by Gdotaccent.ss02;
sub Gmacron by Gmacron.ss02;
sub H by H.ss02;
sub Hbar by Hbar.ss02;
sub Hcircumflex by Hcircumflex.ss02;
sub Y by Y.ss02;
sub Yacute by Yacute.ss02;
sub Ycircumflex by Ycircumflex.ss02;
sub Ydieresis by Ydieresis.ss02;
sub Ydotbelow by Ydotbelow.ss02;
sub Ygrave by Ygrave.ss02;
sub Yhookabove by Yhookabove.ss02;
sub Ytilde by Ytilde.ss02;
";
labels = (
{
language = ENG;
value = "Descenderless caps";
},
{
language = dflt;
value = "Descenderless caps";
}
);
tag = ss02;
},
{
automatic = 1;
code = "sub C by C.ss03;
sub Cacute by Cacute.ss03;
sub Ccaron by Ccaron.ss03;
sub Ccedilla by Ccedilla.ss03;
sub Ccircumflex by Ccircumflex.ss03;
sub Cdotaccent by Cdotaccent.ss03;
sub E by E.ss03;
sub Eacute by Eacute.ss03;
sub Ecaron by Ecaron.ss03;
sub Ecircumflex by Ecircumflex.ss03;
sub Ecircumflexacute by Ecircumflexacute.ss03;
sub Ecircumflexdotbelow by Ecircumflexdotbelow.ss03;
sub Ecircumflexgrave by Ecircumflexgrave.ss03;
sub Ecircumflexhookabove by Ecircumflexhookabove.ss03;
sub Ecircumflextilde by Ecircumflextilde.ss03;
sub Edieresis by Edieresis.ss03;
sub Edotaccent by Edotaccent.ss03;
sub Edotbelow by Edotbelow.ss03;
sub Egrave by Egrave.ss03;
sub Ehookabove by Ehookabove.ss03;
sub Emacron by Emacron.ss03;
sub Eogonek by Eogonek.ss03;
sub Etilde by Etilde.ss03;
sub J by J.ss03;
sub Jacute by Jacute.ss03;
sub Jcircumflex by Jcircumflex.ss03;
sub L by L.ss03;
sub Lacute by Lacute.ss03;
sub Lcaron by Lcaron.ss03;
sub Lcommaaccent by Lcommaaccent.ss03;
sub Lslash by Lslash.ss03;
sub O by O.ss03;
sub Oacute by Oacute.ss03;
sub Ocircumflex by Ocircumflex.ss03;
sub Ocircumflexacute by Ocircumflexacute.ss03;
sub Ocircumflexdotbelow by Ocircumflexdotbelow.ss03;
sub Ocircumflexgrave by Ocircumflexgrave.ss03;
sub Ocircumflexhookabove by Ocircumflexhookabove.ss03;
sub Ocircumflextilde by Ocircumflextilde.ss03;
sub Odieresis by Odieresis.ss03;
sub Odotbelow by Odotbelow.ss03;
sub Ograve by Ograve.ss03;
sub Ohookabove by Ohookabove.ss03;
sub Ohorn by Ohorn.ss03;
sub Ohornacute by Ohornacute.ss03;
sub Ohorndotbelow by Ohorndotbelow.ss03;
sub Ohorngrave by Ohorngrave.ss03;
sub Ohornhookabove by Ohornhookabove.ss03;
sub Ohorntilde by Ohorntilde.ss03;
sub Ohungarumlaut by Ohungarumlaut.ss03;
sub Omacron by Omacron.ss03;
sub Oslash by Oslash.ss03;
sub Otilde by Otilde.ss03;
sub OE by OE.ss03;
sub c by c.ss03;
sub cacute by cacute.ss03;
sub ccaron by ccaron.ss03;
sub ccedilla by ccedilla.ss03;
sub ccircumflex by ccircumflex.ss03;
sub cdotaccent by cdotaccent.ss03;
sub o by o.ss03;
sub oacute by oacute.ss03;
sub ocircumflex by ocircumflex.ss03;
sub ocircumflexacute by ocircumflexacute.ss03;
sub ocircumflexdotbelow by ocircumflexdotbelow.ss03;
sub ocircumflexgrave by ocircumflexgrave.ss03;
sub ocircumflexhookabove by ocircumflexhookabove.ss03;
sub ocircumflextilde by ocircumflextilde.ss03;
sub odieresis by odieresis.ss03;
sub odotbelow by odotbelow.ss03;
sub ograve by ograve.ss03;
sub ohookabove by ohookabove.ss03;
sub ohorn by ohorn.ss03;
sub ohornacute by ohornacute.ss03;
sub ohorndotbelow by ohorndotbelow.ss03;
sub ohorngrave by ohorngrave.ss03;
sub ohornhookabove by ohornhookabove.ss03;
sub ohorntilde by ohorntilde.ss03;
sub ohungarumlaut by ohungarumlaut.ss03;
sub omacron by omacron.ss03;
sub oslash by oslash.ss03;
sub otilde by otilde.ss03;
sub oe by oe.ss03;
";
labels = (
{
language = ENG;
value = "Squared forms";
},
{
language = dflt;
value = "Squared forms";
}
);
tag = ss03;
},
{
automatic = 1;
code = "sub W by W.ss04;
sub Wacute by Wacute.ss04;
sub Wcircumflex by Wcircumflex.ss04;
sub Wdieresis by Wdieresis.ss04;
sub Wgrave by Wgrave.ss04;
sub Y by Y.ss04;
sub Ycircumflex by Ycircumflex.ss04;
sub Ydieresis by Ydieresis.ss04;
sub Ydotbelow by Ydotbelow.ss04;
sub Ygrave by Ygrave.ss04;
sub Yhookabove by Yhookabove.ss04;
sub Ytilde by Ytilde.ss04;
sub Y.ss02 by Y.ss02.ss04;
sub Yacute.ss02 by Yacute.ss02.ss04;
sub Ycircumflex.ss02 by Ycircumflex.ss02.ss04;
sub Ydieresis.ss02 by Ydieresis.ss02.ss04;
sub Ydotbelow.ss02 by Ydotbelow.ss02.ss04;
sub Ygrave.ss02 by Ygrave.ss02.ss04;
sub Yhookabove.ss02 by Yhookabove.ss02.ss04;
sub Ytilde.ss02 by Ytilde.ss02.ss04;
sub w by w.ss04;
sub wacute by wacute.ss04;
sub wcircumflex by wcircumflex.ss04;
sub wdieresis by wdieresis.ss04;
sub wgrave by wgrave.ss04;
sub y by y.ss04;
sub yacute by yacute.ss04;
sub ycircumflex by ycircumflex.ss04;
sub ydieresis by ydieresis.ss04;
sub ydotbelow by ydotbelow.ss04;
sub ygrave by ygrave.ss04;
sub yhookabove by yhookabove.ss04;
sub ytilde by ytilde.ss04;
";
labels = (
{
language = ENG;
value = "Diagonal Y and W";
},
{
language = dflt;
value = "Diagonal Y and W";
}
);
tag = ss04;
},
{
automatic = 1;
code = "sub S by S.ss05;
sub Sacute by Sacute.ss05;
sub Scaron by Scaron.ss05;
sub Scedilla by Scedilla.ss05;
sub Scircumflex by Scircumflex.ss05;
sub Scommaaccent by Scommaaccent.ss05;
sub Z by Z.ss05;
sub Zacute by Zacute.ss05;
sub Zcaron by Zcaron.ss05;
sub Zdotaccent by Zdotaccent.ss05;
sub s by s.ss05;
sub sacute by sacute.ss05;
sub scaron by scaron.ss05;
sub scedilla by scedilla.ss05;
sub scircumflex by scircumflex.ss05;
sub scommaaccent by scommaaccent.ss05;
sub z by z.ss05;
sub zacute by zacute.ss05;
sub zcaron by zcaron.ss05;
sub zdotaccent by zdotaccent.ss05;
";
labels = (
{
language = ENG;
value = "Unserifed S and Z";
},
{
language = dflt;
value = "Unserifed S and Z";
}
);
tag = ss05;
},
{
automatic = 1;
code = "sub a by a.ss06;
sub aacute by aacute.ss06;
sub abreve by abreve.ss06;
sub abreveacute by abreveacute.ss06;
sub abrevedotbelow by abrevedotbelow.ss06;
sub abrevegrave by abrevegrave.ss06;
sub abrevehookabove by abrevehookabove.ss06;
sub abrevetilde by abrevetilde.ss06;
sub acircumflex by acircumflex.ss06;
sub acircumflexacute by acircumflexacute.ss06;
sub acircumflexdotbelow by acircumflexdotbelow.ss06;
sub acircumflexgrave by acircumflexgrave.ss06;
sub acircumflexhookabove by acircumflexhookabove.ss06;
sub acircumflextilde by acircumflextilde.ss06;
sub adieresis by adieresis.ss06;
sub adotbelow by adotbelow.ss06;
sub agrave by agrave.ss06;
sub ahookabove by ahookabove.ss06;
sub amacron by amacron.ss06;
sub aogonek by aogonek.ss06;
sub aring by aring.ss06;
sub atilde by atilde.ss06;
sub ae by ae.ss06;
sub l by l.ss06;
sub lacute by lacute.ss06;
sub lcaron by lcaron.ss06;
sub lcommaaccent by lcommaaccent.ss06;
sub ldot by ldot.ss06;
sub ldotbelow by ldotbelow.ss06;
sub ldotbelowmacron by ldotbelowmacron.ss06;
sub lmacronbelow by lmacronbelow.ss06;
sub lslash by lslash.ss06;
";
labels = (
{
language = dflt;
value = "Simplified a and l";
},
{
language = ENG;
value = "Simplified a and l";
}
);
tag = ss06;
},
{
automatic = 1;
code = "sub a by a.ss07;
sub aacute by aacute.ss07;
sub abreve by abreve.ss07;
sub abreveacute by abreveacute.ss07;
sub abrevedotbelow by abrevedotbelow.ss07;
sub abrevegrave by abrevegrave.ss07;
sub abrevehookabove by abrevehookabove.ss07;
sub abrevetilde by abrevetilde.ss07;
sub acircumflex by acircumflex.ss07;
sub acircumflexacute by acircumflexacute.ss07;
sub acircumflexdotbelow by acircumflexdotbelow.ss07;
sub acircumflexgrave by acircumflexgrave.ss07;
sub acircumflexhookabove by acircumflexhookabove.ss07;
sub acircumflextilde by acircumflextilde.ss07;
sub adieresis by adieresis.ss07;
sub adotbelow by adotbelow.ss07;
sub agrave by agrave.ss07;
sub ahookabove by ahookabove.ss07;
sub amacron by amacron.ss07;
sub aogonek by aogonek.ss07;
sub aring by aring.ss07;
sub atilde by atilde.ss07;
sub ae by ae.ss07;
";
labels = (
{
language = dflt;
value = "Single-story a";
},
{
language = ENG;
value = "Single-story a";
}
);
tag = ss07;
}
);
fontMaster = (
{
guides = (
{
name = "dot-top";
pos = (144,683);
},
{
name = dot;
pos = (-119,583);
},
{
angle = 180;
name = desc;
pos = (-88,-131);
},
{
name = "uc-asc";
pos = (-116,814);
},
{
name = x;
pos = (-180,551);
},
{
orientation = right;
angle = 180;
name = "lc-enclosed";
pos = (684,347);
},
{
orientation = right;
angle = 180;
name = "lc-enclosed";
pos = (636,205);
},
{
orientation = right;
name = "lc-bar";
pos = (685,336);
},
{
orientation = center;
name = "lc-bar";
pos = (1225,215);
}
);
id = m01;
metricValues = (
{
pos = 842;
},
{
over = 16;
pos = 683;
},
{
over = 16;
pos = 551;
},
{
over = -16;
},
{
pos = -159;
}
);
name = Regular;
userData = {
GSOffsetHorizontal = 96;
GSOffsetProportional = 1;
GSOffsetVertical = 30;
};
}
);
glyphs = (
{
color = 0;
glyphname = A;
kernLeft = O;
kernRight = U;
lastChange = "2021-02-09 05:15:54 +0000";
layers = (
{
anchors = (
{
name = bottom;
pos = (621,0);
},
{
name = ogonek;
pos = (1363,0);
},
{
name = top;
pos = (914,683);
}
);
background = {
shapes = (
{
closed = 1;
nodes = (
(-79,0,l),
(862,0,l),
(1031,234,l),
(1031,0,l),
(1399,0,l),
(1399,683,l),
(413,683,l)
);
},
{
closed = 1;
nodes = (
(655,447,l),
(1031,447,l),
(1031,234,l),
(501,234,l)
);
}
);
};
layerId = m01;
shapes = (
{
alignment = -1;
ref = pixel;
},
{
alignment = -1;
pos = (0,100);
ref = pixel;
},
{
alignment = -1;
pos = (100,0);
ref = pixel;
},
{
alignment = -1;
pos = (100,100);
ref = pixel;
},
{
alignment = -1;
pos = (100,200);
ref = pixel;
},
{
alignment = -1;
pos = (200,0);
ref = pixel;
},
{
alignment = -1;
pos = (200,100);
ref = pixel;
},
{
alignment = -1;
pos = (200,200);
ref = pixel;
},
{
alignment = -1;
pos = (200,300);
ref = pixel;
},
{
alignment = -1;
pos = (200,400);
ref = pixel;
},
{
alignment = -1;
pos = (300,0);
ref = pixel;
},
{
alignment = -1;
pos = (300,100);
ref = pixel;
},
{
alignment = -1;
pos = (300,200);
ref = pixel;
},
{
alignment = -1;
pos = (300,300);
ref = pixel;
},
{
alignment = -1;
pos = (300,400);
ref = pixel;
},
{
alignment = -1;
pos = (300,500);
ref = pixel;
},
{
alignment = -1;
pos = (400,0);
ref = pixel;
},
{
alignment = -1;
pos = (400,100);
ref = pixel;
},
{
alignment = -1;
pos = (400,200);
ref = pixel;
},
{
alignment = -1;
pos = (400,300);
ref = pixel;
},
{
alignment = -1;
pos = (400,400);
ref = pixel;
},
{
alignment = -1;
pos = (400,500);
ref = pixel;
},
{
alignment = -1;
pos = (400,600);
ref = pixel;
},
{
alignment = -1;
pos = (500,0);
ref = pixel;
},
{
alignment = -1;
pos = (500,100);
ref = pixel;
},
{
alignment = -1;
pos = (500,300);
ref = pixel;
},
{
alignment = -1;
pos = (500,400);
ref = pixel;
},
{
alignment = -1;
pos = (500,500);
ref = pixel;
},
{
alignment = -1;
pos = (500,600);
ref = pixel;
},
{
alignment = -1;
pos = (600,0);
ref = pixel;
},
{
alignment = -1;
pos = (600,100);
ref = pixel;
},
{
alignment = -1;
pos = (600,400);
ref = pixel;
},
{
alignment = -1;
pos = (600,500);
ref = pixel;
},
{
alignment = -1;
pos = (600,600);
ref = pixel;
},
{
alignment = -1;
pos = (700,0);
ref = pixel;
},
{
alignment = -1;
pos = (700,100);
ref = pixel;
},
{
alignment = -1;
pos = (700,400);
ref = pixel;
},
{
alignment = -1;
pos = (700,500);
ref = pixel;
},
{
alignment = -1;
pos = (700,600);
ref = pixel;
},
{
alignment = -1;
pos = (800,0);
ref = pixel;
},
{
alignment = -1;
pos = (800,100);
ref = pixel;
},
{
alignment = -1;
pos = (800,400);
ref = pixel;
},
{
alignment = -1;
pos = (800,500);
ref = pixel;
},
{
alignment = -1;
pos = (800,600);
ref = pixel;
},
{
alignment = -1;
pos = (900,100);
ref = pixel;
},
{
alignment = -1;
pos = (900,400);
ref = pixel;
},
{
alignment = -1;
pos = (900,500);
ref = pixel;
},
{
alignment = -1;
pos = (900,600);
ref = pixel;
},
{
alignment = -1;
pos = (1000,0);
ref = pixel;
},
{
alignment = -1;
pos = (1000,100);
ref = pixel;
},
{
alignment = -1;
pos = (1000,200);
ref = pixel;
},
{
alignment = -1;
pos = (1000,300);
ref = pixel;
},
{
alignment = -1;
pos = (1000,400);
ref = pixel;
},
{
alignment = -1;
pos = (1000,500);
ref = pixel;
},
{
alignment = -1;
pos = (1000,600);
ref = pixel;
},
{
alignment = -1;
pos = (1100,0);
ref = pixel;
},
{
alignment = -1;
pos = (1100,100);
ref = pixel;
},
{
alignment = -1;
pos = (1100,200);
ref = pixel;
},
{
alignment = -1;
pos = (1100,300);
ref = pixel;
},
{
alignment = -1;
pos = (1100,400);
ref = pixel;
},
{
alignment = -1;
pos = (1100,500);
ref = pixel;
},
{
alignment = -1;
pos = (1100,600);
ref = pixel;
},
{
alignment = -1;
pos = (1200,0);
ref = pixel;
},
{
alignment = -1;
pos = (1200,100);
ref = pixel;
},
{
alignment = -1;
pos = (1200,200);
ref = pixel;
},
{
alignment = -1;
pos = (1200,300);
ref = pixel;
},
{
alignment = -1;
pos = (1200,400);
ref = pixel;
},
{
alignment = -1;
pos = (1200,500);
ref = pixel;
},
{
alignment = -1;
pos = (1200,600);
ref = pixel;
},
{
alignment = -1;
pos = (1300,0);
ref = pixel;
},
{
alignment = -1;
pos = (1300,100);
ref = pixel;
},
{
alignment = -1;
pos = (1300,200);
ref = pixel;
},
{
alignment = -1;
pos = (1300,300);
ref = pixel;
},
{
alignment = -1;
pos = (1300,400);
ref = pixel;
},
{
alignment = -1;
pos = (1300,500);
ref = pixel;
},
{
alignment = -1;
pos = (1300,600);
ref = pixel;
}
);
width = 1500;
}
);
metricLeft = "=O";
metricRight = "=O";
unicode = 65;
},
{
glyphname = Aacute;
kernLeft = O;
kernRight = U;
lastChange = "2021-02-09 05:18:24 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (583,132);
ref = acutecomb;
}
);
width = 1500;
}
);
unicode = 193;
},
{
glyphname = Abreve;
kernLeft = O;
kernRight = U;
lastChange = "2021-02-09 05:18:24 +0000";
layers = (
{
layerId = m01;
shapes = (
{
ref = A;
},
{
pos = (583,132);
ref = brevecomb;
}
);
width = 1500;