-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathassets.h
executable file
·4893 lines (4888 loc) · 391 KB
/
assets.h
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
static unsigned char png_logo_bittboy[537] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x2c,0x08,0x06,0x00,0x00,0x00,0x0e,0xc8,0xd6,
0x98,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0e,0xc3,0x00,0x00,0x0e,
0xc3,0x01,0xc7,0x6f,0xa8,0x64,0x00,0x00,0x01,0xcb,0x49,0x44,0x41,0x54,0x78,0x9c,
0xed,0x98,0x49,0x72,0xc3,0x30,0x0c,0x04,0xf5,0xa4,0xe4,0xff,0x8f,0x53,0x4e,0xc9,
0x45,0x66,0xb4,0x01,0x18,0x2c,0x7d,0xe8,0x83,0xcb,0x24,0x00,0x71,0xd8,0xb6,0xcb,
0xdb,0xbe,0xef,0x1b,0x00,0x3c,0x63,0xfb,0xfe,0xda,0xff,0xe3,0xb0,0x5e,0x3d,0x30,
0x40,0x65,0x10,0x0e,0x20,0x80,0x95,0x50,0x67,0xeb,0xe4,0x83,0x03,0x54,0x44,0x2e,
0xdc,0xd9,0x57,0xeb,0x5b,0xde,0xf6,0xf7,0xde,0xef,0x5d,0xaf,0x5a,0x1e,0x5d,0x39,
0x08,0x74,0xf5,0xa7,0xe4,0xef,0x7b,0x5d,0x02,0x56,0xef,0xf7,0xae,0x57,0x2d,0x8f,
0xae,0x20,0x9c,0xd1,0x05,0x47,0x38,0x84,0xbb,0x73,0xae,0xab,0xd7,0x67,0xeb,0xda,
0x04,0xac,0xde,0xef,0x5d,0xaf,0x5a,0x1e,0x5d,0x29,0x23,0x9c,0x77,0x3d,0xeb,0xf5,
0xea,0x7a,0xd5,0xf3,0xe8,0xca,0x52,0xa4,0xab,0xf7,0xa3,0x4b,0xc0,0x6a,0x41,0x10,
0x4e,0x2f,0x43,0x04,0x08,0xe7,0xb4,0x5e,0x5d,0xaf,0x7a,0x1e,0x5d,0x59,0x09,0x77,
0x75,0x5d,0x9b,0x80,0xd5,0x82,0x20,0x9c,0x5e,0x86,0x08,0x10,0x8e,0xf9,0x4b,0x3c,
0x8f,0xf7,0x07,0x52,0xf4,0xfe,0xbb,0x75,0xff,0x5e,0x77,0x0d,0x58,0xdd,0x0f,0xe1,
0x10,0xee,0xd3,0xba,0xb6,0x01,0xab,0xfb,0x21,0x5c,0x6f,0xe1,0x9e,0xee,0x6b,0x1b,
0xb0,0xba,0x1f,0xc2,0x21,0x9c,0x54,0xb8,0xae,0x07,0x9e,0xe5,0x82,0x4e,0xcf,0x43,
0x3d,0xef,0xe5,0x7b,0x81,0x70,0x08,0xd7,0x21,0x0f,0xf5,0xbc,0x08,0x87,0x70,0xa3,
0xf2,0x50,0xcf,0x8b,0x70,0x08,0x37,0x2a,0x0f,0xf5,0xbc,0xe9,0x84,0xf3,0xae,0x97,
0xed,0xc0,0xd5,0xf3,0xa8,0x9f,0x07,0xe1,0x10,0x2e,0xf5,0xfc,0xd9,0xf6,0x57,0xcb,
0x23,0xdb,0x79,0x2d,0xfb,0x98,0x15,0x1a,0x16,0x70,0x76,0x61,0xd4,0xcf,0x83,0x70,
0x08,0x97,0x7a,0xfe,0x6c,0xfb,0xab,0xe5,0x91,0xed,0xbc,0x96,0x7d,0xcc,0x0a,0x0d,
0x0b,0x38,0x5a,0x18,0xf2,0xc8,0xd5,0xef,0xb1,0x27,0x66,0x85,0x86,0x05,0xec,0x5d,
0x4f,0xdd,0xbf,0x5a,0x1e,0xd9,0xf2,0x5f,0xf6,0x31,0x2b,0x34,0x2c,0x60,0xef,0x7a,
0xea,0xfe,0xd5,0xf2,0xc8,0x96,0xff,0xb2,0x8f,0x59,0xa1,0x61,0x01,0x7b,0xd7,0x53,
0xf7,0xaf,0x96,0x47,0xb6,0xfc,0x97,0x7d,0xcc,0x0a,0x9d,0x0c,0xfc,0x96,0xe8,0x0b,
0x9e,0xed,0xc2,0x57,0xcb,0xc3,0x7a,0x1e,0xf5,0xf3,0x23,0x1c,0xc2,0xa5,0xce,0x03,
0xe1,0x10,0x0e,0xe1,0x10,0x0e,0xe1,0x10,0x0e,0xe1,0x32,0xf6,0x4b,0x2f,0x1c,0x40,
0x65,0x10,0x0e,0x20,0x10,0x84,0x03,0x08,0x04,0xe1,0x00,0x02,0x41,0x38,0x80,0x1b,
0x64,0xfd,0x93,0xe4,0x30,0xa7,0xfa,0xa0,0x00,0x2c,0x40,0x38,0x80,0x40,0x10,0x0e,
0x20,0x10,0x84,0x03,0x80,0x03,0xf2,0x01,0x00,0x26,0x21,0x1f,0x00,0x60,0x12,0xf2,
0x01,0x00,0x26,0xf1,0x03,0x63,0x0d,0x85,0xaa,0x23,0x7d,0x6f,0xb6,0x00,0x00,0x00,
0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
};
static unsigned char png_logo_generic[361] = {
0x89,0x50,0x4E,0x47,0x0D,0x0A,0x1A,0x0A,0x00,0x00,0x00,0x0D,0x49,0x48,0x44,0x52,
0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x2C,0x08,0x06,0x00,0x00,0x00,0x83,0x80,0xC6,
0xE5,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0E,0xC3,0x00,0x00,0x0E,
0xC3,0x01,0xC7,0x6F,0xA8,0x64,0x00,0x00,0x01,0x01,0x49,0x44,0x41,0x54,0x78,0x9C,
0xED,0xDD,0x41,0x0A,0xC2,0x30,0x14,0x45,0xD1,0x54,0xDC,0x90,0xEE,0x7F,0x0D,0xBA,
0xA4,0x3A,0xEA,0x53,0x02,0xA1,0x55,0x5A,0xFA,0xC1,0x73,0x66,0x42,0x07,0x9D,0x78,
0x7D,0x84,0x80,0xD3,0x3C,0xCF,0x0D,0xA0,0xB5,0xD6,0x2E,0x67,0xBF,0x00,0x50,0x87,
0x20,0x00,0x21,0x08,0x40,0x5C,0xCF,0x7E,0x81,0xC5,0x74,0xBF,0x39,0xCC,0xE0,0x6F,
0xCD,0x8F,0xE7,0xF4,0xF9,0x79,0xED,0xFB,0xD0,0x3F,0xBF,0x17,0x0B,0x01,0x88,0x32,
0x0B,0x01,0x78,0x2F,0x83,0xB5,0x05,0xB0,0xF5,0xB9,0x6F,0x59,0x08,0x40,0x4C,0x55,
0xEE,0x21,0x38,0x43,0x80,0xF7,0x2F,0xFE,0xE8,0xFB,0x30,0x3A,0x6B,0xD8,0x6B,0x29,
0x58,0x08,0x40,0x38,0x43,0x80,0xC2,0x8E,0x5E,0x04,0x3D,0x0B,0x01,0x08,0x0B,0x01,
0x0A,0xEB,0xCF,0x12,0x8E,0x5A,0x06,0x0B,0x0B,0x01,0x08,0x0B,0x01,0x0A,0x73,0x86,
0x00,0x9C,0xC6,0x42,0x80,0x02,0xFA,0xFB,0x07,0xA3,0x05,0xB0,0xF5,0xB9,0x5F,0x59,
0x08,0x40,0x58,0x08,0x50,0xC8,0xDA,0x4D,0xC5,0xFE,0xB9,0xBD,0x59,0x08,0x40,0x58,
0x08,0x50,0xD0,0xD1,0xF7,0x0D,0x46,0x2C,0x04,0x20,0x04,0x01,0x08,0x41,0x00,0x42,
0x10,0x80,0x10,0x04,0x20,0x04,0x01,0x08,0x41,0x00,0x42,0x10,0x80,0x10,0x04,0x20,
0x04,0x01,0x08,0x41,0x00,0x42,0x10,0x80,0x10,0x04,0x20,0x04,0x01,0x08,0x41,0x00,
0xA2,0xCC,0x7F,0x3B,0x02,0xE7,0xB3,0x10,0x80,0x10,0x04,0x20,0x04,0x01,0x08,0x41,
0x00,0x42,0x10,0x80,0x10,0x04,0x20,0x04,0x01,0x88,0x17,0x10,0xA9,0x4D,0x0B,0xA7,
0x47,0x55,0xCC,0x00,0x00,0x00,0x0E,0x65,0x58,0x49,0x66,0x4D,0x4D,0x00,0x2A,0x00,
0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD2,0x53,0x93,0x00,0x00,0x00,
0x00,0x49,0x45,0x4E,0x44,0xAE,0x42,0x60,0x82
};
static unsigned char png_logo_pocketgo[697] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
0x00,0x00,0x01,0x0c,0x00,0x00,0x00,0x2c,0x08,0x06,0x00,0x00,0x00,0x90,0x57,0x86,
0x11,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0e,0xc3,0x00,0x00,0x0e,
0xc3,0x01,0xc7,0x6f,0xa8,0x64,0x00,0x00,0x02,0x6b,0x49,0x44,0x41,0x54,0x78,0x9c,
0xed,0x97,0x41,0x72,0xdc,0x30,0x10,0x03,0xf7,0x49,0xc9,0xff,0x1f,0xb7,0x39,0x39,
0x17,0x95,0x4c,0xcb,0xda,0x21,0x7a,0x46,0x7d,0xe8,0xc3,0x56,0x44,0x12,0x04,0xc0,
0xa9,0xf8,0xf5,0x7e,0xbf,0x5f,0x22,0xf2,0x4c,0x5e,0x7f,0xff,0xbc,0xbf,0xe3,0xf0,
0x7d,0x5a,0xb0,0x88,0xe4,0x70,0x60,0x88,0xc8,0x92,0xb3,0x81,0xb0,0xfa,0x2e,0x2e,
0x5c,0x44,0xf6,0x13,0x1b,0x18,0xab,0xff,0xd2,0xdc,0x25,0x6d,0x6c,0x9a,0xa7,0xf9,
0x43,0xbb,0xef,0xb4,0x3e,0x1f,0x06,0xc0,0x4f,0xff,0x14,0xf9,0xfa,0x37,0x9a,0xa1,
0x34,0x83,0xd3,0x3c,0xcd,0x1f,0xda,0x7d,0xa7,0xf5,0xd9,0x81,0x31,0x9c,0xa7,0xf9,
0x43,0xbb,0xef,0xb4,0x3e,0x9f,0x0d,0x8c,0x9f,0x7e,0x87,0x33,0x94,0x66,0x70,0x9a,
0xa7,0xf9,0x43,0xbb,0xef,0xb4,0x3e,0xe3,0x07,0x46,0x7a,0xbf,0xee,0x4c,0xf7,0x83,
0xf6,0x00,0xa7,0xf7,0xf9,0x74,0x10,0x2c,0x74,0x39,0x30,0x9a,0x30,0xdd,0x0f,0x07,
0x46,0xc6,0xef,0x95,0xbe,0xd3,0x7b,0x68,0x30,0x9b,0xe9,0x7e,0x38,0x30,0x32,0x7e,
0x9f,0xfd,0x5e,0x7d,0xa7,0xc1,0x70,0xa6,0xfb,0xe1,0xc0,0xc8,0xf8,0x7d,0xf6,0x7b,
0xf5,0xdd,0x38,0x83,0x77,0x17,0xb0,0xfa,0x3c,0xfa,0x7a,0x5a,0xfe,0xb4,0x3e,0x57,
0xeb,0xf9,0xad,0xde,0xab,0xf9,0xff,0xff,0x4d,0x33,0x78,0x5a,0xc1,0xe9,0x0f,0x3e,
0x7d,0xbf,0xea,0x3e,0x75,0x3b,0x7f,0x97,0xff,0x0e,0x0c,0x68,0xc1,0xe9,0x0f,0x3e,
0x7d,0xbf,0xea,0x3e,0x75,0x3b,0x9f,0xde,0x2f,0x9c,0xc1,0xd3,0x0a,0x4e,0x7f,0xf0,
0xe9,0xfb,0x55,0xf7,0xa9,0xdb,0xf9,0xf4,0x7e,0xc5,0x2f,0x44,0x7f,0x10,0xdd,0xce,
0xeb,0xe6,0xe7,0xee,0xf5,0xbb,0xfd,0xee,0x96,0xdf,0x72,0xff,0xdb,0x1b,0xdc,0x34,
0x2c,0x6d,0x10,0x3d,0x50,0xba,0xbe,0x6e,0xeb,0x77,0xfb,0xdd,0x2d,0xbf,0xe5,0xfe,
0xb7,0x37,0xb8,0x69,0x58,0xda,0x20,0x7a,0xa0,0x74,0x7d,0xdd,0xd6,0xef,0xf6,0xbb,
0x5b,0x7e,0xcb,0xfd,0x6f,0x6f,0x70,0xd3,0xb0,0xb4,0x41,0xf4,0x40,0xe9,0xfa,0xba,
0xad,0xdf,0xed,0x77,0xb7,0xfc,0x96,0xfb,0xdf,0xde,0xa0,0x58,0x60,0xba,0x60,0xe9,
0xfb,0x7e,0xba,0x90,0xd5,0xe7,0xa5,0x0b,0x9f,0x5e,0x9f,0xee,0x97,0x03,0x03,0x56,
0x10,0x07,0x86,0x03,0xa3,0xb2,0x9f,0x34,0xfd,0x87,0xfd,0xab,0x0b,0xfd,0xe9,0x07,
0x94,0x36,0xd8,0x81,0xe1,0xc0,0xa8,0xec,0x27,0x4d,0xff,0x61,0xff,0xea,0x42,0x7f,
0xfa,0x01,0xa5,0x0d,0x76,0x60,0x38,0x30,0x2a,0xfb,0x49,0xd3,0x7f,0xd8,0xbf,0xba,
0xd0,0x9f,0x7e,0x40,0x69,0x83,0xe9,0xe7,0xd1,0x0b,0xb7,0x3b,0xcf,0x74,0x9f,0xa7,
0xe5,0x17,0x0f,0x38,0x7d,0x3e,0x3d,0x50,0xba,0x3e,0x7a,0x9e,0xe9,0x3e,0x4f,0xcb,
0x2f,0x1e,0x70,0xfa,0x7c,0x7a,0xa0,0x74,0x7d,0xf4,0x3c,0xd3,0x7d,0x9e,0x96,0x5f,
0x3c,0xe0,0xf4,0xf9,0xf4,0x40,0xe9,0xfa,0xe8,0x79,0xa6,0xfb,0x3c,0x2d,0xbf,0x78,
0xc0,0xbb,0x0b,0xb7,0xbb,0x10,0xe9,0x02,0x54,0xaf,0xa7,0xdd,0x97,0xd6,0x27,0x7a,
0xbf,0x2e,0xeb,0xa9,0x36,0xb4,0x5b,0xc0,0xb4,0xf3,0xe8,0xeb,0x69,0xf7,0xa5,0xf5,
0x89,0xde,0xaf,0xcb,0x7a,0xaa,0x0d,0xed,0x16,0x30,0xed,0x3c,0xfa,0x7a,0xda,0x7d,
0x69,0x7d,0xa2,0xf7,0xeb,0xb2,0x9e,0x6a,0x43,0xbb,0x05,0x4c,0x3b,0x8f,0xbe,0x9e,
0x76,0x5f,0x5a,0x9f,0xe8,0xfd,0xba,0xac,0x67,0x77,0x00,0x22,0xd2,0x97,0xb8,0x00,
0x11,0xe9,0x43,0x5c,0x80,0x88,0xf4,0x21,0x2e,0x40,0x44,0xfa,0x10,0x17,0x20,0x22,
0x7d,0x88,0x0b,0x10,0x91,0x3e,0xc4,0x05,0x88,0x48,0x1f,0xe2,0x02,0x44,0xa4,0x0f,
0x71,0x01,0x22,0xd2,0x87,0xb8,0x00,0x11,0xe9,0x43,0x5c,0x80,0x88,0xf4,0x21,0x2e,
0x40,0x44,0xfa,0xf0,0x0f,0xf7,0x8f,0xab,0x13,0x77,0x5a,0x22,0xa2,0x00,0x00,0x00,
0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
};
static unsigned char png_logo_powkiddy[662] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x2c,0x08,0x06,0x00,0x00,0x00,0x83,0x80,0xc6,
0xe5,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0e,0xc3,0x00,0x00,0x0e,
0xc3,0x01,0xc7,0x6f,0xa8,0x64,0x00,0x00,0x02,0x48,0x49,0x44,0x41,0x54,0x78,0x9c,
0xed,0x98,0x41,0x6e,0xc4,0x30,0x0c,0x03,0xf3,0xa4,0xf6,0xff,0x8f,0x4b,0x6f,0xb9,
0x14,0xae,0xd7,0xb1,0x2c,0x52,0xea,0x1c,0xe6,0x60,0x20,0x36,0x69,0xc9,0x22,0x16,
0x7b,0xdd,0xf7,0x7d,0x01,0x40,0x4f,0xae,0xef,0xaf,0xfb,0x2f,0x7e,0x7d,0xaf,0x36,
0x0c,0x00,0xe7,0x20,0x10,0x00,0xe0,0x1a,0x0d,0xfc,0xec,0x3b,0xb9,0x71,0x00,0x88,
0x47,0x1e,0x08,0xb3,0x9f,0x26,0xbb,0xa8,0x0b,0x5c,0x9d,0xec,0xfa,0xa2,0xa7,0xed,
0xf3,0xcc,0xe7,0xf0,0x3e,0x59,0x05,0x22,0x10,0xb4,0x74,0x1f,0x98,0xee,0x7a,0xab,
0xbe,0x66,0x3e,0x87,0xf7,0xc9,0x2a,0x10,0x81,0xa0,0xa5,0xfb,0xc0,0x74,0xd7,0x5b,
0xf5,0x35,0x5a,0xcf,0xbe,0x4b,0x2b,0x10,0x81,0xa0,0xa5,0xfb,0xc0,0x74,0xd7,0x5b,
0xf5,0x35,0x5a,0xcf,0xbe,0xb3,0x2d,0x90,0x6b,0xc1,0xab,0xd2,0x7d,0x60,0xba,0xeb,
0xad,0xfa,0x9a,0xf9,0x1c,0xde,0xc7,0xb5,0x40,0xae,0x05,0xaf,0x4a,0xf7,0x81,0xe9,
0xae,0xb7,0xea,0x6b,0xe6,0x73,0x78,0x1f,0xd7,0x02,0xb9,0x16,0xbc,0x2a,0xdd,0x07,
0xa6,0xbb,0xde,0xaa,0xaf,0xd1,0x7a,0xf6,0x9d,0x6d,0x81,0x5c,0x0b,0x5e,0x95,0xee,
0x03,0xd3,0x5d,0x6f,0xd5,0xd7,0x68,0x3d,0xfb,0xce,0xb6,0x40,0xbb,0xe7,0xcd,0xf6,
0x9f,0x3e,0xdf,0x6d,0xbf,0xda,0x6f,0x74,0xff,0xb3,0xfb,0xb9,0xab,0xa7,0xea,0xf7,
0xa7,0xe7,0x3e,0xeb,0xac,0x06,0x66,0x9f,0xa7,0x7e,0x40,0x6e,0xfb,0xd5,0x7e,0xa3,
0xfb,0x9f,0xdd,0xcf,0x5d,0x3d,0x55,0xbf,0x3f,0x3d,0xf7,0x59,0x67,0x35,0x30,0xfb,
0x3c,0xf5,0x03,0x72,0xdb,0xaf,0xf6,0x1b,0xdd,0xff,0xec,0x7e,0xee,0xea,0xa9,0xea,
0xbf,0xec,0x33,0xab,0x81,0xd9,0xe7,0xa9,0x1f,0x90,0xdb,0x7e,0xb5,0xdf,0xe8,0xfe,
0x67,0xf7,0x73,0x57,0x4f,0x55,0xff,0x65,0x9f,0xae,0x0d,0x64,0xc0,0xb4,0x7e,0xdd,
0xfd,0xa1,0xb7,0xb6,0xff,0xe3,0x39,0x0e,0x3b,0x68,0x73,0xe0,0xd5,0x05,0xab,0xd6,
0xe0,0xd3,0x7e,0xdd,0xfd,0xa1,0x47,0x20,0x94,0x1e,0x30,0xf5,0x7e,0xf7,0xfb,0xa1,
0x47,0x20,0x10,0x08,0xc6,0x7e,0xdd,0xfd,0xa1,0x57,0x3c,0x10,0xa2,0x74,0x4e,0xe9,
0x57,0x6b,0x70,0xb4,0xdf,0xe8,0xfe,0xb9,0xd7,0xb3,0xbb,0xde,0xeb,0x39,0x0a,0x3b,
0x88,0x40,0x20,0x10,0x0a,0xd5,0xb3,0xbb,0xde,0xeb,0x39,0x0a,0x3b,0x88,0x40,0x20,
0x10,0x0a,0xd5,0xb3,0xbb,0xde,0xeb,0x39,0x0a,0x3b,0x88,0x40,0x20,0x10,0x0a,0xd5,
0xb3,0xbb,0xde,0xeb,0x39,0x0a,0x3b,0x88,0x40,0x28,0x1d,0x08,0xd5,0xfc,0xa1,0x47,
0x20,0x94,0x1e,0x30,0xf5,0x7e,0xf7,0xfb,0xa1,0xe7,0x31,0x5f,0x36,0x03,0xa9,0xd6,
0xaf,0xd6,0x60,0x02,0x01,0x3d,0x02,0xa1,0xf0,0x80,0xa9,0xf7,0xbb,0xdf,0x0f,0x3d,
0x8f,0xf9,0xb2,0x19,0xc8,0x68,0x66,0x7e,0xa2,0xfd,0xee,0xea,0x45,0xa3,0x7e,0x90,
0xa7,0xf5,0xa2,0xfb,0xd9,0x5d,0x8f,0x40,0x48,0x2e,0x70,0x74,0x83,0xa3,0xfd,0x9f,
0x7e,0xc0,0x04,0x82,0xb7,0x1e,0x81,0x90,0x5c,0xe0,0xe8,0x06,0x47,0xfb,0x3f,0xfd,
0x80,0x09,0x04,0x6f,0x3d,0x02,0x21,0xb9,0xc0,0xd1,0x0d,0x8e,0xf6,0x7f,0xfa,0x01,
0x13,0x08,0xde,0x7a,0xe9,0x81,0x00,0x00,0xe7,0x20,0x10,0x00,0xe0,0x81,0x40,0x00,
0x80,0x07,0x02,0x01,0x00,0x1e,0x08,0x04,0x80,0x46,0xb8,0xfe,0x89,0xf8,0xcb,0xa7,
0xba,0x50,0x00,0xff,0x01,0x02,0x01,0x00,0x1e,0x08,0x04,0x00,0x78,0x20,0x10,0x00,
0xa0,0x1c,0x72,0x03,0x00,0xe0,0x83,0xdc,0x00,0x00,0xf8,0x20,0x37,0x00,0x00,0x3e,
0xfc,0x00,0x79,0x01,0x25,0x88,0xa9,0x91,0x60,0x97,0x00,0x00,0x00,0x00,0x49,0x45,
0x4e,0x44,0xae,0x42,0x60,0x82
};
static unsigned char png_logo_miyoo[490] = {
0x89,0x50,0x4E,0x47,0x0D,0x0A,0x1A,0x0A,0x00,0x00,0x00,0x0D,0x49,0x48,0x44,0x52,
0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x2C,0x08,0x06,0x00,0x00,0x00,0x83,0x80,0xC6,
0xE5,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0E,0xC3,0x00,0x00,0x0E,
0xC3,0x01,0xC7,0x6F,0xA8,0x64,0x00,0x00,0x01,0x82,0x49,0x44,0x41,0x54,0x78,0x9C,
0xED,0xDD,0x51,0x52,0x83,0x30,0x14,0x05,0xD0,0xE2,0xB8,0x21,0xDD,0xFF,0x1A,0xEC,
0x92,0xF0,0x47,0xEF,0x74,0x98,0xA1,0x81,0x26,0x91,0x80,0xE7,0xFC,0x69,0x81,0x50,
0x8B,0x8F,0x9B,0xD7,0x74,0x3A,0xCD,0xF3,0x7C,0x03,0xAE,0x61,0xFA,0xFC,0x78,0xFA,
0x0F,0x3D,0x7F,0xDD,0xA7,0x67,0x8F,0xBF,0xB5,0x3D,0x1D,0xE0,0xCC,0xDE,0x8F,0x3E,
0x01,0xA0,0xDE,0x6F,0x32,0x28,0x25,0x80,0xD2,0x76,0x12,0x02,0x10,0x53,0xAF,0x1E,
0x42,0xED,0x5C,0xA6,0xF6,0x78,0xAD,0xC7,0xA7,0x4E,0xE9,0xF5,0xD8,0x6B,0xEB,0x9D,
0xB0,0x97,0xDE,0xD7,0xDB,0xD6,0xE3,0x2D,0xEF,0xF8,0x6B,0xFB,0xAD,0x9D,0xEF,0xF2,
0xF7,0x12,0x02,0x10,0x7A,0x08,0x70,0x41,0x5B,0x13,0xC1,0x92,0x84,0x00,0x84,0x84,
0x40,0x17,0xBD,0xE7,0xD4,0xCB,0x9F,0xF7,0x1E,0xEF,0xEA,0x3D,0xA4,0x57,0xFF,0x3E,
0x12,0x02,0x10,0x12,0x02,0x5C,0x90,0x1E,0x02,0x50,0xED,0xB0,0x84,0x50,0x9A,0xE3,
0xD4,0xBE,0x8F,0xDC,0x7B,0x9D,0xC3,0x5F,0xEF,0x5F,0xD2,0xFA,0xF9,0xB6,0x1E,0xAF,
0xD6,0xD5,0xE6,0xFC,0xB5,0x3D,0x90,0xE5,0x7E,0xA5,0x04,0xB0,0x75,0x3B,0x09,0x01,
0x08,0x3D,0x04,0xB8,0x80,0xD2,0x4A,0xC5,0xE5,0x76,0x6B,0x24,0x04,0x20,0x86,0x49,
0x08,0xAD,0xD7,0x9E,0x8F,0xFE,0x59,0x86,0xD6,0x3D,0x87,0xDA,0x9E,0x4C,0xEB,0xF1,
0x46,0x37,0x5A,0xCF,0xA6,0xD5,0xF5,0x5F,0xFB,0x3A,0x48,0x08,0x40,0x28,0x08,0x40,
0x28,0x08,0x40,0x1C,0xD6,0x43,0x28,0xCD,0x71,0x5B,0xAF,0x4B,0x80,0x47,0x47,0xF7,
0x3C,0x46,0xBD,0xBE,0x25,0x04,0x20,0x14,0x04,0x20,0x14,0x04,0x20,0x86,0x59,0x87,
0x70,0xF4,0x9C,0x8E,0xB1,0x8D,0xBE,0xAE,0xA4,0xA4,0x74,0x7E,0xA3,0xF4,0x14,0x24,
0x04,0x20,0x14,0x04,0x20,0x14,0x04,0x20,0x86,0xE9,0x21,0x1C,0xAD,0x34,0x87,0xEB,
0xFD,0xBD,0x02,0xB5,0xE3,0xD5,0xCE,0x51,0x47,0x1F,0x6F,0xEF,0xF8,0xBC,0x46,0x42,
0x00,0x42,0x41,0x00,0x42,0x41,0x00,0xA2,0xDB,0x77,0x3B,0xFE,0x37,0x67,0x7F,0x9F,
0x1C,0x6E,0x37,0x09,0x01,0x78,0xA0,0x20,0x00,0xA1,0x20,0x00,0x61,0x1D,0xC2,0x8F,
0xDE,0xEB,0x0C,0xE0,0x0C,0x24,0x04,0x20,0x14,0x04,0x20,0x14,0x04,0x20,0xAC,0x43,
0x00,0x42,0x42,0x00,0x42,0x41,0x00,0x42,0x41,0x00,0xE2,0x1B,0xE2,0x95,0xF2,0xD3,
0xA5,0x12,0xE0,0x55,0x00,0x00,0x00,0x0E,0x65,0x58,0x49,0x66,0x4D,0x4D,0x00,0x2A,
0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD2,0x53,0x93,0x00,0x00,
0x00,0x00,0x49,0x45,0x4E,0x44,0xAE,0x42,0x60,0x82
};
static unsigned char wav_logosound[75224] = {
0x52,0x49,0x46,0x46,0xd0,0x25,0x01,0x00,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,0x20,
0x10,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x22,0x56,0x00,0x00,0x88,0x58,0x01,0x00,
0x04,0x00,0x10,0x00,0x64,0x61,0x74,0x61,0x28,0x25,0x01,0x00,0xff,0xff,0xff,0xff,
0x07,0x00,0x07,0x00,0x01,0x00,0x01,0x00,0xe2,0xff,0xe2,0xff,0xc3,0xff,0xc3,0xff,
0xec,0xff,0xec,0xff,0xba,0xff,0xba,0xff,0xc8,0xff,0xc8,0xff,0x23,0x00,0x23,0x00,
0xce,0xff,0xce,0xff,0xb7,0xff,0xb7,0xff,0xee,0xfe,0xee,0xfe,0xdd,0xff,0xdd,0xff,
0x7a,0x00,0x7a,0x00,0xee,0x00,0xee,0x00,0x95,0x00,0x95,0x00,0xf8,0xfd,0xf8,0xfd,
0x37,0x00,0x37,0x00,0x13,0xf9,0x13,0xf9,0xe8,0xef,0xe8,0xef,0xa7,0xf0,0xa7,0xf0,
0x6d,0x08,0x6d,0x08,0xf1,0x15,0xf1,0x15,0x7e,0x11,0x7e,0x11,0xbc,0x14,0xbc,0x14,
0xa8,0x12,0xa8,0x12,0xc2,0x13,0xc2,0x13,0x7a,0x11,0x7a,0x11,0x0e,0x13,0x0e,0x13,
0xdd,0x10,0xdd,0x10,0x98,0x11,0x98,0x11,0x9b,0x06,0x9b,0x06,0xc5,0xec,0xc5,0xec,
0xc8,0xe9,0xc8,0xe9,0xac,0xe9,0xac,0xe9,0xb7,0xea,0xb7,0xea,0xc6,0xea,0xc6,0xea,
0xb7,0xeb,0xb7,0xeb,0x0f,0xee,0x0f,0xee,0xfc,0xed,0xfc,0xed,0x9b,0xee,0x9b,0xee,
0xa3,0xef,0xa3,0xef,0xe8,0x09,0xe8,0x09,0xb7,0x17,0xb7,0x17,0x7b,0x13,0x7b,0x13,
0x7f,0x15,0x7f,0x15,0x27,0x13,0x27,0x13,0x49,0x13,0x49,0x13,0x12,0x10,0x12,0x10,
0x0c,0x12,0x0c,0x12,0x32,0x0f,0x32,0x0f,0x6a,0x11,0x6a,0x11,0xf6,0x04,0xf6,0x04,
0x3b,0xeb,0x3b,0xeb,0xcb,0xea,0xcb,0xea,0x97,0xe9,0x97,0xe9,0x5a,0xeb,0x5a,0xeb,
0x0e,0xed,0x0e,0xed,0xa4,0xee,0xa4,0xee,0xf7,0xed,0xf7,0xed,0x7b,0xee,0x7b,0xee,
0xf8,0xef,0xf8,0xef,0x7a,0xef,0x7a,0xef,0xcc,0x08,0xcc,0x08,0x6a,0x17,0x6a,0x17,
0x71,0x14,0x71,0x14,0x9d,0x15,0x9d,0x15,0xce,0x12,0xce,0x12,0xa2,0x12,0xa2,0x12,
0xa6,0x0f,0xa6,0x0f,0x8b,0x11,0x8b,0x11,0x9e,0x10,0x9e,0x10,0xad,0x13,0xad,0x13,
0xa5,0x06,0xa5,0x06,0x25,0xeb,0x25,0xeb,0x69,0xeb,0x69,0xeb,0xde,0xea,0xde,0xea,
0x26,0xec,0x26,0xec,0xd5,0xec,0xd5,0xec,0x96,0xee,0x96,0xee,0x87,0xee,0x87,0xee,
0x8c,0xec,0x8c,0xec,0x2a,0xec,0x2a,0xec,0x02,0xed,0x02,0xed,0x6f,0x08,0x6f,0x08,
0x0e,0x16,0x0e,0x16,0xbf,0x14,0xbf,0x14,0x11,0x16,0x11,0x16,0xdb,0x13,0xdb,0x13,
0x98,0x14,0x98,0x14,0x73,0x12,0x73,0x12,0x28,0x13,0x28,0x13,0x3e,0x11,0x3e,0x11,
0xea,0x12,0xea,0x12,0x30,0x04,0x30,0x04,0x80,0xea,0x80,0xea,0x3e,0xea,0x3e,0xea,
0x9e,0xe9,0x9e,0xe9,0xdc,0xea,0xdc,0xea,0xdf,0xeb,0xdf,0xeb,0x5d,0xec,0x5d,0xec,
0x07,0xee,0x07,0xee,0x33,0xee,0x33,0xee,0xef,0xef,0xef,0xef,0x5e,0xf1,0x5e,0xf1,
0xcb,0x0b,0xcb,0x0b,0xd7,0x17,0xd7,0x17,0x28,0x14,0x28,0x14,0x2a,0x16,0x2a,0x16,
0x53,0x13,0x53,0x13,0xc1,0x14,0xc1,0x14,0x53,0x12,0x53,0x12,0xc7,0x12,0xc7,0x12,
0x5c,0x0f,0x5c,0x0f,0xb9,0x11,0xb9,0x11,0x35,0x04,0x35,0x04,0x4d,0xea,0x4d,0xea,
0x32,0xeb,0x32,0xeb,0xcf,0xea,0xcf,0xea,0xb6,0xeb,0xb6,0xeb,0xa2,0xeb,0xa2,0xeb,
0x67,0xec,0x67,0xec,0xbe,0xed,0xbe,0xed,0xa3,0xee,0xa3,0xee,0xbf,0xef,0xbf,0xef,
0xe1,0xf0,0xe1,0xf0,0x5f,0x0b,0x5f,0x0b,0x9e,0x17,0x9e,0x17,0x8d,0x14,0x8d,0x14,
0x44,0x15,0x44,0x15,0x0c,0x13,0x0c,0x13,0x39,0x14,0x39,0x14,0xaf,0x11,0xaf,0x11,
0x53,0x12,0x53,0x12,0xa3,0x0f,0xa3,0x0f,0x2f,0x11,0x2f,0x11,0x2e,0x02,0x2e,0x02,
0xa6,0xe9,0xa6,0xe9,0xd7,0xe9,0xd7,0xe9,0xe3,0xe9,0xe3,0xe9,0xa6,0xeb,0xa6,0xeb,
0x39,0xec,0x39,0xec,0x27,0xed,0x27,0xed,0xe5,0xed,0xe5,0xed,0x37,0xee,0x37,0xee,
0x6f,0xef,0x6f,0xef,0x4c,0xf2,0x4c,0xf2,0x82,0x0c,0x82,0x0c,0xb5,0x18,0xb5,0x18,
0xa2,0x15,0xa2,0x15,0x5f,0x16,0x5f,0x16,0xc5,0x13,0xc5,0x13,0xdd,0x13,0xdd,0x13,
0xe1,0x11,0xe1,0x11,0x80,0x13,0x80,0x13,0xc2,0x10,0xc2,0x10,0x90,0x11,0x90,0x11,
0x40,0x03,0x40,0x03,0xef,0xe9,0xef,0xe9,0xa2,0xe9,0xa2,0xe9,0xfb,0xe9,0xfb,0xe9,
0x99,0xea,0x99,0xea,0x40,0xeb,0x40,0xeb,0xd1,0xec,0xd1,0xec,0x44,0xed,0x44,0xed,
0x49,0xed,0x49,0xed,0xa5,0xef,0xa5,0xef,0x48,0xf1,0x48,0xf1,0xeb,0x0a,0xeb,0x0a,
0x1f,0x18,0x1f,0x18,0xac,0x14,0xac,0x14,0x3c,0x16,0x3c,0x16,0x55,0x14,0x55,0x14,
0xa9,0x14,0xa9,0x14,0x76,0x12,0x76,0x12,0x07,0x14,0x07,0x14,0x83,0x10,0x83,0x10,
0xbd,0x11,0xbd,0x11,0x1f,0x04,0x1f,0x04,0x2b,0xea,0x2b,0xea,0xf9,0xea,0xf9,0xea,
0xcb,0xea,0xcb,0xea,0x15,0xeb,0x15,0xeb,0xed,0xeb,0xed,0xeb,0xdb,0xec,0xdb,0xec,
0x27,0xed,0x27,0xed,0xb3,0xed,0xb3,0xed,0xae,0xef,0xae,0xef,0x59,0xf0,0x59,0xf0,
0x13,0x0b,0x13,0x0b,0x6b,0x17,0x6b,0x17,0xbf,0x13,0xbf,0x13,0xf9,0x15,0xf9,0x15,
0x51,0x13,0x51,0x13,0xc8,0x13,0xc8,0x13,0x98,0x11,0x98,0x11,0x33,0x13,0x33,0x13,
0x38,0x10,0x38,0x10,0x6c,0x12,0x6c,0x12,0x45,0x04,0x45,0x04,0xa6,0xea,0xa6,0xea,
0xad,0xeb,0xad,0xeb,0xde,0xea,0xde,0xea,0x30,0xec,0x30,0xec,0xa9,0xec,0xa9,0xec,
0x4f,0xed,0x4f,0xed,0x14,0xee,0x14,0xee,0x02,0xee,0x02,0xee,0xd0,0xee,0xd0,0xee,
0xf1,0xef,0xf1,0xef,0xb4,0x0a,0xb4,0x0a,0x90,0x16,0x90,0x16,0x01,0x14,0x01,0x14,
0xc4,0x15,0xc4,0x15,0xd9,0x12,0xd9,0x12,0x1d,0x14,0x1d,0x14,0x3e,0x12,0x3e,0x12,
0x86,0x13,0x86,0x13,0xfa,0x10,0xfa,0x10,0xc0,0x13,0xc0,0x13,0xf4,0x04,0xf4,0x04,
0xd5,0xea,0xd5,0xea,0x4d,0xeb,0x4d,0xeb,0xa6,0xea,0xa6,0xea,0xd9,0xeb,0xd9,0xeb,
0x7a,0xec,0x7a,0xec,0xb1,0xec,0xb1,0xec,0xc7,0xec,0xc7,0xec,0x9c,0xed,0x9c,0xed,
0x5e,0xee,0x5e,0xee,0xe9,0xee,0xe9,0xee,0x1a,0x0a,0x1a,0x0a,0x1e,0x17,0x1e,0x17,
0xe9,0x13,0xe9,0x13,0x77,0x15,0x77,0x15,0xf7,0x12,0xf7,0x12,0x08,0x14,0x08,0x14,
0xc9,0x12,0xc9,0x12,0xad,0x13,0xad,0x13,0xec,0x10,0xec,0x10,0xcd,0x13,0xcd,0x13,
0x74,0x05,0x74,0x05,0x16,0xeb,0x16,0xeb,0x1b,0xeb,0x1b,0xeb,0xb7,0xea,0xb7,0xea,
0xe9,0xeb,0xe9,0xeb,0x50,0xec,0x50,0xec,0xa3,0xeb,0xa3,0xeb,0xca,0xec,0xca,0xec,
0xfa,0xed,0xfa,0xed,0x9b,0xee,0x9b,0xee,0x1f,0xf0,0x1f,0xf0,0xfc,0x0a,0xfc,0x0a,
0x5f,0x17,0x5f,0x17,0x3c,0x14,0x3c,0x14,0x0f,0x16,0x0f,0x16,0xec,0x12,0xec,0x12,
0xca,0x14,0xca,0x14,0x4e,0x13,0x4e,0x13,0x06,0x13,0x06,0x13,0x6b,0x10,0x6b,0x10,
0x68,0x12,0x68,0x12,0x9d,0x03,0x9d,0x03,0xee,0xe9,0xee,0xe9,0x33,0xeb,0x33,0xeb,
0xbd,0xea,0xbd,0xea,0xe7,0xeb,0xe7,0xeb,0x96,0xec,0x96,0xec,0xf3,0xeb,0xf3,0xeb,
0x21,0xed,0x21,0xed,0xda,0xed,0xda,0xed,0x7e,0xef,0x7e,0xef,0x8d,0xf1,0x8d,0xf1,
0x81,0x0c,0x81,0x0c,0x15,0x18,0x15,0x18,0xe7,0x13,0xe7,0x13,0xdf,0x15,0xdf,0x15,
0xbb,0x12,0xbb,0x12,0x1a,0x14,0x1a,0x14,0x6a,0x12,0x6a,0x12,0x75,0x13,0x75,0x13,
0x92,0x10,0x92,0x10,0xc2,0x11,0xc2,0x11,0x4f,0x02,0x4f,0x02,0x4c,0xe8,0x4c,0xe8,
0x78,0xea,0x78,0xea,0x0b,0xea,0x0b,0xea,0x71,0xeb,0x71,0xeb,0xe1,0xec,0xe1,0xec,
0x0e,0xed,0x0e,0xed,0x67,0xed,0x67,0xed,0xcc,0xed,0xcc,0xed,0x77,0xef,0x77,0xef,
0x85,0xf1,0x85,0xf1,0xd2,0x0d,0xd2,0x0d,0x36,0x19,0x36,0x19,0xce,0x14,0xce,0x14,
0xac,0x16,0xac,0x16,0x18,0x13,0x18,0x13,0x64,0x13,0x64,0x13,0xc1,0x11,0xc1,0x11,
0x59,0x13,0x59,0x13,0x19,0x10,0x19,0x10,0x6d,0x12,0x6d,0x12,0xef,0x02,0xef,0x02,
0x4d,0xe8,0x4d,0xe8,0x04,0xea,0x04,0xea,0xf2,0xe9,0xf2,0xe9,0x75,0xeb,0x75,0xeb,
0x7f,0xec,0x7f,0xec,0x2a,0xed,0x2a,0xed,0x19,0xed,0x19,0xed,0xc5,0xed,0xc5,0xed,
0xff,0xee,0xff,0xee,0x59,0xf0,0x59,0xf0,0x3e,0x0c,0x3e,0x0c,0x45,0x18,0x45,0x18,
0xb3,0x14,0xb3,0x14,0xb6,0x15,0xb6,0x15,0xce,0x12,0xce,0x12,0xf1,0x13,0xf1,0x13,
0xb1,0x12,0xb1,0x12,0xbc,0x13,0xbc,0x13,0x86,0x10,0x86,0x10,0x49,0x13,0x49,0x13,
0xd1,0x03,0xd1,0x03,0xfa,0xe9,0xfa,0xe9,0xf5,0xea,0xf5,0xea,0xab,0xea,0xab,0xea,
0x41,0xec,0x41,0xec,0xd0,0xec,0xd0,0xec,0x4c,0xec,0x4c,0xec,0xfb,0xeb,0xfb,0xeb,
0x60,0xed,0x60,0xed,0x24,0xee,0x24,0xee,0xf0,0xef,0xf0,0xef,0xa8,0x0b,0xa8,0x0b,
0x8d,0x17,0x8d,0x17,0x22,0x14,0x22,0x14,0x82,0x15,0x82,0x15,0xe0,0x12,0xe0,0x12,
0xb6,0x13,0xb6,0x13,0xf7,0x12,0xf7,0x12,0x19,0x14,0x19,0x14,0xf7,0x10,0xf7,0x10,
0x22,0x13,0x22,0x13,0xbc,0x03,0xbc,0x03,0xea,0xe9,0xea,0xe9,0x8f,0xea,0x8f,0xea,
0xad,0xea,0xad,0xea,0x7c,0xeb,0x7c,0xeb,0x40,0xec,0x40,0xec,0x0e,0xed,0x0e,0xed,
0x1d,0xed,0x1d,0xed,0x94,0xed,0x94,0xed,0xb8,0xee,0xb8,0xee,0xbc,0xf0,0xbc,0xf0,
0xa2,0x0b,0xa2,0x0b,0x0f,0x18,0x0f,0x18,0x6f,0x14,0x6f,0x14,0x15,0x16,0x15,0x16,
0x1c,0x14,0x1c,0x14,0x28,0x14,0x28,0x14,0x00,0x12,0x00,0x12,0x2c,0x13,0x2c,0x13,
0x7d,0x10,0x7d,0x10,0x6d,0x12,0x6d,0x12,0x90,0x03,0x90,0x03,0xa2,0xe9,0xa2,0xe9,
0x7f,0xea,0x7f,0xea,0x5e,0xea,0x5e,0xea,0x79,0xea,0x79,0xea,0x70,0xeb,0x70,0xeb,
0xa8,0xec,0xa8,0xec,0x52,0xed,0x52,0xed,0xf3,0xed,0xf3,0xed,0x15,0xef,0x15,0xef,
0xdf,0xf0,0xdf,0xf0,0x10,0x0c,0x10,0x0c,0x29,0x18,0x29,0x18,0x7b,0x14,0x7b,0x14,
0xb4,0x16,0xb4,0x16,0x31,0x14,0x31,0x14,0x6e,0x14,0x6e,0x14,0x35,0x12,0x35,0x12,
0x0d,0x13,0x0d,0x13,0xad,0x10,0xad,0x10,0x80,0x12,0x80,0x12,0x08,0x03,0x08,0x03,
0xad,0xe9,0xad,0xe9,0xd5,0xea,0xd5,0xea,0xe1,0xe9,0xe1,0xe9,0x0c,0xeb,0x0c,0xeb,
0x37,0xec,0x37,0xec,0xe2,0xec,0xe2,0xec,0x0a,0xee,0x0a,0xee,0xfc,0xed,0xfc,0xed,
0x96,0xee,0x96,0xee,0x80,0xf1,0x80,0xf1,0x8e,0x0c,0x8e,0x0c,0x4f,0x17,0x4f,0x17,
0x2e,0x14,0x2e,0x14,0x3e,0x16,0x3e,0x16,0x1f,0x13,0x1f,0x13,0xd8,0x13,0xd8,0x13,
0xa9,0x11,0xa9,0x11,0x01,0x13,0x01,0x13,0x46,0x11,0x46,0x11,0xa9,0x12,0xa9,0x12,
0x81,0x02,0x81,0x02,0x9c,0xe9,0x9c,0xe9,0x72,0xeb,0x72,0xeb,0xed,0xea,0xed,0xea,
0xbe,0xeb,0xbe,0xeb,0x88,0xec,0x88,0xec,0x76,0xed,0x76,0xed,0x96,0xed,0x96,0xed,
0x19,0xed,0x19,0xed,0x57,0xee,0x57,0xee,0x60,0xf1,0x60,0xf1,0xca,0x0c,0xca,0x0c,
0xc9,0x17,0xc9,0x17,0x5a,0x13,0x5a,0x13,0xdd,0x14,0xdd,0x14,0xd3,0x12,0xd3,0x12,
0x6d,0x13,0x6d,0x13,0xcc,0x11,0xcc,0x11,0xfd,0x13,0xfd,0x13,0xaa,0x11,0xaa,0x11,
0xf6,0x12,0xf6,0x12,0xf9,0x02,0xf9,0x02,0x98,0xe9,0x98,0xe9,0x56,0xeb,0x56,0xeb,
0xa1,0xeb,0xa1,0xeb,0x84,0xec,0x84,0xec,0xc7,0xec,0xc7,0xec,0xd9,0xec,0xd9,0xec,
0x73,0xec,0x73,0xec,0x99,0xec,0x99,0xec,0xef,0xed,0xef,0xed,0xfc,0xf0,0xfc,0xf0,
0x85,0x0c,0x85,0x0c,0xca,0x17,0xca,0x17,0xef,0x13,0xef,0x13,0xff,0x14,0xff,0x14,
0x5f,0x12,0x5f,0x12,0xb0,0x13,0xb0,0x13,0xd8,0x12,0xd8,0x12,0x40,0x14,0x40,0x14,
0x54,0x11,0x54,0x11,0xb0,0x12,0xb0,0x12,0xa7,0x02,0xa7,0x02,0x73,0xe9,0x73,0xe9,
0x7a,0xea,0x7a,0xea,0x7f,0xea,0x7f,0xea,0x48,0xec,0x48,0xec,0xe2,0xec,0xe2,0xec,
0xdc,0xec,0xdc,0xec,0xa7,0xec,0xa7,0xec,0x3b,0xed,0x3b,0xed,0x82,0xee,0x82,0xee,
0x55,0xf1,0x55,0xf1,0xab,0x0c,0xab,0x0c,0x4f,0x18,0x4f,0x18,0x2b,0x15,0x2b,0x15,
0x17,0x16,0x17,0x16,0x50,0x13,0x50,0x13,0x1f,0x14,0x1f,0x14,0x9b,0x12,0x9b,0x12,
0x96,0x13,0x96,0x13,0xb1,0x10,0xb1,0x10,0xc0,0x12,0xc0,0x12,0xa5,0x02,0xa5,0x02,
0x21,0xe9,0x21,0xe9,0xf2,0xe9,0xf2,0xe9,0x92,0xe9,0x92,0xe9,0xc4,0xea,0xc4,0xea,
0x7c,0xeb,0x7c,0xeb,0x33,0xec,0x33,0xec,0xac,0xec,0xac,0xec,0x12,0xee,0x12,0xee,
0x7d,0xee,0x7d,0xee,0xc1,0xf0,0xc1,0xf0,0x0c,0x0d,0x0c,0x0d,0xbf,0x18,0xbf,0x18,
0x45,0x15,0x45,0x15,0xd1,0x16,0xd1,0x16,0xbd,0x14,0xbd,0x14,0x54,0x15,0x54,0x15,
0xc5,0x13,0xc5,0x13,0xea,0x13,0xea,0x13,0xb4,0x10,0xb4,0x10,0xaa,0x13,0xaa,0x13,
0x17,0x03,0x17,0x03,0xe4,0xe8,0xe4,0xe8,0xef,0xe9,0xef,0xe9,0xdb,0xe9,0xdb,0xe9,
0x6c,0xea,0x6c,0xea,0x9c,0xea,0x9c,0xea,0xea,0xea,0xea,0xea,0x42,0xeb,0x42,0xeb,
0x4a,0xed,0x4a,0xed,0xb3,0xed,0xb3,0xed,0x44,0xf0,0x44,0xf0,0x00,0x0d,0x00,0x0d,
0xe1,0x18,0xe1,0x18,0x3b,0x15,0x3b,0x15,0x86,0x16,0x86,0x16,0xab,0x14,0xab,0x14,
0xcd,0x15,0xcd,0x15,0x2f,0x15,0x2f,0x15,0x71,0x15,0x71,0x15,0x18,0x12,0x18,0x12,
0x98,0x14,0x98,0x14,0x5c,0x03,0x5c,0x03,0x5b,0xe9,0x5b,0xe9,0x83,0xea,0x83,0xea,
0x6a,0xea,0x6a,0xea,0x24,0xeb,0x24,0xeb,0x6d,0xeb,0x6d,0xeb,0xdf,0xea,0xdf,0xea,
0x34,0xea,0x34,0xea,0xc3,0xeb,0xc3,0xeb,0xed,0xeb,0xed,0xeb,0x03,0xef,0x03,0xef,
0xa5,0x0b,0xa5,0x0b,0xdd,0x16,0xdd,0x16,0x9c,0x13,0x9c,0x13,0x6b,0x15,0x6b,0x15,
0xac,0x13,0xac,0x13,0x16,0x15,0x16,0x15,0x06,0x15,0x06,0x15,0x1b,0x16,0x1b,0x16,
0x61,0x13,0x61,0x13,0x9f,0x15,0x9f,0x15,0x19,0x04,0x19,0x04,0x15,0xeb,0x15,0xeb,
0x5c,0xec,0x5c,0xec,0x7b,0xeb,0x7b,0xeb,0x06,0xec,0x06,0xec,0xde,0xeb,0xde,0xeb,
0xbd,0xeb,0xbd,0xeb,0x23,0xeb,0x23,0xeb,0xf4,0xeb,0xf4,0xeb,0x09,0xec,0x09,0xec,
0x5b,0xef,0x5b,0xef,0x42,0x0b,0x42,0x0b,0x44,0x15,0x44,0x15,0x7e,0x12,0x7e,0x12,
0x69,0x14,0x69,0x14,0xdd,0x12,0xdd,0x12,0xf9,0x13,0xf9,0x13,0xe9,0x12,0xe9,0x12,
0x72,0x14,0x72,0x14,0xdd,0x11,0xdd,0x11,0x8c,0x14,0x8c,0x14,0x83,0x03,0x83,0x03,
0xbe,0xeb,0xbe,0xeb,0xb3,0xed,0xb3,0xed,0x5e,0xec,0x5e,0xec,0xf8,0xec,0xf8,0xec,
0xe4,0xec,0xe4,0xec,0xda,0xed,0xda,0xed,0x2d,0xed,0x2d,0xed,0x12,0xee,0x12,0xee,
0x0b,0xee,0x0b,0xee,0x8a,0xf0,0x8a,0xf0,0x1a,0x0c,0x1a,0x0c,0xe8,0x14,0xe8,0x14,
0x3a,0x12,0x3a,0x12,0x23,0x14,0x23,0x14,0x22,0x12,0x22,0x12,0x6c,0x12,0x6c,0x12,
0xe1,0x10,0xe1,0x10,0x9b,0x12,0x9b,0x12,0xce,0x0f,0xce,0x0f,0x4a,0x13,0x4a,0x13,
0x79,0x02,0x79,0x02,0x54,0xeb,0x54,0xeb,0x85,0xed,0x85,0xed,0xe8,0xeb,0xe8,0xeb,
0x41,0xed,0x41,0xed,0x97,0xed,0x97,0xed,0x1d,0xef,0x1d,0xef,0x77,0xee,0x77,0xee,
0x26,0xef,0x26,0xef,0xca,0xee,0xca,0xee,0xf1,0xf0,0xf1,0xf0,0x16,0x0c,0x16,0x0c,
0xe9,0x14,0xe9,0x14,0xbb,0x12,0xbb,0x12,0x0b,0x14,0x0b,0x14,0xe4,0x11,0xe4,0x11,
0x23,0x12,0x23,0x12,0x1e,0x10,0x1e,0x10,0x23,0x12,0x23,0x12,0x85,0x0f,0x85,0x0f,
0xbd,0x12,0xbd,0x12,0x98,0x02,0x98,0x02,0x86,0xeb,0x86,0xeb,0x19,0xed,0x19,0xed,
0x45,0xec,0x45,0xec,0xcb,0xed,0xcb,0xed,0xb7,0xed,0xb7,0xed,0x6b,0xef,0x6b,0xef,
0x9b,0xee,0x9b,0xee,0xd6,0xee,0xd6,0xee,0x17,0xef,0x17,0xef,0x26,0xf1,0x26,0xf1,
0xb6,0x0b,0xb6,0x0b,0x25,0x15,0x25,0x15,0x1a,0x12,0x1a,0x12,0xfa,0x12,0xfa,0x12,
0x4a,0x11,0x4a,0x11,0xb3,0x11,0xb3,0x11,0x41,0x10,0x41,0x10,0xb8,0x12,0xb8,0x12,
0xfa,0x0f,0xfa,0x0f,0xb8,0x12,0xb8,0x12,0xc4,0x02,0xc4,0x02,0x34,0xeb,0x34,0xeb,
0x43,0xed,0x43,0xed,0xff,0xec,0xff,0xec,0x16,0xee,0x16,0xee,0x4c,0xee,0x4c,0xee,
0x54,0xef,0x54,0xef,0x33,0xee,0x33,0xee,0x8a,0xee,0x8a,0xee,0xd4,0xee,0xd4,0xee,
0x02,0xf1,0x02,0xf1,0xef,0x0b,0xef,0x0b,0x2b,0x15,0x2b,0x15,0xae,0x11,0xae,0x11,
0x43,0x13,0x43,0x13,0x48,0x11,0x48,0x11,0xf9,0x11,0xf9,0x11,0xdb,0x10,0xdb,0x10,
0xa7,0x12,0xa7,0x12,0xdb,0x0f,0xdb,0x0f,0xb2,0x12,0xb2,0x12,0x9a,0x02,0x9a,0x02,
0x3a,0xeb,0x3a,0xeb,0xc7,0xed,0xc7,0xed,0xb0,0xec,0xb0,0xec,0x9e,0xed,0x9e,0xed,
0xbb,0xed,0xbb,0xed,0x45,0xee,0x45,0xee,0xec,0xed,0xec,0xed,0x03,0xef,0x03,0xef,
0x93,0xef,0x93,0xef,0x99,0xf1,0x99,0xf1,0x79,0x0c,0x79,0x0c,0x19,0x15,0x19,0x15,
0xec,0x11,0xec,0x11,0xeb,0x13,0xeb,0x13,0xbb,0x11,0xbb,0x11,0xf2,0x12,0xf2,0x12,
0x6e,0x11,0x6e,0x11,0x9e,0x12,0x9e,0x12,0x02,0x0f,0x02,0x0f,0xf8,0x11,0xf8,0x11,
0x27,0x02,0x27,0x02,0xe6,0xea,0xe6,0xea,0xba,0xed,0xba,0xed,0x17,0xec,0x17,0xec,
0x67,0xed,0x67,0xed,0x3f,0xed,0x3f,0xed,0xd8,0xed,0xd8,0xed,0xd6,0xed,0xd6,0xed,
0x46,0xef,0x46,0xef,0x3d,0xf0,0x3d,0xf0,0xcc,0xf1,0xcc,0xf1,0x0c,0x0d,0x0c,0x0d,
0x75,0x15,0x75,0x15,0x9d,0x12,0x9d,0x12,0x7e,0x14,0x7e,0x14,0xb4,0x11,0xb4,0x11,
0xfc,0x12,0xfc,0x12,0xc9,0x10,0xc9,0x10,0x07,0x12,0x07,0x12,0x6e,0x0e,0x6e,0x0e,
0xd3,0x11,0xd3,0x11,0xdf,0x01,0xdf,0x01,0x50,0xea,0x50,0xea,0x4f,0xed,0x4f,0xed,
0x41,0xeb,0x41,0xeb,0x37,0xed,0x37,0xed,0x37,0xed,0x37,0xed,0x3f,0xee,0x3f,0xee,
0xa5,0xee,0xa5,0xee,0x7c,0xef,0x7c,0xef,0xfa,0xef,0xfa,0xef,0x46,0xf1,0x46,0xf1,
0x13,0x0d,0x13,0x0d,0x78,0x15,0x78,0x15,0xc1,0x12,0xc1,0x12,0xba,0x14,0xba,0x14,
0xab,0x11,0xab,0x11,0xda,0x12,0xda,0x12,0x08,0x10,0x08,0x10,0x9e,0x11,0x9e,0x11,
0xb4,0x0e,0xb4,0x0e,0x3b,0x12,0x3b,0x12,0x04,0x02,0x04,0x02,0x1f,0xea,0x1f,0xea,
0x52,0xed,0x52,0xed,0x4f,0xeb,0x4f,0xeb,0x5d,0xed,0x5d,0xed,0x96,0xed,0x96,0xed,
0xfb,0xee,0xfb,0xee,0x86,0xef,0x86,0xef,0xad,0xef,0xad,0xef,0xe0,0xef,0xe0,0xef,
0x77,0xf1,0x77,0xf1,0x57,0x0d,0x57,0x0d,0x7c,0x15,0x7c,0x15,0x5b,0x12,0x5b,0x12,
0x53,0x14,0x53,0x14,0x1d,0x11,0x1d,0x11,0x02,0x12,0x02,0x12,0x4f,0x0f,0x4f,0x0f,
0x2c,0x11,0x2c,0x11,0xc7,0x0e,0xc7,0x0e,0x12,0x12,0x12,0x12,0x86,0x01,0x86,0x01,
0xfd,0xe9,0xfd,0xe9,0xa4,0xed,0xa4,0xed,0xee,0xeb,0xee,0xeb,0xca,0xed,0xca,0xed,
0x63,0xee,0x63,0xee,0xa8,0xef,0xa8,0xef,0xa9,0xef,0xa9,0xef,0xbf,0xef,0xbf,0xef,
0xde,0xef,0xde,0xef,0x08,0xf2,0x08,0xf2,0xc0,0x0d,0xc0,0x0d,0x6d,0x15,0x6d,0x15,
0xd8,0x11,0xd8,0x11,0xb8,0x13,0xb8,0x13,0xaf,0x10,0xaf,0x10,0x33,0x11,0x33,0x11,
0x4e,0x0f,0x4e,0x0f,0x59,0x11,0x59,0x11,0xc8,0x0e,0xc8,0x0e,0xee,0x11,0xee,0x11,
0x0b,0x01,0x0b,0x01,0x0b,0xea,0x0b,0xea,0xe5,0xed,0xe5,0xed,0x9d,0xec,0x9d,0xec,
0x4c,0xee,0x4c,0xee,0x0c,0xef,0x0c,0xef,0x1a,0xf0,0x1a,0xf0,0x54,0xef,0x54,0xef,
0x0c,0xf0,0x0c,0xf0,0x15,0xf0,0x15,0xf0,0x7d,0xf2,0x7d,0xf2,0x06,0x0e,0x06,0x0e,
0x37,0x15,0x37,0x15,0x95,0x11,0x95,0x11,0x36,0x13,0x36,0x13,0x6b,0x10,0x6b,0x10,
0xe5,0x10,0xe5,0x10,0xe5,0x0f,0xe5,0x0f,0xb7,0x11,0xb7,0x11,0x9e,0x0e,0x9e,0x0e,
0x12,0x12,0x12,0x12,0xe1,0x00,0xe1,0x00,0x75,0xea,0x75,0xea,0x4e,0xee,0x4e,0xee,
0x12,0xed,0x12,0xed,0xc2,0xee,0xc2,0xee,0x2f,0xef,0x2f,0xef,0xb3,0xef,0xb3,0xef,
0x62,0xee,0x62,0xee,0xb9,0xef,0xb9,0xef,0x83,0xef,0x83,0xef,0x01,0xf2,0x01,0xf2,
0x8a,0x0d,0x8a,0x0d,0x7f,0x14,0x7f,0x14,0x5e,0x11,0x5e,0x11,0xe5,0x12,0xe5,0x12,
0x67,0x10,0x67,0x10,0x45,0x11,0x45,0x11,0x7c,0x10,0x7c,0x10,0xe3,0x11,0xe3,0x11,
0x99,0x0e,0x99,0x0e,0x55,0x12,0x55,0x12,0x09,0x01,0x09,0x01,0x0d,0xeb,0x0d,0xeb,
0xbe,0xee,0xbe,0xee,0x56,0xed,0x56,0xed,0x0a,0xef,0x0a,0xef,0xf5,0xee,0xf5,0xee,
0x47,0xef,0x47,0xef,0x5e,0xee,0x5e,0xee,0x1a,0xf0,0x1a,0xf0,0xa9,0xef,0xa9,0xef,
0x0f,0xf2,0x0f,0xf2,0x46,0x0d,0x46,0x0d,0xef,0x13,0xef,0x13,0xe6,0x10,0xe6,0x10,
0x64,0x12,0x64,0x12,0x33,0x10,0x33,0x10,0x91,0x11,0x91,0x11,0xb9,0x10,0xb9,0x10,
0xc0,0x11,0xc0,0x11,0x99,0x0e,0x99,0x0e,0x5d,0x12,0x5d,0x12,0x2a,0x01,0x2a,0x01,
0x4f,0xeb,0x4f,0xeb,0xb5,0xee,0xb5,0xee,0x2f,0xed,0x2f,0xed,0xbd,0xee,0xbd,0xee,
0x79,0xee,0x79,0xee,0xb9,0xee,0xb9,0xee,0x38,0xee,0x38,0xee,0x05,0xf0,0x05,0xf0,
0x93,0xef,0x93,0xef,0x35,0xf2,0x35,0xf2,0x22,0x0d,0x22,0x0d,0x4b,0x14,0x4b,0x14,
0xbe,0x11,0xbe,0x11,0x4e,0x13,0x4e,0x13,0xdb,0x10,0xdb,0x10,0x78,0x11,0x78,0x11,
0xd1,0x0f,0xd1,0x0f,0x10,0x10,0x10,0x10,0xd1,0x0c,0xd1,0x0c,0x5c,0x10,0x5c,0x10,
0xfc,0xff,0xfc,0xff,0x18,0xeb,0x18,0xeb,0x4c,0xee,0x4c,0xee,0xd2,0xec,0xd2,0xec,
0x1e,0xee,0x1e,0xee,0x10,0xee,0x10,0xee,0x7a,0xee,0x7a,0xee,0xea,0xed,0xea,0xed,
0xaf,0xef,0xaf,0xef,0x5b,0xef,0x5b,0xef,0x0b,0xf2,0x0b,0xf2,0xb8,0x0b,0xb8,0x0b,
0x9e,0x12,0x9e,0x12,0x3d,0x10,0x3d,0x10,0xf6,0x11,0xf6,0x11,0x08,0x10,0x08,0x10,
0xaa,0x10,0xaa,0x10,0xe2,0x0f,0xe2,0x0f,0xe4,0x10,0xe4,0x10,0xd6,0x0d,0xd6,0x0d,
0xd8,0x10,0xd8,0x10,0x59,0x00,0x59,0x00,0xad,0xeb,0xad,0xeb,0x19,0xee,0x19,0xee,
0x82,0xec,0x82,0xec,0x9c,0xed,0x9c,0xed,0xf7,0xed,0xf7,0xed,0xe5,0xee,0xe5,0xee,
0xe3,0xed,0xe3,0xed,0xb3,0xef,0xb3,0xef,0x9f,0xef,0x9f,0xef,0xc2,0xf2,0xc2,0xf2,
0x3e,0x0c,0x3e,0x0c,0x4a,0x13,0x4a,0x13,0x44,0x11,0x44,0x11,0xd0,0x12,0xd0,0x12,
0xf3,0x10,0xf3,0x10,0xed,0x10,0xed,0x10,0x26,0x10,0x26,0x10,0x74,0x11,0x74,0x11,
0x36,0x0e,0x36,0x0e,0x3a,0x11,0x3a,0x11,0x95,0x00,0x95,0x00,0x12,0xec,0x12,0xec,
0x46,0xee,0x46,0xee,0xb8,0xec,0xb8,0xec,0xf3,0xed,0xf3,0xed,0x45,0xee,0x45,0xee,
0x89,0xef,0x89,0xef,0x2d,0xee,0x2d,0xee,0x00,0xf0,0x00,0xf0,0xdb,0xef,0xdb,0xef,
0xc8,0xf2,0xc8,0xf2,0x6e,0x0c,0x6e,0x0c,0x54,0x13,0x54,0x13,0x77,0x11,0x77,0x11,
0xcc,0x12,0xcc,0x12,0xfc,0x10,0xfc,0x10,0x10,0x11,0x10,0x11,0x2e,0x10,0x2e,0x10,
0xae,0x11,0xae,0x11,0x3b,0x0e,0x3b,0x0e,0x8f,0x11,0x8f,0x11,0xdf,0x00,0xdf,0x00,
0x48,0xec,0x48,0xec,0xaa,0xee,0xaa,0xee,0xf0,0xec,0xf0,0xec,0x5d,0xee,0x5d,0xee,
0x48,0xee,0x48,0xee,0x72,0xef,0x72,0xef,0x1e,0xee,0x1e,0xee,0xec,0xef,0xec,0xef,
0xec,0xef,0xec,0xef,0xa0,0xf2,0xa0,0xf2,0x82,0x0c,0x82,0x0c,0x1c,0x13,0x1c,0x13,
0x37,0x11,0x37,0x11,0xad,0x12,0xad,0x12,0xe8,0x10,0xe8,0x10,0x9b,0x11,0x9b,0x11,
0xa7,0x10,0xa7,0x10,0x46,0x12,0x46,0x12,0xc1,0x0e,0xc1,0x0e,0xde,0x11,0xde,0x11,
0x10,0x01,0x10,0x01,0x67,0xec,0x67,0xec,0x30,0xef,0x30,0xef,0x41,0xed,0x41,0xed,
0xb3,0xee,0xb3,0xee,0x57,0xee,0x57,0xee,0x2c,0xef,0x2c,0xef,0x0a,0xee,0x0a,0xee,
0x86,0xef,0x86,0xef,0xbb,0xef,0xbb,0xef,0xc5,0xf2,0xc5,0xf2,0xc6,0x0c,0xc6,0x0c,
0x29,0x13,0x29,0x13,0x07,0x11,0x07,0x11,0xac,0x12,0xac,0x12,0xc0,0x10,0xc0,0x10,
0x9b,0x11,0x9b,0x11,0x73,0x10,0x73,0x10,0xfd,0x11,0xfd,0x11,0xd8,0x0e,0xd8,0x0e,
0x88,0x11,0x88,0x11,0x93,0x00,0x93,0x00,0x02,0xec,0x02,0xec,0x09,0xef,0x09,0xef,
0x2a,0xed,0x2a,0xed,0x7d,0xee,0x7d,0xee,0x5b,0xee,0x5b,0xee,0x47,0xef,0x47,0xef,
0x9e,0xee,0x9e,0xee,0xf0,0xef,0xf0,0xef,0xfd,0xef,0xfd,0xef,0x63,0xf3,0x63,0xf3,
0x1a,0x0d,0x1a,0x0d,0x5c,0x13,0x5c,0x13,0xe5,0x10,0xe5,0x10,0x82,0x12,0x82,0x12,
0x9f,0x10,0x9f,0x10,0x40,0x11,0x40,0x11,0xe7,0x0f,0xe7,0x0f,0x13,0x11,0x13,0x11,
0x55,0x0e,0x55,0x0e,0xf1,0x10,0xf1,0x10,0x0a,0x00,0x0a,0x00,0xe3,0xeb,0xe3,0xeb,
0xf6,0xee,0xf6,0xee,0x97,0xed,0x97,0xed,0xe5,0xee,0xe5,0xee,0xde,0xee,0xde,0xee,
0xdc,0xef,0xdc,0xef,0x63,0xef,0x63,0xef,0xcb,0xf0,0xcb,0xf0,0x60,0xf0,0x60,0xf0,
0xea,0xf3,0xea,0xf3,0x51,0x0d,0x51,0x0d,0x99,0x13,0x99,0x13,0x0c,0x11,0x0c,0x11,
0x4a,0x12,0x4a,0x12,0x91,0x10,0x91,0x10,0x0e,0x11,0x0e,0x11,0xcd,0x0f,0xcd,0x0f,
0xb0,0x10,0xb0,0x10,0x1d,0x0e,0x1d,0x0e,0xf4,0x10,0xf4,0x10,0xe0,0xff,0xe0,0xff,
0xd4,0xeb,0xd4,0xeb,0x9c,0xee,0x9c,0xee,0x7c,0xed,0x7c,0xed,0xce,0xee,0xce,0xee,
0xc2,0xee,0xc2,0xee,0xd9,0xef,0xd9,0xef,0x51,0xef,0x51,0xef,0xfd,0xf0,0xfd,0xf0,
0x46,0xf0,0x46,0xf0,0xdb,0xf3,0xdb,0xf3,0x66,0x0d,0x66,0x0d,0xc6,0x13,0xc6,0x13,
0x50,0x11,0x50,0x11,0x6d,0x12,0x6d,0x12,0xea,0x10,0xea,0x10,0x3b,0x11,0x3b,0x11,
0xf8,0x0f,0xf8,0x0f,0xd4,0x10,0xd4,0x10,0x23,0x0e,0x23,0x0e,0x0c,0x11,0x0c,0x11,
0xbb,0xff,0xbb,0xff,0xa4,0xeb,0xa4,0xeb,0x81,0xee,0x81,0xee,0x7f,0xed,0x7f,0xed,
0xb9,0xee,0xb9,0xee,0x99,0xee,0x99,0xee,0xd2,0xef,0xd2,0xef,0x1a,0xef,0x1a,0xef,
0xaa,0xf0,0xaa,0xf0,0x14,0xf0,0x14,0xf0,0xe1,0xf3,0xe1,0xf3,0xb4,0x0d,0xb4,0x0d,
0x10,0x14,0x10,0x14,0x69,0x11,0x69,0x11,0x82,0x12,0x82,0x12,0xfb,0x10,0xfb,0x10,
0x36,0x11,0x36,0x11,0xdf,0x0f,0xdf,0x0f,0xf0,0x10,0xf0,0x10,0x55,0x0e,0x55,0x0e,
0xf2,0x10,0xf2,0x10,0x64,0xff,0x64,0xff,0x1b,0xeb,0x1b,0xeb,0x26,0xee,0x26,0xee,
0x36,0xed,0x36,0xed,0x7f,0xee,0x7f,0xee,0x96,0xee,0x96,0xee,0xc4,0xef,0xc4,0xef,
0x24,0xef,0x24,0xef,0x93,0xf0,0x93,0xf0,0x20,0xf0,0x20,0xf0,0x1c,0xf4,0x1c,0xf4,
0x0d,0x0e,0x0d,0x0e,0x8b,0x14,0x8b,0x14,0x9f,0x11,0x9f,0x11,0xad,0x12,0xad,0x12,
0xcb,0x10,0xcb,0x10,0x06,0x11,0x06,0x11,0xb9,0x0f,0xb9,0x0f,0x78,0x10,0x78,0x10,
0xe2,0x0d,0xe2,0x0d,0x6b,0x10,0x6b,0x10,0x15,0xff,0x15,0xff,0xbd,0xea,0xbd,0xea,
0x01,0xee,0x01,0xee,0x7c,0xed,0x7c,0xed,0x05,0xef,0x05,0xef,0x5e,0xef,0x5e,0xef,
0x15,0xf0,0x15,0xf0,0x93,0xef,0x93,0xef,0x35,0xf1,0x35,0xf1,0x9f,0xf0,0x9f,0xf0,
0x5e,0xf4,0x5e,0xf4,0x0c,0x0e,0x0c,0x0e,0xab,0x14,0xab,0x14,0x51,0x11,0x51,0x11,
0x01,0x12,0x01,0x12,0xe3,0x0f,0xe3,0x0f,0x70,0x10,0x70,0x10,0xa2,0x0f,0xa2,0x0f,
0x26,0x10,0x26,0x10,0xbe,0x0d,0xbe,0x0d,0x88,0x10,0x88,0x10,0x55,0xff,0x55,0xff,
0xd4,0xea,0xd4,0xea,0xe9,0xed,0xe9,0xed,0x90,0xed,0x90,0xed,0x2e,0xef,0x2e,0xef,
0x94,0xef,0x94,0xef,0x02,0xf0,0x02,0xf0,0x9c,0xef,0x9c,0xef,0x91,0xf1,0x91,0xf1,
0xd9,0xf0,0xd9,0xf0,0x98,0xf4,0x98,0xf4,0x54,0x0e,0x54,0x0e,0xf6,0x14,0xf6,0x14,
0xa0,0x11,0xa0,0x11,0x3a,0x12,0x3a,0x12,0xfe,0x0f,0xfe,0x0f,0x6d,0x10,0x6d,0x10,
0x90,0x0f,0x90,0x0f,0xd2,0x0f,0xd2,0x0f,0x3e,0x0d,0x3e,0x0d,0x20,0x10,0x20,0x10,
0xc2,0xfe,0xc2,0xfe,0x7a,0xea,0x7a,0xea,0xe3,0xed,0xe3,0xed,0x77,0xed,0x77,0xed,
0x2c,0xef,0x2c,0xef,0xaa,0xef,0xaa,0xef,0x49,0xf0,0x49,0xf0,0xb2,0xef,0xb2,0xef,
0x9b,0xf1,0x9b,0xf1,0xf6,0xf0,0xf6,0xf0,0xb3,0xf4,0xb3,0xf4,0x8d,0x0e,0x8d,0x0e,
0xa3,0x14,0xa3,0x14,0x5c,0x11,0x5c,0x11,0x11,0x12,0x11,0x12,0xaf,0x0f,0xaf,0x0f,
0x22,0x10,0x22,0x10,0x52,0x0f,0x52,0x0f,0x2d,0x10,0x2d,0x10,0x8f,0x0d,0x8f,0x0d,
0x88,0x10,0x88,0x10,0xfd,0xfe,0xfd,0xfe,0xae,0xea,0xae,0xea,0x57,0xee,0x57,0xee,
0x6f,0xed,0x6f,0xed,0x70,0xef,0x70,0xef,0xfa,0xef,0xfa,0xef,0xa9,0xf0,0xa9,0xf0,
0xc1,0xef,0xc1,0xef,0x32,0xf1,0x32,0xf1,0x8f,0xf0,0x8f,0xf0,0xdd,0xf3,0xdd,0xf3,
0xff,0x0d,0xff,0x0d,0xf9,0x13,0xf9,0x13,0x21,0x11,0x21,0x11,0x26,0x12,0x26,0x12,
0x78,0x0f,0x78,0x0f,0x4c,0x10,0x4c,0x10,0x61,0x0f,0x61,0x0f,0x8b,0x10,0x8b,0x10,
0xe2,0x0d,0xe2,0x0d,0x33,0x11,0x33,0x11,0xd3,0xff,0xd3,0xff,0x0e,0xeb,0x0e,0xeb,
0xb3,0xee,0xb3,0xee,0x21,0xed,0x21,0xed,0x3d,0xef,0x3d,0xef,0x7c,0xef,0x7c,0xef,
0xf8,0xef,0xf8,0xef,0x67,0xef,0x67,0xef,0xe5,0xf0,0xe5,0xf0,0x91,0xf0,0x91,0xf0,
0xa0,0xf3,0xa0,0xf3,0x40,0x0e,0x40,0x0e,0x69,0x14,0x69,0x14,0xb6,0x11,0xb6,0x11,
0xe4,0x12,0xe4,0x12,0xed,0x0f,0xed,0x0f,0x18,0x11,0x18,0x11,0xa4,0x0f,0xa4,0x0f,
0x64,0x10,0x64,0x10,0x79,0x0d,0x79,0x0d,0xa7,0x10,0xa7,0x10,0x35,0xff,0x35,0xff,
0x3a,0xea,0x3a,0xea,0x4c,0xee,0x4c,0xee,0xbd,0xec,0xbd,0xec,0x23,0xef,0x23,0xef,
0x58,0xef,0x58,0xef,0xd7,0xef,0xd7,0xef,0xbc,0xef,0xbc,0xef,0x18,0xf1,0x18,0xf1,
0xde,0xf0,0xde,0xf0,0x24,0xf4,0x24,0xf4,0xe4,0x0e,0xe4,0x0e,0x9e,0x14,0x9e,0x14,
0xa9,0x11,0xa9,0x11,0xd8,0x12,0xd8,0x12,0xab,0x0f,0xab,0x0f,0xf7,0x10,0xf7,0x10,
0x75,0x0f,0x75,0x0f,0x76,0x10,0x76,0x10,0xdd,0x0d,0xdd,0x0d,0xd1,0x10,0xd1,0x10,
0xfd,0xfe,0xfd,0xfe,0x15,0xea,0x15,0xea,0x4d,0xee,0x4d,0xee,0x81,0xec,0x81,0xec,
0xe7,0xee,0xe7,0xee,0x41,0xef,0x41,0xef,0xfc,0xef,0xfc,0xef,0xcc,0xef,0xcc,0xef,
0xdb,0xf0,0xdb,0xf0,0xb2,0xf0,0xb2,0xf0,0x5a,0xf4,0x5a,0xf4,0x1e,0x0f,0x1e,0x0f,
0x9e,0x14,0x9e,0x14,0xeb,0x11,0xeb,0x11,0x1e,0x13,0x1e,0x13,0xd4,0x0f,0xd4,0x0f,
0xd3,0x10,0xd3,0x10,0x36,0x0f,0x36,0x0f,0x7a,0x10,0x7a,0x10,0xd6,0x0d,0xd6,0x0d,
0xb6,0x10,0xb6,0x10,0xd3,0xfe,0xd3,0xfe,0x2b,0xea,0x2b,0xea,0x2c,0xee,0x2c,0xee,
0x5a,0xec,0x5a,0xec,0x01,0xef,0x01,0xef,0x53,0xef,0x53,0xef,0x4e,0xf0,0x4e,0xf0,
0xe8,0xef,0xe8,0xef,0xf2,0xf0,0xf2,0xf0,0xb3,0xf0,0xb3,0xf0,0x2a,0xf4,0x2a,0xf4,
0xdb,0x0e,0xdb,0x0e,0x76,0x14,0x76,0x14,0x22,0x12,0x22,0x12,0x0e,0x13,0x0e,0x13,
0xeb,0x0f,0xeb,0x0f,0xec,0x10,0xec,0x10,0x53,0x0f,0x53,0x0f,0xa3,0x10,0xa3,0x10,
0xb3,0x0d,0xb3,0x0d,0x05,0x11,0x05,0x11,0x43,0xff,0x43,0xff,0x5f,0xea,0x5f,0xea,
0x08,0xee,0x08,0xee,0x64,0xec,0x64,0xec,0x0b,0xef,0x0b,0xef,0x01,0xef,0x01,0xef,
0x3c,0xf0,0x3c,0xf0,0xb1,0xef,0xb1,0xef,0x1e,0xf1,0x1e,0xf1,0xf4,0xf0,0xf4,0xf0,
0x04,0xf4,0x04,0xf4,0xef,0x0e,0xef,0x0e,0xd8,0x14,0xd8,0x14,0x58,0x12,0x58,0x12,
0xdd,0x12,0xdd,0x12,0x1f,0x10,0x1f,0x10,0xd8,0x10,0xd8,0x10,0x0c,0x0f,0x0c,0x0f,
0x8d,0x10,0x8d,0x10,0x38,0x0d,0x38,0x0d,0xb0,0x10,0xb0,0x10,0x16,0xff,0x16,0xff,
0x05,0xea,0x05,0xea,0x8c,0xed,0x8c,0xed,0x6d,0xec,0x6d,0xec,0x10,0xef,0x10,0xef,
0xd8,0xee,0xd8,0xee,0xa8,0xf0,0xa8,0xf0,0xfb,0xef,0xfb,0xef,0x48,0xf1,0x48,0xf1,
0x3d,0xf1,0x3d,0xf1,0x69,0xf4,0x69,0xf4,0x2b,0x0f,0x2b,0x0f,0x0d,0x15,0x0d,0x15,
0xa4,0x12,0xa4,0x12,0xee,0x12,0xee,0x12,0x51,0x10,0x51,0x10,0xbe,0x10,0xbe,0x10,
0xbe,0x0e,0xbe,0x0e,0x53,0x10,0x53,0x10,0x0c,0x0d,0x0c,0x0d,0x49,0x10,0x49,0x10,
0x7b,0xfe,0x7b,0xfe,0xfb,0xe9,0xfb,0xe9,0x7d,0xed,0x7d,0xed,0x48,0xec,0x48,0xec,
0x20,0xef,0x20,0xef,0x18,0xef,0x18,0xef,0xe8,0xf0,0xe8,0xf0,0x40,0xf0,0x40,0xf0,
0xbe,0xf1,0xbe,0xf1,0x77,0xf1,0x77,0xf1,0x0f,0xf5,0x0f,0xf5,0xac,0x0f,0xac,0x0f,
0xef,0x14,0xef,0x14,0x92,0x12,0x92,0x12,0xb5,0x12,0xb5,0x12,0xbc,0x0f,0xbc,0x0f,
0x15,0x10,0x15,0x10,0x7d,0x0e,0x7d,0x0e,0xd6,0x0f,0xd6,0x0f,0xb7,0x0c,0xb7,0x0c,
0x37,0x10,0x37,0x10,0x29,0xfe,0x29,0xfe,0x14,0xea,0x14,0xea,0xaf,0xed,0xaf,0xed,
0x9e,0xec,0x9e,0xec,0xb1,0xef,0xb1,0xef,0x99,0xef,0x99,0xef,0xff,0xf0,0xff,0xf0,
0x46,0xf0,0x46,0xf0,0xde,0xf1,0xde,0xf1,0x06,0xf1,0x06,0xf1,0xcc,0xf4,0xcc,0xf4,
0x73,0x0f,0x73,0x0f,0xbb,0x14,0xbb,0x14,0x94,0x12,0x94,0x12,0x6e,0x12,0x6e,0x12,
0xb2,0x0f,0xb2,0x0f,0x82,0x10,0x82,0x10,0xe2,0x0e,0xe2,0x0e,0xcf,0x0f,0xcf,0x0f,
0x10,0x0d,0x10,0x0d,0x89,0x10,0x89,0x10,0x0c,0xfe,0x0c,0xfe,0x3d,0xea,0x3d,0xea,
0x8c,0xed,0x8c,0xed,0x96,0xec,0x96,0xec,0xe7,0xef,0xe7,0xef,0x42,0xef,0x42,0xef,
0x67,0xf0,0x67,0xf0,0x48,0xf0,0x48,0xf0,0xe4,0xf1,0xe4,0xf1,0x9c,0xf0,0x9c,0xf0,
0x10,0xf5,0x10,0xf5,0xaf,0x0f,0xaf,0x0f,0x8c,0x14,0x8c,0x14,0x7f,0x12,0x7f,0x12,
0x2a,0x12,0x2a,0x12,0x94,0x0f,0x94,0x0f,0xcc,0x10,0xcc,0x10,0x28,0x0f,0x28,0x0f,
0xf6,0x0f,0xf6,0x0f,0xa3,0x0d,0xa3,0x0d,0xc4,0x10,0xc4,0x10,0xb7,0xfd,0xb7,0xfd,
0x54,0xea,0x54,0xea,0xc8,0xed,0xc8,0xed,0xcb,0xec,0xcb,0xec,0x13,0xf0,0x13,0xf0,
0x69,0xef,0x69,0xef,0x87,0xf0,0x87,0xf0,0x29,0xf0,0x29,0xf0,0x56,0xf1,0x56,0xf1,
0x17,0xf0,0x17,0xf0,0x12,0xf5,0x12,0xf5,0x8f,0x0f,0x8f,0x0f,0x40,0x14,0x40,0x14,
0x45,0x12,0x45,0x12,0x0d,0x12,0x0d,0x12,0x8d,0x0f,0x8d,0x0f,0x6b,0x10,0x6b,0x10,
0xcb,0x0e,0xcb,0x0e,0x33,0x10,0x33,0x10,0x0f,0x0e,0x0f,0x0e,0xaf,0x10,0xaf,0x10,
0xc4,0xfd,0xc4,0xfd,0xcc,0xea,0xcc,0xea,0x0c,0xee,0x0c,0xee,0xe4,0xec,0xe4,0xec,
0x16,0xf0,0x16,0xf0,0x8b,0xef,0x8b,0xef,0xc8,0xf0,0xc8,0xf0,0x2d,0xf0,0x2d,0xf0,
0x23,0xf1,0x23,0xf1,0x24,0xf0,0x24,0xf0,0x59,0xf5,0x59,0xf5,0x89,0x0f,0x89,0x0f,
0x1c,0x14,0x1c,0x14,0x4d,0x12,0x4d,0x12,0x3d,0x12,0x3d,0x12,0x96,0x0f,0x96,0x0f,
0x57,0x10,0x57,0x10,0x08,0x0f,0x08,0x0f,0x5f,0x10,0x5f,0x10,0xfa,0x0d,0xfa,0x0d,
0xa0,0x10,0xa0,0x10,0x9a,0xfd,0x9a,0xfd,0x82,0xea,0x82,0xea,0xf5,0xed,0xf5,0xed,
0xb6,0xec,0xb6,0xec,0xc8,0xef,0xc8,0xef,0xbc,0xef,0xbc,0xef,0xbd,0xf0,0xbd,0xf0,
0xb4,0xef,0xb4,0xef,0x44,0xf1,0x44,0xf1,0x32,0xf0,0x32,0xf0,0xd6,0xf4,0xd6,0xf4,
0x84,0x0f,0x84,0x0f,0x4f,0x14,0x4f,0x14,0xf7,0x11,0xf7,0x11,0x44,0x12,0x44,0x12,
0xce,0x0f,0xce,0x0f,0x12,0x10,0x12,0x10,0x4c,0x0f,0x4c,0x0f,0xcf,0x10,0xcf,0x10,
0xe0,0x0d,0xe0,0x0d,0x03,0x11,0x03,0x11,0x50,0xfe,0x50,0xfe,0x89,0xea,0x89,0xea,
0x0a,0xee,0x0a,0xee,0x11,0xed,0x11,0xed,0x7c,0xef,0x7c,0xef,0x61,0xef,0x61,0xef,
0xb9,0xf0,0xb9,0xf0,0x4d,0xef,0x4d,0xef,0x17,0xf1,0x17,0xf1,0x6a,0xf0,0x6a,0xf0,
0xc2,0xf4,0xc2,0xf4,0x52,0x0f,0x52,0x0f,0x62,0x14,0x62,0x14,0xd4,0x11,0xd4,0x11,
0xfb,0x11,0xfb,0x11,0xf6,0x0f,0xf6,0x0f,0x33,0x10,0x33,0x10,0x33,0x0f,0x33,0x0f,
0xef,0x10,0xef,0x10,0x00,0x0e,0x00,0x0e,0xcf,0x10,0xcf,0x10,0x17,0xfe,0x17,0xfe,
0xba,0xea,0xba,0xea,0x2e,0xee,0x2e,0xee,0x16,0xed,0x16,0xed,0xb0,0xef,0xb0,0xef,
0x68,0xef,0x68,0xef,0xb9,0xf0,0xb9,0xf0,0x55,0xef,0x55,0xef,0xe9,0xf0,0xe9,0xf0,
0x0c,0xf0,0x0c,0xf0,0xc5,0xf4,0xc5,0xf4,0x3d,0x0f,0x3d,0x0f,0xec,0x13,0xec,0x13,
0xe6,0x11,0xe6,0x11,0x3e,0x12,0x3e,0x12,0x20,0x10,0x20,0x10,0xa0,0x10,0xa0,0x10,
0x9c,0x0f,0x9c,0x0f,0x19,0x11,0x19,0x11,0x35,0x0e,0x35,0x0e,0xf5,0x10,0xf5,0x10,
0xc0,0xfd,0xc0,0xfd,0xa1,0xea,0xa1,0xea,0x16,0xee,0x16,0xee,0x9a,0xec,0x9a,0xec,
0x47,0xef,0x47,0xef,0xfb,0xee,0xfb,0xee,0x80,0xf0,0x80,0xf0,0x71,0xef,0x71,0xef,
0x58,0xf1,0x58,0xf1,0x7a,0xf0,0x7a,0xf0,0x26,0xf5,0x26,0xf5,0x86,0x0f,0x86,0x0f,
0xfc,0x13,0xfc,0x13,0x10,0x12,0x10,0x12,0x1d,0x12,0x1d,0x12,0x3e,0x10,0x3e,0x10,
0xbd,0x10,0xbd,0x10,0x3c,0x0f,0x3c,0x0f,0x74,0x10,0x74,0x10,0xac,0x0d,0xac,0x0d,
0xcd,0x10,0xcd,0x10,0xb3,0xfd,0xb3,0xfd,0xd6,0xea,0xd6,0xea,0x48,0xee,0x48,0xee,
0xd0,0xec,0xd0,0xec,0x72,0xef,0x72,0xef,0xc7,0xee,0xc7,0xee,0x95,0xf0,0x95,0xf0,
0xe4,0xef,0xe4,0xef,0xc1,0xf1,0xc1,0xf1,0x6c,0xf0,0x6c,0xf0,0x10,0xf5,0x10,0xf5,
0x67,0x0f,0x67,0x0f,0xb3,0x13,0xb3,0x13,0xc0,0x11,0xc0,0x11,0xc4,0x11,0xc4,0x11,
0x67,0x10,0x67,0x10,0xb6,0x10,0xb6,0x10,0x3c,0x0f,0x3c,0x0f,0x40,0x10,0x40,0x10,
0xda,0x0d,0xda,0x0d,0xe8,0x10,0xe8,0x10,0x94,0xfd,0x94,0xfd,0xd8,0xea,0xd8,0xea,
0x9f,0xee,0x9f,0xee,0x46,0xed,0x46,0xed,0x5b,0xef,0x5b,0xef,0xcd,0xee,0xcd,0xee,
0x87,0xf0,0x87,0xf0,0x94,0xef,0x94,0xef,0x9c,0xf1,0x9c,0xf1,0xaf,0xf0,0xaf,0xf0,
0x99,0xf5,0x99,0xf5,0xfb,0x0f,0xfb,0x0f,0xc3,0x13,0xc3,0x13,0x6f,0x11,0x6f,0x11,
0xa1,0x11,0xa1,0x11,0xa7,0x10,0xa7,0x10,0x72,0x10,0x72,0x10,0x60,0x0f,0x60,0x0f,
0xee,0x10,0xee,0x10,0xcd,0x0d,0xcd,0x0d,0x41,0x10,0x41,0x10,0x8d,0xfc,0x8d,0xfc,
0x3e,0xea,0x3e,0xea,0x33,0xee,0x33,0xee,0x37,0xed,0x37,0xed,0x26,0xef,0x26,0xef,
0x31,0xef,0x31,0xef,0x5e,0xf1,0x5e,0xf1,0x0b,0xf0,0x0b,0xf0,0xe7,0xf1,0xe7,0xf1,
0xef,0xf0,0xef,0xf0,0x3a,0xf6,0x3a,0xf6,0x9d,0x0f,0x9d,0x0f,0x35,0x13,0x35,0x13,
0x1b,0x11,0x1b,0x11,0xca,0x11,0xca,0x11,0x4a,0x10,0x4a,0x10,0x55,0x10,0x55,0x10,
0x6f,0x0f,0x6f,0x0f,0xd7,0x10,0xd7,0x10,0x23,0x0e,0x23,0x0e,0x16,0x10,0x16,0x10,
0xa0,0xfc,0xa0,0xfc,0x39,0xea,0x39,0xea,0xa7,0xed,0xa7,0xed,0x6f,0xec,0x6f,0xec,
0x12,0xef,0x12,0xef,0xa1,0xef,0xa1,0xef,0x93,0xf1,0x93,0xf1,0x84,0xf0,0x84,0xf0,
0x58,0xf2,0x58,0xf2,0x4c,0xf1,0x4c,0xf1,0xc1,0xf6,0xc1,0xf6,0x1c,0x10,0x1c,0x10,
0x30,0x13,0x30,0x13,0xe5,0x10,0xe5,0x10,0x7f,0x11,0x7f,0x11,0x79,0x0f,0x79,0x0f,
0xcd,0x0f,0xcd,0x0f,0x69,0x0f,0x69,0x0f,0xea,0x10,0xea,0x10,0x5c,0x0e,0x5c,0x0e,
0xd8,0x10,0xd8,0x10,0x03,0xfd,0x03,0xfd,0x82,0xea,0x82,0xea,0x15,0xee,0x15,0xee,
0x3c,0xec,0x3c,0xec,0x95,0xee,0x95,0xee,0x54,0xef,0x54,0xef,0xe2,0xf0,0xe2,0xf0,
0x16,0xf0,0x16,0xf0,0x1b,0xf2,0x1b,0xf2,0x05,0xf1,0x05,0xf1,0xea,0xf5,0xea,0xf5,
0x7f,0x0f,0x7f,0x0f,0x4b,0x13,0x4b,0x13,0x50,0x11,0x50,0x11,0x51,0x12,0x51,0x12,
0x02,0x10,0x02,0x10,0x26,0x10,0x26,0x10,0x44,0x0f,0x44,0x0f,0x74,0x10,0x74,0x10,
0x38,0x0e,0x38,0x0e,0xb8,0x10,0xb8,0x10,0xac,0xfd,0xac,0xfd,0xc0,0xea,0xc0,0xea,
0x93,0xee,0x93,0xee,0x68,0xec,0x68,0xec,0x37,0xee,0x37,0xee,0x67,0xef,0x67,0xef,
0x33,0xf0,0x33,0xf0,0xd4,0xef,0xd4,0xef,0x9f,0xf1,0x9f,0xf1,0x29,0xf1,0x29,0xf1,
0x2e,0xf6,0x2e,0xf6,0x30,0x10,0x30,0x10,0xb3,0x13,0xb3,0x13,0xeb,0x11,0xeb,0x11,
0xac,0x12,0xac,0x12,0x46,0x10,0x46,0x10,0x6a,0x10,0x6a,0x10,0xe6,0x0e,0xe6,0x0e,
0xf7,0x0f,0xf7,0x0f,0x55,0x0d,0x55,0x0d,0xf9,0x0f,0xf9,0x0f,0xd7,0xfc,0xd7,0xfc,
0xfa,0xea,0xfa,0xea,0x07,0xee,0x07,0xee,0x28,0xec,0x28,0xec,0xc5,0xee,0xc5,0xee,
0x21,0xef,0x21,0xef,0x4c,0xf0,0x4c,0xf0,0xbc,0xf0,0xbc,0xf0,0x31,0xf3,0x31,0xf3,
0xfd,0xf1,0xfd,0xf1,0x50,0xf6,0x50,0xf6,0xa6,0x0f,0xa6,0x0f,0xb1,0x13,0xb1,0x13,
0x0f,0x11,0x0f,0x11,0x5d,0x11,0x5d,0x11,0x7c,0x0f,0x7c,0x0f,0x9e,0x0f,0x9e,0x0f,
0x1d,0x0e,0x1d,0x0e,0xcc,0x0f,0xcc,0x0f,0x60,0x0e,0x60,0x0e,0x03,0x11,0x03,0x11,
0x3e,0xfe,0x3e,0xfe,0x82,0xeb,0x82,0xeb,0xbf,0xee,0xbf,0xee,0x81,0xeb,0x81,0xeb,
0x71,0xee,0x71,0xee,0xe4,0xee,0xe4,0xee,0xbb,0xef,0xbb,0xef,0xe9,0xf0,0xe9,0xf0,
0x6b,0xf3,0x6b,0xf3,0xca,0xf1,0xca,0xf1,0x4f,0xf6,0x4f,0xf6,0x12,0x10,0x12,0x10,
0x3f,0x13,0x3f,0x13,0x79,0x11,0x79,0x11,0x16,0x11,0x16,0x11,0x70,0x0f,0x70,0x0f,
0x08,0x11,0x08,0x11,0xae,0x0f,0xae,0x0f,0xeb,0x0f,0xeb,0x0f,0xa5,0x0e,0xa5,0x0e,
0xaa,0x11,0xaa,0x11,0xe4,0xfc,0xe4,0xfc,0x50,0xeb,0x50,0xeb,0xac,0xee,0xac,0xee,
0xb7,0xeb,0xb7,0xeb,0xcf,0xee,0xcf,0xee,0x92,0xee,0x92,0xee,0x06,0xef,0x06,0xef,
0x80,0xef,0x80,0xef,0xfc,0xf1,0xfc,0xf1,0x70,0xf0,0x70,0xf0,0x91,0xf6,0x91,0xf6,
0xf8,0x10,0xf8,0x10,0x6b,0x13,0x6b,0x13,0x6e,0x11,0x6e,0x11,0x87,0x11,0x87,0x11,
0x9d,0x0e,0x9d,0x0e,0x47,0x10,0x47,0x10,0x5f,0x0f,0x5f,0x0f,0xf7,0x0f,0xf7,0x0f,
0xb4,0x0e,0xb4,0x0e,0x22,0x12,0x22,0x12,0x3b,0xfe,0x3b,0xfe,0xd6,0xec,0xd6,0xec,
0xb6,0xf0,0xb6,0xf0,0x08,0xed,0x08,0xed,0x13,0xef,0x13,0xef,0xde,0xed,0xde,0xed,
0xdd,0xed,0xdd,0xed,0xa0,0xee,0xa0,0xee,0xbc,0xf0,0xbc,0xf0,0xc1,0xef,0xc1,0xef,
0x7c,0xf5,0x7c,0xf5,0x8b,0x10,0x8b,0x10,0xb0,0x13,0xb0,0x13,0xcb,0x11,0xcb,0x11,
0x41,0x12,0x41,0x12,0x3f,0x10,0x3f,0x10,0x07,0x11,0x07,0x11,0xdc,0x0d,0xdc,0x0d,
0x64,0x0e,0x64,0x0e,0x97,0x0d,0x97,0x0d,0xf5,0x10,0xf5,0x10,0x19,0xfd,0x19,0xfd,
0x23,0xee,0x23,0xee,0xe5,0xf0,0xe5,0xf0,0xbd,0xed,0xbd,0xed,0x22,0xef,0x22,0xef,
0x30,0xed,0x30,0xed,0x16,0xee,0x16,0xee,0x10,0xee,0x10,0xee,0x6d,0xf1,0x6d,0xf1,
0x0f,0xf1,0x0f,0xf1,0x15,0xf7,0x15,0xf7,0xee,0x10,0xee,0x10,0x6b,0x14,0x6b,0x14,
0x5f,0x12,0x5f,0x12,0xee,0x11,0xee,0x11,0x44,0x10,0x44,0x10,0x86,0x10,0x86,0x10,
0x08,0x0e,0x08,0x0e,0x55,0x0e,0x55,0x0e,0xdc,0x0d,0xdc,0x0d,0xd9,0x10,0xd9,0x10,
0x63,0xfc,0x63,0xfc,0xf9,0xeb,0xf9,0xeb,0xd5,0xef,0xd5,0xef,0xfc,0xec,0xfc,0xec,
0x1c,0xef,0x1c,0xef,0x39,0xee,0x39,0xee,0x37,0xef,0x37,0xef,0x78,0xef,0x78,0xef,
0xf0,0xf1,0xf0,0xf1,0x89,0xf1,0x89,0xf1,0x63,0xf7,0x63,0xf7,0x1d,0x11,0x1d,0x11,
0x4e,0x13,0x4e,0x13,0xe0,0x12,0xe0,0x12,0x33,0x11,0x33,0x11,0xf8,0x0f,0xf8,0x0f,
0x5f,0x11,0x5f,0x11,0x8c,0x10,0x8c,0x10,0xc2,0x10,0xc2,0x10,0x9f,0x0e,0x9f,0x0e,
0x1e,0x10,0x1e,0x10,0xa6,0xfb,0xa6,0xfb,0xb7,0xec,0xb7,0xec,0x24,0xee,0x24,0xee,
0xfb,0xed,0xfb,0xed,0x48,0xf0,0x48,0xf0,0x35,0xee,0x35,0xee,0xc4,0xee,0xc4,0xee,
0x2a,0xee,0x2a,0xee,0xc0,0xf0,0xc0,0xf0,0x49,0xef,0x49,0xef,0xee,0xf6,0xee,0xf6,
0x21,0x10,0x21,0x10,0x33,0x13,0x33,0x13,0x29,0x13,0x29,0x13,0xef,0x11,0xef,0x11,
0x83,0x0f,0x83,0x0f,0x24,0x10,0x24,0x10,0x7e,0x0f,0x7e,0x0f,0x79,0x0f,0x79,0x0f,
0x47,0x0e,0x47,0x0e,0x51,0x11,0x51,0x11,0xd6,0xfc,0xd6,0xfc,0xcd,0xec,0xcd,0xec,
0xa6,0xef,0xa6,0xef,0x44,0xed,0x44,0xed,0x71,0xef,0x71,0xef,0xb5,0xed,0xb5,0xed,
0xbb,0xed,0xbb,0xed,0xc0,0xec,0xc0,0xec,0xc7,0xef,0xc7,0xef,0x18,0xef,0x18,0xef,
0x5a,0xf7,0x5a,0xf7,0xce,0x11,0xce,0x11,0xa4,0x15,0xa4,0x15,0x16,0x15,0x16,0x15,
0x3d,0x14,0x3d,0x14,0xe6,0x10,0xe6,0x10,0x87,0x10,0x87,0x10,0x80,0x0f,0x80,0x0f,
0x7b,0x0e,0x7b,0x0e,0xb0,0x0b,0xb0,0x0b,0x67,0x0e,0x67,0x0e,0x65,0xfb,0x65,0xfb,
0x23,0xec,0x23,0xec,0x3b,0xf0,0x3b,0xf0,0x06,0xef,0x06,0xef,0xc5,0xee,0xc5,0xee,
0xe8,0xec,0xe8,0xec,0x96,0xed,0x96,0xed,0x8f,0xec,0x8f,0xec,0x59,0xef,0x59,0xef,
0xc0,0xee,0xc0,0xee,0x3b,0xf8,0x3b,0xf8,0x0b,0x11,0x0b,0x11,0xd7,0x15,0xd7,0x15,
0x02,0x16,0x02,0x16,0xaa,0x15,0xaa,0x15,0x67,0x12,0x67,0x12,0x63,0x12,0x63,0x12,
0x0c,0x10,0x0c,0x10,0x42,0x0e,0x42,0x0e,0x6d,0x0c,0x6d,0x0c,0x65,0x0d,0x65,0x0d,
0x1d,0xfa,0x1d,0xfa,0xbd,0xea,0xbd,0xea,0xbe,0xed,0xbe,0xed,0x3a,0xed,0x3a,0xed,
0x56,0xf0,0x56,0xf0,0xd4,0xee,0xd4,0xee,0x24,0xee,0x24,0xee,0xe7,0xee,0xe7,0xee,
0x36,0xf1,0x36,0xf1,0xa4,0xf1,0xa4,0xf1,0xb1,0xf8,0xb1,0xf8,0x07,0x12,0x07,0x12,
0x5f,0x14,0x5f,0x14,0x40,0x12,0x40,0x12,0x76,0x12,0x76,0x12,0xfa,0x0f,0xfa,0x0f,
0x16,0x11,0x16,0x11,0x27,0x10,0x27,0x10,0x52,0x0f,0x52,0x0f,0xd6,0x0b,0xd6,0x0b,
0x1d,0x0f,0x1d,0x0f,0x88,0xfa,0x88,0xfa,0xf7,0xeb,0xf7,0xeb,0x84,0xef,0x84,0xef,
0xcc,0xef,0xcc,0xef,0xd9,0xef,0xd9,0xef,0xf0,0xee,0xf0,0xee,0x78,0xee,0x78,0xee,
0xb4,0xee,0xb4,0xee,0x93,0xf2,0x93,0xf2,0x51,0xf1,0x51,0xf1,0x87,0xf7,0x87,0xf7,
0x84,0x10,0x84,0x10,0x37,0x14,0x37,0x14,0x7f,0x10,0x7f,0x10,0x12,0x12,0x12,0x12,
0xe0,0x10,0xe0,0x10,0xea,0x0f,0xea,0x0f,0x6a,0x0d,0x6a,0x0d,0x2c,0x0e,0x2c,0x0e,
0xf5,0x0a,0xf5,0x0a,0x98,0x0f,0x98,0x0f,0x18,0xfd,0x18,0xfd,0xbc,0xed,0xbc,0xed,
0xcd,0xef,0xcd,0xef,0x31,0xee,0x31,0xee,0xf6,0xef,0xf6,0xef,0xb6,0xed,0xb6,0xed,
0x1d,0xf1,0x1d,0xf1,0xb6,0xf0,0xb6,0xf0,0x29,0xf2,0x29,0xf2,0xc4,0xef,0xc4,0xef,
0x79,0xf7,0x79,0xf7,0xd5,0x11,0xd5,0x11,0x05,0x14,0x05,0x14,0xdf,0x12,0xdf,0x12,
0xc1,0x13,0xc1,0x13,0xcb,0x10,0xcb,0x10,0xee,0x0d,0xee,0x0d,0x20,0x0c,0x20,0x0c,
0x09,0x0e,0x09,0x0e,0x06,0x0c,0x06,0x0c,0x2d,0x10,0x2d,0x10,0xd2,0xfc,0xd2,0xfc,
0xe2,0xed,0xe2,0xed,0x58,0xf1,0x58,0xf1,0x41,0xef,0x41,0xef,0xaa,0xf1,0xaa,0xf1,
0x76,0xef,0x76,0xef,0xd6,0xef,0xd6,0xef,0x54,0xed,0x54,0xed,0x92,0xf0,0x92,0xf0,
0x01,0xee,0x01,0xee,0x1b,0xf8,0x1b,0xf8,0x63,0x11,0x63,0x11,0xd1,0x13,0xd1,0x13,
0xed,0x11,0xed,0x11,0x42,0x13,0x42,0x13,0x10,0x11,0x10,0x11,0xd7,0x0e,0xd7,0x0e,
0x7c,0x0d,0x7c,0x0d,0x7f,0x0e,0x7f,0x0e,0x03,0x0b,0x03,0x0b,0x3a,0x0d,0x3a,0x0d,
0x0a,0xfd,0x0a,0xfd,0x76,0xee,0x76,0xee,0x04,0xf1,0x04,0xf1,0x11,0xf0,0x11,0xf0,
0xc0,0xf2,0xc0,0xf2,0xe9,0xef,0xe9,0xef,0xbf,0xf0,0xbf,0xf0,0x3d,0xee,0x3d,0xee,
0x87,0xf2,0x87,0xf2,0xe8,0xee,0xe8,0xee,0x24,0xf7,0x24,0xf7,0x09,0x0d,0x09,0x0d,
0x76,0x12,0x76,0x12,0xda,0x0f,0xda,0x0f,0xe9,0x13,0xe9,0x13,0xd9,0x11,0xd9,0x11,
0x5f,0x11,0x5f,0x11,0xde,0x0d,0xde,0x0d,0x11,0x10,0x11,0x10,0x9f,0x0d,0x9f,0x0d,
0xa3,0x0e,0xa3,0x0e,0x5c,0xfc,0x5c,0xfc,0xe3,0xee,0xe3,0xee,0xb8,0xf1,0xb8,0xf1,
0x06,0xee,0x06,0xee,0x9a,0xef,0x9a,0xef,0x5f,0xf0,0x5f,0xf0,0x11,0xf3,0x11,0xf3,
0xfc,0xf9,0xfc,0xf9,0x5e,0x14,0x5e,0x14,0x0a,0x13,0x0a,0x13,0xd7,0x0f,0xd7,0x0f,
0x4a,0x0e,0x4a,0x0e,0x96,0x0d,0x96,0x0d,0x7b,0xf3,0x7b,0xf3,0xf2,0xeb,0xf2,0xeb,
0xbe,0xed,0xbe,0xed,0x08,0xf3,0x08,0xf3,0x68,0xf1,0x68,0xf1,0x2d,0x07,0x2d,0x07,
0xd3,0x16,0xd3,0x16,0x7c,0x13,0x7c,0x13,0x29,0x12,0x29,0x12,0x4c,0x10,0x4c,0x10,
0x70,0x02,0x70,0x02,0xfe,0xe8,0xfe,0xe8,0xa2,0xec,0xa2,0xec,0xf0,0xeb,0xf0,0xeb,
0xd3,0xed,0xd3,0xed,0x2a,0xf4,0x2a,0xf4,0xd8,0x14,0xd8,0x14,0xbf,0x13,0xbf,0x13,
0x19,0x16,0x19,0x16,0xfc,0x14,0xfc,0x14,0xfc,0x12,0xfc,0x12,0xeb,0xf5,0xeb,0xf5,
0xcf,0xec,0xcf,0xec,0xe7,0xec,0xe7,0xec,0xb2,0xed,0xb2,0xed,0x5e,0xee,0x5e,0xee,
0xa4,0x01,0xa4,0x01,0x4e,0x17,0x4e,0x17,0x85,0x13,0x85,0x13,0x97,0x12,0x97,0x12,
0xaa,0x0e,0xaa,0x0e,0x47,0x05,0x47,0x05,0x1e,0xe7,0x1e,0xe7,0xb1,0xe7,0xb1,0xe7,
0x98,0xe9,0x98,0xe9,0xd3,0xee,0xd3,0xee,0xf3,0xf0,0xf3,0xf0,0x40,0x11,0x40,0x11,
0xb6,0x18,0xb6,0x18,0xf0,0x18,0xf0,0x18,0x40,0x13,0x40,0x13,0x92,0x16,0x92,0x16,
0x85,0xfe,0x85,0xfe,0x6b,0xea,0x6b,0xea,0x0e,0xec,0x0e,0xec,0x86,0xed,0x86,0xed,
0xbf,0xec,0xbf,0xec,0x96,0xf8,0x96,0xf8,0x4d,0x16,0x4d,0x16,0xd5,0x12,0xd5,0x12,
0xfe,0x12,0xfe,0x12,0x57,0x10,0x57,0x10,0xac,0x0b,0xac,0x0b,0xf6,0xeb,0xf6,0xeb,
0x2a,0xe9,0x2a,0xe9,0xd2,0xea,0xd2,0xea,0x91,0xed,0x91,0xed,0xc6,0xec,0xc6,0xec,
0x2c,0x09,0x2c,0x09,0x58,0x18,0x58,0x18,0x5b,0x16,0x5b,0x16,0x0c,0x16,0x0c,0x16,
0xd4,0x16,0xd4,0x16,0x68,0x05,0x68,0x05,0xb1,0xea,0xb1,0xea,0x7b,0xeb,0x7b,0xeb,
0x74,0xea,0x74,0xea,0xb1,0xeb,0xb1,0xeb,0xd0,0xf3,0xd0,0xf3,0x10,0x13,0x10,0x13,
0x83,0x14,0x83,0x14,0xbe,0x12,0xbe,0x12,0x77,0x11,0x77,0x11,0xe6,0x10,0xe6,0x10,
0x47,0xf3,0x47,0xf3,0x3f,0xea,0x3f,0xea,0x3a,0xeb,0x3a,0xeb,0xb2,0xec,0xb2,0xec,
0x61,0xec,0x61,0xec,0x87,0x01,0x87,0x01,0x46,0x17,0x46,0x17,0xea,0x15,0xea,0x15,
0xdb,0x15,0xdb,0x15,0x54,0x15,0x54,0x15,0xce,0x09,0xce,0x09,0x74,0xec,0x74,0xec,
0x5a,0xeb,0x5a,0xeb,0x3d,0xeb,0x3d,0xeb,0xf7,0xeb,0xf7,0xeb,0xc1,0xed,0xc1,0xed,
0x05,0x0d,0x05,0x0d,0x84,0x13,0x84,0x13,0xb9,0x13,0xb9,0x13,0xc9,0x12,0xc9,0x12,
0x70,0x16,0x70,0x16,0x0f,0xfb,0x0f,0xfb,0x48,0xeb,0x48,0xeb,0x23,0xec,0x23,0xec,
0x7f,0xec,0x7f,0xec,0xb2,0xe9,0xb2,0xe9,0x24,0xfa,0x24,0xfa,0xd9,0x14,0xd9,0x14,
0x07,0x13,0x07,0x13,0xdc,0x16,0xdc,0x16,0x1a,0x16,0x1a,0x16,0xb2,0x10,0xb2,0x10,
0x86,0xf1,0x86,0xf1,0x98,0xec,0x98,0xec,0xef,0xe8,0xef,0xe8,0xed,0xeb,0xed,0xeb,
0xf2,0xe9,0xf2,0xe9,0xb7,0x06,0xb7,0x06,0x17,0x15,0x17,0x15,0x23,0x15,0x23,0x15,
0x65,0x12,0x65,0x12,0x5f,0x16,0x5f,0x16,0x09,0x01,0x09,0x01,0x21,0xec,0x21,0xec,
0x93,0xed,0x93,0xed,0x98,0xec,0x98,0xec,0xf7,0xea,0xf7,0xea,0xcd,0xf4,0xcd,0xf4,
0x5f,0x13,0x5f,0x13,0x04,0x13,0x04,0x13,0xc7,0x14,0xc7,0x14,0xc8,0x14,0xc8,0x14,
0x28,0x13,0x28,0x13,0xb4,0xf2,0xb4,0xf2,0x01,0xec,0x01,0xec,0x41,0xeb,0x41,0xeb,
0x41,0xec,0x41,0xec,0x64,0xe9,0x64,0xe9,0x19,0x03,0x19,0x03,0xa2,0x12,0xa2,0x12,
0x13,0x13,0x13,0x13,0x03,0x13,0x03,0x13,0x18,0x16,0x18,0x16,0x11,0x08,0x11,0x08,
0x80,0xed,0x80,0xed,0xb7,0xec,0xb7,0xec,0xe9,0xe9,0xe9,0xe9,0xc2,0xea,0xc2,0xea,
0xe4,0xef,0xe4,0xef,0x7e,0x10,0x7e,0x10,0xc0,0x14,0xc0,0x14,0xc1,0x16,0xc1,0x16,
0x75,0x15,0x75,0x15,0x40,0x17,0x40,0x17,0x37,0xf8,0x37,0xf8,0xbb,0xea,0xbb,0xea,
0xa6,0xea,0xa6,0xea,0x12,0xeb,0x12,0xeb,0x1d,0xe9,0x1d,0xe9,0x57,0xfd,0x57,0xfd,
0x2d,0x14,0x2d,0x14,0xf1,0x11,0xf1,0x11,0x43,0x15,0x43,0x15,0xd0,0x15,0xd0,0x15,
0x47,0x0c,0x47,0x0c,0xe4,0xec,0xe4,0xec,0x9f,0xeb,0x9f,0xeb,0xa2,0xe9,0xa2,0xe9,
0xf3,0xeb,0xf3,0xeb,0xaf,0xed,0xaf,0xed,0x3b,0x0d,0x3b,0x0d,0x99,0x16,0x99,0x16,
0xa2,0x16,0xa2,0x16,0x19,0x15,0x19,0x15,0xac,0x15,0xac,0x15,0xef,0xfd,0xef,0xfd,
0x7a,0xe9,0x7a,0xe9,0xe9,0xe9,0xe9,0xe9,0x92,0xe8,0x92,0xe8,0x5c,0xe9,0x5c,0xe9,
0x34,0xf7,0x34,0xf7,0x8b,0x14,0x8b,0x14,0xe8,0x15,0xe8,0x15,0x69,0x18,0x69,0x18,
0xe1,0x16,0xe1,0x16,0xc4,0x10,0xc4,0x10,0x9f,0xf0,0x9f,0xf0,0xfc,0xea,0xfc,0xea,
0xb9,0xe9,0xb9,0xe9,0x9c,0xeb,0x9c,0xeb,0xc7,0xea,0xc7,0xea,0x4e,0x06,0x4e,0x06,
0xd8,0x14,0xd8,0x14,0xeb,0x13,0xeb,0x13,0xd8,0x13,0xd8,0x13,0x2e,0x16,0x2e,0x16,
0x46,0x04,0x46,0x04,0x36,0xeb,0x36,0xeb,0xba,0xeb,0xba,0xeb,0xfd,0xe9,0xfd,0xe9,
0x98,0xeb,0x98,0xeb,0x31,0xf3,0x31,0xf3,0xa7,0x12,0xa7,0x12,0x08,0x14,0x08,0x14,
0xd7,0x16,0xd7,0x16,0x35,0x15,0x35,0x15,0xc9,0x13,0xc9,0x13,0xd7,0xf5,0xd7,0xf5,
0x23,0xeb,0x23,0xeb,0xc4,0xea,0xc4,0xea,0x85,0xeb,0x85,0xeb,0xd3,0xe9,0xd3,0xe9,
0x2f,0x00,0x2f,0x00,0x7b,0x14,0x7b,0x14,0xe4,0x12,0xe4,0x12,0x59,0x14,0x59,0x14,
0xe5,0x14,0xe5,0x14,0x76,0x09,0x76,0x09,0x58,0xec,0x58,0xec,0x53,0xed,0x53,0xed,
0x4c,0xeb,0x4c,0xeb,0xbc,0xec,0xbc,0xec,0x48,0xef,0x48,0xef,0x1a,0x0f,0x1a,0x0f,
0xdc,0x14,0xdc,0x14,0x71,0x14,0x71,0x14,0xea,0x12,0xea,0x12,0x96,0x13,0x96,0x13,
0x61,0xfa,0x61,0xfa,0x01,0xeb,0x01,0xeb,0x7f,0xed,0x7f,0xed,0x31,0xec,0x31,0xec,
0x2d,0xea,0x2d,0xea,0x38,0xfa,0x38,0xfa,0x6b,0x14,0x6b,0x14,0xfc,0x12,0xfc,0x12,
0xfc,0x14,0xfc,0x14,0xd1,0x13,0xd1,0x13,0x88,0x0d,0x88,0x0d,0x60,0xee,0x60,0xee,
0x1f,0xeb,0x1f,0xeb,0xf7,0xea,0xf7,0xea,0x00,0xed,0x00,0xed,0x7d,0xed,0x7d,0xed,
0xb5,0x0b,0xb5,0x0b,0x3f,0x16,0x3f,0x16,0x74,0x15,0x74,0x15,0xb3,0x13,0xb3,0x13,
0x32,0x14,0x32,0x14,0x99,0xff,0x99,0xff,0x52,0xe9,0x52,0xe9,0xf6,0xeb,0xf6,0xeb,
0xcb,0xea,0xcb,0xea,0x30,0xed,0x30,0xed,0xad,0xf6,0xad,0xf6,0x5a,0x14,0x5a,0x14,
0xe6,0x12,0xe6,0x12,0xb5,0x14,0xb5,0x14,0x2f,0x12,0x2f,0x12,0x8d,0x10,0x8d,0x10,
0xdd,0xf1,0xdd,0xf1,0x9d,0xea,0x9d,0xea,0xd5,0xea,0xd5,0xea,0xe4,0xec,0xe4,0xec,
0x03,0xed,0x03,0xed,0xd6,0x05,0xd6,0x05,0x6a,0x17,0x6a,0x17,0x7d,0x14,0x7d,0x14,
0xc8,0x13,0xc8,0x13,0x22,0x12,0x22,0x12,0xf8,0x03,0xf8,0x03,0xe0,0xe9,0xe0,0xe9,
0xb1,0xed,0xb1,0xed,0xf4,0xeb,0xf4,0xeb,0x99,0xee,0x99,0xee,0xc2,0xf2,0xc2,0xf2,
0x4e,0x11,0x4e,0x11,0xb7,0x13,0xb7,0x13,0xdf,0x14,0xdf,0x14,0xe3,0x11,0xe3,0x11,
0xb5,0x10,0xb5,0x10,0x48,0xf5,0x48,0xf5,0x76,0xe9,0x76,0xe9,0x6b,0xec,0x6b,0xec,
0x6d,0xed,0x6d,0xed,0xd6,0xed,0xd6,0xed,0x9d,0x00,0x9d,0x00,0x34,0x17,0x34,0x17,
0xc0,0x13,0xc0,0x13,0xf7,0x13,0xf7,0x13,0x2c,0x13,0x2c,0x13,0x90,0x09,0x90,0x09,
0xe9,0xeb,0xe9,0xeb,0xed,0xec,0xed,0xec,0x91,0xeb,0x91,0xeb,0xba,0xee,0xba,0xee,
0x27,0xf0,0x27,0xf0,0x58,0x0d,0x58,0x0d,0xb0,0x13,0xb0,0x13,0x8a,0x12,0x8a,0x12,
0x1b,0x11,0x1b,0x11,0x8a,0x13,0x8a,0x13,0x39,0xfc,0x39,0xfc,0xa9,0xe9,0xa9,0xe9,
0x78,0xec,0x78,0xec,0x68,0xec,0x68,0xec,0x1a,0xed,0x1a,0xed,0xbb,0xfa,0xbb,0xfa,
0xc0,0x16,0xc0,0x16,0xd4,0x13,0xd4,0x13,0x39,0x15,0x39,0x15,0xdd,0x12,0xdd,0x12,
0x55,0x0e,0x55,0x0e,0x58,0xef,0x58,0xef,0xc6,0xeb,0xc6,0xeb,0x77,0xeb,0x77,0xeb,
0x97,0xed,0x97,0xed,0xec,0xec,0xec,0xec,0x52,0x07,0x52,0x07,0xc9,0x14,0xc9,0x14,
0x9f,0x12,0x9f,0x12,0x0b,0x12,0x0b,0x12,0x23,0x13,0x23,0x13,0xa4,0x01,0xa4,0x01,
0x08,0xea,0x08,0xea,0x7d,0xed,0x7d,0xed,0xac,0xec,0xac,0xec,0x68,0xee,0x68,0xee,
0x9a,0xf5,0x9a,0xf5,0x0b,0x14,0x0b,0x14,0x5a,0x14,0x5a,0x14,0xb7,0x14,0xb7,0x14,
0x4e,0x11,0x4e,0x11,0xcf,0x0f,0xcf,0x0f,0x35,0xf3,0x35,0xf3,0x79,0xea,0x79,0xea,
0x6e,0xeb,0x6e,0xeb,0x70,0xed,0x70,0xed,0xcf,0xec,0xcf,0xec,0x0a,0x03,0x0a,0x03,
0xc9,0x16,0xc9,0x16,0xf1,0x13,0xf1,0x13,0xf0,0x13,0xf0,0x13,0xf9,0x12,0xf9,0x12,
0xba,0x06,0xba,0x06,0x7e,0xea,0x7e,0xea,0x45,0xec,0x45,0xec,0x46,0xeb,0x46,0xeb,
0x46,0xee,0x46,0xee,0xab,0xf1,0xab,0xf1,0x68,0x10,0x68,0x10,0xb1,0x14,0xb1,0x14,
0x72,0x15,0x72,0x15,0x34,0x12,0x34,0x12,0xf6,0x11,0xf6,0x11,0xfb,0xf7,0xfb,0xf7,
0x71,0xe9,0x71,0xe9,0x86,0xeb,0x86,0xeb,0x56,0xec,0x56,0xec,0xaf,0xec,0xaf,0xec,
0x3d,0xfd,0x3d,0xfd,0xc5,0x16,0xc5,0x16,0x0d,0x14,0x0d,0x14,0x57,0x15,0x57,0x15,
0x37,0x13,0x37,0x13,0x46,0x0c,0x46,0x0c,0x2a,0xed,0x2a,0xed,0xc6,0xeb,0xc6,0xeb,
0x9e,0xea,0x9e,0xea,0x56,0xed,0x56,0xed,0xcd,0xed,0xcd,0xed,0x07,0x0b,0x07,0x0b,
0xd1,0x15,0xd1,0x15,0xcc,0x14,0xcc,0x14,0x31,0x13,0x31,0x13,0xc0,0x13,0xc0,0x13,
0xbd,0xfe,0xbd,0xfe,0x50,0xe9,0x50,0xe9,0xdd,0xeb,0xdd,0xeb,0x49,0xeb,0x49,0xeb,
0x2f,0xec,0x2f,0xec,0x84,0xf7,0x84,0xf7,0x0b,0x15,0x0b,0x15,0x3d,0x14,0x3d,0x14,
0xa8,0x15,0xa8,0x15,0x6c,0x13,0x6c,0x13,0x7f,0x10,0x7f,0x10,0x86,0xf1,0x86,0xf1,
0x3c,0xeb,0x3c,0xeb,0xb2,0xea,0xb2,0xea,0x07,0xec,0x07,0xec,0x2d,0xeb,0x2d,0xeb,
0xe6,0x04,0xe6,0x04,0x49,0x16,0x49,0x16,0x26,0x15,0x26,0x15,0xad,0x14,0xad,0x14,
0xa7,0x14,0xa7,0x14,0x07,0x05,0x07,0x05,0x38,0xea,0x38,0xea,0xf0,0xeb,0xf0,0xeb,
0xd8,0xea,0xd8,0xea,0x91,0xec,0x91,0xec,0xcf,0xf1,0xcf,0xf1,0x4f,0x11,0x4f,0x11,
0x8b,0x14,0x8b,0x14,0xfc,0x15,0xfc,0x15,0x98,0x13,0x98,0x13,0x55,0x13,0x55,0x13,
0x4e,0xf6,0x4e,0xf6,0xe3,0xe9,0xe3,0xe9,0x66,0xea,0x66,0xea,0x66,0xeb,0x66,0xeb,
0xfd,0xea,0xfd,0xea,0xe0,0xff,0xe0,0xff,0x54,0x16,0x54,0x16,0x4e,0x14,0x4e,0x14,
0xec,0x15,0xec,0x15,0x8a,0x14,0x8a,0x14,0x91,0x0a,0x91,0x0a,0x5b,0xec,0x5b,0xec,
0xa6,0xeb,0xa6,0xeb,0x80,0xe9,0x80,0xe9,0xa6,0xec,0xa6,0xec,0xa5,0xee,0xa5,0xee,
0x63,0x0d,0x63,0x0d,0x04,0x15,0x04,0x15,0x79,0x15,0x79,0x15,0xe3,0x13,0xe3,0x13,
0xf1,0x14,0xf1,0x14,0x10,0xfc,0x10,0xfc,0xa6,0xe9,0xa6,0xe9,0x2b,0xeb,0x2b,0xeb,
0xdb,0xea,0xdb,0xea,0xeb,0xea,0xeb,0xea,0xa4,0xf9,0xa4,0xf9,0x66,0x15,0x66,0x15,
0x55,0x14,0x55,0x14,0x72,0x16,0x72,0x16,0x26,0x14,0x26,0x14,0xfd,0x0e,0xfd,0x0e,
0x2f,0xef,0x2f,0xef,0x42,0xeb,0x42,0xeb,0x88,0xe9,0x88,0xe9,0x69,0xec,0x69,0xec,
0x54,0xec,0x54,0xec,0xd0,0x08,0xd0,0x08,0x13,0x16,0x13,0x16,0x79,0x15,0x79,0x15,
0xa8,0x14,0xa8,0x14,0x50,0x15,0x50,0x15,0xba,0x01,0xba,0x01,0x87,0xe9,0x87,0xe9,
0x52,0xeb,0x52,0xeb,0xe2,0xe9,0xe2,0xe9,0x26,0xeb,0x26,0xeb,0x80,0xf4,0x80,0xf4,
0xec,0x13,0xec,0x13,0xd3,0x14,0xd3,0x14,0x71,0x16,0x71,0x16,0x66,0x13,0x66,0x13,
0x26,0x12,0x26,0x12,0x5d,0xf3,0x5d,0xf3,0x4d,0xea,0x4d,0xea,0xe5,0xe9,0xe5,0xe9,
0x14,0xec,0x14,0xec,0xdc,0xea,0xdc,0xea,0x9b,0x02,0x9b,0x02,0x93,0x16,0x93,0x16,
0x2a,0x15,0x2a,0x15,0x44,0x15,0x44,0x15,0xec,0x14,0xec,0x14,0x94,0x07,0x94,0x07,
0xe6,0xea,0xe6,0xea,0xa1,0xeb,0xa1,0xeb,0xb0,0xe9,0xb0,0xe9,0x04,0xec,0x04,0xec,
0x2e,0xf0,0x2e,0xf0,0x1d,0x10,0x1d,0x10,0x53,0x15,0x53,0x15,0x9a,0x16,0x9a,0x16,
0x7f,0x13,0x7f,0x13,0xa3,0x13,0xa3,0x13,0x2f,0xf8,0x2f,0xf8,0x89,0xe9,0x89,0xe9,
0xa3,0xea,0xa3,0xea,0xde,0xeb,0xde,0xeb,0x47,0xeb,0x47,0xeb,0x0e,0xfd,0x0e,0xfd,
0x27,0x16,0x27,0x16,0xa8,0x14,0xa8,0x14,0xe3,0x15,0xe3,0x15,0x43,0x14,0x43,0x14,
0x40,0x0c,0x40,0x0c,0xda,0xec,0xda,0xec,0x27,0xeb,0x27,0xeb,0x97,0xe9,0x97,0xe9,
0x95,0xec,0x95,0xec,0xa0,0xed,0xa0,0xed,0xd2,0x0b,0xd2,0x0b,0xf0,0x15,0xf0,0x15,
0xf9,0x15,0xf9,0x15,0xcc,0x13,0xcc,0x13,0x9b,0x14,0x9b,0x14,0x29,0xfe,0x29,0xfe,
0x42,0xe9,0x42,0xe9,0xe9,0xea,0xe9,0xea,0xf1,0xea,0xf1,0xea,0xca,0xeb,0xca,0xeb,
0xd1,0xf7,0xd1,0xf7,0x1d,0x15,0x1d,0x15,0x8c,0x14,0x8c,0x14,0xfa,0x15,0xfa,0x15,
0x6c,0x13,0x6c,0x13,0x00,0x10,0x00,0x10,0x58,0xf0,0x58,0xf0,0xac,0xea,0xac,0xea,
0x1b,0xea,0x1b,0xea,0xa3,0xec,0xa3,0xec,0x0c,0xec,0x0c,0xec,0xc2,0x06,0xc2,0x06,
0xce,0x16,0xce,0x16,0x0f,0x15,0x0f,0x15,0xfa,0x13,0xfa,0x13,0x6f,0x14,0x6f,0x14,
0x10,0x04,0x10,0x04,0xad,0xe9,0xad,0xe9,0x79,0xeb,0x79,0xeb,0xef,0xea,0xef,0xea,
0xc4,0xec,0xc4,0xec,0xe0,0xf2,0xe0,0xf2,0x78,0x12,0x78,0x12,0x04,0x15,0x04,0x15,
0xb9,0x15,0xb9,0x15,0xbb,0x12,0xbb,0x12,0x9c,0x12,0x9c,0x12,0x24,0xf5,0x24,0xf5,
0x9f,0xe9,0x9f,0xe9,0x95,0xea,0x95,0xea,0xb2,0xec,0xb2,0xec,0xe9,0xeb,0xe9,0xeb,
0xda,0x00,0xda,0x00,0xf4,0x16,0xf4,0x16,0xa3,0x14,0xa3,0x14,0x6b,0x14,0x6b,0x14,
0x4e,0x13,0x4e,0x13,0x34,0x09,0x34,0x09,0x55,0xeb,0x55,0xeb,0x52,0xeb,0x52,0xeb,
0x87,0xea,0x87,0xea,0x83,0xed,0x83,0xed,0x9a,0xef,0x9a,0xef,0xaf,0x0e,0xaf,0x0e,
0xb6,0x15,0xb6,0x15,0x5f,0x15,0x5f,0x15,0xb6,0x12,0xb6,0x12,0xd2,0x13,0xd2,0x13,
0xbe,0xfa,0xbe,0xfa,0x29,0xe9,0x29,0xe9,0x18,0xeb,0x18,0xeb,0xd1,0xeb,0xd1,0xeb,
0xf1,0xeb,0xf1,0xeb,0xf7,0xfa,0xf7,0xfa,0x33,0x16,0x33,0x16,0x93,0x14,0x93,0x14,
0x3f,0x15,0x3f,0x15,0xe2,0x12,0xe2,0x12,0xd2,0x0d,0xd2,0x0d,0x59,0xee,0x59,0xee,
0xcf,0xea,0xcf,0xea,0x66,0xea,0x66,0xea,0x9e,0xed,0x9e,0xed,0x4c,0xed,0x4c,0xed,
0x96,0x09,0x96,0x09,0x50,0x16,0x50,0x16,0xf1,0x14,0xf1,0x14,0x62,0x13,0x62,0x13,
0x29,0x14,0x29,0x14,0x7c,0x00,0x7c,0x00,0x3e,0xe9,0x3e,0xe9,0xbb,0xeb,0xbb,0xeb,
0x30,0xeb,0x30,0xeb,0x63,0xec,0x63,0xec,0xa6,0xf5,0xa6,0xf5,0x2e,0x14,0x2e,0x14,
0x9e,0x14,0x9e,0x14,0x8f,0x15,0x8f,0x15,0xbb,0x12,0xbb,0x12,0x4c,0x11,0x4c,0x11,
0x76,0xf2,0x76,0xf2,0x0f,0xea,0x0f,0xea,0xc0,0xea,0xc0,0xea,0x21,0xed,0x21,0xed,
0xa3,0xeb,0xa3,0xeb,0x9e,0x03,0x9e,0x03,0xf4,0x16,0xf4,0x16,0xab,0x14,0xab,0x14,
0x36,0x14,0x36,0x14,0x32,0x14,0x32,0x14,0xa6,0x06,0xa6,0x06,0x54,0xea,0x54,0xea,
0xa9,0xeb,0xa9,0xeb,0xad,0xea,0xad,0xea,0x0b,0xed,0x0b,0xed,0x22,0xf1,0x22,0xf1,
0x9a,0x10,0x9a,0x10,0x1b,0x15,0x1b,0x15,0x93,0x15,0x93,0x15,0x94,0x12,0x94,0x12,
0x5f,0x13,0x5f,0x13,0xff,0xf7,0xff,0xf7,0x95,0xe9,0x95,0xe9,0x22,0xeb,0x22,0xeb,
0x90,0xec,0x90,0xec,0x96,0xeb,0x96,0xeb,0x75,0xfd,0x75,0xfd,0x38,0x16,0x38,0x16,
0x2b,0x14,0x2b,0x14,0x13,0x15,0x13,0x15,0xbd,0x13,0xbd,0x13,0xdf,0x0b,0xdf,0x0b,
0xd0,0xec,0xd0,0xec,0x86,0xeb,0x86,0xeb,0x47,0xea,0x47,0xea,0x2c,0xed,0x2c,0xed,
0xf7,0xed,0xf7,0xed,0xfb,0x0b,0xfb,0x0b,0xa5,0x15,0xa5,0x15,0x45,0x15,0x45,0x15,
0x09,0x13,0x09,0x13,0x41,0x14,0x41,0x14,0xeb,0xfd,0xeb,0xfd,0x91,0xe9,0x91,0xe9,
0xbf,0xeb,0xbf,0xeb,0xcf,0xeb,0xcf,0xeb,0x1e,0xec,0x1e,0xec,0xe1,0xf7,0xe1,0xf7,
0xbd,0x14,0xbd,0x14,0xde,0x13,0xde,0x13,0x70,0x15,0x70,0x15,0x02,0x13,0x02,0x13,
0xc3,0x0f,0xc3,0x0f,0x94,0xf0,0x94,0xf0,0x79,0xeb,0x79,0xeb,0xa5,0xea,0xa5,0xea,
0x1f,0xed,0x1f,0xed,0x5f,0xec,0x5f,0xec,0xcb,0x06,0xcb,0x06,0x09,0x16,0x09,0x16,
0x73,0x14,0x73,0x14,0xb9,0x13,0xb9,0x13,0x51,0x14,0x51,0x14,0xb8,0x03,0xb8,0x03,
0x01,0xea,0x01,0xea,0x31,0xec,0x31,0xec,0x0e,0xeb,0x0e,0xeb,0x92,0xec,0x92,0xec,
0x11,0xf3,0x11,0xf3,0x81,0x12,0x81,0x12,0x2d,0x14,0x2d,0x14,0x4e,0x15,0x4e,0x15,
0x9c,0x12,0x9c,0x12,0x97,0x12,0x97,0x12,0x2e,0xf5,0x2e,0xf5,0xb0,0xea,0xb0,0xea,
0x4b,0xeb,0x4b,0xeb,0xfa,0xec,0xfa,0xec,0xc3,0xeb,0xc3,0xeb,0xc0,0x00,0xc0,0x00,
0x0f,0x16,0x0f,0x16,0xc0,0x13,0xc0,0x13,0x20,0x14,0x20,0x14,0x6d,0x13,0x6d,0x13,
0x3e,0x09,0x3e,0x09,0xcc,0xeb,0xcc,0xeb,0x6c,0xec,0x6c,0xec,0xdf,0xea,0xdf,0xea,
0x7b,0xed,0x7b,0xed,0x78,0xef,0x78,0xef,0x86,0x0e,0x86,0x0e,0x8d,0x14,0x8d,0x14,
0xf7,0x14,0xf7,0x14,0x82,0x12,0x82,0x12,0xb0,0x13,0xb0,0x13,0x80,0xfa,0x80,0xfa,
0x38,0xea,0x38,0xea,0x06,0xec,0x06,0xec,0x6d,0xec,0x6d,0xec,0x59,0xec,0x59,0xec,
0x59,0xfb,0x59,0xfb,0x94,0x15,0x94,0x15,0x57,0x13,0x57,0x13,0x96,0x14,0x96,0x14,
0x5f,0x12,0x5f,0x12,0x77,0x0d,0x77,0x0d,0x73,0xee,0x73,0xee,0x2f,0xec,0x2f,0xec,
0x04,0xeb,0x04,0xeb,0x10,0xee,0x10,0xee,0x94,0xed,0x94,0xed,0xfe,0x09,0xfe,0x09,
0x40,0x15,0x40,0x15,0x49,0x14,0x49,0x14,0xd3,0x12,0xd3,0x12,0xb7,0x13,0xb7,0x13,
0x13,0x00,0x13,0x00,0x30,0xea,0x30,0xea,0xbe,0xec,0xbe,0xec,0xb8,0xeb,0xb8,0xeb,
0x28,0xed,0x28,0xed,0x65,0xf6,0x65,0xf6,0xf7,0x13,0xf7,0x13,0x4e,0x13,0x4e,0x13,
0x1a,0x15,0x1a,0x15,0x04,0x12,0x04,0x12,0x70,0x10,0x70,0x10,0xce,0xf1,0xce,0xf1,
0x67,0xeb,0x67,0xeb,0x8e,0xeb,0x8e,0xeb,0xe3,0xed,0xe3,0xed,0x83,0xec,0x83,0xec,
0xbb,0x04,0xbb,0x04,0xe8,0x15,0xe8,0x15,0x5e,0x13,0x5e,0x13,0x68,0x13,0x68,0x13,
0x5f,0x13,0x5f,0x13,0x7d,0x05,0x7d,0x05,0x7e,0xea,0x7e,0xea,0x10,0xed,0x10,0xed,
0x8e,0xeb,0x8e,0xeb,0x13,0xee,0x13,0xee,0x38,0xf2,0x38,0xf2,0x48,0x11,0x48,0x11,
0xd3,0x13,0xd3,0x13,0xb8,0x14,0xb8,0x14,0xac,0x11,0xac,0x11,0x9b,0x12,0x9b,0x12,
0xd0,0xf6,0xd0,0xf6,0x5b,0xea,0x5b,0xea,0xe9,0xeb,0xe9,0xeb,0x53,0xed,0x53,0xed,
0x80,0xec,0x80,0xec,0x17,0xff,0x17,0xff,0x32,0x16,0x32,0x16,0x09,0x13,0x09,0x13,
0x11,0x14,0x11,0x14,0x89,0x12,0x89,0x12,0x71,0x0a,0x71,0x0a,0x38,0xec,0x38,0xec,
0xb6,0xec,0xb6,0xec,0x31,0xeb,0x31,0xeb,0x70,0xee,0x70,0xee,0x35,0xef,0x35,0xef,
0x58,0x0d,0x58,0x0d,0xd4,0x14,0xd4,0x14,0x64,0x14,0x64,0x14,0xee,0x11,0xee,0x11,
0x53,0x13,0x53,0x13,0x49,0xfc,0x49,0xfc,0xc3,0xe9,0xc3,0xe9,0xa0,0xec,0xa0,0xec,
0xa7,0xec,0xa7,0xec,0xe6,0xec,0xe6,0xec,0x5f,0xf9,0x5f,0xf9,0x5f,0x15,0x5f,0x15,
0x27,0x13,0x27,0x13,0xca,0x14,0xca,0x14,0x08,0x12,0x08,0x12,0x92,0x0e,0x92,0x0e,
0x62,0xef,0x62,0xef,0x08,0xec,0x08,0xec,0x34,0xeb,0x34,0xeb,0x41,0xee,0x41,0xee,
0x54,0xed,0x54,0xed,0x40,0x08,0x40,0x08,0xb9,0x15,0xb9,0x15,0xee,0x13,0xee,0x13,
0xd4,0x12,0xd4,0x12,0x73,0x13,0x73,0x13,0x0a,0x02,0x0a,0x02,0xc1,0xe9,0xc1,0xe9,
0xf3,0xec,0xf3,0xec,0xcf,0xeb,0xcf,0xeb,0x72,0xed,0x72,0xed,0x92,0xf4,0x92,0xf4,
0x7d,0x13,0x7d,0x13,0x87,0x13,0x87,0x13,0xe6,0x14,0xe6,0x14,0xf1,0x11,0xf1,0x11,
0xa0,0x11,0xa0,0x11,0x98,0xf3,0x98,0xf3,0xe8,0xea,0xe8,0xea,0xa0,0xeb,0xa0,0xeb,
0x95,0xed,0x95,0xed,0x13,0xec,0x13,0xec,0x39,0x02,0x39,0x02,0x60,0x16,0x60,0x16,
0x96,0x13,0x96,0x13,0xc8,0x13,0xc8,0x13,0x57,0x13,0x57,0x13,0xff,0x07,0xff,0x07,
0xde,0xea,0xde,0xea,0x9a,0xec,0x9a,0xec,0x21,0xeb,0x21,0xeb,0xb1,0xed,0xb1,0xed,
0x2d,0xf0,0x2d,0xf0,0xb5,0x0f,0xb5,0x0f,0x55,0x14,0x55,0x14,0xbc,0x14,0xbc,0x14,
0x12,0x12,0x12,0x12,0x7c,0x13,0x7c,0x13,0x3b,0xf9,0x3b,0xf9,0x0c,0xea,0x0c,0xea,
0xfd,0xeb,0xfd,0xeb,0xbc,0xec,0xbc,0xec,0x0c,0xec,0x0c,0xec,0x1c,0xfc,0x1c,0xfc,
0xda,0x15,0xda,0x15,0x37,0x13,0x37,0x13,0x66,0x14,0x66,0x14,0xc3,0x12,0xc3,0x12,
0x15,0x0d,0x15,0x0d,0x9c,0xed,0x9c,0xed,0x19,0xec,0x19,0xec,0xe6,0xea,0xe6,0xea,
0xd0,0xed,0xd0,0xed,0x61,0xed,0x61,0xed,0xe0,0x0a,0xe0,0x0a,0x60,0x15,0x60,0x15,
0x83,0x14,0x83,0x14,0xbf,0x12,0xbf,0x12,0x3b,0x14,0x3b,0x14,0x6f,0xff,0x6f,0xff,
0xea,0xe9,0xea,0xe9,0x6a,0xec,0x6a,0xec,0xd8,0xeb,0xd8,0xeb,0x8b,0xec,0x8b,0xec,
0x8b,0xf6,0x8b,0xf6,0x57,0x14,0x57,0x14,0x9c,0x13,0x9c,0x13,0x27,0x15,0x27,0x15,
0x61,0x12,0x61,0x12,0xb3,0x10,0xb3,0x10,0x87,0xf1,0x87,0xf1,0x66,0xeb,0x66,0xeb,
0x15,0xeb,0x15,0xeb,0x74,0xed,0x74,0xed,0xe1,0xeb,0xe1,0xeb,0x21,0x05,0x21,0x05,
0xe5,0x15,0xe5,0x15,0xe8,0x13,0xe8,0x13,0xa5,0x13,0xa5,0x13,0x27,0x14,0x27,0x14,
0x49,0x05,0x49,0x05,0x69,0xea,0x69,0xea,0x82,0xec,0x82,0xec,0x0e,0xeb,0x0e,0xeb,
0xfc,0xec,0xfc,0xec,0xda,0xf1,0xda,0xf1,0x7a,0x11,0x7a,0x11,0x22,0x14,0x22,0x14,
0x3c,0x15,0x3c,0x15,0x6b,0x12,0x6b,0x12,0x32,0x13,0x32,0x13,0x6e,0xf6,0x6e,0xf6,
0x41,0xea,0x41,0xea,0x53,0xeb,0x53,0xeb,0xc2,0xec,0xc2,0xec,0x75,0xeb,0x75,0xeb,
0x1d,0xff,0x1d,0xff,0x17,0x16,0x17,0x16,0xab,0x13,0xab,0x13,0x95,0x14,0x95,0x14,
0xac,0x13,0xac,0x13,0xbf,0x0a,0xbf,0x0a,0x53,0xec,0x53,0xec,0x4a,0xec,0x4a,0xec,
0xa5,0xea,0xa5,0xea,0x55,0xed,0x55,0xed,0x6c,0xee,0x6c,0xee,0x41,0x0d,0x41,0x0d,
0xe8,0x14,0xe8,0x14,0xfa,0x14,0xfa,0x14,0xc8,0x12,0xc8,0x12,0x52,0x14,0x52,0x14,
0x34,0xfc,0x34,0xfc,0xc2,0xe9,0xc2,0xe9,0xe1,0xeb,0xe1,0xeb,0xea,0xeb,0xea,0xeb,
0xc6,0xeb,0xc6,0xeb,0x51,0xf9,0x51,0xf9,0x35,0x15,0x35,0x15,0x85,0x13,0x85,0x13,
0x21,0x15,0x21,0x15,0xf8,0x12,0xf8,0x12,0xeb,0x0e,0xeb,0x0e,0x5e,0xef,0x5e,0xef,
0xb4,0xeb,0xb4,0xeb,0xc9,0xea,0xc9,0xea,0x8e,0xed,0x8e,0xed,0xb8,0xec,0xb8,0xec,
0x68,0x08,0x68,0x08,0xe3,0x15,0xe3,0x15,0x86,0x14,0x86,0x14,0x74,0x13,0x74,0x13,
0x53,0x14,0x53,0x14,0xf9,0x01,0xf9,0x01,0xd0,0xe9,0xd0,0xe9,0x59,0xec,0x59,0xec,
0x44,0xeb,0x44,0xeb,0xab,0xec,0xab,0xec,0xaa,0xf4,0xaa,0xf4,0x80,0x13,0x80,0x13,
0xf9,0x13,0xf9,0x13,0x73,0x15,0x73,0x15,0xa3,0x12,0xa3,0x12,0xae,0x11,0xae,0x11,
0x49,0xf3,0x49,0xf3,0x9b,0xea,0x9b,0xea,0x0f,0xeb,0x0f,0xeb,0xfe,0xec,0xfe,0xec,
0xe3,0xeb,0xe3,0xeb,0xf4,0x02,0xf4,0x02,0xac,0x16,0xac,0x16,0x10,0x14,0x10,0x14,
0x4b,0x14,0x4b,0x14,0xd6,0x13,0xd6,0x13,0x4f,0x07,0x4f,0x07,0x7f,0xea,0x7f,0xea,
0x2a,0xec,0x2a,0xec,0xa8,0xea,0xa8,0xea,0x1c,0xed,0x1c,0xed,0xb0,0xf0,0xb0,0xf0,
0x5f,0x10,0x5f,0x10,0xd1,0x14,0xd1,0x14,0x3e,0x15,0x3e,0x15,0xb1,0x12,0xb1,0x12,
0x5e,0x13,0x5e,0x13,0x58,0xf8,0x58,0xf8,0x8f,0xe9,0x8f,0xe9,0x95,0xeb,0x95,0xeb,
0x3f,0xec,0x3f,0xec,0xd8,0xeb,0xd8,0xeb,0x23,0xfd,0x23,0xfd,0x91,0x16,0x91,0x16,
0xb4,0x13,0xb4,0x13,0xe1,0x14,0xe1,0x14,0x1e,0x13,0x1e,0x13,0x03,0x0c,0x03,0x0c,
0x90,0xec,0x90,0xec,0xa3,0xeb,0xa3,0xeb,0x9b,0xea,0x9b,0xea,0x6a,0xed,0x6a,0xed,
0x0d,0xee,0x0d,0xee,0x15,0x0c,0x15,0x0c,0xf3,0x15,0xf3,0x15,0xc1,0x14,0xc1,0x14,
0x24,0x13,0x24,0x13,0x02,0x14,0x02,0x14,0x0b,0xfe,0x0b,0xfe,0xf8,0xe8,0xf8,0xe8,
0x25,0xec,0x25,0xec,0x9d,0xeb,0x9d,0xeb,0x71,0xec,0x71,0xec,0xc0,0xf7,0xc0,0xf7,
0x74,0x15,0x74,0x15,0xda,0x13,0xda,0x13,0x33,0x15,0x33,0x15,0x99,0x12,0x99,0x12,
0xc6,0x0f,0xc6,0x0f,0x24,0xf0,0x24,0xf0,0xd7,0xea,0xd7,0xea,0x13,0xeb,0x13,0xeb,
0x6a,0xed,0x6a,0xed,0xa0,0xec,0xa0,0xec,0xb4,0x06,0xb4,0x06,0xd2,0x16,0xd2,0x16,
0x01,0x14,0x01,0x14,0xa5,0x13,0xa5,0x13,0xc0,0x13,0xc0,0x13,0xd7,0x03,0xd7,0x03,
0x4c,0xe9,0x4c,0xe9,0x7f,0xec,0x7f,0xec,0x47,0xeb,0x47,0xeb,0x4c,0xed,0x4c,0xed,
0x3e,0xf3,0x3e,0xf3,0x03,0x13,0x03,0x13,0x69,0x14,0x69,0x14,0xf8,0x14,0xf8,0x14,
0x33,0x12,0x33,0x12,0x1f,0x12,0x1f,0x12,0xd1,0xf4,0xd1,0xf4,0xc8,0xe9,0xc8,0xe9,
0xc6,0xeb,0xc6,0xeb,0x22,0xed,0x22,0xed,0x54,0xec,0x54,0xec,0xd9,0x00,0xd9,0x00,
0x34,0x17,0x34,0x17,0x6b,0x13,0x6b,0x13,0x15,0x14,0x15,0x14,0xe7,0x12,0xe7,0x12,
0x13,0x09,0x13,0x09,0xac,0xea,0xac,0xea,0x2c,0xec,0x2c,0xec,0x17,0xeb,0x17,0xeb,
0xea,0xed,0xea,0xed,0xcd,0xef,0xcd,0xef,0x21,0x0f,0x21,0x0f,0x67,0x15,0x67,0x15,
0x8b,0x14,0x8b,0x14,0x47,0x12,0x47,0x12,0x3d,0x13,0x3d,0x13,0x66,0xfa,0x66,0xfa,
0xcf,0xe8,0xcf,0xe8,0x2e,0xec,0x2e,0xec,0x4a,0xec,0x4a,0xec,0x82,0xec,0x82,0xec,
0xc6,0xfa,0xc6,0xfa,0x8a,0x16,0x8a,0x16,0x6d,0x13,0x6d,0x13,0xd7,0x14,0xd7,0x14,
0x88,0x12,0x88,0x12,0xfc,0x0d,0xfc,0x0d,0xf6,0xed,0xf6,0xed,0x83,0xeb,0x83,0xeb,
0xd5,0xea,0xd5,0xea,0x40,0xed,0x40,0xed,0x4f,0xec,0x4f,0xec,0x45,0x08,0x45,0x08,
0x91,0x14,0x91,0x14,0x3d,0x12,0x3d,0x12,0x5b,0x11,0x5b,0x11,0x58,0x12,0x58,0x12,
0xf2,0xff,0xf2,0xff,0x77,0xe8,0x77,0xe8,0x6f,0xec,0x6f,0xec,0x55,0xeb,0x55,0xeb,
0xc0,0xec,0xc0,0xec,0x83,0xf4,0x83,0xf4,0x3e,0x13,0x3e,0x13,0x3d,0x12,0x3d,0x12,
0x91,0x13,0x91,0x13,0xbd,0x10,0xbd,0x10,0x4d,0x10,0x4d,0x10,0xfb,0xf1,0xfb,0xf1,
0xa7,0xea,0xa7,0xea,0xa7,0xeb,0xa7,0xeb,0x94,0xed,0x94,0xed,0x21,0xec,0x21,0xec,
0xef,0x02,0xef,0x02,0xbc,0x15,0xbc,0x15,0x32,0x12,0x32,0x12,0xaa,0x12,0xaa,0x12,
0x54,0x12,0x54,0x12,0x70,0x06,0x70,0x06,0x1e,0xea,0x1e,0xea,0x13,0xed,0x13,0xed,
0x4f,0xeb,0x4f,0xeb,0xd7,0xed,0xd7,0xed,0x95,0xf0,0x95,0xf0,0xfb,0x0f,0xfb,0x0f,
0x17,0x13,0x17,0x13,0x92,0x13,0x92,0x13,0x05,0x11,0x05,0x11,0x7b,0x12,0x7b,0x12,
0xf1,0xf7,0xf1,0xf7,0x4a,0xea,0x4a,0xea,0xc1,0xec,0xc1,0xec,0x3b,0xed,0x3b,0xed,
0x68,0xec,0x68,0xec,0xd6,0xfc,0xd6,0xfc,0x71,0x15,0x71,0x15,0xac,0x11,0xac,0x11,
0x4a,0x13,0x49,0x13,0x9c,0x11,0x9c,0x11,0xa3,0x0b,0xa3,0x0b,0xcd,0xec,0xcd,0xec,
0x1c,0xed,0x1c,0xed,0xa9,0xeb,0xa9,0xeb,0x88,0xee,0x88,0xee,0x13,0xee,0x13,0xee,
0x73,0x0b,0x73,0x0b,0x11,0x14,0x11,0x14,0xfd,0x12,0xfd,0x12,0x7b,0x11,0x7b,0x11,
0x1f,0x13,0x1f,0x13,0x16,0xfe,0x16,0xfe,0x19,0xea,0x19,0xea,0xb2,0xed,0xb2,0xed,
0xc7,0xec,0xc7,0xec,0x4d,0xed,0x4d,0xed,0x70,0xf7,0x70,0xf7,0x44,0x14,0x44,0x14,
0xc2,0x11,0xc2,0x11,0xb4,0x13,0xb4,0x13,0x23,0x11,0x23,0x11,0x91,0x0f,0x91,0x0f,
0xbd,0xf0,0xbd,0xf0,0xa3,0xec,0xa3,0xec,0x63,0xec,0x63,0xec,0xb1,0xee,0xb1,0xee,
0xdf,0xec,0xdf,0xec,0x05,0x06,0x05,0x06,0xe7,0x14,0xe7,0x14,0x2d,0x12,0x2d,0x12,
0x14,0x12,0x14,0x12,0xcf,0x12,0xcf,0x12,0x07,0x04,0x07,0x04,0x9e,0xea,0x9e,0xea,
0x45,0xee,0x45,0xee,0x88,0xec,0x88,0xec,0x50,0xee,0x50,0xee,0x0c,0xf3,0x0d,0xf3,
0xd1,0x11,0xd1,0x11,0x4d,0x12,0x4d,0x12,0x81,0x13,0x81,0x13,0xcf,0x10,0xd0,0x10,
0xd7,0x11,0xd7,0x11,0x7c,0xf5,0x7c,0xf5,0xae,0xeb,0xae,0xeb,0x35,0xed,0x35,0xed,
0x6b,0xee,0x6b,0xee,0xc3,0xec,0xc3,0xec,0x56,0x00,0x56,0x00,0x67,0x15,0x67,0x15,
0xae,0x11,0xae,0x11,0xbb,0x12,0xbb,0x12,0x1e,0x12,0x1e,0x12,0x4f,0x09,0x4f,0x09,
0x26,0xec,0x26,0xec,0x29,0xee,0x29,0xee,0x85,0xec,0x85,0xec,0x03,0xef,0x03,0xef,
0xd9,0xef,0xd9,0xef,0x19,0x0e,0x19,0x0e,0x55,0x13,0x55,0x13,0x06,0x13,0x06,0x13,
0xf1,0x10,0xf1,0x10,0xe9,0x12,0xe9,0x12,0xfd,0xfa,0xfd,0xfa,0xd5,0xea,0xd5,0xea,
0xed,0xed,0xec,0xed,0xe9,0xed,0xe9,0xed,0x44,0xed,0x44,0xed,0xbb,0xfa,0xbb,0xfa,
0xf1,0x14,0xf1,0x14,0x9b,0x11,0x9b,0x11,0x1c,0x13,0x1c,0x13,0x5b,0x11,0x5a,0x11,
0x8d,0x0d,0x8c,0x0d,0xed,0xee,0xed,0xee,0x69,0xed,0x69,0xed,0xc8,0xec,0xc8,0xec,
0x47,0xef,0x46,0xef,0xde,0xed,0xde,0xed,0x3d,0x09,0x3d,0x09,0x74,0x14,0x74,0x14,
0x6c,0x12,0x6c,0x12,0x5a,0x11,0x5a,0x11,0x01,0x13,0x01,0x13,0xc6,0x00,0xc5,0x00,
0x96,0xea,0x96,0xea,0x44,0xee,0x44,0xee,0x66,0xed,0x66,0xed,0x09,0xee,0x09,0xee,
0xb7,0xf5,0xb7,0xf5,0x2e,0x13,0x2e,0x13,0x0d,0x12,0x0d,0x12,0x29,0x13,0x29,0x13,
0xc6,0x10,0xc6,0x10,0x86,0x10,0x86,0x10,0xf1,0xf2,0xf1,0xf2,0x44,0xec,0x44,0xec,
0x27,0xed,0x27,0xed,0x12,0xef,0x12,0xef,0xf4,0xec,0xf4,0xec,0x94,0x03,0x94,0x03,
0x25,0x15,0x25,0x15,0xeb,0x11,0xec,0x11,0xde,0x11,0xdf,0x11,0x75,0x12,0x75,0x12,
0x50,0x06,0x51,0x06,0x6c,0xeb,0x6d,0xeb,0x25,0xee,0x25,0xee,0x0f,0xed,0x10,0xed,
0xcc,0xee,0xcd,0xee,0xbb,0xf1,0xbb,0xf1,0x0c,0x10,0x0c,0x10,0xef,0x12,0xf0,0x12,
0x01,0x13,0x01,0x13,0x9f,0x10,0x9f,0x10,0x55,0x12,0x56,0x12,0x1f,0xf8,0x20,0xf8,
0x5e,0xeb,0x5f,0xeb,0xb7,0xed,0xb8,0xed,0xbe,0xee,0xbf,0xee,0x19,0xed,0x1a,0xed,
0xdb,0xfd,0xdc,0xfd,0x14,0x15,0x14,0x15,0xc0,0x11,0xc0,0x11,0x57,0x12,0x58,0x12,
0x96,0x11,0x97,0x11,0x0b,0x0b,0x0c,0x0b,0x85,0xed,0x85,0xed,0x8f,0xed,0x8f,0xed,
0xf7,0xec,0xf7,0xec,0x57,0xef,0x57,0xef,0x09,0xef,0x09,0xef,0xb4,0x0b,0xb4,0x0b,
0xec,0x13,0xec,0x13,0x99,0x12,0x99,0x12,0xb1,0x10,0xb1,0x10,0xcb,0x12,0xcb,0x12,
0x9b,0xfd,0x9b,0xfd,0xc0,0xea,0xbf,0xea,0xf1,0xed,0xf1,0xed,0x25,0xee,0x24,0xee,
0xc6,0xed,0xc6,0xed,0x96,0xf8,0x95,0xf8,0x01,0x14,0x01,0x14,0x1b,0x12,0x1b,0x12,
0xcf,0x12,0xce,0x12,0xe0,0x10,0xdf,0x10,0xb1,0x0e,0xb0,0x0e,0xde,0xf0,0xde,0xf0,
0x9a,0xec,0x99,0xec,0xfd,0xec,0xfc,0xec,0x6b,0xef,0x6a,0xef,0x95,0xed,0x94,0xed,
0x92,0x06,0x92,0x06,0xda,0x14,0xd9,0x14,0x65,0x12,0x64,0x12,0x52,0x11,0x51,0x11,
0xa8,0x12,0xa8,0x12,0x49,0x03,0x48,0x03,0x1b,0xeb,0x1a,0xeb,0xf0,0xed,0xf0,0xed,
0x84,0xed,0x84,0xed,0x92,0xee,0x91,0xee,0x13,0xf4,0x13,0xf4,0xa2,0x11,0xa2,0x11,
0xce,0x12,0xce,0x12,0x1a,0x13,0x19,0x13,0x8d,0x10,0x8d,0x10,0x32,0x11,0x31,0x11,
0x66,0xf5,0x66,0xf5,0xa8,0xeb,0xa8,0xeb,0x2b,0xed,0x2b,0xed,0x0b,0xef,0x0b,0xef,
0x18,0xed,0x18,0xed,0xe9,0x00,0xe9,0x00,0x1a,0x15,0x1a,0x15,0x35,0x12,0x36,0x12,
0x0d,0x12,0x0d,0x12,0x08,0x12,0x09,0x12,0x81,0x08,0x81,0x08,0x97,0xec,0x97,0xec,
0xa0,0xed,0xa1,0xed,0x02,0xed,0x03,0xed,0x2a,0xef,0x2b,0xef,0x91,0xf0,0x92,0xf0,
0xe4,0x0d,0xe4,0x0d,0x8b,0x13,0x8b,0x13,0x03,0x13,0x04,0x13,0x8a,0x10,0x8a,0x10,
0x6e,0x12,0x6f,0x12,0xb4,0xfa,0xb5,0xfa,0x0f,0xeb,0x0f,0xeb,0x81,0xed,0x82,0xed,
0x7c,0xee,0x7d,0xee,0x81,0xed,0x82,0xed,0x6a,0xfb,0x6b,0xfb,0x82,0x14,0x83,0x14,
0x3b,0x12,0x3c,0x12,0xb9,0x12,0xba,0x12,0x34,0x11,0x35,0x11,0xc0,0x0c,0xc1,0x0c,
0x3d,0xef,0x3d,0xef,0x05,0xed,0x06,0xed,0xc7,0xec,0xc8,0xec,0x84,0xef,0x85,0xef,
0x7a,0xee,0x7b,0xee,0x50,0x09,0x50,0x09,0x6f,0x14,0x70,0x14,0xe8,0x12,0xe8,0x12,
0x10,0x11,0x11,0x11,0xad,0x12,0xae,0x12,0x4a,0x00,0x4a,0x00,0xfa,0xea,0xfa,0xea,
0xa3,0xed,0xa3,0xed,0x9d,0xed,0x9d,0xed,0x33,0xee,0x33,0xee,0x6a,0xf6,0x6a,0xf6,
0xca,0x12,0xca,0x12,0x8f,0x12,0x8f,0x12,0x57,0x13,0x56,0x13,0xb7,0x10,0xb7,0x10,
0xf3,0x0f,0xf3,0x0f,0x26,0xf3,0x26,0xf3,0x53,0xec,0x53,0xec,0xcc,0xec,0xcb,0xec,
0x4e,0xef,0x4d,0xef,0x7a,0xed,0x79,0xed,0xf2,0x03,0xf1,0x03,0xdf,0x14,0xde,0x14,
0x9b,0x12,0x9a,0x12,0xe4,0x11,0xe3,0x11,0x3d,0x12,0x3c,0x12,0xb8,0x05,0xb7,0x05,
0xdf,0xeb,0xde,0xeb,0xb3,0xed,0xb2,0xed,0xdc,0xec,0xdb,0xec,0xf7,0xee,0xf6,0xee,
0x75,0xf2,0x73,0xf2,0xee,0x0f,0xed,0x0f,0x21,0x13,0x20,0x13,0xaa,0x13,0xa9,0x13,
0xb4,0x10,0xb2,0x10,0xe0,0x11,0xdf,0x11,0xf4,0xf7,0xf3,0xf7,0xac,0xeb,0xab,0xeb,
0x0c,0xed,0x0b,0xed,0x93,0xee,0x92,0xee,0x66,0xed,0x65,0xed,0x6a,0xfe,0x6a,0xfe,
0xc0,0x14,0xbf,0x14,0x66,0x12,0x65,0x12,0xf8,0x12,0xf7,0x12,0xae,0x11,0xae,0x11,
0x94,0x0a,0x94,0x0a,0xe3,0xed,0xe3,0xed,0x8a,0xed,0x8a,0xed,0x4b,0xec,0x4b,0xec,
0x38,0xef,0x38,0xef,0x7f,0xef,0x7f,0xef,0xce,0x0b,0xce,0x0b,0xa9,0x13,0xa9,0x13,
0x79,0x13,0x79,0x13,0x32,0x11,0x32,0x11,0xb7,0x12,0xb8,0x12,0x5d,0xfd,0x5d,0xfd,
0x65,0xeb,0x65,0xeb,0x8b,0xed,0x8c,0xed,0x95,0xed,0x96,0xed,0xc9,0xed,0xca,0xed,
0x13,0xf9,0x14,0xf9,0xa0,0x13,0xa2,0x13,0x28,0x12,0x29,0x12,0xaf,0x13,0xb0,0x13,
0x2a,0x11,0x2c,0x11,0x61,0x0e,0x63,0x0e,0xfe,0xf0,0xff,0xf0,0x23,0xed,0x25,0xed,
0x46,0xec,0x47,0xec,0x08,0xef,0x09,0xef,0xc9,0xed,0xca,0xed,0xe5,0x06,0xe7,0x06,
0x39,0x14,0x3b,0x14,0xea,0x12,0xeb,0x12,0x09,0x12,0x0a,0x12,0xbe,0x12,0xbf,0x12,
0xd9,0x02,0xda,0x02,0xa1,0xeb,0xa2,0xeb,0xff,0xed,0x00,0xee,0xaf,0xec,0xb0,0xec,