aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Output/Fonts/Normal.fnt
blob: 58c73e801383935364d807555528eb61550227d0 (plain) (blame)
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
info face="Meiryo" size=128 bold=0 italic=0 charset="ANSI" unicode=0 stretchH=100 smooth=1 aa=1 padding=5,5,5,5 spacing=5,5 outline=0
common lineHeight=128 base=90 scaleW=1024 scaleH=1024 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="Normal_0.png"
chars count=218
char id=32   x=983   y=853   width=11    height=11    xoffset=-5    yoffset=85    xadvance=29    page=0  chnl=15
char id=33   x=993   y=607   width=18    height=73    xoffset=7     yoffset=22    xadvance=32    page=0  chnl=15
char id=34   x=942   y=819   width=34    height=34    xoffset=2     yoffset=19    xadvance=38    page=0  chnl=15
char id=35   x=282   y=627   width=64    height=73    xoffset=2     yoffset=22    xadvance=69    page=0  chnl=15
char id=36   x=274   y=202   width=51    height=90    xoffset=1     yoffset=20    xadvance=53    page=0  chnl=15
char id=37   x=509   y=382   width=87    height=75    xoffset=1     yoffset=21    xadvance=88    page=0  chnl=15
char id=38   x=692   y=377   width=70    height=75    xoffset=0     yoffset=21    xadvance=62    page=0  chnl=15
char id=39   x=981   y=814   width=18    height=34    xoffset=2     yoffset=19    xadvance=22    page=0  chnl=15
char id=40   x=496   y=102   width=35    height=93    xoffset=2     yoffset=19    xadvance=38    page=0  chnl=15
char id=41   x=536   y=102   width=35    height=93    xoffset=1     yoffset=19    xadvance=38    page=0  chnl=15
char id=42   x=551   y=841   width=47    height=49    xoffset=3     yoffset=19    xadvance=53    page=0  chnl=15
char id=43   x=829   y=693   width=62    height=62    xoffset=3     yoffset=32    xadvance=69    page=0  chnl=15
char id=44   x=910   y=822   width=27    height=37    xoffset=1     yoffset=74    xadvance=30    page=0  chnl=15
char id=45   x=733   y=880   width=35    height=17    xoffset=1     yoffset=54    xadvance=38    page=0  chnl=15
char id=46   x=564   y=895   width=19    height=21    xoffset=5     yoffset=74    xadvance=30    page=0  chnl=15
char id=47   x=480   y=200   width=46    height=89    xoffset=-6    yoffset=19    xadvance=38    page=0  chnl=15
char id=48   x=357   y=465   width=53    height=75    xoffset=0     yoffset=21    xadvance=53    page=0  chnl=15
char id=49   x=453   y=702   width=43    height=73    xoffset=6     yoffset=22    xadvance=53    page=0  chnl=15
char id=50   x=119   y=552   width=52    height=74    xoffset=1     yoffset=21    xadvance=53    page=0  chnl=15
char id=51   x=529   y=462   width=51    height=75    xoffset=1     yoffset=21    xadvance=53    page=0  chnl=15
char id=52   x=871   y=612   width=56    height=73    xoffset=-2    yoffset=22    xadvance=53    page=0  chnl=15
char id=53   x=176   y=550   width=51    height=74    xoffset=2     yoffset=22    xadvance=53    page=0  chnl=15
char id=54   x=181   y=468   width=54    height=75    xoffset=0     yoffset=21    xadvance=53    page=0  chnl=15
char id=55   x=120   y=709   width=52    height=73    xoffset=1     yoffset=22    xadvance=53    page=0  chnl=15
char id=56   x=122   y=470   width=54    height=75    xoffset=-1    yoffset=21    xadvance=53    page=0  chnl=15
char id=57   x=240   y=468   width=54    height=75    xoffset=-1    yoffset=21    xadvance=53    page=0  chnl=15
char id=58   x=52    y=851   width=19    height=57    xoffset=9     yoffset=38    xadvance=37    page=0  chnl=15
char id=59   x=501   y=700   width=27    height=73    xoffset=4     yoffset=38    xadvance=37    page=0  chnl=15
char id=60   x=729   y=771   width=58    height=57    xoffset=5     yoffset=34    xadvance=69    page=0  chnl=15
char id=61   x=0     y=913   width=59    height=33    xoffset=5     yoffset=46    xadvance=69    page=0  chnl=15
char id=62   x=666   y=773   width=58    height=57    xoffset=6     yoffset=34    xadvance=69    page=0  chnl=15
char id=63   x=973   y=368   width=45    height=74    xoffset=1     yoffset=21    xadvance=45    page=0  chnl=15
char id=64   x=695   y=199   width=82    height=84    xoffset=2     yoffset=21    xadvance=87    page=0  chnl=15
char id=65   x=71    y=631   width=66    height=73    xoffset=-4    yoffset=22    xadvance=58    page=0  chnl=15
char id=66   x=932   y=610   width=56    height=73    xoffset=3     yoffset=22    xadvance=57    page=0  chnl=15
char id=67   x=908   y=370   width=60    height=75    xoffset=-1    yoffset=21    xadvance=57    page=0  chnl=15
char id=68   x=419   y=624   width=62    height=73    xoffset=3     yoffset=22    xadvance=64    page=0  chnl=15
char id=69   x=233   y=707   width=51    height=73    xoffset=3     yoffset=22    xadvance=53    page=0  chnl=15
char id=70   x=345   y=705   width=50    height=73    xoffset=3     yoffset=22    xadvance=49    page=0  chnl=15
char id=71   x=839   y=373   width=64    height=75    xoffset=-1    yoffset=21    xadvance=62    page=0  chnl=15
char id=72   x=619   y=620   width=58    height=73    xoffset=3     yoffset=22    xadvance=63    page=0  chnl=15
char id=73   x=984   y=529   width=34    height=73    xoffset=0     yoffset=22    xadvance=34    page=0  chnl=15
char id=74   x=336   y=548   width=39    height=74    xoffset=-3    yoffset=22    xadvance=38    page=0  chnl=15
char id=75   x=682   y=620   width=58    height=73    xoffset=3     yoffset=22    xadvance=56    page=0  chnl=15
char id=76   x=400   y=705   width=48    height=73    xoffset=3     yoffset=22    xadvance=48    page=0  chnl=15
char id=77   x=142   y=631   width=66    height=73    xoffset=3     yoffset=22    xadvance=71    page=0  chnl=15
char id=78   x=745   y=615   width=58    height=73    xoffset=3     yoffset=22    xadvance=63    page=0  chnl=15
char id=79   x=767   y=374   width=67    height=75    xoffset=-1    yoffset=21    xadvance=65    page=0  chnl=15
char id=80   x=289   y=705   width=51    height=73    xoffset=3     yoffset=22    xadvance=51    page=0  chnl=15
char id=81   x=61    y=206   width=68    height=90    xoffset=-1    yoffset=21    xadvance=65    page=0  chnl=15
char id=82   x=553   y=620   width=61    height=73    xoffset=3     yoffset=22    xadvance=58    page=0  chnl=15
char id=83   x=0     y=472   width=56    height=75    xoffset=0     yoffset=21    xadvance=54    page=0  chnl=15
char id=84   x=486   y=622   width=62    height=73    xoffset=-4    yoffset=22    xadvance=54    page=0  chnl=15
char id=85   x=953   y=450   width=58    height=74    xoffset=2     yoffset=22    xadvance=62    page=0  chnl=15
char id=86   x=0     y=631   width=66    height=73    xoffset=-4    yoffset=22    xadvance=58    page=0  chnl=15
char id=87   x=818   y=534   width=87    height=73    xoffset=-1    yoffset=22    xadvance=85    page=0  chnl=15
char id=88   x=351   y=627   width=63    height=73    xoffset=-3    yoffset=22    xadvance=57    page=0  chnl=15
char id=89   x=213   y=629   width=64    height=73    xoffset=-5    yoffset=22    xadvance=54    page=0  chnl=15
char id=90   x=808   y=615   width=58    height=73    xoffset=-1    yoffset=22    xadvance=56    page=0  chnl=15
char id=91   x=721   y=102   width=32    height=92    xoffset=4     yoffset=19    xadvance=38    page=0  chnl=15
char id=92   x=0     y=709   width=55    height=73    xoffset=-1    yoffset=22    xadvance=53    page=0  chnl=15
char id=93   x=684   y=102   width=32    height=92    xoffset=1     yoffset=19    xadvance=38    page=0  chnl=15
char id=94   x=603   y=836   width=64    height=44    xoffset=2     yoffset=22    xadvance=69    page=0  chnl=15
char id=95   x=48    y=951   width=63    height=14    xoffset=-5    yoffset=93    xadvance=53    page=0  chnl=15
char id=96   x=484   y=902   width=27    height=26    xoffset=9     yoffset=14    xadvance=53    page=0  chnl=15
char id=97   x=237   y=785   width=49    height=59    xoffset=-2    yoffset=37    xadvance=50    page=0  chnl=15
char id=98   x=111   y=388   width=52    height=77    xoffset=2     yoffset=19    xadvance=52    page=0  chnl=15
char id=99   x=291   y=783   width=47    height=59    xoffset=-1    yoffset=37    xadvance=43    page=0  chnl=15
char id=100  x=168   y=386   width=51    height=77    xoffset=-1    yoffset=19    xadvance=52    page=0  chnl=15
char id=101  x=180   y=787   width=52    height=59    xoffset=-1    yoffset=37    xadvance=49    page=0  chnl=15
char id=102  x=443   y=383   width=39    height=76    xoffset=-2    yoffset=19    xadvance=29    page=0  chnl=15
char id=103  x=641   y=458   width=51    height=75    xoffset=-1    yoffset=37    xadvance=52    page=0  chnl=15
char id=104  x=389   y=383   width=49    height=76    xoffset=2     yoffset=19    xadvance=53    page=0  chnl=15
char id=105  x=420   y=544   width=18    height=74    xoffset=1     yoffset=21    xadvance=22    page=0  chnl=15
char id=106  x=980   y=102   width=34    height=91    xoffset=-8    yoffset=21    xadvance=28    page=0  chnl=15
char id=107  x=334   y=384   width=50    height=76    xoffset=2     yoffset=19    xadvance=47    page=0  chnl=15
char id=108  x=487   y=382   width=17    height=76    xoffset=2     yoffset=19    xadvance=22    page=0  chnl=15
char id=109  x=394   y=783   width=78    height=58    xoffset=2     yoffset=37    xadvance=82    page=0  chnl=15
char id=110  x=477   y=780   width=49    height=58    xoffset=2     yoffset=37    xadvance=53    page=0  chnl=15
char id=111  x=963   y=688   width=53    height=59    xoffset=-1    yoffset=37    xadvance=51    page=0  chnl=15
char id=112  x=472   y=464   width=52    height=75    xoffset=2     yoffset=37    xadvance=52    page=0  chnl=15
char id=113  x=585   y=462   width=51    height=75    xoffset=-1    yoffset=37    xadvance=52    page=0  chnl=15
char id=114  x=973   y=752   width=39    height=57    xoffset=2     yoffset=38    xadvance=35    page=0  chnl=15
char id=115  x=343   y=783   width=46    height=59    xoffset=-1    yoffset=37    xadvance=43    page=0  chnl=15
char id=116  x=556   y=698   width=39    height=71    xoffset=-3    yoffset=25    xadvance=32    page=0  chnl=15
char id=117  x=531   y=778   width=49    height=58    xoffset=2     yoffset=38    xadvance=53    page=0  chnl=15
char id=118  x=854   y=760   width=56    height=57    xoffset=-4    yoffset=38    xadvance=48    page=0  chnl=15
char id=119  x=585   y=774   width=76    height=57    xoffset=-3    yoffset=38    xadvance=71    page=0  chnl=15
char id=120  x=915   y=757   width=53    height=57    xoffset=-3    yoffset=38    xadvance=47    page=0  chnl=15
char id=121  x=0     y=552   width=56    height=74    xoffset=-4    yoffset=38    xadvance=48    page=0  chnl=15
char id=122  x=0     y=851   width=47    height=57    xoffset=-2    yoffset=38    xadvance=43    page=0  chnl=15
char id=123  x=576   y=102   width=49    height=92    xoffset=1     yoffset=19    xadvance=51    page=0  chnl=15
char id=124  x=1001  y=0     width=17    height=92    xoffset=10    yoffset=19    xadvance=38    page=0  chnl=15
char id=125  x=630   y=102   width=49    height=92    xoffset=1     yoffset=19    xadvance=51    page=0  chnl=15
char id=126  x=304   y=905   width=63    height=32    xoffset=2     yoffset=46    xadvance=69    page=0  chnl=15
char id=128  x=61    y=472   width=56    height=75    xoffset=-3    yoffset=21    xadvance=53    page=0  chnl=15
char id=130  x=272   y=908   width=27    height=33    xoffset=0     yoffset=74    xadvance=22    page=0  chnl=15
char id=131  x=941   y=198   width=65    height=82    xoffset=-7    yoffset=21    xadvance=53    page=0  chnl=15
char id=132  x=160   y=908   width=43    height=33    xoffset=0     yoffset=74    xadvance=38    page=0  chnl=15
char id=133  x=612   y=885   width=76    height=19    xoffset=5     yoffset=51    xadvance=85    page=0  chnl=15
char id=134  x=600   y=698   width=47    height=70    xoffset=19    yoffset=19    xadvance=85    page=0  chnl=15
char id=135  x=652   y=698   width=47    height=70    xoffset=19    yoffset=19    xadvance=85    page=0  chnl=15
char id=136  x=409   y=903   width=38    height=26    xoffset=7     yoffset=15    xadvance=53    page=0  chnl=15
char id=137  x=601   y=378   width=86    height=75    xoffset=0     yoffset=21    xadvance=85    page=0  chnl=15
char id=138  x=748   y=0     width=56    height=97    xoffset=0     yoffset=-1    xadvance=54    page=0  chnl=15
char id=139  x=474   y=846   width=33    height=51    xoffset=2     yoffset=37    xadvance=37    page=0  chnl=15
char id=140  x=443   y=544   width=91    height=73    xoffset=-1    yoffset=22    xadvance=89    page=0  chnl=15
char id=142  x=71    y=103   width=58    height=96    xoffset=-1    yoffset=-1    xadvance=56    page=0  chnl=15
char id=145  x=208   y=908   width=27    height=33    xoffset=-5    yoffset=19    xadvance=22    page=0  chnl=15
char id=146  x=240   y=908   width=27    height=33    xoffset=0     yoffset=19    xadvance=22    page=0  chnl=15
char id=147  x=64    y=913   width=43    height=33    xoffset=-5    yoffset=19    xadvance=38    page=0  chnl=15
char id=148  x=112   y=909   width=43    height=33    xoffset=0     yoffset=19    xadvance=38    page=0  chnl=15
char id=149  x=720   y=835   width=41    height=40    xoffset=2     yoffset=42    xadvance=45    page=0  chnl=15
char id=150  x=927   y=864   width=51    height=16    xoffset=1     yoffset=55    xadvance=53    page=0  chnl=15
char id=151  x=773   y=877   width=83    height=16    xoffset=1     yoffset=55    xadvance=85    page=0  chnl=15
char id=152  x=516   y=898   width=43    height=22    xoffset=5     yoffset=18    xadvance=53    page=0  chnl=15
char id=153  x=766   y=833   width=72    height=39    xoffset=1     yoffset=22    xadvance=77    page=0  chnl=15
char id=154  x=756   y=288   width=46    height=81    xoffset=-1    yoffset=15    xadvance=43    page=0  chnl=15
char id=155  x=436   y=846   width=33    height=51    xoffset=2     yoffset=37    xadvance=37    page=0  chnl=15
char id=156  x=0     y=787   width=86    height=59    xoffset=-1    yoffset=37    xadvance=83    page=0  chnl=15
char id=158  x=871   y=285   width=47    height=80    xoffset=-2    yoffset=15    xadvance=43    page=0  chnl=15
char id=159  x=205   y=204   width=64    height=90    xoffset=-5    yoffset=5     xadvance=54    page=0  chnl=15
char id=160  x=1004  y=814   width=11    height=11    xoffset=-5    yoffset=85    xadvance=29    page=0  chnl=15
char id=161  x=533   y=700   width=18    height=73    xoffset=7     yoffset=38    xadvance=32    page=0  chnl=15
char id=162  x=640   y=199   width=50    height=87    xoffset=1     yoffset=23    xadvance=53    page=0  chnl=15
char id=163  x=61    y=552   width=53    height=74    xoffset=0     yoffset=21    xadvance=53    page=0  chnl=15
char id=164  x=76    y=851   width=54    height=53    xoffset=0     yoffset=36    xadvance=53    page=0  chnl=15
char id=165  x=60    y=709   width=55    height=73    xoffset=-1    yoffset=22    xadvance=53    page=0  chnl=15
char id=166  x=758   y=102   width=17    height=92    xoffset=10    yoffset=19    xadvance=38    page=0  chnl=15
char id=167  x=386   y=201   width=49    height=90    xoffset=2     yoffset=21    xadvance=53    page=0  chnl=15
char id=168  x=693   y=883   width=35    height=18    xoffset=9     yoffset=21    xadvance=53    page=0  chnl=15
char id=169  x=854   y=198   width=82    height=82    xoffset=2     yoffset=21    xadvance=85    page=0  chnl=15
char id=170  x=186   y=851   width=43    height=52    xoffset=1     yoffset=21    xadvance=45    page=0  chnl=15
char id=171  x=335   y=847   width=52    height=51    xoffset=2     yoffset=37    xadvance=56    page=0  chnl=15
char id=172  x=843   y=824   width=62    height=39    xoffset=3     yoffset=53    xadvance=69    page=0  chnl=15
char id=173  x=861   y=868   width=61    height=16    xoffset=4     yoffset=55    xadvance=69    page=0  chnl=15
char id=174  x=0     y=302   width=82    height=82    xoffset=2     yoffset=21    xadvance=85    page=0  chnl=15
char id=175  x=0     y=951   width=43    height=16    xoffset=5     yoffset=21    xadvance=53    page=0  chnl=15
char id=176  x=672   y=835   width=43    height=43    xoffset=1     yoffset=21    xadvance=45    page=0  chnl=15
char id=177  x=762   y=693   width=62    height=64    xoffset=3     yoffset=24    xadvance=69    page=0  chnl=15
char id=178  x=392   y=847   width=39    height=51    xoffset=1     yoffset=21    xadvance=40    page=0  chnl=15
char id=179  x=234   y=851   width=39    height=52    xoffset=1     yoffset=21    xadvance=40    page=0  chnl=15
char id=180  x=452   y=902   width=27    height=26    xoffset=17    yoffset=14    xadvance=53    page=0  chnl=15
char id=181  x=232   y=548   width=49    height=74    xoffset=2     yoffset=38    xadvance=53    page=0  chnl=15
char id=182  x=531   y=200   width=50    height=88    xoffset=0     yoffset=22    xadvance=53    page=0  chnl=15
char id=183  x=588   y=895   width=19    height=21    xoffset=5     yoffset=52    xadvance=30    page=0  chnl=15
char id=184  x=372   y=903   width=32    height=29    xoffset=9     yoffset=83    xadvance=53    page=0  chnl=15
char id=185  x=512   y=843   width=34    height=50    xoffset=4     yoffset=22    xadvance=40    page=0  chnl=15
char id=186  x=135   y=851   width=46    height=52    xoffset=-1    yoffset=21    xadvance=45    page=0  chnl=15
char id=187  x=278   y=849   width=52    height=51    xoffset=2     yoffset=37    xadvance=56    page=0  chnl=15
char id=188  x=633   y=542   width=88    height=73    xoffset=4     yoffset=22    xadvance=92    page=0  chnl=15
char id=189  x=726   y=537   width=87    height=73    xoffset=4     yoffset=22    xadvance=92    page=0  chnl=15
char id=190  x=857   y=453   width=91    height=74    xoffset=1     yoffset=21    xadvance=92    page=0  chnl=15
char id=191  x=286   y=548   width=45    height=74    xoffset=-1    yoffset=38    xadvance=45    page=0  chnl=15
char id=192  x=545   y=0     width=66    height=97    xoffset=-4    yoffset=-2    xadvance=58    page=0  chnl=15
char id=193  x=474   y=0     width=66    height=97    xoffset=-4    yoffset=-2    xadvance=58    page=0  chnl=15
char id=194  x=0     y=105   width=66    height=96    xoffset=-4    yoffset=-1    xadvance=58    page=0  chnl=15
char id=195  x=305   y=103   width=66    height=93    xoffset=-4    yoffset=2     xadvance=58    page=0  chnl=15
char id=196  x=134   y=204   width=66    height=90    xoffset=-4    yoffset=5     xadvance=58    page=0  chnl=15
char id=197  x=0     y=0     width=66    height=100   xoffset=-4    yoffset=-5    xadvance=58    page=0  chnl=15
char id=198  x=539   y=542   width=89    height=73    xoffset=-4    yoffset=22    xadvance=85    page=0  chnl=15
char id=199  x=852   y=102   width=60    height=91    xoffset=-1    yoffset=21    xadvance=57    page=0  chnl=15
char id=200  x=809   y=0     width=51    height=97    xoffset=3     yoffset=-2    xadvance=53    page=0  chnl=15
char id=201  x=865   y=0     width=51    height=97    xoffset=3     yoffset=-2    xadvance=53    page=0  chnl=15
char id=202  x=134   y=103   width=51    height=96    xoffset=3     yoffset=-1    xadvance=53    page=0  chnl=15
char id=203  x=330   y=201   width=51    height=90    xoffset=3     yoffset=5     xadvance=53    page=0  chnl=15
char id=204  x=961   y=0     width=35    height=97    xoffset=-1    yoffset=-2    xadvance=34    page=0  chnl=15
char id=205  x=921   y=0     width=35    height=97    xoffset=0     yoffset=-2    xadvance=34    page=0  chnl=15
char id=206  x=190   y=103   width=38    height=96    xoffset=-2    yoffset=-1    xadvance=34    page=0  chnl=15
char id=207  x=440   y=200   width=35    height=90    xoffset=0     yoffset=5     xadvance=34    page=0  chnl=15
char id=208  x=910   y=532   width=69    height=73    xoffset=-4    yoffset=22    xadvance=64    page=0  chnl=15
char id=209  x=376   y=103   width=58    height=93    xoffset=3     yoffset=2     xadvance=63    page=0  chnl=15
char id=210  x=71    y=0     width=67    height=98    xoffset=-1    yoffset=-2    xadvance=65    page=0  chnl=15
char id=211  x=143   y=0     width=67    height=98    xoffset=-1    yoffset=-2    xadvance=65    page=0  chnl=15
char id=212  x=402   y=0     width=67    height=97    xoffset=-1    yoffset=-1    xadvance=65    page=0  chnl=15
char id=213  x=233   y=103   width=67    height=94    xoffset=-1    yoffset=2     xadvance=65    page=0  chnl=15
char id=214  x=780   y=102   width=67    height=91    xoffset=-1    yoffset=5     xadvance=65    page=0  chnl=15
char id=215  x=792   y=762   width=57    height=57    xoffset=6     yoffset=34    xadvance=69    page=0  chnl=15
char id=216  x=782   y=198   width=67    height=84    xoffset=-1    yoffset=17    xadvance=65    page=0  chnl=15
char id=217  x=278   y=0     width=58    height=98    xoffset=2     yoffset=-2    xadvance=62    page=0  chnl=15
char id=218  x=215   y=0     width=58    height=98    xoffset=2     yoffset=-2    xadvance=62    page=0  chnl=15
char id=219  x=685   y=0     width=58    height=97    xoffset=2     yoffset=-1    xadvance=62    page=0  chnl=15
char id=220  x=917   y=102   width=58    height=91    xoffset=2     yoffset=5     xadvance=62    page=0  chnl=15
char id=221  x=616   y=0     width=64    height=97    xoffset=-5    yoffset=-2    xadvance=54    page=0  chnl=15
char id=222  x=177   y=709   width=51    height=73    xoffset=3     yoffset=22    xadvance=52    page=0  chnl=15
char id=223  x=224   y=386   width=51    height=77    xoffset=2     yoffset=19    xadvance=52    page=0  chnl=15
char id=224  x=371   y=296   width=49    height=82    xoffset=-2    yoffset=14    xadvance=50    page=0  chnl=15
char id=225  x=317   y=297   width=49    height=82    xoffset=-2    yoffset=14    xadvance=50    page=0  chnl=15
char id=226  x=648   y=291   width=49    height=81    xoffset=-2    yoffset=15    xadvance=50    page=0  chnl=15
char id=227  x=57    y=389   width=49    height=78    xoffset=-2    yoffset=18    xadvance=50    page=0  chnl=15
char id=228  x=697   y=457   width=49    height=75    xoffset=-2    yoffset=21    xadvance=50    page=0  chnl=15
char id=229  x=586   y=199   width=49    height=88    xoffset=-2    yoffset=8     xadvance=50    page=0  chnl=15
char id=230  x=91    y=787   width=84    height=59    xoffset=-2    yoffset=37    xadvance=80    page=0  chnl=15
char id=231  x=805   y=454   width=47    height=75    xoffset=-1    yoffset=37    xadvance=43    page=0  chnl=15
char id=232  x=260   y=299   width=52    height=82    xoffset=-1    yoffset=14    xadvance=49    page=0  chnl=15
char id=233  x=203   y=299   width=52    height=82    xoffset=-1    yoffset=14    xadvance=49    page=0  chnl=15
char id=234  x=591   y=292   width=52    height=81    xoffset=-1    yoffset=15    xadvance=49    page=0  chnl=15
char id=235  x=415   y=464   width=52    height=75    xoffset=-1    yoffset=21    xadvance=49    page=0  chnl=15
char id=236  x=807   y=287   width=27    height=81    xoffset=-8    yoffset=14    xadvance=22    page=0  chnl=15
char id=237  x=839   y=287   width=27    height=81    xoffset=2     yoffset=14    xadvance=22    page=0  chnl=15
char id=238  x=923   y=285   width=38    height=80    xoffset=-8    yoffset=15    xadvance=22    page=0  chnl=15
char id=239  x=380   y=545   width=35    height=74    xoffset=-7    yoffset=21    xadvance=22    page=0  chnl=15
char id=240  x=0     y=389   width=52    height=78    xoffset=-1    yoffset=18    xadvance=51    page=0  chnl=15
char id=241  x=280   y=386   width=49    height=77    xoffset=2     yoffset=18    xadvance=53    page=0  chnl=15
char id=242  x=87    y=301   width=53    height=82    xoffset=-1    yoffset=14    xadvance=51    page=0  chnl=15
char id=243  x=145   y=299   width=53    height=82    xoffset=-1    yoffset=14    xadvance=51    page=0  chnl=15
char id=244  x=533   y=293   width=53    height=81    xoffset=-1    yoffset=15    xadvance=51    page=0  chnl=15
char id=245  x=966   y=285   width=53    height=78    xoffset=-1    yoffset=18    xadvance=51    page=0  chnl=15
char id=246  x=299   y=468   width=53    height=75    xoffset=-1    yoffset=21    xadvance=51    page=0  chnl=15
char id=247  x=896   y=690   width=62    height=62    xoffset=3     yoffset=32    xadvance=69    page=0  chnl=15
char id=248  x=704   y=698   width=53    height=68    xoffset=-2    yoffset=33    xadvance=51    page=0  chnl=15
char id=249  x=425   y=296   width=49    height=82    xoffset=2     yoffset=14    xadvance=53    page=0  chnl=15
char id=250  x=479   y=295   width=49    height=82    xoffset=2     yoffset=14    xadvance=53    page=0  chnl=15
char id=251  x=702   y=288   width=49    height=81    xoffset=2     yoffset=15    xadvance=53    page=0  chnl=15
char id=252  x=751   y=457   width=49    height=75    xoffset=2     yoffset=21    xadvance=53    page=0  chnl=15
char id=253  x=341   y=0     width=56    height=98    xoffset=-4    yoffset=14    xadvance=48    page=0  chnl=15
char id=254  x=439   y=102   width=52    height=93    xoffset=2     yoffset=19    xadvance=52    page=0  chnl=15
char id=255  x=0     y=206   width=56    height=91    xoffset=-4    yoffset=21    xadvance=48    page=0  chnl=15
kernings count=801
kerning first=33  second=146 amount=-4  
kerning first=33  second=148 amount=-4  
kerning first=34  second=44  amount=-12 
kerning first=34  second=46  amount=-12 
kerning first=34  second=83  amount=4   
kerning first=38  second=65  amount=3   
kerning first=38  second=74  amount=2   
kerning first=38  second=88  amount=2   
kerning first=39  second=44  amount=-9  
kerning first=39  second=46  amount=-9  
kerning first=39  second=65  amount=-4  
kerning first=39  second=198 amount=-4  
kerning first=39  second=83  amount=4   
kerning first=40  second=106 amount=4   
kerning first=44  second=41  amount=-4  
kerning first=44  second=91  amount=-4  
kerning first=44  second=125 amount=-5  
kerning first=44  second=146 amount=-10 
kerning first=44  second=148 amount=-10 
kerning first=46  second=41  amount=-4  
kerning first=46  second=44  amount=-6  
kerning first=46  second=91  amount=-4  
kerning first=46  second=125 amount=-5  
kerning first=46  second=146 amount=-10 
kerning first=46  second=148 amount=-10 
kerning first=46  second=151 amount=-5  
kerning first=46  second=45  amount=-5  
kerning first=47  second=52  amount=-2  
kerning first=48  second=115 amount=2   
kerning first=48  second=116 amount=5   
kerning first=49  second=34  amount=-7  
kerning first=49  second=37  amount=-8  
kerning first=49  second=39  amount=-7  
kerning first=49  second=170 amount=-9  
kerning first=49  second=186 amount=-9  
kerning first=49  second=176 amount=-9  
kerning first=50  second=47  amount=1   
kerning first=50  second=110 amount=2   
kerning first=50  second=116 amount=5   
kerning first=51  second=114 amount=4   
kerning first=51  second=116 amount=5   
kerning first=52  second=34  amount=-1  
kerning first=52  second=39  amount=-1  
kerning first=52  second=116 amount=4   
kerning first=52  second=176 amount=-1  
kerning first=53  second=116 amount=5   
kerning first=54  second=116 amount=5   
kerning first=55  second=47  amount=-2  
kerning first=55  second=116 amount=5   
kerning first=56  second=116 amount=5   
kerning first=57  second=116 amount=5   
kerning first=58  second=151 amount=-6  
kerning first=65  second=58  amount=-1  
kerning first=65  second=59  amount=-1  
kerning first=65  second=84  amount=-5  
kerning first=65  second=86  amount=-2  
kerning first=65  second=87  amount=-2  
kerning first=65  second=89  amount=-3  
kerning first=65  second=116 amount=-1  
kerning first=65  second=118 amount=-2  
kerning first=65  second=119 amount=-1  
kerning first=65  second=121 amount=-2  
kerning first=65  second=146 amount=-5  
kerning first=65  second=145 amount=-3  
kerning first=65  second=147 amount=-3  
kerning first=65  second=148 amount=-5  
kerning first=65  second=151 amount=-2  
kerning first=65  second=45  amount=-2  
kerning first=66  second=44  amount=-1  
kerning first=66  second=46  amount=-1  
kerning first=66  second=65  amount=1   
kerning first=66  second=84  amount=-2  
kerning first=67  second=145 amount=4   
kerning first=67  second=147 amount=4   
kerning first=67  second=151 amount=-2  
kerning first=67  second=140 amount=-1  
kerning first=67  second=45  amount=-2  
kerning first=68  second=44  amount=-2  
kerning first=68  second=46  amount=-2  
kerning first=68  second=74  amount=-1  
kerning first=68  second=84  amount=-2  
kerning first=68  second=87  amount=-1  
kerning first=68  second=89  amount=-1  
kerning first=68  second=90  amount=-1  
kerning first=68  second=145 amount=2   
kerning first=68  second=147 amount=2   
kerning first=69  second=84  amount=-1  
kerning first=69  second=145 amount=2   
kerning first=69  second=147 amount=2   
kerning first=70  second=44  amount=-15 
kerning first=70  second=46  amount=-15 
kerning first=70  second=58  amount=-2  
kerning first=70  second=59  amount=-2  
kerning first=70  second=63  amount=2   
kerning first=70  second=65  amount=-4  
kerning first=70  second=74  amount=-1  
kerning first=70  second=84  amount=1   
kerning first=70  second=90  amount=-2  
kerning first=70  second=97  amount=-3  
kerning first=70  second=101 amount=-2  
kerning first=70  second=111 amount=-2  
kerning first=70  second=145 amount=5   
kerning first=70  second=147 amount=5   
kerning first=70  second=198 amount=-5  
kerning first=70  second=230 amount=-3  
kerning first=70  second=248 amount=-2  
kerning first=70  second=156 amount=-2  
kerning first=71  second=84  amount=-1  
kerning first=71  second=145 amount=3   
kerning first=71  second=147 amount=3   
kerning first=73  second=97  amount=-1  
kerning first=73  second=99  amount=-2  
kerning first=73  second=100 amount=-2  
kerning first=73  second=101 amount=-2  
kerning first=73  second=103 amount=-2  
kerning first=73  second=111 amount=-2  
kerning first=73  second=113 amount=-2  
kerning first=73  second=115 amount=-1  
kerning first=73  second=117 amount=-1  
kerning first=73  second=118 amount=-2  
kerning first=73  second=119 amount=-1  
kerning first=73  second=121 amount=-2  
kerning first=73  second=151 amount=-1  
kerning first=73  second=230 amount=-1  
kerning first=73  second=156 amount=-2  
kerning first=73  second=45  amount=-1  
kerning first=73  second=231 amount=-2  
kerning first=74  second=44  amount=-1  
kerning first=74  second=46  amount=-1  
kerning first=75  second=67  amount=-1  
kerning first=75  second=71  amount=-1  
kerning first=75  second=79  amount=-1  
kerning first=75  second=81  amount=-1  
kerning first=75  second=97  amount=-2  
kerning first=75  second=101 amount=-2  
kerning first=75  second=111 amount=-2  
kerning first=75  second=117 amount=-2  
kerning first=75  second=118 amount=-3  
kerning first=75  second=119 amount=-3  
kerning first=75  second=121 amount=-3  
kerning first=75  second=151 amount=-5  
kerning first=75  second=216 amount=-1  
kerning first=75  second=140 amount=-1  
kerning first=75  second=230 amount=-2  
kerning first=75  second=248 amount=-3  
kerning first=75  second=156 amount=-3  
kerning first=75  second=45  amount=-5  
kerning first=76  second=39  amount=-5  
kerning first=76  second=67  amount=-1  
kerning first=76  second=71  amount=-1  
kerning first=76  second=74  amount=4   
kerning first=76  second=79  amount=-1  
kerning first=76  second=81  amount=-1  
kerning first=76  second=84  amount=-7  
kerning first=76  second=85  amount=-2  
kerning first=76  second=86  amount=-5  
kerning first=76  second=87  amount=-4  
kerning first=76  second=89  amount=-7  
kerning first=76  second=118 amount=-4  
kerning first=76  second=121 amount=-4  
kerning first=76  second=146 amount=-7  
kerning first=76  second=145 amount=-7  
kerning first=76  second=147 amount=-7  
kerning first=76  second=183 amount=-11 
kerning first=76  second=148 amount=-7  
kerning first=76  second=151 amount=-7  
kerning first=76  second=216 amount=-1  
kerning first=76  second=140 amount=-1  
kerning first=76  second=45  amount=-7  
kerning first=76  second=199 amount=-1  
kerning first=79  second=44  amount=-1  
kerning first=79  second=46  amount=-1  
kerning first=79  second=74  amount=-1  
kerning first=79  second=84  amount=-2  
kerning first=79  second=89  amount=-1  
kerning first=79  second=90  amount=-1  
kerning first=79  second=145 amount=3   
kerning first=79  second=147 amount=3   
kerning first=80  second=44  amount=-15 
kerning first=80  second=46  amount=-15 
kerning first=80  second=65  amount=-2  
kerning first=80  second=74  amount=-2  
kerning first=80  second=89  amount=1   
kerning first=80  second=97  amount=-2  
kerning first=80  second=101 amount=-2  
kerning first=80  second=102 amount=1   
kerning first=80  second=111 amount=-2  
kerning first=80  second=115 amount=-1  
kerning first=80  second=121 amount=1   
kerning first=80  second=145 amount=5   
kerning first=80  second=147 amount=5   
kerning first=80  second=198 amount=-3  
kerning first=80  second=230 amount=-2  
kerning first=80  second=248 amount=-2  
kerning first=80  second=156 amount=-2  
kerning first=81  second=44  amount=-1  
kerning first=81  second=46  amount=-1  
kerning first=81  second=84  amount=-2  
kerning first=81  second=106 amount=6   
kerning first=81  second=145 amount=3   
kerning first=81  second=147 amount=3   
kerning first=82  second=84  amount=-2  
kerning first=82  second=97  amount=-1  
kerning first=82  second=101 amount=-2  
kerning first=82  second=111 amount=-2  
kerning first=82  second=121 amount=-1  
kerning first=82  second=146 amount=-2  
kerning first=82  second=148 amount=-2  
kerning first=82  second=151 amount=-4  
kerning first=82  second=230 amount=-1  
kerning first=82  second=248 amount=-2  
kerning first=82  second=156 amount=-2  
kerning first=82  second=45  amount=-4  
kerning first=83  second=44  amount=-1  
kerning first=83  second=46  amount=-1  
kerning first=83  second=83  amount=-1  
kerning first=83  second=118 amount=-1  
kerning first=83  second=119 amount=-1  
kerning first=83  second=121 amount=-1  
kerning first=83  second=198 amount=-1  
kerning first=84  second=44  amount=-13 
kerning first=84  second=46  amount=-13 
kerning first=84  second=58  amount=-8  
kerning first=84  second=59  amount=-8  
kerning first=84  second=63  amount=2   
kerning first=84  second=65  amount=-5  
kerning first=84  second=67  amount=-2  
kerning first=84  second=71  amount=-2  
kerning first=84  second=74  amount=-1  
kerning first=84  second=79  amount=-2  
kerning first=84  second=81  amount=-2  
kerning first=84  second=84  amount=2   
kerning first=84  second=90  amount=-3  
kerning first=84  second=97  amount=-10 
kerning first=84  second=99  amount=-9  
kerning first=84  second=101 amount=-9  
kerning first=84  second=103 amount=-9  
kerning first=84  second=106 amount=-5  
kerning first=84  second=109 amount=-8  
kerning first=84  second=111 amount=-9  
kerning first=84  second=114 amount=-8  
kerning first=84  second=115 amount=-7  
kerning first=84  second=117 amount=-8  
kerning first=84  second=118 amount=-8  
kerning first=84  second=119 amount=-8  
kerning first=84  second=120 amount=-7  
kerning first=84  second=121 amount=-8  
kerning first=84  second=122 amount=-7  
kerning first=84  second=145 amount=2   
kerning first=84  second=147 amount=2   
kerning first=84  second=151 amount=-6  
kerning first=84  second=198 amount=-7  
kerning first=84  second=216 amount=-2  
kerning first=84  second=140 amount=-2  
kerning first=84  second=230 amount=-10 
kerning first=84  second=105 amount=-8  
kerning first=84  second=248 amount=-9  
kerning first=84  second=156 amount=-9  
kerning first=84  second=45  amount=-6  
kerning first=84  second=199 amount=-2  
kerning first=85  second=44  amount=-1  
kerning first=85  second=46  amount=-1  
kerning first=85  second=198 amount=-1  
kerning first=86  second=44  amount=-12 
kerning first=86  second=46  amount=-12 
kerning first=86  second=58  amount=-3  
kerning first=86  second=59  amount=-3  
kerning first=86  second=65  amount=-2  
kerning first=86  second=97  amount=-4  
kerning first=86  second=101 amount=-4  
kerning first=86  second=111 amount=-4  
kerning first=86  second=114 amount=-2  
kerning first=86  second=117 amount=-2  
kerning first=86  second=121 amount=-3  
kerning first=86  second=145 amount=5   
kerning first=86  second=147 amount=5   
kerning first=86  second=151 amount=-2  
kerning first=86  second=198 amount=-3  
kerning first=86  second=230 amount=-4  
kerning first=86  second=105 amount=-2  
kerning first=86  second=248 amount=-4  
kerning first=86  second=156 amount=-4  
kerning first=86  second=45  amount=-2  
kerning first=87  second=44  amount=-10 
kerning first=87  second=46  amount=-10 
kerning first=87  second=58  amount=-3  
kerning first=87  second=59  amount=-3  
kerning first=87  second=65  amount=-2  
kerning first=87  second=97  amount=-4  
kerning first=87  second=101 amount=-4  
kerning first=87  second=111 amount=-4  
kerning first=87  second=114 amount=-2  
kerning first=87  second=117 amount=-2  
kerning first=87  second=121 amount=-3  
kerning first=87  second=145 amount=5   
kerning first=87  second=147 amount=5   
kerning first=87  second=151 amount=-2  
kerning first=87  second=198 amount=-2  
kerning first=87  second=230 amount=-4  
kerning first=87  second=105 amount=-2  
kerning first=87  second=248 amount=-4  
kerning first=87  second=156 amount=-4  
kerning first=87  second=45  amount=-2  
kerning first=88  second=58  amount=-2  
kerning first=88  second=59  amount=-2  
kerning first=88  second=97  amount=-2  
kerning first=88  second=101 amount=-3  
kerning first=88  second=111 amount=-3  
kerning first=88  second=117 amount=-1  
kerning first=88  second=121 amount=-3  
kerning first=88  second=145 amount=2   
kerning first=88  second=147 amount=2   
kerning first=88  second=151 amount=-3  
kerning first=88  second=230 amount=-2  
kerning first=88  second=248 amount=-2  
kerning first=88  second=156 amount=-2  
kerning first=88  second=45  amount=-3  
kerning first=89  second=44  amount=-14 
kerning first=89  second=46  amount=-14 
kerning first=89  second=58  amount=-8  
kerning first=89  second=59  amount=-8  
kerning first=89  second=65  amount=-3  
kerning first=89  second=67  amount=-1  
kerning first=89  second=71  amount=-1  
kerning first=89  second=74  amount=-2  
kerning first=89  second=79  amount=-1  
kerning first=89  second=81  amount=-1  
kerning first=89  second=97  amount=-6  
kerning first=89  second=100 amount=-5  
kerning first=89  second=101 amount=-5  
kerning first=89  second=103 amount=-5  
kerning first=89  second=109 amount=-4  
kerning first=89  second=110 amount=-4  
kerning first=89  second=111 amount=-5  
kerning first=89  second=112 amount=-4  
kerning first=89  second=113 amount=-5  
kerning first=89  second=114 amount=-4  
kerning first=89  second=115 amount=-5  
kerning first=89  second=117 amount=-5  
kerning first=89  second=118 amount=-4  
kerning first=89  second=122 amount=-2  
kerning first=89  second=145 amount=4   
kerning first=89  second=147 amount=4   
kerning first=89  second=151 amount=-6  
kerning first=89  second=198 amount=-3  
kerning first=89  second=216 amount=-1  
kerning first=89  second=140 amount=-2  
kerning first=89  second=230 amount=-6  
kerning first=89  second=248 amount=-5  
kerning first=89  second=156 amount=-5  
kerning first=89  second=45  amount=-6  
kerning first=90  second=67  amount=-1  
kerning first=90  second=71  amount=-1  
kerning first=90  second=79  amount=-1  
kerning first=90  second=81  amount=-1  
kerning first=90  second=97  amount=-2  
kerning first=90  second=101 amount=-2  
kerning first=90  second=111 amount=-2  
kerning first=90  second=119 amount=-2  
kerning first=90  second=121 amount=-3  
kerning first=90  second=145 amount=1   
kerning first=90  second=147 amount=1   
kerning first=90  second=151 amount=-2  
kerning first=90  second=216 amount=-1  
kerning first=90  second=140 amount=-1  
kerning first=90  second=230 amount=-2  
kerning first=90  second=248 amount=-2  
kerning first=90  second=156 amount=-2  
kerning first=90  second=45  amount=-2  
kerning first=90  second=199 amount=-1  
kerning first=91  second=106 amount=4   
kerning first=97  second=47  amount=5   
kerning first=97  second=118 amount=-1  
kerning first=97  second=121 amount=-1  
kerning first=97  second=146 amount=-2  
kerning first=97  second=148 amount=-2  
kerning first=98  second=44  amount=-1  
kerning first=98  second=46  amount=-1  
kerning first=98  second=47  amount=6   
kerning first=99  second=47  amount=8   
kerning first=99  second=84  amount=-2  
kerning first=99  second=146 amount=2   
kerning first=99  second=148 amount=2   
kerning first=99  second=151 amount=-1  
kerning first=99  second=45  amount=-1  
kerning first=100 second=47  amount=5   
kerning first=101 second=47  amount=6   
kerning first=101 second=84  amount=-6  
kerning first=102 second=33  amount=2   
kerning first=102 second=34  amount=5   
kerning first=102 second=39  amount=5   
kerning first=102 second=41  amount=4   
kerning first=102 second=42  amount=2   
kerning first=102 second=44  amount=-6  
kerning first=102 second=46  amount=-6  
kerning first=102 second=47  amount=2   
kerning first=102 second=63  amount=6   
kerning first=102 second=91  amount=4   
kerning first=102 second=98  amount=1   
kerning first=102 second=102 amount=1   
kerning first=102 second=104 amount=1   
kerning first=102 second=105 amount=1   
kerning first=102 second=107 amount=1   
kerning first=102 second=108 amount=1   
kerning first=102 second=116 amount=2   
kerning first=102 second=125 amount=4   
kerning first=102 second=146 amount=4   
kerning first=102 second=145 amount=8   
kerning first=102 second=147 amount=8   
kerning first=102 second=155 amount=2   
kerning first=102 second=148 amount=4   
kerning first=102 second=187 amount=2   
kerning first=102 second=151 amount=-2  
kerning first=102 second=45  amount=-2  
kerning first=102 second=153 amount=4   
kerning first=103 second=47  amount=6   
kerning first=104 second=47  amount=5   
kerning first=104 second=118 amount=-1  
kerning first=104 second=121 amount=-1  
kerning first=104 second=146 amount=-2  
kerning first=104 second=148 amount=-2  
kerning first=105 second=47  amount=5   
kerning first=106 second=47  amount=6   
kerning first=107 second=47  amount=5   
kerning first=107 second=101 amount=-1  
kerning first=107 second=111 amount=-1  
kerning first=107 second=151 amount=-4  
kerning first=107 second=248 amount=-1  
kerning first=107 second=156 amount=-1  
kerning first=107 second=45  amount=-4  
kerning first=108 second=47  amount=5   
kerning first=108 second=183 amount=-3  
kerning first=109 second=47  amount=5   
kerning first=109 second=118 amount=-1  
kerning first=109 second=121 amount=-1  
kerning first=109 second=146 amount=-2  
kerning first=109 second=148 amount=-2  
kerning first=110 second=47  amount=5   
kerning first=110 second=118 amount=-1  
kerning first=110 second=121 amount=-1  
kerning first=110 second=146 amount=-2  
kerning first=110 second=148 amount=-2  
kerning first=111 second=44  amount=-1  
kerning first=111 second=46  amount=-1  
kerning first=111 second=47  amount=6   
kerning first=111 second=118 amount=-1  
kerning first=111 second=120 amount=-1  
kerning first=111 second=121 amount=-1  
kerning first=112 second=44  amount=-1  
kerning first=112 second=46  amount=-1  
kerning first=112 second=47  amount=6   
kerning first=113 second=47  amount=6   
kerning first=113 second=106 amount=1   
kerning first=114 second=44  amount=-12 
kerning first=114 second=46  amount=-12 
kerning first=114 second=47  amount=1   
kerning first=114 second=97  amount=-1  
kerning first=114 second=102 amount=1   
kerning first=114 second=106 amount=1   
kerning first=114 second=116 amount=1   
kerning first=114 second=118 amount=1   
kerning first=114 second=119 amount=1   
kerning first=114 second=120 amount=1   
kerning first=114 second=121 amount=1   
kerning first=114 second=122 amount=1   
kerning first=114 second=146 amount=2   
kerning first=114 second=155 amount=2   
kerning first=114 second=148 amount=2   
kerning first=114 second=187 amount=2   
kerning first=114 second=151 amount=-1  
kerning first=114 second=230 amount=-1  
kerning first=114 second=45  amount=-1  
kerning first=115 second=47  amount=6   
kerning first=116 second=47  amount=5   
kerning first=116 second=146 amount=1   
kerning first=116 second=155 amount=2   
kerning first=116 second=148 amount=1   
kerning first=116 second=187 amount=2   
kerning first=116 second=151 amount=-2  
kerning first=116 second=45  amount=-2  
kerning first=117 second=47  amount=5   
kerning first=117 second=146 amount=-1  
kerning first=117 second=148 amount=-1  
kerning first=118 second=44  amount=-8  
kerning first=118 second=46  amount=-8  
kerning first=118 second=97  amount=-2  
kerning first=118 second=101 amount=-1  
kerning first=118 second=111 amount=-1  
kerning first=118 second=146 amount=2   
kerning first=118 second=148 amount=2   
kerning first=118 second=151 amount=-2  
kerning first=118 second=230 amount=-2  
kerning first=118 second=248 amount=-1  
kerning first=118 second=156 amount=-1  
kerning first=118 second=45  amount=-2  
kerning first=119 second=44  amount=-4  
kerning first=119 second=46  amount=-4  
kerning first=119 second=47  amount=1   
kerning first=119 second=97  amount=-1  
kerning first=119 second=146 amount=2   
kerning first=119 second=148 amount=2   
kerning first=119 second=151 amount=-1  
kerning first=119 second=230 amount=-1  
kerning first=119 second=45  amount=-1  
kerning first=120 second=47  amount=4   
kerning first=120 second=99  amount=-1  
kerning first=120 second=101 amount=-1  
kerning first=120 second=111 amount=-1  
kerning first=120 second=146 amount=1   
kerning first=120 second=148 amount=1   
kerning first=120 second=151 amount=-2  
kerning first=120 second=248 amount=-1  
kerning first=120 second=156 amount=-1  
kerning first=120 second=45  amount=-2  
kerning first=120 second=231 amount=-1  
kerning first=121 second=44  amount=-9  
kerning first=121 second=46  amount=-9  
kerning first=121 second=47  amount=1   
kerning first=121 second=97  amount=-2  
kerning first=121 second=99  amount=-1  
kerning first=121 second=101 amount=-1  
kerning first=121 second=111 amount=-1  
kerning first=121 second=146 amount=2   
kerning first=121 second=148 amount=2   
kerning first=121 second=151 amount=-2  
kerning first=121 second=230 amount=-2  
kerning first=121 second=248 amount=-1  
kerning first=121 second=156 amount=-1  
kerning first=121 second=45  amount=-2  
kerning first=121 second=231 amount=-1  
kerning first=122 second=47  amount=5   
kerning first=122 second=146 amount=1   
kerning first=122 second=148 amount=1   
kerning first=122 second=151 amount=-1  
kerning first=122 second=45  amount=-1  
kerning first=123 second=106 amount=4   
kerning first=146 second=44  amount=-10 
kerning first=146 second=46  amount=-10 
kerning first=146 second=49  amount=-2  
kerning first=146 second=52  amount=-6  
kerning first=146 second=53  amount=-1  
kerning first=146 second=54  amount=-2  
kerning first=146 second=55  amount=2   
kerning first=146 second=57  amount=1   
kerning first=146 second=65  amount=-4  
kerning first=146 second=84  amount=5   
kerning first=146 second=86  amount=4   
kerning first=146 second=87  amount=2   
kerning first=146 second=89  amount=5   
kerning first=146 second=97  amount=-3  
kerning first=146 second=99  amount=-3  
kerning first=146 second=100 amount=-3  
kerning first=146 second=101 amount=-3  
kerning first=146 second=103 amount=-3  
kerning first=146 second=111 amount=-3  
kerning first=146 second=113 amount=-3  
kerning first=146 second=115 amount=-3  
kerning first=146 second=116 amount=2   
kerning first=146 second=145 amount=3   
kerning first=146 second=147 amount=3   
kerning first=146 second=171 amount=-2  
kerning first=146 second=139 amount=-2  
kerning first=146 second=148 amount=3   
kerning first=146 second=151 amount=-5  
kerning first=146 second=198 amount=-4  
kerning first=146 second=45  amount=-5  
kerning first=146 second=83  amount=4   
kerning first=145 second=44  amount=-9  
kerning first=145 second=46  amount=-9  
kerning first=145 second=65  amount=-4  
kerning first=145 second=97  amount=-3  
kerning first=145 second=99  amount=-3  
kerning first=145 second=100 amount=-3  
kerning first=145 second=101 amount=-3  
kerning first=145 second=103 amount=-3  
kerning first=145 second=111 amount=-3  
kerning first=145 second=113 amount=-3  
kerning first=145 second=115 amount=-2  
kerning first=145 second=147 amount=3   
kerning first=145 second=148 amount=3   
kerning first=145 second=191 amount=-6  
kerning first=145 second=198 amount=-5  
kerning first=145 second=97  amount=-3  
kerning first=145 second=101 amount=-3  
kerning first=145 second=115 amount=-3  
kerning first=145 second=102 amount=-3  
kerning first=147 second=44  amount=-10 
kerning first=147 second=46  amount=-10 
kerning first=147 second=65  amount=-4  
kerning first=147 second=97  amount=-3  
kerning first=147 second=99  amount=-3  
kerning first=147 second=100 amount=-3  
kerning first=147 second=101 amount=-3  
kerning first=147 second=103 amount=-3  
kerning first=147 second=111 amount=-3  
kerning first=147 second=113 amount=-3  
kerning first=147 second=115 amount=-2  
kerning first=147 second=145 amount=3   
kerning first=147 second=191 amount=-6  
kerning first=147 second=198 amount=-5  
kerning first=147 second=97  amount=-3  
kerning first=147 second=101 amount=-3  
kerning first=147 second=115 amount=-3  
kerning first=147 second=102 amount=-3  
kerning first=155 second=44  amount=-3  
kerning first=155 second=46  amount=-3  
kerning first=183 second=76  amount=-1  
kerning first=183 second=108 amount=-3  
kerning first=130 second=65  amount=4   
kerning first=130 second=74  amount=3   
kerning first=130 second=84  amount=-9  
kerning first=130 second=86  amount=-9  
kerning first=130 second=87  amount=-4  
kerning first=130 second=88  amount=2   
kerning first=130 second=89  amount=-9  
kerning first=130 second=90  amount=2   
kerning first=130 second=198 amount=4   
kerning first=132 second=65  amount=4   
kerning first=132 second=74  amount=3   
kerning first=132 second=84  amount=-9  
kerning first=132 second=86  amount=-9  
kerning first=132 second=87  amount=-4  
kerning first=132 second=88  amount=2   
kerning first=132 second=89  amount=-9  
kerning first=132 second=90  amount=2   
kerning first=132 second=198 amount=4   
kerning first=148 second=44  amount=-13 
kerning first=148 second=46  amount=-13 
kerning first=148 second=65  amount=-4  
kerning first=148 second=84  amount=5   
kerning first=148 second=86  amount=4   
kerning first=148 second=87  amount=2   
kerning first=148 second=89  amount=5   
kerning first=148 second=115 amount=-3  
kerning first=148 second=116 amount=2   
kerning first=148 second=146 amount=3   
kerning first=148 second=147 amount=3   
kerning first=148 second=198 amount=-5  
kerning first=148 second=83  amount=4   
kerning first=187 second=44  amount=-3  
kerning first=187 second=46  amount=-3  
kerning first=187 second=83  amount=-2  
kerning first=187 second=116 amount=-2  
kerning first=191 second=106 amount=5   
kerning first=151 second=65  amount=-2  
kerning first=151 second=73  amount=-1  
kerning first=151 second=74  amount=-4  
kerning first=151 second=83  amount=-1  
kerning first=151 second=84  amount=-6  
kerning first=151 second=86  amount=-2  
kerning first=151 second=87  amount=-2  
kerning first=151 second=88  amount=-3  
kerning first=151 second=89  amount=-6  
kerning first=151 second=97  amount=-1  
kerning first=151 second=118 amount=-2  
kerning first=151 second=119 amount=-1  
kerning first=151 second=120 amount=-2  
kerning first=151 second=121 amount=-2  
kerning first=151 second=122 amount=-2  
kerning first=151 second=198 amount=-2  
kerning first=151 second=230 amount=-1  
kerning first=151 second=83  amount=-4  
kerning first=151 second=116 amount=-4  
kerning first=198 second=145 amount=2   
kerning first=198 second=147 amount=2   
kerning first=170 second=44  amount=-6  
kerning first=170 second=46  amount=-6  
kerning first=216 second=44  amount=-1  
kerning first=216 second=46  amount=-1  
kerning first=216 second=84  amount=-2  
kerning first=216 second=89  amount=-1  
kerning first=216 second=90  amount=-1  
kerning first=140 second=145 amount=2   
kerning first=140 second=147 amount=2   
kerning first=186 second=44  amount=-7  
kerning first=186 second=46  amount=-7  
kerning first=230 second=47  amount=6   
kerning first=248 second=44  amount=-1  
kerning first=248 second=46  amount=-1  
kerning first=248 second=118 amount=-1  
kerning first=248 second=120 amount=-1  
kerning first=248 second=121 amount=-1  
kerning first=156 second=47  amount=6   
kerning first=223 second=98  amount=1   
kerning first=223 second=102 amount=1   
kerning first=45  second=65  amount=-2  
kerning first=45  second=73  amount=-1  
kerning first=45  second=74  amount=-4  
kerning first=45  second=83  amount=-1  
kerning first=45  second=84  amount=-6  
kerning first=45  second=86  amount=-2  
kerning first=45  second=87  amount=-2  
kerning first=45  second=88  amount=-3  
kerning first=45  second=89  amount=-6  
kerning first=45  second=97  amount=-1  
kerning first=45  second=118 amount=-2  
kerning first=45  second=119 amount=-1  
kerning first=45  second=120 amount=-2  
kerning first=45  second=121 amount=-2  
kerning first=45  second=122 amount=-2  
kerning first=45  second=198 amount=-2  
kerning first=45  second=230 amount=-1  
kerning first=45  second=83  amount=-4  
kerning first=45  second=116 amount=-4  
kerning first=176 second=44  amount=-13 
kerning first=176 second=46  amount=-13 
kerning first=199 second=151 amount=-2  
kerning first=199 second=140 amount=-1  
kerning first=199 second=45  amount=-2  
kerning first=231 second=151 amount=-1  
kerning first=231 second=45  amount=-1  
kerning first=71  second=44  amount=-18 
kerning first=71  second=46  amount=-18 
kerning first=71  second=59  amount=-10 
kerning first=71  second=63  amount=2   
kerning first=71  second=145 amount=2   
kerning first=71  second=147 amount=2   
kerning first=71  second=171 amount=-9  
kerning first=71  second=187 amount=-5  
kerning first=71  second=151 amount=-11 
kerning first=71  second=45  amount=-11 
kerning first=71  second=84  amount=-3  
kerning first=71  second=70  amount=-4  
kerning first=71  second=79  amount=-3  
kerning first=71  second=97  amount=-12 
kerning first=71  second=223 amount=-2  
kerning first=71  second=100 amount=-2  
kerning first=71  second=101 amount=-12 
kerning first=71  second=181 amount=-12 
kerning first=71  second=112 amount=-12 
kerning first=71  second=115 amount=-12 
kerning first=71  second=116 amount=-10 
kerning first=71  second=102 amount=-12 
kerning first=84  second=44  amount=-1  
kerning first=84  second=46  amount=-1  
kerning first=84  second=145 amount=3   
kerning first=84  second=147 amount=3   
kerning first=83  second=171 amount=-1  
kerning first=83  second=151 amount=-5  
kerning first=83  second=45  amount=-5  
kerning first=83  second=84  amount=-2  
kerning first=83  second=70  amount=-2  
kerning first=83  second=79  amount=-1  
kerning first=83  second=97  amount=-2  
kerning first=83  second=101 amount=-2  
kerning first=83  second=115 amount=-2  
kerning first=83  second=116 amount=-3  
kerning first=83  second=102 amount=-2  
kerning first=70  second=44  amount=-3  
kerning first=70  second=46  amount=-2  
kerning first=70  second=145 amount=3   
kerning first=70  second=147 amount=3   
kerning first=97  second=47  amount=5   
kerning first=223 second=44  amount=-1  
kerning first=223 second=46  amount=-1  
kerning first=223 second=47  amount=6   
kerning first=100 second=34  amount=-1  
kerning first=100 second=39  amount=-1  
kerning first=100 second=44  amount=-1  
kerning first=100 second=46  amount=-1  
kerning first=100 second=47  amount=6   
kerning first=100 second=146 amount=-1  
kerning first=100 second=148 amount=-1  
kerning first=101 second=34  amount=1   
kerning first=101 second=39  amount=1   
kerning first=101 second=47  amount=7   
kerning first=101 second=146 amount=1   
kerning first=101 second=148 amount=1   
kerning first=101 second=151 amount=-1  
kerning first=101 second=45  amount=-1  
kerning first=181 second=47  amount=5   
kerning first=112 second=47  amount=5   
kerning first=115 second=34  amount=2   
kerning first=115 second=39  amount=2   
kerning first=115 second=44  amount=-2  
kerning first=115 second=46  amount=-2  
kerning first=115 second=47  amount=5   
kerning first=115 second=146 amount=2   
kerning first=115 second=148 amount=2   
kerning first=116 second=34  amount=2   
kerning first=116 second=39  amount=2   
kerning first=116 second=44  amount=-8  
kerning first=116 second=46  amount=-8  
kerning first=116 second=47  amount=-1  
kerning first=116 second=146 amount=2   
kerning first=116 second=171 amount=-2  
kerning first=116 second=148 amount=2   
kerning first=116 second=151 amount=-4  
kerning first=116 second=45  amount=-4  
kerning first=116 second=97  amount=-1  
kerning first=116 second=100 amount=-1  
kerning first=116 second=115 amount=-1  
kerning first=116 second=102 amount=-1  
kerning first=102 second=34  amount=-1  
kerning first=102 second=39  amount=-1  
kerning first=102 second=44  amount=-1  
kerning first=102 second=46  amount=-1  
kerning first=102 second=47  amount=5   
kerning first=102 second=146 amount=-1  
kerning first=102 second=148 amount=-1  
kerning first=102 second=116 amount=-1