File: fonts.lua

package info (click to toggle)
caveexpress 2.5.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 42,288 kB
  • sloc: cpp: 63,815; ansic: 1,135; sh: 501; xml: 186; python: 74; makefile: 60; javascript: 22
file content (1216 lines) | stat: -rw-r--r-- 47,640 bytes parent folder | download | duplicates (10)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
-- data is exported via fontbuilder,

fonts = {
	["font-10"] = {
		file="font-10",
		height=13,
		description={
			family="Luckiest Guy",
			style="Regular",
			size=10,
		},
		metrics={
			ascender=10,
			descender=-4,
			height=13,
		},
		texture={
			file="font-10",
			width=128,
			height=128,
		},
		chars={
			{char=" ",width=3,x=1,y=12,w=0,h=0,ox=0,oy=0},
			{char="!",width=4,x=2,y=2,w=4,h=11,ox=0,oy=10},
			{char='"',width=6,x=7,y=1,w=7,h=6,ox=0,oy=11},
			{char="#",width=8,x=15,y=3,w=8,h=8,ox=0,oy=9},
			{char="$",width=6,x=24,y=2,w=6,h=11,ox=0,oy=10},
			{char="%",width=9,x=31,y=3,w=10,h=9,ox=0,oy=9},
			{char="&",width=8,x=42,y=3,w=9,h=9,ox=0,oy=9},
			{char="'",width=3,x=52,y=1,w=4,h=5,ox=0,oy=11},
			{char="(",width=5,x=57,y=2,w=6,h=12,ox=0,oy=10},
			{char=")",width=5,x=64,y=2,w=6,h=12,ox=-1,oy=10},
			{char="*",width=7,x=71,y=2,w=7,h=8,ox=0,oy=10},
			{char="+",width=6,x=79,y=5,w=6,h=6,ox=0,oy=7},
			{char=",",width=3,x=86,y=9,w=3,h=5,ox=0,oy=3},
			{char="-",width=5,x=90,y=6,w=5,h=3,ox=0,oy=6},
			{char=".",width=3,x=96,y=9,w=3,h=4,ox=0,oy=3},
			{char="/",width=7,x=100,y=2,w=7,h=11,ox=0,oy=10},
			{char="0",width=8,x=108,y=2,w=9,h=11,ox=0,oy=10},
			{char="1",width=5,x=118,y=2,w=6,h=10,ox=-1,oy=10},
			{char="2",width=7,x=1,y=15,w=7,h=10,ox=0,oy=10},
			{char="3",width=7,x=9,y=15,w=7,h=11,ox=0,oy=10},
			{char="4",width=7,x=17,y=15,w=7,h=10,ox=0,oy=10},
			{char="5",width=7,x=25,y=15,w=7,h=11,ox=0,oy=10},
			{char="6",width=7,x=33,y=15,w=8,h=11,ox=0,oy=10},
			{char="7",width=7,x=42,y=15,w=7,h=10,ox=0,oy=10},
			{char="8",width=7,x=50,y=15,w=8,h=11,ox=0,oy=10},
			{char="9",width=7,x=59,y=15,w=8,h=10,ox=0,oy=10},
			{char=":",width=3,x=68,y=18,w=3,h=8,ox=0,oy=7},
			{char=";",width=3,x=72,y=18,w=3,h=9,ox=0,oy=7},
			{char="<",width=6,x=76,y=16,w=6,h=9,ox=0,oy=9},
			{char="=",width=5,x=83,y=18,w=5,h=6,ox=0,oy=7},
			{char=">",width=6,x=89,y=16,w=6,h=9,ox=0,oy=9},
			{char="?",width=7,x=96,y=15,w=7,h=11,ox=0,oy=10},
			{char="@",width=9,x=104,y=16,w=9,h=9,ox=0,oy=9},
			{char="A",width=8,x=114,y=15,w=10,h=10,ox=-1,oy=10},
			{char="B",width=8,x=1,y=28,w=8,h=11,ox=0,oy=10},
			{char="C",width=7,x=10,y=28,w=7,h=10,ox=0,oy=10},
			{char="D",width=8,x=18,y=28,w=8,h=10,ox=0,oy=10},
			{char="E",width=6,x=27,y=28,w=7,h=10,ox=0,oy=10},
			{char="F",width=6,x=35,y=28,w=7,h=10,ox=0,oy=10},
			{char="G",width=8,x=43,y=28,w=8,h=11,ox=0,oy=10},
			{char="H",width=8,x=52,y=28,w=8,h=11,ox=0,oy=10},
			{char="I",width=4,x=61,y=29,w=4,h=9,ox=0,oy=9},
			{char="J",width=7,x=66,y=28,w=8,h=11,ox=-1,oy=10},
			{char="K",width=8,x=75,y=28,w=9,h=11,ox=0,oy=10},
			{char="L",width=6,x=85,y=28,w=6,h=10,ox=0,oy=10},
			{char="M",width=10,x=92,y=28,w=11,h=11,ox=0,oy=10},
			{char="N",width=9,x=104,y=28,w=9,h=10,ox=0,oy=10},
			{char="O",width=8,x=114,y=29,w=9,h=9,ox=0,oy=9},
			{char="P",width=8,x=1,y=40,w=8,h=11,ox=0,oy=10},
			{char="Q",width=9,x=10,y=40,w=9,h=12,ox=0,oy=10},
			{char="R",width=8,x=20,y=40,w=8,h=10,ox=0,oy=10},
			{char="S",width=7,x=29,y=40,w=7,h=11,ox=0,oy=10},
			{char="T",width=7,x=37,y=40,w=8,h=10,ox=0,oy=10},
			{char="U",width=8,x=46,y=41,w=8,h=10,ox=0,oy=9},
			{char="V",width=8,x=55,y=40,w=10,h=11,ox=-1,oy=10},
			{char="W",width=12,x=66,y=40,w=12,h=11,ox=0,oy=10},
			{char="X",width=8,x=79,y=40,w=9,h=10,ox=-1,oy=10},
			{char="Y",width=8,x=89,y=41,w=9,h=10,ox=0,oy=9},
			{char="Z",width=6,x=99,y=40,w=7,h=10,ox=0,oy=10},
			{char="[",width=5,x=107,y=40,w=5,h=11,ox=0,oy=10},
			{char="\\",width=7,x=113,y=40,w=7,h=11,ox=0,oy=10},
			{char="]",width=5,x=1,y=56,w=6,h=11,ox=-1,oy=10},
			{char="^",width=6,x=8,y=56,w=7,h=6,ox=0,oy=10},
			{char="_",width=4,x=16,y=66,w=6,h=3,ox=-1,oy=0},
			{char="`",width=4,x=23,y=53,w=4,h=5,ox=0,oy=13},
			{char="a",width=8,x=28,y=56,w=10,h=10,ox=-1,oy=10},
			{char="b",width=8,x=39,y=56,w=8,h=11,ox=0,oy=10},
			{char="c",width=7,x=48,y=57,w=7,h=10,ox=0,oy=9},
			{char="d",width=8,x=56,y=57,w=8,h=9,ox=0,oy=9},
			{char="e",width=8,x=65,y=56,w=8,h=11,ox=0,oy=10},
			{char="f",width=6,x=74,y=56,w=7,h=10,ox=0,oy=10},
			{char="g",width=8,x=82,y=56,w=8,h=11,ox=0,oy=10},
			{char="h",width=8,x=91,y=57,w=8,h=9,ox=0,oy=9},
			{char="i",width=4,x=100,y=57,w=4,h=9,ox=0,oy=9},
			{char="j",width=7,x=105,y=56,w=8,h=11,ox=-1,oy=10},
			{char="k",width=8,x=114,y=56,w=9,h=11,ox=0,oy=10},
			{char="l",width=6,x=1,y=70,w=6,h=10,ox=0,oy=10},
			{char="m",width=12,x=8,y=70,w=12,h=10,ox=0,oy=10},
			{char="n",width=8,x=21,y=70,w=9,h=10,ox=0,oy=10},
			{char="o",width=8,x=31,y=71,w=9,h=9,ox=0,oy=9},
			{char="p",width=8,x=41,y=70,w=8,h=11,ox=0,oy=10},
			{char="q",width=9,x=50,y=70,w=9,h=12,ox=0,oy=10},
			{char="r",width=8,x=60,y=70,w=8,h=10,ox=0,oy=10},
			{char="s",width=7,x=69,y=70,w=7,h=11,ox=0,oy=10},
			{char="t",width=7,x=77,y=71,w=8,h=9,ox=0,oy=9},
			{char="u",width=8,x=86,y=71,w=8,h=10,ox=0,oy=9},
			{char="v",width=8,x=95,y=70,w=10,h=10,ox=-1,oy=10},
			{char="w",width=12,x=106,y=70,w=12,h=10,ox=0,oy=10},
			{char="x",width=8,x=1,y=85,w=9,h=9,ox=-1,oy=9},
			{char="y",width=8,x=11,y=85,w=10,h=9,ox=-1,oy=9},
			{char="z",width=6,x=22,y=85,w=7,h=9,ox=0,oy=9},
			{char="{",width=5,x=30,y=83,w=7,h=13,ox=-1,oy=11},
			{char="|",width=4,x=38,y=84,w=4,h=11,ox=0,oy=10},
			{char="}",width=5,x=43,y=83,w=7,h=13,ox=-1,oy=11},
			{char="~",width=7,x=51,y=86,w=8,h=6,ox=0,oy=8},
			{char="ß",width=14,x=60,y=84,w=14,h=11,ox=0,oy=10},
			{char="ä",width=8,x=75,y=83,w=10,h=11,ox=-1,oy=11},
			{char="ö",width=8,x=86,y=83,w=9,h=11,ox=0,oy=11},
			{char="ü",width=8,x=96,y=83,w=8,h=12,ox=0,oy=11},
		},
		kernings={
			{from='"',to=",",offset=-1},
			{from='"',to=".",offset=-1},
			{from='"',to="J",offset=-1},
			{from='"',to="j",offset=-1},
			{from="'",to=",",offset=-1},
			{from="'",to=".",offset=-1},
			{from="'",to="J",offset=-1},
			{from="'",to="j",offset=-1},
			{from=",",to='"',offset=-1},
			{from=",",to="'",offset=-1},
			{from=".",to='"',offset=-1},
			{from=".",to="'",offset=-1},
			{from="/",to="A",offset=-1},
			{from="/",to="J",offset=-1},
			{from="/",to="a",offset=-1},
			{from="/",to="j",offset=-1},
			{from="/",to="ä",offset=-1},
			{from="7",to="/",offset=-1},
			{from="A",to="\\",offset=-1},
			{from="F",to="/",offset=-1},
			{from="F",to="J",offset=-1},
			{from="F",to="j",offset=-1},
			{from="L",to="T",offset=-1},
			{from="L",to="Y",offset=-1},
			{from="L",to="t",offset=-1},
			{from="L",to="y",offset=-1},
			{from="P",to=",",offset=-1},
			{from="P",to=".",offset=-1},
			{from="P",to="J",offset=-1},
			{from="P",to="j",offset=-1},
			{from="T",to="/",offset=-1},
			{from="T",to="J",offset=-1},
			{from="T",to="j",offset=-1},
			{from="V",to="/",offset=-1},
			{from="V",to="J",offset=-1},
			{from="V",to="j",offset=-1},
			{from="Y",to=",",offset=-1},
			{from="Y",to=".",offset=-1},
			{from="Y",to="/",offset=-1},
			{from="Y",to="J",offset=-1},
			{from="Y",to="j",offset=-1},
			{from="\\",to="T",offset=-1},
			{from="\\",to="V",offset=-1},
			{from="\\",to="t",offset=-1},
			{from="\\",to="v",offset=-1},
			{from="\\",to="y",offset=-1},
			{from="a",to="\\",offset=-1},
			{from="f",to="/",offset=-1},
			{from="f",to="J",offset=-1},
			{from="f",to="j",offset=-1},
			{from="l",to="T",offset=-1},
			{from="l",to="Y",offset=-1},
			{from="l",to="\\",offset=-1},
			{from="l",to="t",offset=-1},
			{from="l",to="y",offset=-1},
			{from="p",to=".",offset=-1},
			{from="t",to="/",offset=-1},
			{from="t",to="J",offset=-1},
			{from="t",to="j",offset=-1},
			{from="v",to="/",offset=-1},
			{from="v",to="J",offset=-1},
			{from="v",to="j",offset=-1},
			{from="y",to="/",offset=-1},
			{from="y",to="A",offset=-1},
			{from="y",to="J",offset=-1},
			{from="y",to="a",offset=-1},
			{from="y",to="j",offset=-1},
			{from="y",to="ä",offset=-1},
			{from="ä",to="\\",offset=-1},
		},
	},
	["font-12"] = {
		file="font-12",
		height=16,
		description={
			family="Luckiest Guy",
			style="Regular",
			size=12,
		},
		metrics={
			ascender=12,
			descender=-5,
			height=16,
		},
		texture={
			file="font-12",
			width=256,
			height=128,
		},
		chars={
			{char=" ",width=3,x=1,y=14,w=0,h=0,ox=0,oy=0},
			{char="!",width=4,x=2,y=2,w=5,h=13,ox=0,oy=12},
			{char='"',width=8,x=8,y=1,w=8,h=6,ox=0,oy=13},
			{char="#",width=10,x=17,y=4,w=10,h=9,ox=0,oy=10},
			{char="$",width=7,x=28,y=1,w=7,h=15,ox=0,oy=13},
			{char="%",width=12,x=36,y=3,w=12,h=11,ox=0,oy=11},
			{char="&",width=10,x=49,y=3,w=11,h=11,ox=0,oy=11},
			{char="'",width=4,x=61,y=1,w=4,h=6,ox=0,oy=13},
			{char="(",width=6,x=66,y=1,w=7,h=15,ox=0,oy=13},
			{char=")",width=6,x=74,y=1,w=7,h=15,ox=-1,oy=13},
			{char="*",width=9,x=82,y=2,w=9,h=9,ox=0,oy=12},
			{char="+",width=7,x=92,y=5,w=7,h=8,ox=0,oy=9},
			{char=",",width=4,x=100,y=10,w=4,h=6,ox=0,oy=4},
			{char="-",width=6,x=105,y=7,w=6,h=3,ox=0,oy=7},
			{char=".",width=4,x=112,y=10,w=4,h=5,ox=0,oy=4},
			{char="/",width=8,x=117,y=2,w=8,h=13,ox=0,oy=12},
			{char="0",width=10,x=126,y=2,w=10,h=13,ox=0,oy=12},
			{char="1",width=6,x=137,y=2,w=7,h=12,ox=-1,oy=12},
			{char="2",width=8,x=145,y=2,w=8,h=12,ox=0,oy=12},
			{char="3",width=8,x=154,y=2,w=9,h=13,ox=0,oy=12},
			{char="4",width=9,x=164,y=2,w=9,h=12,ox=0,oy=12},
			{char="5",width=9,x=174,y=2,w=9,h=13,ox=0,oy=12},
			{char="6",width=9,x=184,y=2,w=10,h=13,ox=0,oy=12},
			{char="7",width=8,x=195,y=2,w=8,h=12,ox=0,oy=12},
			{char="8",width=9,x=204,y=2,w=9,h=13,ox=0,oy=12},
			{char="9",width=9,x=214,y=2,w=9,h=12,ox=0,oy=12},
			{char=":",width=4,x=224,y=5,w=4,h=10,ox=0,oy=9},
			{char=";",width=4,x=229,y=5,w=4,h=11,ox=0,oy=9},
			{char="<",width=7,x=234,y=3,w=7,h=11,ox=0,oy=11},
			{char="=",width=6,x=242,y=6,w=6,h=7,ox=0,oy=8},
			{char=">",width=7,x=1,y=18,w=7,h=11,ox=0,oy=11},
			{char="?",width=9,x=9,y=17,w=9,h=13,ox=0,oy=12},
			{char="@",width=11,x=19,y=18,w=11,h=11,ox=0,oy=11},
			{char="A",width=10,x=31,y=17,w=12,h=12,ox=-1,oy=12},
			{char="B",width=10,x=44,y=17,w=10,h=13,ox=0,oy=12},
			{char="C",width=8,x=55,y=17,w=9,h=12,ox=0,oy=12},
			{char="D",width=9,x=65,y=17,w=10,h=12,ox=0,oy=12},
			{char="E",width=8,x=76,y=17,w=8,h=12,ox=0,oy=12},
			{char="F",width=8,x=85,y=17,w=8,h=12,ox=0,oy=12},
			{char="G",width=10,x=94,y=17,w=10,h=13,ox=0,oy=12},
			{char="H",width=10,x=105,y=17,w=10,h=13,ox=0,oy=12},
			{char="I",width=5,x=116,y=18,w=5,h=11,ox=0,oy=11},
			{char="J",width=8,x=122,y=17,w=9,h=13,ox=-1,oy=12},
			{char="K",width=10,x=132,y=17,w=11,h=13,ox=0,oy=12},
			{char="L",width=7,x=144,y=17,w=8,h=12,ox=0,oy=12},
			{char="M",width=13,x=153,y=17,w=13,h=13,ox=0,oy=12},
			{char="N",width=11,x=167,y=17,w=12,h=12,ox=0,oy=12},
			{char="O",width=10,x=180,y=18,w=11,h=11,ox=0,oy=11},
			{char="P",width=10,x=192,y=17,w=10,h=13,ox=0,oy=12},
			{char="Q",width=11,x=203,y=17,w=11,h=14,ox=0,oy=12},
			{char="R",width=10,x=215,y=17,w=10,h=12,ox=0,oy=12},
			{char="S",width=9,x=226,y=17,w=9,h=13,ox=0,oy=12},
			{char="T",width=9,x=236,y=17,w=9,h=12,ox=0,oy=12},
			{char="U",width=10,x=1,y=36,w=10,h=12,ox=0,oy=11},
			{char="V",width=10,x=12,y=35,w=11,h=13,ox=-1,oy=12},
			{char="W",width=15,x=24,y=35,w=15,h=13,ox=0,oy=12},
			{char="X",width=9,x=40,y=35,w=11,h=12,ox=-1,oy=12},
			{char="Y",width=10,x=52,y=36,w=11,h=12,ox=0,oy=11},
			{char="Z",width=8,x=64,y=35,w=8,h=12,ox=0,oy=12},
			{char="[",width=6,x=73,y=34,w=6,h=15,ox=0,oy=13},
			{char="\\",width=8,x=80,y=35,w=8,h=13,ox=0,oy=12},
			{char="]",width=6,x=89,y=34,w=7,h=15,ox=-1,oy=13},
			{char="^",width=8,x=97,y=35,w=8,h=7,ox=0,oy=12},
			{char="_",width=5,x=106,y=47,w=6,h=4,ox=-1,oy=0},
			{char="`",width=5,x=113,y=32,w=5,h=5,ox=0,oy=15},
			{char="a",width=10,x=119,y=35,w=12,h=12,ox=-1,oy=12},
			{char="b",width=10,x=132,y=35,w=10,h=13,ox=0,oy=12},
			{char="c",width=8,x=143,y=35,w=9,h=13,ox=0,oy=12},
			{char="d",width=9,x=153,y=36,w=10,h=11,ox=0,oy=11},
			{char="e",width=9,x=164,y=35,w=10,h=13,ox=0,oy=12},
			{char="f",width=8,x=175,y=35,w=8,h=12,ox=0,oy=12},
			{char="g",width=10,x=184,y=35,w=10,h=13,ox=0,oy=12},
			{char="h",width=10,x=195,y=35,w=10,h=12,ox=0,oy=12},
			{char="i",width=5,x=206,y=36,w=5,h=11,ox=0,oy=11},
			{char="j",width=8,x=212,y=35,w=9,h=13,ox=-1,oy=12},
			{char="k",width=10,x=222,y=35,w=10,h=13,ox=0,oy=12},
			{char="l",width=7,x=233,y=35,w=8,h=12,ox=0,oy=12},
			{char="m",width=14,x=1,y=54,w=15,h=12,ox=0,oy=12},
			{char="n",width=10,x=17,y=54,w=11,h=12,ox=0,oy=12},
			{char="o",width=10,x=29,y=55,w=11,h=11,ox=0,oy=11},
			{char="p",width=10,x=41,y=54,w=10,h=13,ox=0,oy=12},
			{char="q",width=11,x=52,y=54,w=11,h=14,ox=0,oy=12},
			{char="r",width=10,x=64,y=54,w=10,h=12,ox=0,oy=12},
			{char="s",width=9,x=75,y=54,w=9,h=13,ox=0,oy=12},
			{char="t",width=9,x=85,y=54,w=9,h=12,ox=0,oy=12},
			{char="u",width=10,x=95,y=55,w=10,h=12,ox=0,oy=11},
			{char="v",width=10,x=106,y=54,w=11,h=12,ox=-1,oy=12},
			{char="w",width=15,x=118,y=54,w=15,h=12,ox=0,oy=12},
			{char="x",width=10,x=134,y=54,w=11,h=12,ox=-1,oy=12},
			{char="y",width=10,x=146,y=55,w=12,h=11,ox=-1,oy=11},
			{char="z",width=8,x=159,y=54,w=8,h=12,ox=0,oy=12},
			{char="{",width=7,x=168,y=53,w=8,h=15,ox=-1,oy=13},
			{char="|",width=5,x=177,y=53,w=5,h=15,ox=0,oy=13},
			{char="}",width=6,x=183,y=53,w=8,h=15,ox=-1,oy=13},
			{char="~",width=9,x=192,y=57,w=10,h=6,ox=0,oy=9},
			{char="ß",width=17,x=203,y=54,w=17,h=13,ox=0,oy=12},
			{char="ä",width=10,x=221,y=52,w=12,h=14,ox=-1,oy=14},
			{char="ö",width=10,x=234,y=52,w=11,h=14,ox=0,oy=14},
			{char="ü",width=10,x=1,y=69,w=10,h=15,ox=0,oy=14},
		},
		kernings={
			{from='"',to=",",offset=-2},
			{from='"',to=".",offset=-2},
			{from='"',to="/",offset=-1},
			{from='"',to="J",offset=-1},
			{from='"',to="j",offset=-1},
			{from="&",to="Y",offset=-1},
			{from="&",to="t",offset=-1},
			{from="&",to="y",offset=-1},
			{from="'",to=",",offset=-2},
			{from="'",to=".",offset=-2},
			{from="'",to="/",offset=-1},
			{from="'",to="J",offset=-1},
			{from="'",to="j",offset=-1},
			{from="(",to="O",offset=-1},
			{from="(",to="Q",offset=-1},
			{from="(",to="V",offset=1},
			{from="(",to="o",offset=-1},
			{from="(",to="q",offset=-1},
			{from="(",to="ö",offset=-1},
			{from="*",to="A",offset=-1},
			{from="*",to="J",offset=-1},
			{from="*",to="a",offset=-1},
			{from="*",to="j",offset=-1},
			{from="*",to="ä",offset=-1},
			{from=",",to='"',offset=-1},
			{from=",",to="'",offset=-1},
			{from=".",to='"',offset=-1},
			{from=".",to="'",offset=-1},
			{from="/",to="A",offset=-1},
			{from="/",to="J",offset=-1},
			{from="/",to="O",offset=-1},
			{from="/",to="a",offset=-1},
			{from="/",to="j",offset=-1},
			{from="/",to="ä",offset=-1},
			{from="7",to="/",offset=-1},
			{from="7",to="J",offset=-1},
			{from="7",to="j",offset=-1},
			{from="A",to="T",offset=-1},
			{from="A",to="V",offset=-1},
			{from="A",to="Y",offset=-1},
			{from="A",to="\\",offset=-1},
			{from="A",to="t",offset=-1},
			{from="A",to="v",offset=-1},
			{from="A",to="y",offset=-1},
			{from="F",to=",",offset=-1},
			{from="F",to=".",offset=-1},
			{from="F",to="/",offset=-1},
			{from="F",to="A",offset=-1},
			{from="F",to="J",offset=-1},
			{from="F",to="a",offset=-1},
			{from="F",to="j",offset=-1},
			{from="F",to="ä",offset=-1},
			{from="K",to="@",offset=-1},
			{from="L",to="?",offset=-1},
			{from="L",to="T",offset=-1},
			{from="L",to="V",offset=-1},
			{from="L",to="Y",offset=-1},
			{from="L",to="\\",offset=-1},
			{from="L",to="t",offset=-1},
			{from="L",to="v",offset=-1},
			{from="L",to="y",offset=-1},
			{from="O",to=")",offset=-1},
			{from="P",to=",",offset=-1},
			{from="P",to=".",offset=-1},
			{from="P",to="/",offset=-1},
			{from="P",to="J",offset=-1},
			{from="P",to="j",offset=-1},
			{from="T",to=",",offset=-1},
			{from="T",to=".",offset=-1},
			{from="T",to="/",offset=-1},
			{from="T",to="A",offset=-1},
			{from="T",to="J",offset=-1},
			{from="T",to="a",offset=-1},
			{from="T",to="j",offset=-1},
			{from="T",to="ä",offset=-1},
			{from="U",to="/",offset=-1},
			{from="V",to="/",offset=-1},
			{from="V",to="J",offset=-1},
			{from="V",to="j",offset=-1},
			{from="W",to="/",offset=-1},
			{from="Y",to=",",offset=-1},
			{from="Y",to=".",offset=-1},
			{from="Y",to="/",offset=-1},
			{from="Y",to="7",offset=1},
			{from="Y",to="@",offset=-1},
			{from="Y",to="A",offset=-1},
			{from="Y",to="J",offset=-1},
			{from="Y",to="O",offset=-1},
			{from="Y",to="]",offset=1},
			{from="Y",to="a",offset=-1},
			{from="Y",to="j",offset=-1},
			{from="Y",to="ä",offset=-1},
			{from="\\",to='"',offset=-1},
			{from="\\",to="'",offset=-1},
			{from="\\",to="1",offset=-1},
			{from="\\",to="T",offset=-1},
			{from="\\",to="V",offset=-1},
			{from="\\",to="W",offset=-1},
			{from="\\",to="Y",offset=-1},
			{from="\\",to="o",offset=-1},
			{from="\\",to="t",offset=-1},
			{from="\\",to="v",offset=-1},
			{from="\\",to="w",offset=-1},
			{from="\\",to="y",offset=-1},
			{from="\\",to="ö",offset=-1},
			{from="a",to="T",offset=-1},
			{from="a",to="V",offset=-1},
			{from="a",to="Y",offset=-1},
			{from="a",to="\\",offset=-1},
			{from="a",to="t",offset=-1},
			{from="a",to="v",offset=-1},
			{from="a",to="y",offset=-1},
			{from="f",to=",",offset=-1},
			{from="f",to=".",offset=-1},
			{from="f",to="/",offset=-1},
			{from="f",to="A",offset=-1},
			{from="f",to="J",offset=-1},
			{from="f",to="a",offset=-1},
			{from="f",to="j",offset=-1},
			{from="f",to="ä",offset=-1},
			{from="l",to="?",offset=-1},
			{from="l",to="T",offset=-1},
			{from="l",to="V",offset=-1},
			{from="l",to="Y",offset=-1},
			{from="l",to="\\",offset=-1},
			{from="l",to="t",offset=-1},
			{from="l",to="v",offset=-1},
			{from="l",to="y",offset=-1},
			{from="o",to=")",offset=-1},
			{from="p",to=",",offset=-1},
			{from="p",to=".",offset=-1},
			{from="p",to="/",offset=-1},
			{from="p",to="J",offset=-1},
			{from="p",to="j",offset=-1},
			{from="t",to="/",offset=-1},
			{from="t",to="A",offset=-1},
			{from="t",to="J",offset=-1},
			{from="t",to="a",offset=-1},
			{from="t",to="j",offset=-1},
			{from="t",to="ä",offset=-1},
			{from="v",to="/",offset=-1},
			{from="v",to="A",offset=-1},
			{from="v",to="J",offset=-1},
			{from="v",to="a",offset=-1},
			{from="v",to="j",offset=-1},
			{from="v",to="ä",offset=-1},
			{from="w",to="/",offset=-1},
			{from="y",to=",",offset=-1},
			{from="y",to=".",offset=-1},
			{from="y",to="/",offset=-1},
			{from="y",to="@",offset=-1},
			{from="y",to="A",offset=-1},
			{from="y",to="C",offset=-1},
			{from="y",to="G",offset=-1},
			{from="y",to="J",offset=-1},
			{from="y",to="O",offset=-1},
			{from="y",to="Q",offset=-1},
			{from="y",to="a",offset=-1},
			{from="y",to="c",offset=-1},
			{from="y",to="g",offset=-1},
			{from="y",to="j",offset=-1},
			{from="y",to="o",offset=-1},
			{from="y",to="q",offset=-1},
			{from="y",to="ä",offset=-1},
			{from="y",to="ö",offset=-1},
			{from="ä",to="T",offset=-1},
			{from="ä",to="V",offset=-1},
			{from="ä",to="Y",offset=-1},
			{from="ä",to="\\",offset=-1},
			{from="ä",to="t",offset=-1},
			{from="ä",to="v",offset=-1},
			{from="ä",to="y",offset=-1},
			{from="ö",to=")",offset=-1},
		},
	},
	["font-24"] = {
		file="font-24",
		height=32,
		description={
			family="Luckiest Guy",
			style="Regular",
			size=24,
		},
		metrics={
			ascender=23,
			descender=-10,
			height=32,
		},
		texture={
			file="font-24",
			width=256,
			height=256,
		},
		chars={
			{char=" ",width=6,x=1,y=27,w=0,h=0,ox=0,oy=0},
			{char="!",width=9,x=2,y=3,w=9,h=26,ox=0,oy=24},
			{char='"',width=15,x=12,y=1,w=16,h=12,ox=0,oy=26},
			{char="#",width=19,x=29,y=7,w=19,h=18,ox=0,oy=20},
			{char="$",width=14,x=49,y=2,w=14,h=28,ox=0,oy=25},
			{char="%",width=23,x=64,y=6,w=23,h=20,ox=0,oy=21},
			{char="&",width=20,x=88,y=5,w=21,h=22,ox=0,oy=22},
			{char="'",width=7,x=110,y=1,w=8,h=11,ox=0,oy=26},
			{char="(",width=12,x=119,y=2,w=14,h=28,ox=0,oy=25},
			{char=")",width=12,x=134,y=2,w=13,h=28,ox=-1,oy=25},
			{char="*",width=17,x=148,y=4,w=17,h=16,ox=0,oy=23},
			{char="+",width=15,x=166,y=10,w=14,h=14,ox=0,oy=17},
			{char=",",width=7,x=181,y=20,w=7,h=10,ox=0,oy=7},
			{char="-",width=12,x=189,y=13,w=11,h=6,ox=1,oy=14},
			{char=".",width=7,x=201,y=20,w=7,h=8,ox=0,oy=7},
			{char="/",width=16,x=209,y=3,w=16,h=26,ox=0,oy=24},
			{char="0",width=20,x=226,y=4,w=20,h=24,ox=0,oy=23},
			{char="1",width=12,x=1,y=32,w=13,h=23,ox=-1,oy=23},
			{char="2",width=16,x=15,y=31,w=16,h=24,ox=0,oy=24},
			{char="3",width=17,x=32,y=31,w=17,h=25,ox=0,oy=24},
			{char="4",width=17,x=50,y=31,w=17,h=24,ox=0,oy=24},
			{char="5",width=17,x=68,y=32,w=17,h=24,ox=0,oy=23},
			{char="6",width=18,x=86,y=31,w=19,h=25,ox=0,oy=24},
			{char="7",width=16,x=106,y=32,w=16,h=23,ox=0,oy=23},
			{char="8",width=18,x=123,y=32,w=18,h=24,ox=0,oy=23},
			{char="9",width=18,x=142,y=32,w=18,h=23,ox=0,oy=23},
			{char=":",width=8,x=161,y=38,w=8,h=18,ox=0,oy=17},
			{char=";",width=8,x=170,y=38,w=8,h=20,ox=0,oy=17},
			{char="<",width=15,x=179,y=34,w=14,h=20,ox=0,oy=21},
			{char="=",width=13,x=194,y=39,w=11,h=13,ox=1,oy=16},
			{char=">",width=15,x=206,y=34,w=14,h=20,ox=0,oy=21},
			{char="?",width=18,x=221,y=32,w=18,h=25,ox=0,oy=23},
			{char="@",width=21,x=1,y=62,w=20,h=20,ox=1,oy=21},
			{char="A",width=20,x=22,y=60,w=22,h=23,ox=-1,oy=23},
			{char="B",width=19,x=45,y=60,w=19,h=24,ox=0,oy=23},
			{char="C",width=16,x=65,y=60,w=17,h=23,ox=0,oy=23},
			{char="D",width=19,x=83,y=60,w=19,h=23,ox=0,oy=23},
			{char="E",width=15,x=103,y=60,w=16,h=23,ox=0,oy=23},
			{char="F",width=16,x=120,y=60,w=16,h=23,ox=0,oy=23},
			{char="G",width=20,x=137,y=59,w=20,h=25,ox=0,oy=24},
			{char="H",width=20,x=158,y=60,w=20,h=24,ox=0,oy=23},
			{char="I",width=10,x=179,y=61,w=10,h=22,ox=0,oy=22},
			{char="J",width=16,x=190,y=60,w=17,h=24,ox=-1,oy=23},
			{char="K",width=20,x=208,y=60,w=21,h=24,ox=0,oy=23},
			{char="L",width=14,x=230,y=60,w=15,h=23,ox=0,oy=23},
			{char="M",width=25,x=1,y=86,w=25,h=24,ox=0,oy=23},
			{char="N",width=23,x=27,y=86,w=23,h=23,ox=0,oy=23},
			{char="O",width=20,x=51,y=87,w=21,h=22,ox=0,oy=22},
			{char="P",width=19,x=73,y=86,w=19,h=24,ox=0,oy=23},
			{char="Q",width=22,x=93,y=86,w=22,h=26,ox=0,oy=23},
			{char="R",width=19,x=116,y=86,w=20,h=23,ox=0,oy=23},
			{char="S",width=17,x=137,y=85,w=17,h=25,ox=0,oy=24},
			{char="T",width=17,x=155,y=86,w=18,h=23,ox=0,oy=23},
			{char="U",width=20,x=174,y=87,w=20,h=23,ox=0,oy=22},
			{char="V",width=20,x=195,y=86,w=21,h=24,ox=-1,oy=23},
			{char="W",width=29,x=217,y=86,w=29,h=24,ox=0,oy=23},
			{char="X",width=19,x=1,y=120,w=21,h=23,ox=-1,oy=23},
			{char="Y",width=19,x=23,y=121,w=21,h=23,ox=0,oy=22},
			{char="Z",width=16,x=45,y=120,w=16,h=23,ox=0,oy=23},
			{char="[",width=12,x=62,y=118,w=12,h=28,ox=0,oy=25},
			{char="\\",width=16,x=75,y=119,w=16,h=26,ox=0,oy=24},
			{char="]",width=12,x=92,y=118,w=12,h=28,ox=-1,oy=25},
			{char="^",width=16,x=105,y=120,w=16,h=13,ox=0,oy=23},
			{char="_",width=10,x=122,y=144,w=11,h=6,ox=-1,oy=-1},
			{char="`",width=9,x=134,y=113,w=10,h=9,ox=0,oy=30},
			{char="a",width=20,x=145,y=120,w=22,h=23,ox=-1,oy=23},
			{char="b",width=19,x=168,y=120,w=19,h=24,ox=0,oy=23},
			{char="c",width=16,x=188,y=120,w=17,h=24,ox=0,oy=23},
			{char="d",width=19,x=206,y=121,w=19,h=22,ox=0,oy=22},
			{char="e",width=18,x=226,y=120,w=19,h=24,ox=0,oy=23},
			{char="f",width=16,x=1,y=151,w=16,h=23,ox=0,oy=23},
			{char="g",width=20,x=18,y=151,w=20,h=24,ox=0,oy=23},
			{char="h",width=20,x=39,y=151,w=20,h=23,ox=0,oy=23},
			{char="i",width=9,x=60,y=152,w=9,h=22,ox=0,oy=22},
			{char="j",width=16,x=70,y=151,w=17,h=24,ox=-1,oy=23},
			{char="k",width=19,x=88,y=151,w=20,h=24,ox=0,oy=23},
			{char="l",width=14,x=109,y=151,w=15,h=23,ox=0,oy=23},
			{char="m",width=29,x=125,y=151,w=29,h=23,ox=0,oy=23},
			{char="n",width=21,x=155,y=151,w=21,h=23,ox=0,oy=23},
			{char="o",width=20,x=177,y=152,w=21,h=21,ox=0,oy=22},
			{char="p",width=19,x=199,y=151,w=19,h=24,ox=0,oy=23},
			{char="q",width=22,x=219,y=151,w=22,h=26,ox=0,oy=23},
			{char="r",width=19,x=1,y=180,w=20,h=23,ox=0,oy=23},
			{char="s",width=17,x=22,y=180,w=17,h=24,ox=0,oy=23},
			{char="t",width=17,x=40,y=180,w=18,h=23,ox=0,oy=23},
			{char="u",width=20,x=59,y=181,w=20,h=23,ox=0,oy=22},
			{char="v",width=20,x=80,y=180,w=21,h=23,ox=-1,oy=23},
			{char="w",width=29,x=102,y=180,w=30,h=23,ox=0,oy=23},
			{char="x",width=19,x=133,y=180,w=21,h=23,ox=-1,oy=23},
			{char="y",width=19,x=155,y=181,w=22,h=22,ox=-1,oy=22},
			{char="z",width=16,x=178,y=180,w=16,h=23,ox=0,oy=23},
			{char="{",width=13,x=195,y=178,w=15,h=28,ox=-1,oy=25},
			{char="|",width=9,x=211,y=178,w=8,h=28,ox=1,oy=25},
			{char="}",width=13,x=220,y=178,w=15,h=28,ox=-2,oy=25},
			{char="~",width=18,x=1,y=217,w=19,h=12,ox=0,oy=18},
			{char="ß",width=33,x=21,y=212,w=34,h=24,ox=0,oy=23},
			{char="ä",width=20,x=56,y=207,w=22,h=28,ox=-1,oy=28},
			{char="ö",width=20,x=79,y=207,w=21,h=27,ox=0,oy=28},
			{char="ü",width=20,x=101,y=207,w=20,h=29,ox=0,oy=28},
		},
		kernings={
			{from='"',to=",",offset=-5},
			{from='"',to=".",offset=-5},
			{from='"',to="/",offset=-2},
			{from='"',to="J",offset=-3},
			{from='"',to="j",offset=-3},
			{from="&",to="Y",offset=-2},
			{from="&",to="t",offset=-2},
			{from="&",to="y",offset=-2},
			{from="'",to=",",offset=-5},
			{from="'",to=".",offset=-5},
			{from="'",to="/",offset=-2},
			{from="'",to="J",offset=-3},
			{from="'",to="j",offset=-3},
			{from="(",to="O",offset=-2},
			{from="(",to="Q",offset=-2},
			{from="(",to="V",offset=2},
			{from="(",to="o",offset=-2},
			{from="(",to="q",offset=-2},
			{from="(",to="ö",offset=-2},
			{from="*",to="A",offset=-2},
			{from="*",to="J",offset=-2},
			{from="*",to="a",offset=-2},
			{from="*",to="j",offset=-2},
			{from="*",to="ä",offset=-2},
			{from=",",to='"',offset=-5},
			{from=",",to="'",offset=-5},
			{from=".",to='"',offset=-5},
			{from=".",to="'",offset=-5},
			{from="/",to="A",offset=-2},
			{from="/",to="J",offset=-3},
			{from="/",to="O",offset=-2},
			{from="/",to="a",offset=-2},
			{from="/",to="j",offset=-3},
			{from="/",to="ä",offset=-2},
			{from="7",to="/",offset=-2},
			{from="7",to="J",offset=-2},
			{from="7",to="j",offset=-2},
			{from="A",to="T",offset=-2},
			{from="A",to="V",offset=-2},
			{from="A",to="Y",offset=-2},
			{from="A",to="\\",offset=-2},
			{from="A",to="t",offset=-2},
			{from="A",to="v",offset=-2},
			{from="A",to="y",offset=-2},
			{from="F",to=",",offset=-2},
			{from="F",to=".",offset=-2},
			{from="F",to="/",offset=-2},
			{from="F",to="A",offset=-2},
			{from="F",to="J",offset=-3},
			{from="F",to="a",offset=-2},
			{from="F",to="j",offset=-3},
			{from="F",to="ä",offset=-2},
			{from="K",to="@",offset=-2},
			{from="L",to="?",offset=-2},
			{from="L",to="T",offset=-2},
			{from="L",to="V",offset=-2},
			{from="L",to="Y",offset=-3},
			{from="L",to="\\",offset=-2},
			{from="L",to="t",offset=-2},
			{from="L",to="v",offset=-2},
			{from="L",to="y",offset=-2},
			{from="O",to=")",offset=-2},
			{from="P",to=",",offset=-3},
			{from="P",to=".",offset=-3},
			{from="P",to="/",offset=-2},
			{from="P",to="J",offset=-3},
			{from="P",to="j",offset=-3},
			{from="T",to=",",offset=-2},
			{from="T",to=".",offset=-2},
			{from="T",to="/",offset=-3},
			{from="T",to="A",offset=-2},
			{from="T",to="J",offset=-3},
			{from="T",to="a",offset=-2},
			{from="T",to="j",offset=-3},
			{from="T",to="ä",offset=-2},
			{from="U",to="/",offset=-2},
			{from="V",to="/",offset=-2},
			{from="V",to="J",offset=-2},
			{from="V",to="j",offset=-2},
			{from="W",to="/",offset=-2},
			{from="Y",to=",",offset=-2},
			{from="Y",to=".",offset=-2},
			{from="Y",to="/",offset=-3},
			{from="Y",to="7",offset=2},
			{from="Y",to="@",offset=-2},
			{from="Y",to="A",offset=-2},
			{from="Y",to="J",offset=-4},
			{from="Y",to="O",offset=-2},
			{from="Y",to="]",offset=2},
			{from="Y",to="a",offset=-2},
			{from="Y",to="j",offset=-4},
			{from="Y",to="ä",offset=-2},
			{from="\\",to='"',offset=-2},
			{from="\\",to="'",offset=-2},
			{from="\\",to="1",offset=-2},
			{from="\\",to="T",offset=-2},
			{from="\\",to="V",offset=-3},
			{from="\\",to="W",offset=-2},
			{from="\\",to="Y",offset=-2},
			{from="\\",to="o",offset=-2},
			{from="\\",to="t",offset=-3},
			{from="\\",to="v",offset=-3},
			{from="\\",to="w",offset=-2},
			{from="\\",to="y",offset=-3},
			{from="\\",to="ö",offset=-2},
			{from="a",to="T",offset=-2},
			{from="a",to="V",offset=-2},
			{from="a",to="Y",offset=-2},
			{from="a",to="\\",offset=-2},
			{from="a",to="t",offset=-2},
			{from="a",to="v",offset=-2},
			{from="a",to="y",offset=-2},
			{from="f",to=",",offset=-2},
			{from="f",to=".",offset=-2},
			{from="f",to="/",offset=-2},
			{from="f",to="A",offset=-2},
			{from="f",to="J",offset=-3},
			{from="f",to="a",offset=-2},
			{from="f",to="j",offset=-3},
			{from="f",to="ä",offset=-2},
			{from="l",to="?",offset=-2},
			{from="l",to="T",offset=-2},
			{from="l",to="V",offset=-2},
			{from="l",to="Y",offset=-3},
			{from="l",to="\\",offset=-2},
			{from="l",to="t",offset=-2},
			{from="l",to="v",offset=-2},
			{from="l",to="y",offset=-2},
			{from="o",to=")",offset=-2},
			{from="p",to=",",offset=-2},
			{from="p",to=".",offset=-3},
			{from="p",to="/",offset=-2},
			{from="p",to="J",offset=-2},
			{from="p",to="j",offset=-2},
			{from="t",to="/",offset=-3},
			{from="t",to="A",offset=-2},
			{from="t",to="J",offset=-3},
			{from="t",to="a",offset=-2},
			{from="t",to="j",offset=-3},
			{from="t",to="ä",offset=-2},
			{from="v",to="/",offset=-2},
			{from="v",to="A",offset=-2},
			{from="v",to="J",offset=-2},
			{from="v",to="a",offset=-2},
			{from="v",to="j",offset=-2},
			{from="v",to="ä",offset=-2},
			{from="w",to="/",offset=-2},
			{from="y",to=",",offset=-2},
			{from="y",to=".",offset=-2},
			{from="y",to="/",offset=-3},
			{from="y",to="@",offset=-2},
			{from="y",to="A",offset=-3},
			{from="y",to="C",offset=-2},
			{from="y",to="G",offset=-2},
			{from="y",to="J",offset=-4},
			{from="y",to="O",offset=-2},
			{from="y",to="Q",offset=-2},
			{from="y",to="a",offset=-3},
			{from="y",to="c",offset=-2},
			{from="y",to="g",offset=-2},
			{from="y",to="j",offset=-4},
			{from="y",to="o",offset=-2},
			{from="y",to="q",offset=-2},
			{from="y",to="ä",offset=-3},
			{from="y",to="ö",offset=-2},
			{from="ä",to="T",offset=-2},
			{from="ä",to="V",offset=-2},
			{from="ä",to="Y",offset=-2},
			{from="ä",to="\\",offset=-2},
			{from="ä",to="t",offset=-2},
			{from="ä",to="v",offset=-2},
			{from="ä",to="y",offset=-2},
			{from="ö",to=")",offset=-2},
		},
	},
	["font-48"] = {
		file="font-48",
		height=64,
		description={
			family="Luckiest Guy",
			style="Regular",
			size=48,
		},
		metrics={
			ascender=45,
			descender=-19,
			height=64,
		},
		texture={
			file="font-48",
			width=512,
			height=512,
		},
		chars={
			{char=" ",width=13,x=1,y=52,w=0,h=0,ox=0,oy=0},
			{char="!",width=18,x=2,y=5,w=16,h=50,ox=1,oy=47},
			{char='"',width=31,x=19,y=1,w=31,h=22,ox=0,oy=51},
			{char="#",width=39,x=51,y=12,w=36,h=35,ox=1,oy=40},
			{char="$",width=28,x=88,y=3,w=26,h=54,ox=1,oy=49},
			{char="%",width=46,x=115,y=11,w=45,h=39,ox=1,oy=41},
			{char="&",width=40,x=161,y=8,w=42,h=44,ox=0,oy=44},
			{char="'",width=15,x=204,y=1,w=16,h=20,ox=0,oy=51},
			{char="(",width=25,x=221,y=3,w=27,h=55,ox=0,oy=49},
			{char=")",width=24,x=249,y=3,w=26,h=55,ox=-2,oy=49},
			{char="*",width=35,x=276,y=6,w=32,h=32,ox=1,oy=46},
			{char="+",width=29,x=309,y=18,w=27,h=28,ox=1,oy=34},
			{char=",",width=14,x=337,y=38,w=14,h=20,ox=0,oy=14},
			{char="-",width=24,x=352,y=24,w=21,h=12,ox=2,oy=28},
			{char=".",width=14,x=374,y=38,w=14,h=15,ox=0,oy=14},
			{char="/",width=32,x=389,y=5,w=31,h=50,ox=1,oy=47},
			{char="0",width=41,x=421,y=7,w=40,h=46,ox=0,oy=45},
			{char="1",width=25,x=462,y=6,w=25,h=46,ox=-1,oy=46},
			{char="2",width=33,x=1,y=60,w=32,h=47,ox=0,oy=47},
			{char="3",width=34,x=34,y=59,w=33,h=49,ox=0,oy=48},
			{char="4",width=35,x=68,y=60,w=34,h=47,ox=0,oy=47},
			{char="5",width=34,x=103,y=61,w=34,h=47,ox=0,oy=46},
			{char="6",width=37,x=138,y=60,w=36,h=48,ox=1,oy=47},
			{char="7",width=32,x=175,y=61,w=32,h=46,ox=0,oy=46},
			{char="8",width=37,x=208,y=61,w=36,h=47,ox=0,oy=46},
			{char="9",width=36,x=245,y=61,w=35,h=46,ox=0,oy=46},
			{char=":",width=16,x=281,y=73,w=14,h=35,ox=1,oy=34},
			{char=";",width=16,x=296,y=73,w=14,h=40,ox=1,oy=34},
			{char="<",width=29,x=311,y=66,w=27,h=38,ox=1,oy=41},
			{char="=",width=25,x=339,y=75,w=21,h=25,ox=2,oy=32},
			{char=">",width=29,x=361,y=66,w=27,h=38,ox=1,oy=41},
			{char="?",width=35,x=389,y=61,w=34,h=49,ox=1,oy=46},
			{char="@",width=43,x=424,y=66,w=40,h=38,ox=2,oy=41},
			{char="A",width=40,x=465,y=62,w=42,h=45,ox=-1,oy=45},
			{char="B",width=38,x=1,y=115,w=37,h=47,ox=1,oy=46},
			{char="C",width=33,x=39,y=115,w=33,h=46,ox=0,oy=46},
			{char="D",width=37,x=73,y=116,w=36,h=45,ox=1,oy=45},
			{char="E",width=31,x=110,y=115,w=31,h=46,ox=1,oy=46},
			{char="F",width=31,x=142,y=115,w=31,h=46,ox=1,oy=46},
			{char="G",width=40,x=174,y=114,w=40,h=48,ox=0,oy=47},
			{char="H",width=40,x=215,y=116,w=38,h=46,ox=1,oy=45},
			{char="I",width=19,x=254,y=117,w=18,h=44,ox=1,oy=44},
			{char="J",width=33,x=273,y=115,w=33,h=47,ox=-1,oy=46},
			{char="K",width=39,x=307,y=115,w=41,h=48,ox=1,oy=46},
			{char="L",width=29,x=349,y=115,w=29,h=45,ox=1,oy=46},
			{char="M",width=51,x=379,y=115,w=49,h=47,ox=1,oy=46},
			{char="N",width=45,x=429,y=115,w=44,h=46,ox=1,oy=46},
			{char="O",width=41,x=1,y=168,w=41,h=42,ox=0,oy=43},
			{char="P",width=38,x=43,y=165,w=37,h=47,ox=1,oy=46},
			{char="Q",width=44,x=81,y=166,w=44,h=51,ox=0,oy=45},
			{char="R",width=39,x=126,y=165,w=38,h=46,ox=1,oy=46},
			{char="S",width=34,x=165,y=164,w=34,h=48,ox=0,oy=47},
			{char="T",width=35,x=200,y=166,w=35,h=45,ox=0,oy=45},
			{char="U",width=40,x=236,y=167,w=38,h=46,ox=1,oy=44},
			{char="V",width=39,x=275,y=166,w=42,h=46,ox=-2,oy=45},
			{char="W",width=58,x=318,y=166,w=58,h=46,ox=0,oy=45},
			{char="X",width=38,x=377,y=165,w=42,h=46,ox=-2,oy=46},
			{char="Y",width=39,x=420,y=167,w=42,h=46,ox=0,oy=44},
			{char="Z",width=31,x=463,y=165,w=31,h=46,ox=0,oy=46},
			{char="[",width=23,x=1,y=229,w=23,h=54,ox=1,oy=49},
			{char="\\",width=32,x=25,y=231,w=31,h=50,ox=1,oy=47},
			{char="]",width=23,x=57,y=229,w=23,h=54,ox=-1,oy=49},
			{char="^",width=31,x=81,y=232,w=32,h=26,ox=0,oy=46},
			{char="_",width=19,x=114,y=280,w=21,h=12,ox=-1,oy=-2},
			{char="`",width=18,x=136,y=218,w=19,h=18,ox=0,oy=60},
			{char="a",width=40,x=156,y=233,w=42,h=45,ox=-1,oy=45},
			{char="b",width=38,x=199,y=232,w=37,h=47,ox=1,oy=46},
			{char="c",width=33,x=237,y=233,w=33,h=46,ox=0,oy=45},
			{char="d",width=37,x=271,y=234,w=36,h=44,ox=1,oy=44},
			{char="e",width=37,x=308,y=232,w=37,h=47,ox=0,oy=46},
			{char="f",width=31,x=346,y=233,w=31,h=45,ox=1,oy=45},
			{char="g",width=40,x=378,y=232,w=40,h=47,ox=0,oy=46},
			{char="h",width=40,x=419,y=233,w=38,h=45,ox=1,oy=45},
			{char="i",width=19,x=458,y=234,w=17,h=44,ox=1,oy=44},
			{char="j",width=33,x=476,y=232,w=33,h=47,ox=-1,oy=46},
			{char="k",width=39,x=1,y=294,w=39,h=46,ox=1,oy=45},
			{char="l",width=29,x=41,y=293,w=28,h=46,ox=1,oy=46},
			{char="m",width=57,x=70,y=293,w=57,h=46,ox=0,oy=46},
			{char="n",width=42,x=128,y=293,w=41,h=46,ox=0,oy=46},
			{char="o",width=41,x=170,y=295,w=41,h=41,ox=0,oy=44},
			{char="p",width=38,x=212,y=294,w=37,h=46,ox=1,oy=45},
			{char="q",width=44,x=250,y=294,w=44,h=51,ox=0,oy=45},
			{char="r",width=39,x=295,y=293,w=38,h=46,ox=1,oy=46},
			{char="s",width=34,x=334,y=293,w=34,h=47,ox=0,oy=46},
			{char="t",width=35,x=369,y=294,w=35,h=45,ox=0,oy=45},
			{char="u",width=39,x=405,y=295,w=38,h=45,ox=1,oy=44},
			{char="v",width=39,x=444,y=294,w=42,h=45,ox=-2,oy=45},
			{char="w",width=58,x=1,y=357,w=59,h=45,ox=0,oy=45},
			{char="x",width=38,x=61,y=357,w=42,h=45,ox=-2,oy=45},
			{char="y",width=39,x=104,y=358,w=43,h=44,ox=-2,oy=44},
			{char="z",width=32,x=148,y=357,w=30,h=45,ox=1,oy=45},
			{char="{",width=26,x=179,y=352,w=29,h=56,ox=-1,oy=50},
			{char="|",width=18,x=209,y=353,w=15,h=54,ox=2,oy=49},
			{char="}",width=26,x=225,y=352,w=29,h=56,ox=-3,oy=50},
			{char="~",width=37,x=255,y=367,w=37,h=23,ox=0,oy=35},
			{char="ß",width=67,x=293,y=356,w=67,h=47,ox=0,oy=46},
			{char="ä",width=40,x=361,y=346,w=42,h=56,ox=-1,oy=56},
			{char="ö",width=41,x=404,y=347,w=41,h=52,ox=0,oy=55},
			{char="ü",width=39,x=446,y=347,w=38,h=56,ox=1,oy=55},
		},
		kernings={
			{from='"',to=",",offset=-9},
			{from='"',to=".",offset=-10},
			{from='"',to="/",offset=-4},
			{from='"',to="J",offset=-5},
			{from='"',to="j",offset=-5},
			{from="&",to="Y",offset=-3},
			{from="&",to="t",offset=-3},
			{from="&",to="y",offset=-4},
			{from="'",to=",",offset=-9},
			{from="'",to=".",offset=-10},
			{from="'",to="/",offset=-4},
			{from="'",to="J",offset=-5},
			{from="'",to="j",offset=-5},
			{from="(",to="O",offset=-4},
			{from="(",to="Q",offset=-3},
			{from="(",to="V",offset=4},
			{from="(",to="o",offset=-4},
			{from="(",to="q",offset=-3},
			{from="(",to="ö",offset=-4},
			{from="*",to="A",offset=-3},
			{from="*",to="J",offset=-4},
			{from="*",to="a",offset=-3},
			{from="*",to="j",offset=-4},
			{from="*",to="ä",offset=-3},
			{from=",",to='"',offset=-9},
			{from=",",to="'",offset=-9},
			{from=".",to='"',offset=-9},
			{from=".",to="'",offset=-9},
			{from="/",to="A",offset=-5},
			{from="/",to="J",offset=-6},
			{from="/",to="O",offset=-3},
			{from="/",to="a",offset=-5},
			{from="/",to="j",offset=-6},
			{from="/",to="ä",offset=-5},
			{from="7",to="/",offset=-5},
			{from="7",to="J",offset=-3},
			{from="7",to="j",offset=-3},
			{from="A",to="T",offset=-4},
			{from="A",to="V",offset=-3},
			{from="A",to="Y",offset=-4},
			{from="A",to="\\",offset=-5},
			{from="A",to="t",offset=-4},
			{from="A",to="v",offset=-3},
			{from="A",to="y",offset=-4},
			{from="F",to=",",offset=-5},
			{from="F",to=".",offset=-5},
			{from="F",to="/",offset=-5},
			{from="F",to="A",offset=-4},
			{from="F",to="J",offset=-7},
			{from="F",to="a",offset=-4},
			{from="F",to="j",offset=-7},
			{from="F",to="ä",offset=-4},
			{from="K",to="@",offset=-3},
			{from="L",to="?",offset=-4},
			{from="L",to="T",offset=-5},
			{from="L",to="V",offset=-4},
			{from="L",to="Y",offset=-5},
			{from="L",to="\\",offset=-5},
			{from="L",to="t",offset=-5},
			{from="L",to="v",offset=-4},
			{from="L",to="y",offset=-5},
			{from="O",to=")",offset=-3},
			{from="P",to=",",offset=-6},
			{from="P",to=".",offset=-7},
			{from="P",to="/",offset=-5},
			{from="P",to="J",offset=-6},
			{from="P",to="j",offset=-6},
			{from="T",to=",",offset=-4},
			{from="T",to=".",offset=-4},
			{from="T",to="/",offset=-6},
			{from="T",to="A",offset=-4},
			{from="T",to="J",offset=-7},
			{from="T",to="a",offset=-4},
			{from="T",to="j",offset=-7},
			{from="T",to="ä",offset=-4},
			{from="U",to="/",offset=-4},
			{from="V",to="/",offset=-5},
			{from="V",to="J",offset=-5},
			{from="V",to="j",offset=-5},
			{from="W",to="/",offset=-3},
			{from="Y",to=",",offset=-5},
			{from="Y",to=".",offset=-5},
			{from="Y",to="/",offset=-6},
			{from="Y",to="7",offset=4},
			{from="Y",to="@",offset=-3},
			{from="Y",to="A",offset=-4},
			{from="Y",to="J",offset=-9},
			{from="Y",to="O",offset=-4},
			{from="Y",to="]",offset=3},
			{from="Y",to="a",offset=-4},
			{from="Y",to="j",offset=-9},
			{from="Y",to="ä",offset=-4},
			{from="\\",to='"',offset=-4},
			{from="\\",to="'",offset=-4},
			{from="\\",to="1",offset=-4},
			{from="\\",to="T",offset=-5},
			{from="\\",to="V",offset=-5},
			{from="\\",to="W",offset=-4},
			{from="\\",to="Y",offset=-5},
			{from="\\",to="o",offset=-3},
			{from="\\",to="t",offset=-5},
			{from="\\",to="v",offset=-5},
			{from="\\",to="w",offset=-4},
			{from="\\",to="y",offset=-5},
			{from="\\",to="ö",offset=-3},
			{from="a",to="T",offset=-4},
			{from="a",to="V",offset=-3},
			{from="a",to="Y",offset=-4},
			{from="a",to="\\",offset=-5},
			{from="a",to="t",offset=-4},
			{from="a",to="v",offset=-3},
			{from="a",to="y",offset=-4},
			{from="f",to=",",offset=-5},
			{from="f",to=".",offset=-5},
			{from="f",to="/",offset=-5},
			{from="f",to="A",offset=-4},
			{from="f",to="J",offset=-6},
			{from="f",to="a",offset=-4},
			{from="f",to="j",offset=-6},
			{from="f",to="ä",offset=-4},
			{from="l",to="?",offset=-4},
			{from="l",to="T",offset=-5},
			{from="l",to="V",offset=-4},
			{from="l",to="Y",offset=-5},
			{from="l",to="\\",offset=-5},
			{from="l",to="t",offset=-5},
			{from="l",to="v",offset=-4},
			{from="l",to="y",offset=-5},
			{from="o",to=")",offset=-3},
			{from="p",to=",",offset=-5},
			{from="p",to=".",offset=-5},
			{from="p",to="/",offset=-4},
			{from="p",to="J",offset=-4},
			{from="p",to="j",offset=-4},
			{from="t",to="/",offset=-5},
			{from="t",to="A",offset=-4},
			{from="t",to="J",offset=-6},
			{from="t",to="a",offset=-4},
			{from="t",to="j",offset=-6},
			{from="t",to="ä",offset=-4},
			{from="v",to="/",offset=-5},
			{from="v",to="A",offset=-3},
			{from="v",to="J",offset=-5},
			{from="v",to="a",offset=-3},
			{from="v",to="j",offset=-5},
			{from="v",to="ä",offset=-3},
			{from="w",to="/",offset=-4},
			{from="y",to=",",offset=-4},
			{from="y",to=".",offset=-4},
			{from="y",to="/",offset=-6},
			{from="y",to="@",offset=-4},
			{from="y",to="A",offset=-5},
			{from="y",to="C",offset=-4},
			{from="y",to="G",offset=-4},
			{from="y",to="J",offset=-8},
			{from="y",to="O",offset=-4},
			{from="y",to="Q",offset=-3},
			{from="y",to="a",offset=-5},
			{from="y",to="c",offset=-4},
			{from="y",to="g",offset=-4},
			{from="y",to="j",offset=-8},
			{from="y",to="o",offset=-3},
			{from="y",to="q",offset=-3},
			{from="y",to="ä",offset=-5},
			{from="y",to="ö",offset=-3},
			{from="ä",to="T",offset=-4},
			{from="ä",to="V",offset=-3},
			{from="ä",to="Y",offset=-4},
			{from="ä",to="\\",offset=-5},
			{from="ä",to="t",offset=-4},
			{from="ä",to="v",offset=-3},
			{from="ä",to="y",offset=-4},
			{from="ö",to=")",offset=-3},
		},
	},
	["font-8"] = {
		file="font-8",
		height=11,
		description={
			family="Luckiest Guy",
			style="Regular",
			size=8,
		},
		metrics={
			ascender=8,
			descender=-4,
			height=11,
		},
		texture={
			file="font-8",
			width=128,
			height=128,
		},
		chars={
			{char=" ",width=2,x=1,y=10,w=0,h=0,ox=0,oy=0},
			{char="!",width=3,x=2,y=2,w=3,h=9,ox=0,oy=8},
			{char='"',width=5,x=6,y=1,w=6,h=4,ox=0,oy=9},
			{char="#",width=7,x=13,y=3,w=7,h=7,ox=0,oy=7},
			{char="$",width=5,x=21,y=1,w=5,h=10,ox=0,oy=9},
			{char="%",width=8,x=27,y=2,w=8,h=8,ox=0,oy=8},
			{char="&",width=7,x=36,y=2,w=8,h=8,ox=0,oy=8},
			{char="'",width=3,x=45,y=1,w=3,h=4,ox=0,oy=9},
			{char="(",width=4,x=49,y=1,w=5,h=10,ox=0,oy=9},
			{char=")",width=4,x=55,y=1,w=6,h=10,ox=-1,oy=9},
			{char="*",width=6,x=62,y=2,w=6,h=6,ox=0,oy=8},
			{char="+",width=5,x=69,y=4,w=5,h=5,ox=0,oy=6},
			{char=",",width=2,x=75,y=7,w=3,h=4,ox=0,oy=3},
			{char="-",width=4,x=79,y=5,w=4,h=3,ox=0,oy=5},
			{char=".",width=2,x=84,y=7,w=3,h=4,ox=0,oy=3},
			{char="/",width=6,x=88,y=1,w=6,h=10,ox=0,oy=9},
			{char="0",width=7,x=95,y=2,w=7,h=9,ox=0,oy=8},
			{char="1",width=4,x=103,y=2,w=6,h=8,ox=-1,oy=8},
			{char="2",width=6,x=110,y=1,w=6,h=9,ox=0,oy=9},
			{char="3",width=6,x=117,y=1,w=6,h=10,ox=0,oy=9},
			{char="4",width=6,x=1,y=12,w=6,h=8,ox=0,oy=8},
			{char="5",width=6,x=8,y=12,w=6,h=9,ox=0,oy=8},
			{char="6",width=6,x=15,y=12,w=7,h=9,ox=0,oy=8},
			{char="7",width=6,x=23,y=12,w=6,h=8,ox=0,oy=8},
			{char="8",width=6,x=30,y=12,w=7,h=9,ox=0,oy=8},
			{char="9",width=6,x=38,y=12,w=6,h=8,ox=0,oy=8},
			{char=":",width=3,x=45,y=14,w=3,h=7,ox=0,oy=6},
			{char=";",width=3,x=49,y=14,w=3,h=7,ox=0,oy=6},
			{char="<",width=5,x=53,y=13,w=5,h=7,ox=0,oy=7},
			{char="=",width=4,x=59,y=14,w=4,h=5,ox=0,oy=6},
			{char=">",width=5,x=64,y=13,w=5,h=7,ox=0,oy=7},
			{char="?",width=6,x=70,y=12,w=6,h=9,ox=0,oy=8},
			{char="@",width=7,x=77,y=13,w=8,h=7,ox=0,oy=7},
			{char="A",width=7,x=86,y=12,w=9,h=8,ox=-1,oy=8},
			{char="B",width=7,x=96,y=12,w=7,h=9,ox=0,oy=8},
			{char="C",width=6,x=104,y=12,w=6,h=8,ox=0,oy=8},
			{char="D",width=6,x=111,y=12,w=7,h=8,ox=0,oy=8},
			{char="E",width=5,x=119,y=12,w=6,h=8,ox=0,oy=8},
			{char="F",width=5,x=1,y=22,w=6,h=8,ox=0,oy=8},
			{char="G",width=7,x=8,y=22,w=7,h=9,ox=0,oy=8},
			{char="H",width=7,x=16,y=22,w=7,h=9,ox=0,oy=8},
			{char="I",width=3,x=24,y=22,w=4,h=8,ox=0,oy=8},
			{char="J",width=6,x=29,y=22,w=7,h=9,ox=-1,oy=8},
			{char="K",width=7,x=37,y=22,w=8,h=9,ox=0,oy=8},
			{char="L",width=5,x=46,y=22,w=5,h=8,ox=0,oy=8},
			{char="M",width=9,x=52,y=22,w=9,h=9,ox=0,oy=8},
			{char="N",width=8,x=62,y=22,w=8,h=8,ox=0,oy=8},
			{char="O",width=7,x=71,y=22,w=7,h=8,ox=0,oy=8},
			{char="P",width=7,x=79,y=22,w=7,h=9,ox=0,oy=8},
			{char="Q",width=8,x=87,y=22,w=8,h=10,ox=0,oy=8},
			{char="R",width=7,x=96,y=22,w=7,h=8,ox=0,oy=8},
			{char="S",width=6,x=104,y=22,w=6,h=9,ox=0,oy=8},
			{char="T",width=6,x=111,y=22,w=6,h=8,ox=0,oy=8},
			{char="U",width=7,x=118,y=22,w=7,h=9,ox=0,oy=8},
			{char="V",width=7,x=1,y=36,w=8,h=9,ox=-1,oy=8},
			{char="W",width=10,x=10,y=36,w=10,h=9,ox=0,oy=8},
			{char="X",width=6,x=21,y=36,w=8,h=8,ox=-1,oy=8},
			{char="Y",width=7,x=30,y=36,w=8,h=9,ox=0,oy=8},
			{char="Z",width=5,x=39,y=36,w=6,h=8,ox=0,oy=8},
			{char="[",width=4,x=46,y=35,w=5,h=10,ox=0,oy=9},
			{char="\\",width=6,x=52,y=35,w=6,h=10,ox=0,oy=9},
			{char="]",width=4,x=59,y=35,w=5,h=10,ox=-1,oy=9},
			{char="^",width=5,x=65,y=36,w=6,h=5,ox=0,oy=8},
			{char="_",width=3,x=72,y=44,w=5,h=3,ox=-1,oy=0},
			{char="`",width=3,x=78,y=33,w=4,h=4,ox=0,oy=11},
			{char="a",width=7,x=83,y=36,w=9,h=8,ox=-1,oy=8},
			{char="b",width=7,x=93,y=36,w=7,h=9,ox=0,oy=8},
			{char="c",width=6,x=101,y=36,w=6,h=9,ox=0,oy=8},
			{char="d",width=6,x=108,y=36,w=7,h=8,ox=0,oy=8},
			{char="e",width=6,x=116,y=36,w=7,h=9,ox=0,oy=8},
			{char="f",width=5,x=1,y=48,w=6,h=8,ox=0,oy=8},
			{char="g",width=7,x=8,y=48,w=7,h=9,ox=0,oy=8},
			{char="h",width=7,x=16,y=48,w=7,h=8,ox=0,oy=8},
			{char="i",width=3,x=24,y=48,w=4,h=8,ox=0,oy=8},
			{char="j",width=6,x=29,y=48,w=7,h=9,ox=-1,oy=8},
			{char="k",width=7,x=37,y=48,w=7,h=9,ox=0,oy=8},
			{char="l",width=5,x=45,y=48,w=5,h=8,ox=0,oy=8},
			{char="m",width=10,x=51,y=48,w=10,h=8,ox=0,oy=8},
			{char="n",width=7,x=62,y=48,w=7,h=8,ox=0,oy=8},
			{char="o",width=7,x=70,y=48,w=7,h=8,ox=0,oy=8},
			{char="p",width=7,x=78,y=48,w=7,h=9,ox=0,oy=8},
			{char="q",width=8,x=86,y=48,w=8,h=10,ox=0,oy=8},
			{char="r",width=7,x=95,y=48,w=7,h=8,ox=0,oy=8},
			{char="s",width=6,x=103,y=48,w=6,h=9,ox=0,oy=8},
			{char="t",width=6,x=110,y=48,w=6,h=8,ox=0,oy=8},
			{char="u",width=7,x=117,y=48,w=7,h=9,ox=0,oy=8},
			{char="v",width=7,x=1,y=61,w=8,h=8,ox=-1,oy=8},
			{char="w",width=10,x=10,y=61,w=10,h=8,ox=0,oy=8},
			{char="x",width=7,x=21,y=61,w=8,h=8,ox=-1,oy=8},
			{char="y",width=7,x=30,y=61,w=8,h=8,ox=-1,oy=8},
			{char="z",width=5,x=39,y=61,w=6,h=8,ox=0,oy=8},
			{char="{",width=5,x=46,y=60,w=6,h=10,ox=-1,oy=9},
			{char="|",width=3,x=53,y=60,w=3,h=10,ox=0,oy=9},
			{char="}",width=4,x=57,y=60,w=6,h=10,ox=-1,oy=9},
			{char="~",width=6,x=64,y=63,w=7,h=4,ox=0,oy=6},
			{char="ß",width=11,x=72,y=61,w=12,h=9,ox=0,oy=8},
			{char="ä",width=7,x=85,y=59,w=9,h=10,ox=-1,oy=10},
			{char="ö",width=7,x=95,y=59,w=7,h=10,ox=0,oy=10},
			{char="ü",width=7,x=103,y=59,w=7,h=11,ox=0,oy=10},
		},
		kernings={
			{from='"',to=",",offset=-1},
			{from='"',to=".",offset=-1},
			{from="'",to=",",offset=-1},
			{from="'",to=".",offset=-1},
			{from=",",to='"',offset=-1},
			{from=",",to="'",offset=-1},
			{from=".",to='"',offset=-1},
			{from=".",to="'",offset=-1},
			{from="F",to="J",offset=-1},
			{from="F",to="j",offset=-1},
			{from="Y",to="J",offset=-1},
			{from="Y",to="j",offset=-1},
			{from="y",to="J",offset=-1},
			{from="y",to="j",offset=-1},
		},
	},
}