forked from microsoft/cascadia-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCascadiaCode.glyphs
18429 lines (18429 loc) · 300 KB
/
CascadiaCode.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 = "1264";
DisplayStrings = (
"0</greater_equal.liga 0/less_equal.liga"
);
classes = (
{
automatic = 1;
code = "A B C D E F G H I J K L M N O P Q R S T U V W X Y Z";
name = Uppercase;
},
{
automatic = 1;
code = "a b c d e f g h i j k l m n o p q r s t u v w x y z x.multiply";
name = Lowercase;
},
{
code = "bracketleft braceleft parenleft";
name = OpeningBracket;
},
{
code = "zero one two three four five six seven eight nine";
name = Digit;
},
{
code = "@Digit a b c d e f A B C D E F";
name = HexDigit;
},
{
code = "bracketright braceright parenright";
name = ClosingBracket;
},
{
code = "@Uppercase @Digit @OpeningBracket @ClosingBracket bar";
name = Tall;
}
);
copyright = "© 2019 Microsoft Corporation. All Rights Reserved.";
customParameters = (
{
name = vendorID;
value = SAJA;
},
{
name = "GASP Table";
value = {
"20" = 7;
"65535" = 15;
"8" = 10;
};
},
{
name = note;
value = "#Macro to convert the ligatures from editable to production mode\012\012def ligatureProcess(production):\012 for glyph in Glyphs.font.glyphs:\012 if glyph.color == 3: #2 width\012 if production == True:\012 glyph.layers[0].LSB = glyph.layers[0].LSB - 1200\012 if production == False:\012 glyph.layers[0].LSB = glyph.layers[0].LSB + 1200\012\012 elif glyph.color == 4: #3 width\012 if production == True:\012 glyph.layers[0].LSB = glyph.layers[0].LSB - 2400\012 if production == False:\012 glyph.layers[0].LSB = glyph.layers[0].LSB + 2400\012\012 elif glyph.color == 9: #4 width\012 if production == True:\012 glyph.layers[0].LSB = glyph.layers[0].LSB - 3600\012 if production == False:\012 glyph.layers[0].LSB = glyph.layers[0].LSB + 3600 \012 \012\012ligatureProcess(True) #True for production mode, False for editable";
},
{
name = isFixedPitch;
value = 1;
},
{
name = trademark;
value = "Cascadia Code is a trademark of the Microsoft group of companies.";
},
{
name = license;
value = "Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited.\012 \012The following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/master/LICENSE).\012 \012Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\012 \0121) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\012 \0122) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\012 \0123) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\012 \0124) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\012 \0125) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\012 \012THE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.";
},
{
name = licenseURL;
value = "https://scripts.sil.org/OFL";
}
);
date = "2019-04-07 17:18:29 +0000";
designer = "Aaron Bell";
designerURL = "http://sajatypeworks.com";
familyName = "Cascadia Code";
features = (
{
code = "### start of generated calt\012lookup less_equal_equal_greater {\012 ignore sub less less' equal equal greater;\012 ignore sub less' equal equal greater greater;\012 sub LIG LIG LIG greater' by less_equal_equal_greater.liga;\012 sub LIG LIG equal' greater by LIG;\012 sub LIG equal' equal greater by LIG;\012 sub less' equal equal greater by LIG;\012} less_equal_equal_greater;\012\012lookup less_exclam_hyphen_hyphen {\012 ignore sub less less' exclam hyphen hyphen;\012 ignore sub less' exclam hyphen hyphen hyphen;\012 sub LIG LIG LIG hyphen' by less_exclam_hyphen_hyphen.liga;\012 sub LIG LIG hyphen' hyphen by LIG;\012 sub LIG exclam' hyphen hyphen by LIG;\012 sub less' exclam hyphen hyphen by LIG;\012} less_exclam_hyphen_hyphen;\012\012lookup less_bar_bar_bar {\012 ignore sub less less' bar bar bar;\012 ignore sub less' bar bar bar bar;\012 sub LIG LIG LIG bar' by less_bar_bar_bar.liga;\012 sub LIG LIG bar' bar by LIG;\012 sub LIG bar' bar bar by LIG;\012 sub less' bar bar bar by LIG;\012} less_bar_bar_bar;\012\012lookup bar_bar_bar_greater {\012 ignore sub bar bar' bar bar greater;\012 ignore sub bar' bar bar greater greater;\012 sub LIG LIG LIG greater' by bar_bar_bar_greater.liga;\012 sub LIG LIG bar' greater by LIG;\012 sub LIG bar' bar greater by LIG;\012 sub bar' bar bar greater by LIG;\012} bar_bar_bar_greater;\012\012lookup numbersign_numbersign_numbersign_numbersign {\012 ignore sub numbersign numbersign' numbersign numbersign numbersign;\012 ignore sub numbersign' numbersign numbersign numbersign numbersign;\012 sub LIG LIG LIG numbersign' by numbersign_numbersign_numbersign_numbersign.liga;\012 sub LIG LIG numbersign' numbersign by LIG;\012 sub LIG numbersign' numbersign numbersign by LIG;\012 sub numbersign' numbersign numbersign numbersign by LIG;\012} numbersign_numbersign_numbersign_numbersign;\012\012lookup asciitilde_asciitilde_greater {\012 ignore sub asciitilde asciitilde' asciitilde greater;\012 ignore sub asciitilde' asciitilde greater greater;\012 sub LIG LIG greater' by asciitilde_asciitilde_greater.liga;\012 sub LIG asciitilde' greater by LIG;\012 sub asciitilde' asciitilde greater by LIG;\012} asciitilde_asciitilde_greater;\012\012lookup less_slash_greater {\012 ignore sub less less' slash greater;\012 ignore sub less' slash greater greater;\012 sub LIG LIG greater' by less_slash_greater.liga;\012 sub LIG slash' greater by LIG;\012 sub less' slash greater by LIG;\012} less_slash_greater;\012\012lookup less_asciitilde_asciitilde {\012 ignore sub less less' asciitilde asciitilde;\012 ignore sub less' asciitilde asciitilde asciitilde;\012 sub LIG LIG asciitilde' by less_asciitilde_asciitilde.liga;\012 sub LIG asciitilde' asciitilde by LIG;\012 sub less' asciitilde asciitilde by LIG;\012} less_asciitilde_asciitilde;\012\012lookup less_asciitilde_greater {\012 ignore sub less less' asciitilde greater;\012 ignore sub less' asciitilde greater greater;\012 sub LIG LIG greater' by less_asciitilde_greater.liga;\012 sub LIG asciitilde' greater by LIG;\012 sub less' asciitilde greater by LIG;\012} less_asciitilde_greater;\012\012lookup less_less_less {\012 ignore sub less less' less less;\012 ignore sub less' less less less;\012 ignore sub less' less less asterisk;\012 ignore sub less' less less plus;\012 ignore sub less' less less dollar;\012 sub LIG LIG less' by less_less_less.liga;\012 sub LIG less' less by LIG;\012 sub less' less less by LIG;\012} less_less_less;\012\012lookup less_less_equal {\012 ignore sub less less' less equal;\012 ignore sub less' less equal equal;\012 sub LIG LIG equal' by less_less_equal.liga;\012 sub LIG less' equal by LIG;\012 sub less' less equal by LIG;\012} less_less_equal;\012\012lookup less_less_hyphen {\012 ignore sub less less' less hyphen;\012 ignore sub less' less hyphen hyphen;\012 sub LIG LIG hyphen' by less_less_hyphen.liga;\012 sub LIG less' hyphen by LIG;\012 sub less' less hyphen by LIG;\012} less_less_hyphen;\012\012lookup less_equal_less {\012 ignore sub less less' equal less;\012 ignore sub less' equal less less;\012 sub LIG LIG less' by less_equal_less.liga;\012 sub LIG equal' less by LIG;\012 sub less' equal less by LIG;\012} less_equal_less;\012\012lookup less_equal_greater {\012 ignore sub less less' equal greater;\012 ignore sub less' equal greater greater;\012 sub LIG LIG greater' by less_equal_greater.liga;\012 sub LIG equal' greater by LIG;\012 sub less' equal greater by LIG;\012} less_equal_greater;\012\012lookup less_equal_equal {\012 ignore sub less less' equal equal;\012 ignore sub less' equal equal equal;\012 sub LIG LIG equal' by less_equal_equal.liga;\012 sub LIG equal' equal by LIG;\012 sub less' equal equal by LIG;\012} less_equal_equal;\012\012lookup less_plus_greater {\012 sub LIG LIG greater' by less_plus_greater.liga;\012 sub LIG plus' greater by LIG;\012 sub less' plus greater by LIG;\012} less_plus_greater;\012\012lookup less_hyphen_less {\012 ignore sub less less' hyphen less;\012 ignore sub less' hyphen less less;\012 sub LIG LIG less' by less_hyphen_less.liga;\012 sub LIG hyphen' less by LIG;\012 sub less' hyphen less by LIG;\012} less_hyphen_less;\012\012lookup less_hyphen_greater {\012 ignore sub less less' hyphen greater;\012 ignore sub less' hyphen greater greater;\012 sub LIG LIG greater' by less_hyphen_greater.liga;\012 sub LIG hyphen' greater by LIG;\012 sub less' hyphen greater by LIG;\012} less_hyphen_greater;\012\012lookup less_hyphen_hyphen {\012 ignore sub less less' hyphen hyphen;\012 ignore sub less' hyphen hyphen hyphen;\012 sub LIG LIG hyphen' by less_hyphen_hyphen.liga;\012 sub LIG hyphen' hyphen by LIG;\012 sub less' hyphen hyphen by LIG;\012} less_hyphen_hyphen;\012\012lookup less_dollar_greater {\012 sub LIG LIG greater' by less_dollar_greater.liga;\012 sub LIG dollar' greater by LIG;\012 sub less' dollar greater by LIG;\012} less_dollar_greater;\012\012lookup less_bar_greater {\012 ignore sub less less' bar greater;\012 ignore sub less' bar greater greater;\012 sub LIG LIG greater' by less_bar_greater.liga;\012 sub LIG bar' greater by LIG;\012 sub less' bar greater by LIG;\012} less_bar_greater;\012\012lookup less_bar_bar {\012 ignore sub less less' bar bar;\012 ignore sub less' bar bar bar;\012 ignore sub less' bar bar greater;\012 sub LIG LIG bar' by less_bar_bar.liga;\012 sub LIG bar' bar by LIG;\012 sub less' bar bar by LIG;\012} less_bar_bar;\012\012lookup less_asterisk_greater {\012 sub LIG LIG greater' by less_asterisk_greater.liga;\012 sub LIG asterisk' greater by LIG;\012 sub less' asterisk greater by LIG;\012} less_asterisk_greater;\012\012lookup greater_greater_greater {\012 ignore sub greater greater' greater greater;\012 ignore sub greater' greater greater greater;\012 ignore sub asterisk greater' greater greater;\012 ignore sub plus greater' greater greater;\012 ignore sub dollar greater' greater greater;\012 sub LIG LIG greater' by greater_greater_greater.liga;\012 sub LIG greater' greater by LIG;\012 sub greater' greater greater by LIG;\012} greater_greater_greater;\012\012lookup greater_greater_equal {\012 ignore sub greater greater' greater equal;\012 ignore sub greater' greater equal equal;\012 sub LIG LIG equal' by greater_greater_equal.liga;\012 sub LIG greater' equal by LIG;\012 sub greater' greater equal by LIG;\012} greater_greater_equal;\012\012lookup greater_greater_hyphen {\012 ignore sub greater greater' greater hyphen;\012 ignore sub greater' greater hyphen hyphen;\012 sub LIG LIG hyphen' by greater_greater_hyphen.liga;\012 sub LIG greater' hyphen by LIG;\012 sub greater' greater hyphen by LIG;\012} greater_greater_hyphen;\012\012lookup greater_equal_greater {\012 ignore sub greater greater' equal greater;\012 ignore sub greater' equal greater greater;\012 sub LIG LIG greater' by greater_equal_greater.liga;\012 sub LIG equal' greater by LIG;\012 sub greater' equal greater by LIG;\012} greater_equal_greater;\012\012lookup greater_hyphen_greater {\012 ignore sub greater greater' hyphen greater;\012 ignore sub greater' hyphen greater greater;\012 sub LIG LIG greater' by greater_hyphen_greater.liga;\012 sub LIG hyphen' greater by LIG;\012 sub greater' hyphen greater by LIG;\012} greater_hyphen_greater;\012\012lookup equal_slash_equal {\012 ignore sub equal equal' slash equal;\012 ignore sub equal' slash equal equal;\012 sub LIG LIG equal' by equal_slash_equal.liga;\012 sub LIG slash' equal by LIG;\012 sub equal' slash equal by LIG;\012} equal_slash_equal;\012\012lookup equal_less_less {\012 ignore sub equal equal' less less;\012 ignore sub equal' less less less;\012 sub LIG LIG less' by equal_less_less.liga;\012 sub LIG less' less by LIG;\012 sub equal' less less by LIG;\012} equal_less_less;\012\012lookup equal_greater_greater {\012 ignore sub equal equal' greater greater;\012 ignore sub equal' greater greater greater;\012 sub LIG LIG greater' by equal_greater_greater.liga;\012 sub LIG greater' greater by LIG;\012 sub equal' greater greater by LIG;\012} equal_greater_greater;\012\012lookup equal_equal_greater {\012 ignore sub equal equal' equal greater;\012 ignore sub equal' equal greater greater;\012 sub LIG LIG greater' by equal_equal_greater.liga;\012 sub LIG equal' greater by LIG;\012 sub equal' equal greater by LIG;\012} equal_equal_greater;\012\012lookup equal_equal_equal {\012 ignore sub equal equal' equal equal;\012 ignore sub equal' equal equal equal;\012 sub LIG LIG equal' by equal_equal_equal.liga;\012 sub LIG equal' equal by LIG;\012 sub equal' equal equal by LIG;\012} equal_equal_equal;\012\012lookup equal_exclam_equal {\012 ignore sub equal equal' exclam equal;\012 ignore sub equal' exclam equal equal;\012 sub LIG LIG equal' by equal_exclam_equal.liga;\012 sub LIG exclam' equal by LIG;\012 sub equal' exclam equal by LIG;\012} equal_exclam_equal;\012\012lookup equal_colon_equal {\012 ignore sub equal equal' colon equal;\012 ignore sub equal' colon equal equal;\012 sub LIG LIG equal' by equal_colon_equal.liga;\012 sub LIG colon' equal by LIG;\012 sub equal' colon equal by LIG;\012} equal_colon_equal;\012\012lookup plus_plus_plus {\012 ignore sub plus plus' plus plus;\012 ignore sub plus' plus plus plus;\012 sub LIG LIG plus' by plus_plus_plus.liga;\012 sub LIG plus' plus by LIG;\012 sub plus' plus plus by LIG;\012} plus_plus_plus;\012\012lookup bar_bar_greater {\012 ignore sub bar bar' bar greater;\012 ignore sub bar' bar greater greater;\012 ignore sub less bar' bar greater;\012 sub LIG LIG greater' by bar_bar_greater.liga;\012 sub LIG bar' greater by LIG;\012 sub bar' bar greater by LIG;\012} bar_bar_greater;\012\012lookup bar_bar_equal {\012 ignore sub bar bar' bar equal;\012 ignore sub bar' bar equal equal;\012 sub LIG LIG equal' by bar_bar_equal.liga;\012 sub LIG bar' equal by LIG;\012 sub bar' bar equal by LIG;\012} bar_bar_equal;\012\012lookup underscore_bar_underscore {\012 ignore sub underscore underscore' bar underscore;\012 ignore sub underscore' bar underscore underscore;\012 sub LIG LIG underscore' by underscore_bar_underscore.liga;\012 sub LIG bar' underscore by LIG;\012 sub underscore' bar underscore by LIG;\012} underscore_bar_underscore;\012\012lookup slash_slash_slash {\012 ignore sub slash slash' slash slash;\012 ignore sub slash' slash slash slash;\012 sub LIG LIG slash' by slash_slash_slash.liga;\012 sub LIG slash' slash by LIG;\012 sub slash' slash slash by LIG;\012} slash_slash_slash;\012\012lookup slash_equal_equal {\012 ignore sub slash slash' equal equal;\012 ignore sub slash' equal equal equal;\012 sub LIG LIG equal' by slash_equal_equal.liga;\012 sub LIG equal' equal by LIG;\012 sub slash' equal equal by LIG;\012} slash_equal_equal;\012\012lookup period_period_period {\012 ignore sub period period' period period;\012 ignore sub period' period period period;\012 sub LIG LIG period' by period_period_period.liga;\012 sub LIG period' period by LIG;\012 sub period' period period by LIG;\012} period_period_period;\012\012lookup period_period_less {\012 ignore sub period period' period less;\012 ignore sub period' period less less;\012 sub LIG LIG less' by period_period_less.liga;\012 sub LIG period' less by LIG;\012 sub period' period less by LIG;\012} period_period_less;\012\012lookup period_period_equal {\012 ignore sub period period' period equal;\012 ignore sub period' period equal equal;\012 sub LIG LIG equal' by period_period_equal.liga;\012 sub LIG period' equal by LIG;\012 sub period' period equal by LIG;\012} period_period_equal;\012\012lookup numbersign_underscore_parenleft {\012 ignore sub numbersign numbersign' underscore parenleft;\012 ignore sub numbersign' underscore parenleft parenleft;\012 sub LIG LIG parenleft' by numbersign_underscore_parenleft.liga;\012 sub LIG underscore' parenleft by LIG;\012 sub numbersign' underscore parenleft by LIG;\012} numbersign_underscore_parenleft;\012\012lookup numbersign_numbersign_numbersign {\012 ignore sub numbersign numbersign' numbersign numbersign;\012 ignore sub numbersign' numbersign numbersign numbersign;\012 sub LIG LIG numbersign' by numbersign_numbersign_numbersign.liga;\012 sub LIG numbersign' numbersign by LIG;\012 sub numbersign' numbersign numbersign by LIG;\012} numbersign_numbersign_numbersign;\012\012lookup hyphen_less_less {\012 ignore sub hyphen hyphen' less less;\012 ignore sub hyphen' less less less;\012 sub LIG LIG less' by hyphen_less_less.liga;\012 sub LIG less' less by LIG;\012 sub hyphen' less less by LIG;\012} hyphen_less_less;\012\012lookup hyphen_greater_greater {\012 ignore sub hyphen hyphen' greater greater;\012 ignore sub hyphen' greater greater greater;\012 sub LIG LIG greater' by hyphen_greater_greater.liga;\012 sub LIG greater' greater by LIG;\012 sub hyphen' greater greater by LIG;\012} hyphen_greater_greater;\012\012lookup hyphen_hyphen_greater {\012 ignore sub hyphen hyphen' hyphen greater;\012 ignore sub hyphen' hyphen greater greater;\012 sub LIG LIG greater' by hyphen_hyphen_greater.liga;\012 sub LIG hyphen' greater by LIG;\012 sub hyphen' hyphen greater by LIG;\012} hyphen_hyphen_greater;\012\012lookup hyphen_hyphen_hyphen {\012 ignore sub hyphen hyphen' hyphen hyphen;\012 ignore sub hyphen' hyphen hyphen hyphen;\012 sub LIG LIG hyphen' by hyphen_hyphen_hyphen.liga;\012 sub LIG hyphen' hyphen by LIG;\012 sub hyphen' hyphen hyphen by LIG;\012} hyphen_hyphen_hyphen;\012\012lookup exclam_equal_equal {\012 ignore sub exclam exclam' equal equal;\012 ignore sub exclam' equal equal equal;\012 sub LIG LIG equal' by exclam_equal_equal.liga;\012 sub LIG equal' equal by LIG;\012 sub exclam' equal equal by LIG;\012} exclam_equal_equal;\012\012lookup exclam_exclam_period {\012 ignore sub exclam exclam' exclam period;\012 ignore sub exclam' exclam period period;\012 sub LIG LIG period' by exclam_exclam_period.liga;\012 sub LIG exclam' period by LIG;\012 sub exclam' exclam period by LIG;\012} exclam_exclam_period;\012\012lookup colon_colon_equal {\012 ignore sub colon colon' colon equal;\012 ignore sub colon' colon equal equal;\012 sub LIG LIG equal' by colon_colon_equal.liga;\012 sub LIG colon' equal by LIG;\012 sub colon' colon equal by LIG;\012} colon_colon_equal;\012\012lookup colon_colon_colon {\012 ignore sub colon colon' colon colon;\012 ignore sub colon' colon colon colon;\012 sub LIG LIG colon' by colon_colon_colon.liga;\012 sub LIG colon' colon by LIG;\012 sub colon' colon colon by LIG;\012} colon_colon_colon;\012\012lookup asterisk_asterisk_asterisk {\012 ignore sub asterisk asterisk' asterisk asterisk;\012 ignore sub asterisk' asterisk asterisk asterisk;\012 ignore sub slash asterisk' asterisk asterisk;\012 ignore sub asterisk' asterisk asterisk slash;\012 sub LIG LIG asterisk' by asterisk_asterisk_asterisk.liga;\012 sub LIG asterisk' asterisk by LIG;\012 sub asterisk' asterisk asterisk by LIG;\012} asterisk_asterisk_asterisk;\012\012lookup w_w_w {\012 ignore sub w w' w w;\012 ignore sub w' w w w;\012 sub LIG LIG w' by w_w_w.liga;\012 sub LIG w' w by LIG;\012 sub w' w w by LIG;\012} w_w_w;\012\012lookup percent_percent {\012 ignore sub percent percent' percent;\012 ignore sub percent' percent percent;\012 sub LIG percent' by percent_percent.liga;\012 sub percent' percent by LIG;\012} percent_percent;\012\012lookup asciitilde_asciitilde {\012 ignore sub asciitilde asciitilde' asciitilde;\012 ignore sub asciitilde' asciitilde asciitilde;\012 sub LIG asciitilde' by asciitilde_asciitilde.liga;\012 sub asciitilde' asciitilde by LIG;\012} asciitilde_asciitilde;\012\012lookup asciitilde_greater {\012 ignore sub asciitilde asciitilde' greater;\012 ignore sub asciitilde' greater greater;\012 sub LIG greater' by asciitilde_greater.liga;\012 sub asciitilde' greater by LIG;\012} asciitilde_greater;\012\012lookup asciitilde_equal {\012 ignore sub asciitilde asciitilde' equal;\012 ignore sub asciitilde' equal equal;\012 sub LIG equal' by asciitilde_equal.liga;\012 sub asciitilde' equal by LIG;\012} asciitilde_equal;\012\012lookup asciitilde_hyphen {\012 ignore sub asciitilde asciitilde' hyphen;\012 ignore sub asciitilde' hyphen hyphen;\012 sub LIG hyphen' by asciitilde_hyphen.liga;\012 sub asciitilde' hyphen by LIG;\012} asciitilde_hyphen;\012\012lookup asciitilde_at {\012 ignore sub asciitilde asciitilde' at;\012 ignore sub asciitilde' at at;\012 sub LIG at' by asciitilde_at.liga;\012 sub asciitilde' at by LIG;\012} asciitilde_at;\012\012lookup less_slash {\012 ignore sub less less' slash;\012 ignore sub less' slash slash;\012 sub LIG slash' by less_slash.liga;\012 sub less' slash by LIG;\012} less_slash;\012\012lookup less_asciitilde {\012 ignore sub less less' asciitilde;\012 ignore sub less' asciitilde asciitilde;\012 sub LIG asciitilde' by less_asciitilde.liga;\012 sub less' asciitilde by LIG;\012} less_asciitilde;\012\012lookup less_less {\012 ignore sub less less' less;\012 ignore sub less' less less;\012 ignore sub less' less asterisk;\012 ignore sub less' less plus;\012 ignore sub less' less dollar;\012 sub LIG less' by less_less.liga;\012 sub less' less by LIG;\012} less_less;\012\012lookup less_greater {\012 ignore sub less less' greater;\012 ignore sub less' greater greater;\012 sub LIG greater' by less_greater.liga;\012 sub less' greater by LIG;\012} less_greater;\012\012lookup less_equal {\012 ignore sub less less' equal;\012 ignore sub less' equal equal;\012 ignore sub parenleft question less' equal;\012 ignore sub exclam less' equal;\012 sub LIG equal' by less_equal.liga;\012 sub less' equal by LIG;\012} less_equal;\012\012lookup less_plus {\012 ignore sub less less' plus;\012 ignore sub less' plus plus;\012 sub LIG plus' by less_plus.liga;\012 sub less' plus by LIG;\012} less_plus;\012\012lookup less_hyphen {\012 ignore sub less less' hyphen;\012 ignore sub less' hyphen hyphen;\012 sub LIG hyphen' by less_hyphen.liga;\012 sub less' hyphen by LIG;\012} less_hyphen;\012\012lookup less_dollar {\012 ignore sub less less' dollar;\012 ignore sub less' dollar dollar;\012 sub LIG dollar' by less_dollar.liga;\012 sub less' dollar by LIG;\012} less_dollar;\012\012lookup less_colon {\012 ignore sub less less' colon;\012 ignore sub less' colon colon;\012 sub LIG colon' by less_colon.liga;\012 sub less' colon by LIG;\012} less_colon;\012\012lookup less_bar {\012 ignore sub less less' bar;\012 ignore sub less' bar bar;\012 sub LIG bar' by less_bar.liga;\012 sub less' bar by LIG;\012} less_bar;\012\012lookup less_asterisk {\012 ignore sub less less' asterisk;\012 ignore sub less' asterisk asterisk;\012 sub LIG asterisk' by less_asterisk.liga;\012 sub less' asterisk by LIG;\012} less_asterisk;\012\012lookup greater_greater {\012 ignore sub greater greater' greater;\012 ignore sub greater' greater greater;\012 ignore sub asterisk greater' greater;\012 ignore sub plus greater' greater;\012 ignore sub dollar greater' greater;\012 sub LIG greater' by greater_greater.liga;\012 sub greater' greater by LIG;\012} greater_greater;\012\012lookup greater_equal {\012 ignore sub greater greater' equal;\012 ignore sub greater' equal equal;\012 ignore sub greater' equal less;\012 sub LIG equal' by greater_equal.liga;\012 sub greater' equal by LIG;\012} greater_equal;\012\012lookup greater_hyphen {\012 ignore sub greater greater' hyphen;\012 ignore sub greater' hyphen hyphen;\012 sub LIG hyphen' by greater_hyphen.liga;\012 sub greater' hyphen by LIG;\012} greater_hyphen;\012\012lookup greater_colon {\012 ignore sub greater greater' colon;\012 ignore sub greater' colon colon;\012 sub LIG colon' by greater_colon.liga;\012 sub greater' colon by LIG;\012} greater_colon;\012\012lookup equal_greater {\012 ignore sub equal equal' greater;\012 ignore sub equal' greater greater;\012 sub LIG greater' by equal_greater.liga;\012 sub equal' greater by LIG;\012} equal_greater;\012\012lookup equal_equal {\012 ignore sub equal equal' equal;\012 ignore sub equal' equal equal;\012 sub LIG equal' by equal_equal.liga;\012 sub equal' equal by LIG;\012} equal_equal;\012\012lookup plus_greater {\012 ignore sub plus plus' greater;\012 ignore sub plus' greater greater;\012 sub LIG greater' by plus_greater.liga;\012 sub plus' greater by LIG;\012} plus_greater;\012\012lookup plus_plus {\012 ignore sub plus plus' plus;\012 ignore sub plus' plus plus;\012 sub LIG plus' by plus_plus.liga;\012 sub plus' plus by LIG;\012} plus_plus;\012\012lookup dollar_greater {\012 ignore sub dollar dollar' greater;\012 ignore sub dollar' greater greater;\012 sub LIG greater' by dollar_greater.liga;\012 sub dollar' greater by LIG;\012} dollar_greater;\012\012lookup asciicircum_equal {\012 ignore sub asciicircum asciicircum' equal;\012 ignore sub asciicircum' equal equal;\012 sub LIG equal' by asciicircum_equal.liga;\012 sub asciicircum' equal by LIG;\012} asciicircum_equal;\012\012lookup bar_greater {\012 ignore sub bar bar' greater;\012 ignore sub bar' greater greater;\012 sub LIG greater' by bar_greater.liga;\012 sub bar' greater by LIG;\012} bar_greater;\012\012lookup bar_equal {\012 ignore sub bar bar' equal;\012 ignore sub bar' equal equal;\012 sub LIG equal' by bar_equal.liga;\012 sub bar' equal by LIG;\012} bar_equal;\012\012lookup bar_hyphen {\012 ignore sub bar bar' hyphen;\012 ignore sub bar' hyphen hyphen;\012 sub LIG hyphen' by bar_hyphen.liga;\012 sub bar' hyphen by LIG;\012} bar_hyphen;\012\012lookup bar_bracketright {\012 ignore sub bar bar' bracketright;\012 ignore sub bar' bracketright bracketright;\012 ignore sub bracketleft bar' bracketright;\012 sub LIG bracketright' by bar_bracketright.liga;\012 sub bar' bracketright by LIG;\012} bar_bracketright;\012\012lookup bar_braceright {\012 ignore sub bar bar' braceright;\012 ignore sub bar' braceright braceright;\012 ignore sub braceleft bar' braceright;\012 sub LIG braceright' by bar_braceright.liga;\012 sub bar' braceright by LIG;\012} bar_braceright;\012\012lookup bar_bar {\012 ignore sub bar bar' bar;\012 ignore sub bar' bar bar;\012 sub LIG bar' by bar_bar.liga;\012 sub bar' bar by LIG;\012} bar_bar;\012\012lookup ampersand_ampersand {\012 ignore sub ampersand ampersand' ampersand;\012 ignore sub ampersand' ampersand ampersand;\012 sub LIG ampersand' by ampersand_ampersand.liga;\012 sub ampersand' ampersand by LIG;\012} ampersand_ampersand;\012\012lookup underscore_underscore {\012 ignore sub underscore underscore' underscore;\012 ignore sub underscore' underscore underscore;\012 sub LIG underscore' by underscore_underscore.liga;\012 sub underscore' underscore by LIG;\012} underscore_underscore;\012\012lookup slash_slash {\012 ignore sub slash slash' slash;\012 ignore sub slash' slash slash;\012 sub LIG slash' by slash_slash.liga;\012 sub slash' slash by LIG;\012} slash_slash;\012\012lookup slash_greater {\012 ignore sub slash slash' greater;\012 ignore sub slash' greater greater;\012 sub LIG greater' by slash_greater.liga;\012 sub slash' greater by LIG;\012} slash_greater;\012\012lookup slash_equal {\012 ignore sub slash slash' equal;\012 ignore sub slash' equal equal;\012 sub LIG equal' by slash_equal.liga;\012 sub slash' equal by LIG;\012} slash_equal;\012\012lookup slash_asterisk {\012 ignore sub slash slash' asterisk;\012 ignore sub slash' asterisk asterisk;\012 ignore sub slash' asterisk slash;\012 ignore sub asterisk slash' asterisk;\012 sub LIG asterisk' by slash_asterisk.liga;\012 sub slash' asterisk by LIG;\012} slash_asterisk;\012\012lookup semicolon_semicolon {\012 ignore sub semicolon semicolon' semicolon;\012 ignore sub semicolon' semicolon semicolon;\012 sub LIG semicolon' by semicolon_semicolon.liga;\012 sub semicolon' semicolon by LIG;\012} semicolon_semicolon;\012\012lookup question_question {\012 ignore sub question question' question;\012 ignore sub question' question question;\012 sub LIG question' by question_question.liga;\012 sub question' question by LIG;\012} question_question;\012\012lookup question_period {\012 ignore sub question question' period;\012 ignore sub question' period period;\012 sub LIG period' by question_period.liga;\012 sub question' period by LIG;\012} question_period;\012\012lookup question_equal {\012 ignore sub question question' equal;\012 ignore sub question' equal equal;\012 ignore sub parenleft question' equal;\012 sub LIG equal' by question_equal.liga;\012 sub question' equal by LIG;\012} question_equal;\012\012lookup question_colon {\012 ignore sub question question' colon;\012 ignore sub question' colon colon;\012 ignore sub parenleft question' colon;\012 sub LIG colon' by question_colon.liga;\012 sub question' colon by LIG;\012} question_colon;\012\012lookup period_question {\012 ignore sub period period' question;\012 ignore sub period' question question;\012 sub LIG question' by period_question.liga;\012 sub period' question by LIG;\012} period_question;\012\012lookup period_period {\012 ignore sub period period' period;\012 ignore sub period' period period;\012 sub LIG period' by period_period.liga;\012 sub period' period by LIG;\012} period_period;\012\012lookup period_equal {\012 ignore sub period period' equal;\012 ignore sub period' equal equal;\012 sub LIG equal' by period_equal.liga;\012 sub period' equal by LIG;\012} period_equal;\012\012lookup period_hyphen {\012 ignore sub period period' hyphen;\012 ignore sub period' hyphen hyphen;\012 sub LIG hyphen' by period_hyphen.liga;\012 sub period' hyphen by LIG;\012} period_hyphen;\012\012lookup numbersign_underscore {\012 ignore sub numbersign numbersign' underscore;\012 ignore sub numbersign' underscore underscore;\012 sub LIG underscore' by numbersign_underscore.liga;\012 sub numbersign' underscore by LIG;\012} numbersign_underscore;\012\012lookup numbersign_question {\012 ignore sub numbersign numbersign' question;\012 ignore sub numbersign' question question;\012 sub LIG question' by numbersign_question.liga;\012 sub numbersign' question by LIG;\012} numbersign_question;\012\012lookup numbersign_parenleft {\012 ignore sub numbersign numbersign' parenleft;\012 ignore sub numbersign' parenleft parenleft;\012 sub LIG parenleft' by numbersign_parenleft.liga;\012 sub numbersign' parenleft by LIG;\012} numbersign_parenleft;\012\012lookup numbersign_equal {\012 ignore sub numbersign numbersign' equal;\012 ignore sub numbersign' equal equal;\012 sub LIG equal' by numbersign_equal.liga;\012 sub numbersign' equal by LIG;\012} numbersign_equal;\012\012lookup numbersign_numbersign {\012 ignore sub numbersign numbersign' numbersign;\012 ignore sub numbersign' numbersign numbersign;\012 sub LIG numbersign' by numbersign_numbersign.liga;\012 sub numbersign' numbersign by LIG;\012} numbersign_numbersign;\012\012lookup numbersign_exclam {\012 ignore sub numbersign numbersign' exclam;\012 ignore sub numbersign' exclam exclam;\012 sub LIG exclam' by numbersign_exclam.liga;\012 sub numbersign' exclam by LIG;\012} numbersign_exclam;\012\012lookup numbersign_colon {\012 ignore sub numbersign numbersign' colon;\012 ignore sub numbersign' colon colon;\012 sub LIG colon' by numbersign_colon.liga;\012 sub numbersign' colon by LIG;\012} numbersign_colon;\012\012lookup numbersign_bracketleft {\012 ignore sub numbersign numbersign' bracketleft;\012 ignore sub numbersign' bracketleft bracketleft;\012 sub LIG bracketleft' by numbersign_bracketleft.liga;\012 sub numbersign' bracketleft by LIG;\012} numbersign_bracketleft;\012\012lookup numbersign_braceleft {\012 ignore sub numbersign numbersign' braceleft;\012 ignore sub numbersign' braceleft braceleft;\012 sub LIG braceleft' by numbersign_braceleft.liga;\012 sub numbersign' braceleft by LIG;\012} numbersign_braceleft;\012\012lookup hyphen_asciitilde {\012 ignore sub hyphen hyphen' asciitilde;\012 ignore sub hyphen' asciitilde asciitilde;\012 sub LIG asciitilde' by hyphen_asciitilde.liga;\012 sub hyphen' asciitilde by LIG;\012} hyphen_asciitilde;\012\012lookup hyphen_less {\012 ignore sub hyphen hyphen' less;\012 ignore sub hyphen' less less;\012 sub LIG less' by hyphen_less.liga;\012 sub hyphen' less by LIG;\012} hyphen_less;\012\012lookup hyphen_greater {\012 ignore sub hyphen hyphen' greater;\012 ignore sub hyphen' greater greater;\012 sub LIG greater' by hyphen_greater.liga;\012 sub hyphen' greater by LIG;\012} hyphen_greater;\012\012lookup hyphen_hyphen {\012 ignore sub hyphen hyphen' hyphen;\012 ignore sub hyphen' hyphen hyphen;\012 sub LIG hyphen' by hyphen_hyphen.liga;\012 sub hyphen' hyphen by LIG;\012} hyphen_hyphen;\012\012lookup hyphen_bar {\012 ignore sub hyphen hyphen' bar;\012 ignore sub hyphen' bar bar;\012 sub LIG bar' by hyphen_bar.liga;\012 sub hyphen' bar by LIG;\012} hyphen_bar;\012\012lookup exclam_equal {\012 ignore sub exclam exclam' equal;\012 ignore sub exclam' equal equal;\012 sub LIG equal' by exclam_equal.liga;\012 sub exclam' equal by LIG;\012} exclam_equal;\012\012lookup exclam_exclam {\012 ignore sub exclam exclam' exclam;\012 ignore sub exclam' exclam exclam;\012 sub LIG exclam' by exclam_exclam.liga;\012 sub exclam' exclam by LIG;\012} exclam_exclam;\012\012lookup colon_less {\012 ignore sub colon colon' less;\012 ignore sub colon' less less;\012 sub LIG less' by colon_less.liga;\012 sub colon' less by LIG;\012} colon_less;\012\012lookup colon_greater {\012 ignore sub colon colon' greater;\012 ignore sub colon' greater greater;\012 ignore sub colon' greater equal;\012 sub LIG greater' by colon_greater.liga;\012 sub colon' greater by LIG;\012} colon_greater;\012\012lookup colon_equal {\012 ignore sub colon colon' equal;\012 ignore sub colon' equal equal;\012 sub LIG equal' by colon_equal.liga;\012 sub colon' equal by LIG;\012} colon_equal;\012\012lookup colon_colon {\012 ignore sub colon colon' colon;\012 ignore sub colon' colon colon;\012 sub LIG colon' by colon_colon.liga;\012 sub colon' colon by LIG;\012} colon_colon;\012\012lookup bracketright_numbersign {\012 ignore sub bracketright bracketright' numbersign;\012 ignore sub bracketright' numbersign numbersign;\012 sub LIG numbersign' by bracketright_numbersign.liga;\012 sub bracketright' numbersign by LIG;\012} bracketright_numbersign;\012\012lookup braceright_numbersign {\012 ignore sub braceright braceright' numbersign;\012 ignore sub braceright' numbersign numbersign;\012 sub LIG numbersign' by braceright_numbersign.liga;\012 sub braceright' numbersign by LIG;\012} braceright_numbersign;\012\012lookup bracketleft_bar {\012 ignore sub bracketleft bracketleft' bar;\012 ignore sub bracketleft' bar bar;\012 ignore sub bracketleft' bar bracketright;\012 sub LIG bar' by bracketleft_bar.liga;\012 sub bracketleft' bar by LIG;\012} bracketleft_bar;\012\012lookup braceleft_bar {\012 ignore sub braceleft braceleft' bar;\012 ignore sub braceleft' bar bar;\012 ignore sub braceleft' bar braceright;\012 sub LIG bar' by braceleft_bar.liga;\012 sub braceleft' bar by LIG;\012} braceleft_bar;\012\012lookup asterisk_slash {\012 ignore sub asterisk asterisk' slash;\012 ignore sub asterisk' slash slash;\012 ignore sub slash asterisk' slash;\012 ignore sub asterisk' slash asterisk;\012 sub LIG slash' by asterisk_slash.liga;\012 sub asterisk' slash by LIG;\012} asterisk_slash;\012\012lookup asterisk_greater {\012 ignore sub asterisk asterisk' greater;\012 ignore sub asterisk' greater greater;\012 sub LIG greater' by asterisk_greater.liga;\012 sub asterisk' greater by LIG;\012} asterisk_greater;\012\012lookup asterisk_asterisk {\012 ignore sub asterisk asterisk' asterisk;\012 ignore sub asterisk' asterisk asterisk;\012 ignore sub slash asterisk' asterisk;\012 ignore sub asterisk' asterisk slash;\012 sub LIG asterisk' by asterisk_asterisk.liga;\012 sub asterisk' asterisk by LIG;\012} asterisk_asterisk;\012### end of generated calt\012\012sub less asciitilde' greater by asciitilde_asciitilde.liga;\012\012lookup lowercase_hyphen {\012 ignore sub @Tall \\hyphen' @Lowercase;\012 ignore sub @Lowercase \\hyphen' @Tall; \012 sub \\hyphen' @Lowercase by \\hyphen.lc;\012 sub @Lowercase \\hyphen' by \\hyphen.lc;\012} lowercase_hyphen;\012\012lookup lowercase_plus {\012 ignore sub @Tall \\plus' @Lowercase;\012 ignore sub @Lowercase \\plus' @Tall;\012 sub \\plus' @Lowercase by \\plus.lc;\012 sub @Lowercase \\plus' by \\plus.lc;\012} lowercase_plus;\012\012lookup lowercase_asterisk {\012 ignore sub @Tall \\asterisk' @Lowercase;\012 ignore sub @Lowercase \\asterisk' @Tall;\012 sub \\asterisk' @Lowercase by \\asterisk.lc;\012 sub @Lowercase \\asterisk' by \\asterisk.lc;\012} lowercase_asterisk;\012\012lookup uppercase_colon {\012 ignore sub @Tall \\colon' @Lowercase;\012 ignore sub @Lowercase \\colon' @Tall;\012 sub @Tall \\colon' by \\colon.uc;\012 sub \\colon' @Tall by \\colon.uc;\012} uppercase_colon;\012\012sub \\zero \\x' @HexDigit by \\x.multiply;\012sub @Digit \\x' @Digit by \\x.multiply;";
name = calt;
}
);
fontMaster = (
{
ascender = 1568;
capHeight = 1420;
descender = -480;
guideLines = (
{
locked = 1;
position = "{1100, 1080}";
},
{
locked = 1;
position = "{886, -20}";
},
{
locked = 1;
position = "{1052, 1500}";
},
{
locked = 1;
position = "{1276, 1440}";
},
{
locked = 1;
position = "{440, -460}";
},
{
angle = 90;
locked = 1;
position = "{280, 416}";
},
{
angle = 90;
locked = 1;
position = "{2160, 332}";
},
{
angle = 90;
locked = 1;
position = "{2120, 342}";
},
{
angle = 90;
locked = 1;
position = "{240, 390}";
},
{
angle = 90;
locked = 1;
position = "{392, 408}";
},
{
angle = 90;
locked = 1;
position = "{2004, 52}";
},
{
angle = 90;
locked = 1;
position = "{3360, 466}";
},
{
angle = 90;
locked = 1;
position = "{3320, 306}";
},
{
angle = 90;
locked = 1;
position = "{3208, 146}";
}
);
id = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
xHeight = 1060;
}
);
glyphs = (
{
glyphname = A;
lastChange = "2019-08-28 00:25:44 +0000";
layers = (
{
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"252 0 LINE",
"588 1248 LINE",
"606 1248 LINE",
"942 0 LINE",
"1152 0 LINE",
"742 1420 LINE",
"452 1420 LINE",
"42 0 LINE"
);
},
{
closed = 1;
nodes = (
"952 346 LINE",
"952 536 LINE",
"232 536 LINE",
"232 346 LINE"
);
}
);
width = 1200;
}
);
unicode = 0041;
},
{
glyphname = B;
lastChange = "2019-08-28 00:26:40 +0000";
layers = (
{
background = {
paths = (
{
closed = 1;
nodes = (
"286 810 LINE",
"286 680 LINE",
"664 680 LINE SMOOTH",
"938 680 OFFCURVE",
"1094 810 OFFCURVE",
"1094 1040 CURVE SMOOTH",
"1094 1282 OFFCURVE",
"930 1420 OFFCURVE",
"642 1420 CURVE SMOOTH",
"266 1420 LINE",
"290 1230 LINE",
"592 1230 LINE SMOOTH",
"772 1230 OFFCURVE",
"874 1154 OFFCURVE",
"874 1020 CURVE SMOOTH",
"874 886 OFFCURVE",
"776 810 OFFCURVE",
"606 810 CURVE SMOOTH"
);
},
{
closed = 1;
nodes = (
"286 190 LINE",
"286 0 LINE",
"664 0 LINE SMOOTH",
"938 0 OFFCURVE",
"1094 138 OFFCURVE",
"1094 380 CURVE SMOOTH",
"1094 610 OFFCURVE",
"930 740 OFFCURVE",
"642 740 CURVE SMOOTH",
"266 740 LINE",
"290 610 LINE",
"592 610 LINE SMOOTH",
"772 610 OFFCURVE",
"874 534 OFFCURVE",
"874 400 CURVE SMOOTH",
"874 266 OFFCURVE",
"776 190 OFFCURVE",
"606 190 CURVE SMOOTH"
);
}
);
};
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"704 0 LINE SMOOTH",
"978 0 OFFCURVE",
"1134 146 OFFCURVE",
"1134 400 CURVE SMOOTH",
"1134 620 OFFCURVE",
"970 746 OFFCURVE",
"682 746 CURVE SMOOTH",
"326 746 LINE",
"350 655 LINE",
"632 655 LINE SMOOTH",
"818 655 OFFCURVE",
"924 569 OFFCURVE",
"924 420 CURVE SMOOTH",
"924 274 OFFCURVE",
"822 190 OFFCURVE",
"646 190 CURVE SMOOTH",
"346 190 LINE",
"346 0 LINE"
);
},
{
closed = 1;
nodes = (
"360 0 LINE",
"360 1420 LINE",
"160 1420 LINE",
"160 0 LINE"
);
},
{
closed = 1;
nodes = (
"694 698 LINE",
"694 796 LINE",
"278 796 LINE",
"278 698 LINE"
);
},
{
closed = 1;
nodes = (
"604 754 LINE SMOOTH",
"878 754 OFFCURVE",
"1034 864 OFFCURVE",
"1034 1060 CURVE SMOOTH",
"1034 1290 OFFCURVE",
"870 1420 OFFCURVE",
"582 1420 CURVE SMOOTH",
"326 1420 LINE",
"350 1230 LINE",
"532 1230 LINE SMOOTH",
"718 1230 OFFCURVE",
"824 1162 OFFCURVE",
"824 1040 CURVE SMOOTH",
"824 915 OFFCURVE",
"722 845 OFFCURVE",
"546 845 CURVE SMOOTH",
"346 845 LINE",
"346 754 LINE"
);
}
);
width = 1200;
}
);
unicode = 0042;
},
{
glyphname = C;
lastChange = "2019-08-15 16:18:04 +0000";
layers = (
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
paths = (
{
closed = 1;
nodes = (
"924 1262 LINE",
"876 1262 LINE",
"832 1382 OFFCURVE",
"742 1440 OFFCURVE",
"604 1440 CURVE SMOOTH",
"264 1440 OFFCURVE",
"96 1200 OFFCURVE",
"96 712 CURVE SMOOTH",
"96 224 OFFCURVE",
"304 -20 OFFCURVE",
"722 -20 CURVE SMOOTH",
"896 -20 OFFCURVE",
"1044 -6 OFFCURVE",
"1100 0 CURVE",
"1022 180 LINE",
"962 174 OFFCURVE",
"868 170 OFFCURVE",
"746 170 CURVE SMOOTH",
"460 170 OFFCURVE",
"316 354 OFFCURVE",
"316 722 CURVE SMOOTH",
"316 1076 OFFCURVE",
"426 1250 OFFCURVE",
"646 1250 CURVE SMOOTH",
"816 1250 OFFCURVE",
"898 1162 OFFCURVE",
"898 982 CURVE"
);
}
);
};
layerId = "257A9851-A137-44EF-B639-FE427F030DC7";
name = "Apr 15 19, 22:20";
paths = (
{
closed = 1;
nodes = (
"924 1262 LINE",
"1100 1420 LINE",
"1000 1440 OFFCURVE",
"900 1440 OFFCURVE",
"824 1440 CURVE SMOOTH",
"364 1440 OFFCURVE",
"136 1206 OFFCURVE",
"136 732 CURVE SMOOTH",
"136 230 OFFCURVE",
"356 -20 OFFCURVE",
"802 -20 CURVE SMOOTH",
"916 -20 OFFCURVE",
"1002 -16 OFFCURVE",
"1058 -10 CURVE",
"1082 180 LINE",
"1026 174 OFFCURVE",
"940 170 OFFCURVE",
"826 170 CURVE SMOOTH",
"512 170 OFFCURVE",
"356 360 OFFCURVE",
"356 742 CURVE SMOOTH",
"356 1082 OFFCURVE",
"512 1250 OFFCURVE",
"826 1250 CURVE SMOOTH",
"908 1250 OFFCURVE",
"928 1240 OFFCURVE",
"958 1222 CURVE"
);
},
{
closed = 1;
nodes = (
"1100 982 LINE",
"1100 1420 LINE",
"900 1420 LINE",
"898 982 LINE"
);
}
);
width = 1200;
},
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
paths = (
{
closed = 1;
nodes = (
"1030 1392 LINE",
"958 1416 OFFCURVE",
"874 1440 OFFCURVE",
"724 1440 CURVE SMOOTH",
"350 1440 OFFCURVE",
"136 1170 OFFCURVE",
"136 702 CURVE SMOOTH",
"136 238 OFFCURVE",
"350 -20 OFFCURVE",
"722 -20 CURVE SMOOTH",
"810 -20 OFFCURVE",
"902 -20 OFFCURVE",
"990 10 CURVE",
"1014 200 LINE",
"926 170 OFFCURVE",
"838 170 OFFCURVE",
"746 170 CURVE SMOOTH",
"496 170 OFFCURVE",
"356 360 OFFCURVE",
"356 712 CURVE SMOOTH",
"356 1054 OFFCURVE",
"484 1250 OFFCURVE",
"706 1250 CURVE SMOOTH",
"844 1250 OFFCURVE",
"900 1234 OFFCURVE",
"976 1206 CURVE"
);
}
);
};
layerId = "8066D411-3C2E-43E9-8D1A-889158BD9E5D";
name = "Apr 16 19, 00:12";
paths = (
{
closed = 1;
nodes = (
"1090 1392 LINE",
"1018 1416 OFFCURVE",
"934 1440 OFFCURVE",
"784 1440 CURVE SMOOTH",
"372 1440 OFFCURVE",
"136 1170 OFFCURVE",
"136 702 CURVE SMOOTH",
"136 238 OFFCURVE",
"372 -20 OFFCURVE",
"782 -20 CURVE SMOOTH",
"870 -20 OFFCURVE",
"962 -20 OFFCURVE",
"1050 10 CURVE",
"1074 200 LINE",
"986 170 OFFCURVE",
"898 170 OFFCURVE",
"806 170 CURVE SMOOTH",
"518 170 OFFCURVE",
"356 360 OFFCURVE",
"356 712 CURVE SMOOTH",
"356 1054 OFFCURVE",
"506 1250 OFFCURVE",
"766 1250 CURVE SMOOTH",
"904 1250 OFFCURVE",
"960 1234 OFFCURVE",
"1036 1206 CURVE"
);
}
);
width = 1200;
},
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
paths = (
{
closed = 1;
nodes = (
"1030 1392 LINE",
"958 1416 OFFCURVE",
"874 1440 OFFCURVE",
"724 1440 CURVE SMOOTH",
"350 1440 OFFCURVE",
"136 1170 OFFCURVE",
"136 702 CURVE SMOOTH",
"136 238 OFFCURVE",
"350 -20 OFFCURVE",
"722 -20 CURVE SMOOTH",
"810 -20 OFFCURVE",
"902 -20 OFFCURVE",
"990 10 CURVE",
"1014 200 LINE",
"926 170 OFFCURVE",
"838 170 OFFCURVE",
"746 170 CURVE SMOOTH",
"496 170 OFFCURVE",
"356 360 OFFCURVE",
"356 712 CURVE SMOOTH",
"356 1054 OFFCURVE",
"484 1250 OFFCURVE",
"706 1250 CURVE SMOOTH",
"844 1250 OFFCURVE",
"900 1234 OFFCURVE",
"976 1206 CURVE"
);
}
);
};
layerId = "065AB286-FDFE-476F-927B-3225F7154559";
name = "Apr 16 19, 00:25";
paths = (
{
closed = 1;
nodes = (
"924 1242 LINE",
"876 1242 LINE",
"832 1376 OFFCURVE",
"742 1440 OFFCURVE",
"604 1440 CURVE SMOOTH",
"306 1440 OFFCURVE",
"136 1174 OFFCURVE",
"136 712 CURVE SMOOTH",
"136 224 OFFCURVE",
"344 -20 OFFCURVE",
"762 -20 CURVE SMOOTH",
"866 -20 OFFCURVE",
"964 -10 OFFCURVE",
"1058 8 CURVE",
"1082 200 LINE",
"1004 180 OFFCURVE",
"906 170 OFFCURVE",
"786 170 CURVE SMOOTH",
"500 170 OFFCURVE",
"356 354 OFFCURVE",
"356 722 CURVE SMOOTH",
"356 1058 OFFCURVE",
"476 1250 OFFCURVE",
"686 1250 CURVE SMOOTH",
"828 1250 OFFCURVE",
"898 1162 OFFCURVE",
"898 982 CURVE"
);
},
{
closed = 1;
nodes = (
"1100 982 LINE",
"1100 1420 LINE",
"900 1420 LINE",
"898 982 LINE"
);
}
);
width = 1200;
},
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
paths = (
{
closed = 1;
nodes = (
"1030 1392 LINE",
"958 1416 OFFCURVE",
"874 1440 OFFCURVE",
"724 1440 CURVE SMOOTH",
"350 1440 OFFCURVE",
"136 1170 OFFCURVE",
"136 702 CURVE SMOOTH",
"136 238 OFFCURVE",
"350 -20 OFFCURVE",
"722 -20 CURVE SMOOTH",
"810 -20 OFFCURVE",
"902 -20 OFFCURVE",
"990 10 CURVE",
"1014 200 LINE",
"926 170 OFFCURVE",
"838 170 OFFCURVE",
"746 170 CURVE SMOOTH",
"496 170 OFFCURVE",
"356 360 OFFCURVE",
"356 712 CURVE SMOOTH",
"356 1054 OFFCURVE",
"484 1250 OFFCURVE",
"706 1250 CURVE SMOOTH",
"844 1250 OFFCURVE",
"900 1234 OFFCURVE",
"976 1206 CURVE"
);
}
);
};
layerId = "9B4D2290-DE66-48B1-95DB-513A380E2E52";
name = "May 17 19, 08:15";
paths = (
{
closed = 1;
nodes = (
"944 1262 LINE",
"886 1262 LINE",
"886 1432 OFFCURVE",
"706 1440 OFFCURVE",
"644 1440 CURVE SMOOTH",
"320 1440 OFFCURVE",
"136 1174 OFFCURVE",
"136 712 CURVE SMOOTH",
"136 224 OFFCURVE",
"344 -20 OFFCURVE",
"762 -20 CURVE SMOOTH",
"866 -20 OFFCURVE",
"964 -10 OFFCURVE",
"1058 8 CURVE",
"1082 200 LINE",
"1004 180 OFFCURVE",
"906 170 OFFCURVE",
"786 170 CURVE SMOOTH",
"500 170 OFFCURVE",
"356 354 OFFCURVE",
"356 722 CURVE SMOOTH",
"356 1058 OFFCURVE",
"484 1250 OFFCURVE",
"706 1250 CURVE SMOOTH",
"834 1250 OFFCURVE",
"898 1188 OFFCURVE",
"898 1062 CURVE"
);
},
{
closed = 1;
nodes = (
"1100 982 LINE",
"1100 1420 LINE",
"900 1420 LINE",
"898 982 LINE"
);
}
);
width = 1200;
},
{
background = {
paths = (
{
closed = 1;
nodes = (
"1030 1392 LINE",
"958 1416 OFFCURVE",
"874 1440 OFFCURVE",
"724 1440 CURVE SMOOTH",
"350 1440 OFFCURVE",
"136 1170 OFFCURVE",
"136 702 CURVE SMOOTH",
"136 238 OFFCURVE",
"350 -20 OFFCURVE",
"722 -20 CURVE SMOOTH",
"810 -20 OFFCURVE",
"902 -20 OFFCURVE",
"990 10 CURVE",
"1014 200 LINE",
"926 170 OFFCURVE",
"838 170 OFFCURVE",
"746 170 CURVE SMOOTH",
"496 170 OFFCURVE",
"356 360 OFFCURVE",
"356 712 CURVE SMOOTH",
"356 1054 OFFCURVE",
"484 1250 OFFCURVE",
"706 1250 CURVE SMOOTH",
"844 1250 OFFCURVE",
"900 1234 OFFCURVE",
"976 1206 CURVE"
);
}
);
};
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"884 -20 OFFCURVE",
"1006 2 OFFCURVE",
"1124 48 CURVE",
"1078 224 LINE",
"984 184 OFFCURVE",
"890 164 OFFCURVE",
"792 164 CURVE SMOOTH",
"472 164 OFFCURVE",
"310 350 OFFCURVE",
"310 722 CURVE SMOOTH",
"310 1064 OFFCURVE",
"470 1258 OFFCURVE",
"716 1258 CURVE SMOOTH",
"852 1258 OFFCURVE",
"924 1208 OFFCURVE",
"924 1102 CURVE",
"1120 1102 LINE",
"1120 1426 OFFCURVE",
"816 1440 OFFCURVE",
"714 1440 CURVE SMOOTH",
"320 1440 OFFCURVE",
"96 1174 OFFCURVE",
"96 712 CURVE SMOOTH",
"96 224 OFFCURVE",
"318 -20 OFFCURVE",
"758 -20 CURVE SMOOTH"
);
}
);
width = 1200;
}
);
unicode = 0043;
},
{
glyphname = D;
lastChange = "2019-08-28 00:36:44 +0000";
layers = (
{
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"504 0 LINE SMOOTH",
"938 0 OFFCURVE",
"1154 222 OFFCURVE",
"1154 670 CURVE SMOOTH",
"1154 1172 OFFCURVE",
"938 1420 OFFCURVE",
"504 1420 CURVE SMOOTH",
"326 1420 LINE",
"350 1230 LINE",
"504 1230 LINE SMOOTH",
"796 1230 OFFCURVE",
"944 1051 OFFCURVE",
"944 690 CURVE SMOOTH",
"944 357 OFFCURVE",
"796 190 OFFCURVE",
"504 190 CURVE SMOOTH",
"346 190 LINE",
"346 0 LINE"
);
},
{
closed = 1;
nodes = (
"360 0 LINE",
"360 1420 LINE",
"160 1420 LINE",
"160 0 LINE"
);
}
);
width = 1200;
}
);
unicode = 0044;
},
{
glyphname = E;
lastChange = "2019-08-28 00:25:37 +0000";
layers = (
{
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"360 0 LINE",
"360 1420 LINE",
"160 1420 LINE",
"160 0 LINE"
);
},
{
closed = 1;
nodes = (
"1100 0 LINE",
"1100 190 LINE",
"160 190 LINE",
"160 0 LINE"
);
},
{
closed = 1;
nodes = (
"920 616 LINE",
"920 806 LINE",
"160 806 LINE",
"160 616 LINE"
);
},
{
closed = 1;
nodes = (
"1100 1230 LINE",
"1100 1420 LINE",
"160 1420 LINE",
"160 1230 LINE"
);
}
);
width = 1200;
}
);
unicode = 0045;
},
{
glyphname = F;
lastChange = "2019-08-28 00:26:59 +0000";
layers = (
{
background = {
paths = (
{
closed = 1;
nodes = (
"368 0 LINE",
"372 1420 LINE",
"160 1420 LINE",
"160 0 LINE"
);
},
{
closed = 1;
nodes = (
"1040 1244 LINE",
"1040 1420 LINE",
"162 1420 LINE",
"160 1244 LINE"
);
},
{
closed = 1;
nodes = (
"860 522 LINE",
"860 698 LINE",
"202 698 LINE",
"200 522 LINE"
);
}
);
};
layerId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
paths = (
{
closed = 1;
nodes = (
"360 0 LINE",
"360 1420 LINE",
"160 1420 LINE",
"160 0 LINE"
);
},
{
closed = 1;
nodes = (
"920 556 LINE",
"920 746 LINE",
"160 746 LINE",
"160 556 LINE"
);
},
{
closed = 1;
nodes = (
"1100 1230 LINE",
"1100 1420 LINE",
"160 1420 LINE",
"160 1230 LINE"
);
}
);
width = 1200;
}
);
unicode = 0046;
},
{
glyphname = G;
lastChange = "2019-08-28 00:24:52 +0000";
layers = (
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
components = (
{
name = C;
}
);
};
layerId = "32207DE6-90DD-4152-96B0-5B8EF384241F";
name = "Apr 16 19, 00:12";
paths = (
{
closed = 1;
nodes = (
"1090 1392 LINE",
"1018 1428 OFFCURVE",
"870 1440 OFFCURVE",
"784 1440 CURVE SMOOTH",
"372 1440 OFFCURVE",
"136 1174 OFFCURVE",
"136 712 CURVE SMOOTH",
"136 224 OFFCURVE",
"324 -20 OFFCURVE",
"702 -20 CURVE SMOOTH",
"886 -20 OFFCURVE",
"1042 22 OFFCURVE",
"1100 40 CURVE",
"1022 220 LINE",
"958 214 OFFCURVE",
"858 170 OFFCURVE",
"726 170 CURVE SMOOTH",
"480 170 OFFCURVE",
"356 354 OFFCURVE",
"356 722 CURVE SMOOTH",
"356 1058 OFFCURVE",
"506 1250 OFFCURVE",
"766 1250 CURVE SMOOTH",
"876 1250 OFFCURVE",
"928 1244 OFFCURVE",
"1036 1206 CURVE"
);
},
{
closed = 1;
nodes = (
"1100 40 LINE",
"1100 718 LINE",
"900 718 LINE",
"898 40 LINE"
);
},
{
closed = 1;
nodes = (
"1094 542 LINE",
"1094 718 LINE",
"682 718 LINE",
"680 542 LINE"
);
}
);
width = 1200;
},
{
associatedMasterId = "BBAB2DB2-7554-4FB8-925D-17003E4845F8";
background = {
components = (
{
name = C;
}
);
};
layerId = "150B0BC5-5EF8-4C40-87A2-BAEF4B0E45CE";
name = "May 17 19, 08:15";
paths = (
{
closed = 1;
nodes = (
"958 1262 LINE",
"886 1262 LINE",
"886 1382 OFFCURVE",
"806 1440 OFFCURVE",
"644 1440 CURVE SMOOTH",
"320 1440 OFFCURVE",
"136 1174 OFFCURVE",
"136 712 CURVE SMOOTH",
"136 224 OFFCURVE",
"344 -20 OFFCURVE",
"762 -20 CURVE SMOOTH",
"918 -20 OFFCURVE",
"1050 22 OFFCURVE",
"1100 40 CURVE",
"1022 220 LINE",
"970 202 OFFCURVE",
"892 170 OFFCURVE",
"786 170 CURVE SMOOTH",
"500 170 OFFCURVE",
"356 354 OFFCURVE",
"356 722 CURVE SMOOTH",
"356 1058 OFFCURVE",
"476 1250 OFFCURVE",
"686 1250 CURVE SMOOTH",
"828 1250 OFFCURVE",