-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUI_wxcraftercb_bitmaps.cpp
920 lines (900 loc) · 63.1 KB
/
UI_wxcraftercb_bitmaps.cpp
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
//
// This file was automatically generated by wxrc, do not edit by hand.
//
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include <wx/filesys.h>
#include <wx/fs_mem.h>
#include <wx/xrc/xmlres.h>
#include <wx/xrc/xh_all.h>
#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805
#define XRC_ADD_FILE(name, data, size, mime) \
wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime)
#else
#define XRC_ADD_FILE(name, data, size, mime) \
wxMemoryFSHandler::AddFile(name, data, size)
#endif
static size_t xml_res_size_0 = 509;
static unsigned char xml_res_file_0[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,6,98,75,71,
68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,19,0,
0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,218,8,10,18,51,58,13,121,
245,208,0,0,1,125,73,68,65,84,56,203,165,146,205,106,212,80,20,199,127,
73,38,29,44,84,97,196,42,248,8,162,96,95,192,39,240,57,4,55,174,125,130,
174,93,138,75,241,81,132,130,162,160,46,92,139,182,58,99,166,173,52,105,
146,123,207,249,187,136,147,204,48,83,170,120,54,247,227,220,255,239,124,
220,3,255,105,201,247,247,207,180,225,94,73,150,31,0,15,111,222,123,92,
92,10,184,113,247,209,154,163,154,190,107,203,31,111,50,32,219,36,188,117,
255,73,2,48,186,136,188,189,187,183,181,189,187,183,209,55,251,244,162,
89,236,123,192,209,219,125,178,173,107,32,239,106,144,129,28,169,171,80,
30,134,85,62,254,242,250,105,109,117,49,238,1,89,190,195,206,237,7,255,
210,191,113,241,249,101,232,1,242,128,60,16,202,163,75,149,146,1,16,235,
121,54,0,36,100,13,22,202,11,100,62,148,36,71,50,218,242,48,237,1,30,171,
46,11,107,0,71,110,189,80,18,120,28,50,149,33,55,78,139,111,113,165,4,143,
53,214,28,35,58,129,164,30,42,89,223,216,133,77,79,226,0,176,230,152,216,
156,208,150,135,120,172,65,241,207,15,44,4,233,48,60,73,2,192,217,185,15,
223,88,253,252,192,149,201,29,218,179,175,75,15,151,102,40,73,215,186,210,
182,75,0,143,21,30,43,98,61,95,31,215,52,223,216,214,96,26,0,33,24,110,
45,241,124,186,30,125,149,182,114,28,1,204,62,62,231,180,52,102,7,175,136,
6,109,112,92,208,4,17,163,227,222,69,91,88,154,64,62,74,0,234,4,96,114,
53,187,14,76,128,252,47,167,48,0,243,249,47,43,126,3,72,159,236,174,83,
63,246,35,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_1 = 702;
static unsigned char xml_res_file_1[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,0,9,112,72,89,115,0,0,13,215,0,0,13,215,1,66,40,155,120,0,0,0,7,116,73,
77,69,7,221,3,21,16,2,33,32,106,169,128,0,0,2,75,73,68,65,84,56,203,197,
147,59,107,83,97,0,134,159,47,57,13,109,147,54,210,90,69,180,80,173,138,
232,228,5,13,40,174,94,80,4,39,253,13,58,136,184,137,93,4,21,156,221,172,
232,222,201,65,68,23,193,65,7,111,197,74,20,74,98,211,99,147,52,169,57,
73,207,249,78,206,249,110,46,14,130,162,163,239,248,242,188,207,246,194,
255,142,248,83,185,233,226,173,241,49,213,158,208,42,21,169,210,40,109,
136,109,182,19,44,188,110,210,248,224,126,101,189,223,214,71,174,76,28,
63,113,246,241,182,205,27,75,173,245,148,32,86,116,227,148,21,223,95,14,
251,233,105,221,248,176,240,119,193,150,233,93,199,119,111,218,227,13,141,
176,142,66,120,16,103,33,45,138,173,3,197,137,125,26,254,33,8,155,162,209,
83,118,93,106,222,173,106,218,221,136,176,86,38,92,169,56,245,241,125,30,
24,253,73,42,32,246,0,238,20,10,185,209,193,193,65,99,53,215,235,243,5,
191,19,138,86,118,136,74,109,5,243,245,13,27,76,147,39,215,70,178,83,119,
47,204,166,250,244,44,72,148,10,120,245,234,221,13,111,102,122,186,80,58,
116,232,206,72,177,120,84,197,146,155,237,40,255,172,86,29,89,244,52,234,
227,19,146,96,141,243,135,3,74,251,175,2,62,208,2,122,14,134,68,175,87,
188,228,121,197,226,228,246,82,233,210,232,142,29,40,127,153,129,90,157,
71,159,222,226,139,42,182,254,25,211,237,224,34,13,172,57,231,150,133,16,
45,180,94,21,214,182,177,182,129,215,75,211,156,238,247,233,87,171,36,139,
139,140,7,1,51,181,38,79,91,129,157,235,116,231,146,110,191,188,241,228,
216,25,104,29,20,162,73,154,86,144,178,70,38,35,73,211,166,243,226,40,66,
174,173,145,179,22,181,180,68,163,86,195,133,33,7,180,114,159,122,173,251,
47,227,248,249,222,157,185,13,73,242,229,160,49,101,151,36,85,33,132,4,
36,208,21,94,167,211,161,89,173,162,181,198,175,84,248,174,20,145,16,180,
141,37,66,12,0,200,56,174,119,187,11,120,222,146,112,110,21,144,88,43,145,
50,108,121,210,24,213,244,125,34,99,248,102,12,177,16,200,76,134,111,198,
100,165,214,33,192,252,124,244,96,106,234,197,196,240,176,221,226,92,236,
32,193,185,68,151,203,250,161,56,150,207,15,239,202,231,111,231,224,84,
108,173,136,173,165,239,92,38,80,234,233,203,48,188,12,56,128,115,231,240,
38,39,7,60,231,44,96,0,220,189,123,36,255,253,140,252,0,40,62,87,91,205,
65,102,164,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_2 = 442;
static unsigned char xml_res_file_2[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,1,111,73,68,65,84,56,141,149,146,189,75,195,80,20,197,127,13,169,134,
102,73,255,128,142,162,29,93,236,98,151,130,84,68,28,92,180,56,56,138,131,
34,232,172,84,16,23,199,170,56,58,213,69,80,17,17,36,212,212,69,4,113,114,
235,228,172,131,9,181,29,222,135,67,109,218,42,77,241,192,133,119,223,131,
115,207,61,231,197,0,60,207,211,68,64,74,137,105,154,159,90,235,82,179,
217,220,207,231,243,245,246,91,12,192,117,93,157,201,100,250,18,184,174,
75,54,155,165,86,171,169,70,163,241,41,165,156,202,229,114,207,0,70,107,
130,64,107,221,183,130,192,199,113,28,210,233,180,225,56,78,210,48,12,175,
82,169,140,133,4,66,74,148,82,125,43,8,124,0,108,219,38,149,74,145,72,36,
108,165,212,21,128,9,32,132,64,41,21,233,193,209,81,137,120,60,206,240,
176,133,101,89,88,150,53,18,18,72,25,77,80,40,44,253,185,171,62,120,116,
8,68,203,131,255,64,10,209,33,104,123,240,31,8,41,187,20,12,88,1,160,120,
62,215,211,79,38,215,186,20,12,48,177,141,221,229,29,0,182,79,139,136,238,
21,100,196,10,123,151,243,225,57,248,250,8,207,143,193,49,171,135,19,250,
199,131,104,5,43,51,139,0,248,245,247,158,254,228,230,172,147,66,20,129,
223,53,249,55,194,20,162,98,44,223,223,1,48,59,49,14,192,245,211,75,47,
65,84,10,91,211,101,0,14,110,11,248,245,142,146,81,185,192,198,250,102,
44,52,241,226,234,188,175,2,0,134,160,250,250,22,182,242,231,31,124,3,116,
212,227,183,130,7,180,142,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_3 = 376;
static unsigned char xml_res_file_3[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,6,98,75,71,
68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,17,0,
0,11,17,1,127,100,95,145,0,0,1,11,73,68,65,84,56,203,189,147,189,74,3,65,
20,133,191,89,103,127,210,229,1,180,240,49,180,87,16,95,194,87,72,227,18,
116,65,216,164,137,47,99,103,8,24,182,8,90,165,18,75,177,182,181,217,117,
69,143,69,54,38,251,19,89,136,248,13,195,20,119,206,156,59,247,206,192,
150,24,73,48,30,139,201,4,172,93,69,172,229,108,58,101,247,244,136,60,122,
175,43,95,96,180,63,50,72,66,189,158,4,181,121,12,10,7,125,209,52,238,144,
36,156,165,91,19,206,111,185,59,45,246,180,225,143,14,8,130,166,250,146,
1,152,180,89,25,172,117,225,196,113,132,84,138,103,192,249,205,43,247,243,
46,159,126,14,152,31,207,192,190,113,149,236,241,117,155,27,11,112,24,71,
192,71,217,223,164,60,204,187,12,98,15,240,42,246,79,244,195,203,69,253,
1,162,139,20,184,174,101,57,28,198,13,226,5,174,239,182,41,162,249,175,
46,108,192,117,237,134,200,206,234,197,151,150,10,179,217,99,113,13,85,
196,207,168,232,154,5,72,146,164,38,238,116,32,203,14,8,195,8,191,40,216,
18,73,120,158,214,126,227,22,124,3,251,56,100,251,39,40,122,217,0,0,0,0,
73,69,78,68,174,66,96,130};
static size_t xml_res_size_4 = 282;
static unsigned char xml_res_file_4[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,225,73,68,65,84,120,94,181,82,75,170,131,64,16,28,
131,59,23,198,181,32,136,27,65,92,120,130,120,36,111,144,220,32,239,6,185,
138,199,112,153,27,164,179,87,39,83,144,9,197,248,25,66,120,13,77,81,85,
77,247,180,173,178,209,52,205,201,164,6,146,118,133,166,40,192,161,91,126,
176,198,52,77,159,36,173,3,175,235,58,6,7,130,67,183,53,33,55,160,112,181,
190,170,42,153,231,249,232,214,4,76,202,178,212,195,48,4,204,213,70,216,
186,208,157,232,240,139,1,60,151,39,139,201,191,213,174,121,158,47,38,22,
69,17,27,253,1,15,8,174,182,34,203,50,189,165,35,217,95,92,33,77,211,155,
89,1,120,38,127,243,66,107,87,184,187,230,222,133,124,103,244,55,224,21,
146,36,137,199,113,236,80,8,252,122,5,173,181,162,159,4,200,129,166,251,
43,136,200,51,138,34,245,223,223,160,55,217,254,210,160,245,189,64,222,
251,11,249,94,239,5,175,224,154,246,120,76,79,72,0,0,0,0,73,69,78,68,174,
66,96,130};
static size_t xml_res_size_5 = 10300;
static unsigned char xml_res_file_5[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,128,0,0,0,128,8,6,0,
0,0,195,62,97,203,0,0,32,0,73,68,65,84,120,156,237,157,121,156,28,213,117,
239,191,167,170,122,155,69,179,111,106,129,141,193,15,25,179,24,131,16,
4,217,16,192,38,9,96,35,225,4,2,31,155,124,28,199,193,240,158,157,151,197,
228,131,99,125,130,176,19,199,159,192,75,176,77,108,30,146,19,63,44,39,
128,193,54,143,196,11,241,243,70,44,89,72,104,36,141,144,16,24,129,16,66,
251,104,214,94,170,238,121,127,84,85,79,117,79,247,76,119,143,164,145,144,
126,159,207,157,238,169,186,181,254,206,61,247,220,115,207,61,45,156,128,
144,200,23,17,248,209,223,59,188,119,193,41,136,216,160,10,104,201,1,22,
168,65,213,229,158,135,94,229,158,111,76,170,81,253,181,69,184,253,246,
219,185,253,246,219,17,145,66,9,161,170,168,250,103,55,198,96,140,193,243,
188,66,49,198,144,207,231,113,93,151,92,46,71,62,159,39,159,207,179,116,
233,82,54,109,218,84,243,253,56,117,62,199,113,137,247,158,227,151,80,2,
4,120,239,185,22,139,206,239,70,141,128,228,1,11,193,68,142,18,80,15,159,
114,11,172,36,72,166,46,9,16,17,22,44,88,192,39,62,241,137,138,228,3,73,
224,131,192,165,34,210,100,89,22,158,231,189,104,140,121,202,243,188,254,
80,8,140,153,184,71,99,12,31,250,208,135,24,24,24,40,8,79,213,247,84,251,
99,28,159,16,129,225,239,37,177,146,61,224,52,131,56,136,88,128,32,24,132,
44,104,30,17,3,24,108,111,215,71,16,146,70,186,30,84,245,130,179,56,120,
217,17,174,254,139,3,252,124,99,237,50,176,96,193,2,190,254,245,175,99,
89,86,165,150,255,41,96,41,208,10,136,136,224,121,30,217,108,150,108,54,
171,185,92,238,7,198,152,63,50,198,236,12,53,131,235,186,5,141,112,227,
141,55,158,20,128,74,176,4,134,190,155,194,74,116,128,36,64,28,95,181,163,
128,65,112,17,60,16,197,145,125,87,154,214,235,254,93,220,61,251,204,240,
150,121,160,170,42,64,12,99,98,120,99,123,249,155,149,195,252,221,163,138,
18,244,26,211,93,223,178,232,239,239,199,178,172,130,0,132,80,85,71,85,
87,138,200,135,28,199,33,22,139,97,89,150,24,99,10,170,126,108,108,76,135,
134,134,200,102,179,187,68,228,10,85,221,26,237,34,114,185,92,93,2,96,215,
84,251,56,134,8,252,229,77,14,130,223,159,99,242,224,229,38,138,201,163,
198,197,210,177,121,180,92,244,31,214,200,207,90,80,175,137,252,254,127,
53,94,124,191,170,141,106,12,67,10,98,157,92,122,94,59,159,190,193,230,
55,206,116,121,117,143,203,142,125,83,93,91,88,177,98,5,243,230,205,43,
71,190,168,234,195,182,109,255,94,42,149,66,85,37,159,207,75,38,147,97,
116,116,148,145,145,17,178,217,44,128,36,147,73,50,153,76,243,248,248,248,
101,192,67,170,106,66,155,193,24,131,170,178,121,243,230,154,222,139,85,
215,219,60,158,97,12,234,230,49,110,30,209,131,105,227,230,196,47,121,17,
51,116,33,205,243,127,168,99,219,123,53,123,8,205,30,20,35,93,191,101,92,
48,121,15,47,239,98,114,25,76,110,28,245,64,156,54,222,115,94,23,79,124,
218,23,176,114,16,17,150,47,95,206,69,23,93,84,73,237,223,101,219,246,77,
137,68,130,241,241,113,201,102,179,228,243,121,114,185,92,161,140,142,142,
114,240,224,65,246,239,223,47,77,77,77,216,182,125,78,62,159,255,227,144,
124,85,157,36,88,213,226,132,50,2,129,64,101,27,132,209,187,164,253,242,
101,142,211,40,190,225,39,251,212,138,119,153,193,181,48,246,18,6,132,220,
62,165,121,222,31,234,200,129,175,25,141,101,252,151,237,161,42,40,226,
235,126,207,55,8,133,201,54,65,104,244,133,228,91,214,68,123,11,136,187,
198,178,172,101,241,120,156,241,241,113,9,91,114,104,217,135,197,117,221,
66,95,159,201,100,164,185,185,89,15,28,56,112,163,170,62,160,129,206,175,
135,124,56,1,5,0,64,141,98,140,243,77,221,245,163,59,69,221,230,96,115,
87,240,233,191,73,13,190,185,214,217,210,124,198,15,57,184,245,127,26,147,
88,231,107,93,241,119,150,99,61,60,73,64,254,138,21,43,10,253,126,225,250,
62,103,239,20,145,149,137,68,66,50,153,76,129,252,144,232,82,242,93,215,
197,243,60,84,149,241,241,113,226,241,248,194,80,237,71,206,89,51,78,184,
46,64,85,81,35,24,207,126,197,203,114,151,155,133,160,72,80,252,255,115,
254,54,111,207,58,188,108,126,145,149,190,246,87,177,222,139,183,88,177,
228,93,152,92,7,170,83,14,3,46,188,240,66,86,172,88,81,105,168,215,169,
170,79,36,147,201,230,108,54,91,232,195,61,207,43,144,30,37,63,244,1,132,
36,143,143,143,227,56,142,227,121,94,58,234,55,168,7,199,132,6,144,224,
207,84,74,172,90,107,123,106,40,198,19,60,207,66,93,69,181,241,1,242,135,
110,16,184,124,202,219,219,179,1,246,108,64,146,29,111,183,59,206,187,135,
225,31,183,16,239,190,179,226,1,129,179,39,84,251,37,234,217,81,213,71,
18,137,196,25,185,92,14,99,140,132,214,124,57,242,195,18,29,247,3,184,174,
11,48,133,233,89,29,142,9,1,248,236,71,224,179,31,174,108,72,129,79,254,
251,254,28,126,218,95,159,23,78,1,227,26,242,153,44,234,57,168,241,80,207,
85,212,249,26,198,189,188,138,195,33,183,63,159,31,249,217,223,89,137,150,
207,7,157,192,36,68,141,190,50,22,63,170,122,127,44,22,187,92,85,241,60,
79,194,22,28,37,63,170,254,67,199,79,41,60,207,123,13,200,170,234,36,45,
83,11,102,93,0,68,224,178,119,89,72,162,7,36,137,104,190,76,37,7,212,227,
233,251,118,115,213,159,230,234,19,2,133,191,93,153,231,127,92,5,98,227,
123,247,140,135,26,51,40,241,86,52,59,88,233,164,26,48,253,172,229,216,
127,36,78,170,95,177,43,146,127,251,237,183,79,69,254,31,218,182,125,155,
109,219,68,251,253,82,242,163,106,223,243,188,210,203,40,128,231,121,63,
0,84,68,8,133,160,30,204,186,13,32,192,123,223,149,66,173,22,176,91,80,
167,19,117,90,139,139,221,6,78,59,196,251,248,209,189,54,239,61,175,246,
235,40,240,197,199,33,55,110,225,121,54,198,21,60,79,32,153,254,160,151,
183,38,250,253,114,37,203,118,99,228,10,207,163,223,228,178,152,220,56,
38,159,197,24,15,69,124,123,49,226,230,173,64,254,101,150,101,61,16,143,
199,201,100,50,18,110,159,206,232,171,128,60,240,149,240,28,145,107,212,
252,94,102,93,3,248,77,41,129,168,135,154,172,63,33,3,133,14,95,5,192,5,
4,177,90,33,230,241,217,15,239,226,231,27,60,76,29,125,129,231,9,182,177,
80,99,161,174,151,180,91,59,110,204,237,221,49,245,45,90,44,87,209,17,203,
243,80,203,67,61,80,111,28,65,192,182,248,229,86,223,232,91,30,88,252,101,
140,190,183,136,200,183,18,137,68,44,112,234,20,89,252,211,25,125,17,132,
27,190,2,244,71,175,33,34,60,246,216,99,53,191,143,89,23,128,187,110,2,
37,9,198,5,49,168,88,216,249,23,239,3,206,244,156,83,62,138,164,118,251,
138,202,194,136,13,118,59,139,206,247,248,254,223,190,193,231,87,42,63,
223,88,249,220,229,13,71,65,213,70,141,139,186,122,163,186,110,107,240,
90,75,102,128,138,78,244,154,113,125,97,20,153,152,48,52,162,220,116,175,
199,170,109,22,253,27,38,44,254,18,117,220,164,170,79,38,147,201,222,168,
209,87,173,197,95,242,56,0,191,0,62,93,180,35,232,74,234,193,172,10,64,
225,61,137,131,26,131,136,7,228,90,189,166,203,63,101,154,126,67,236,3,
223,124,82,221,209,43,84,146,35,96,161,98,2,149,208,200,123,222,213,206,
127,156,51,30,188,168,112,92,30,154,102,10,38,135,122,57,154,23,79,22,2,
69,2,103,14,118,230,141,205,155,16,249,1,200,83,8,207,128,58,24,189,21,
248,34,208,12,190,231,56,20,9,13,4,96,213,139,112,211,87,252,135,88,190,
124,57,34,101,125,252,162,170,223,136,199,227,103,7,228,22,89,252,149,28,
62,101,200,12,159,96,59,240,187,248,42,177,8,181,186,128,67,204,174,0,0,
119,222,24,199,40,254,20,172,122,8,99,23,96,53,99,31,124,28,175,245,250,
11,157,3,223,92,233,121,44,81,105,118,149,4,88,41,52,145,132,228,219,16,
20,49,89,64,3,150,189,192,207,159,133,252,65,188,177,29,8,102,178,109,103,
212,47,98,175,192,150,21,254,152,94,195,243,184,192,215,128,85,192,247,
128,121,64,134,96,216,175,254,100,33,55,125,197,23,164,229,15,77,105,241,
47,117,28,231,122,0,215,117,139,44,254,114,214,126,37,139,63,192,48,176,
24,216,29,221,24,158,243,209,71,31,173,203,6,152,53,35,80,4,158,92,10,98,
53,163,158,133,26,69,13,40,13,239,98,252,5,97,236,121,177,246,63,142,219,
246,251,215,162,217,251,213,184,162,94,30,227,102,81,119,12,117,71,209,
252,24,234,102,80,119,220,223,150,31,67,243,35,254,119,207,243,231,248,
203,92,216,184,57,191,11,48,198,23,4,141,150,66,205,126,224,34,224,203,
248,106,183,128,251,159,6,40,118,243,150,33,255,6,203,178,150,198,98,49,
114,185,92,89,55,111,233,88,191,130,209,23,70,168,124,148,72,191,31,94,
7,224,177,199,30,99,96,96,160,14,22,102,65,3,72,224,240,249,238,103,224,
210,115,90,80,167,29,99,60,4,11,17,197,114,90,23,234,216,171,126,143,236,
190,42,232,211,170,237,55,220,198,238,111,185,208,248,105,149,198,140,63,
137,25,202,174,1,85,241,223,145,23,72,145,7,94,14,45,105,251,10,152,124,
22,21,9,154,178,191,85,34,213,68,138,142,217,13,124,106,242,51,248,228,
47,175,236,230,61,79,68,86,132,110,222,112,123,233,80,47,74,124,133,150,
31,222,204,50,224,219,69,59,2,242,7,6,6,120,244,209,71,43,188,237,233,113,
212,226,1,68,224,210,51,225,207,23,11,239,57,167,1,59,217,142,36,90,176,
108,9,130,49,50,8,174,88,201,206,23,25,217,112,90,209,189,181,92,162,210,
186,16,221,255,253,93,58,186,227,27,144,216,2,226,96,59,111,17,39,54,15,
167,229,173,152,241,52,99,47,175,247,172,185,55,250,45,57,143,201,239,167,
245,6,83,24,45,8,112,199,21,126,108,64,41,46,58,13,22,190,45,176,38,166,
113,72,173,26,94,192,249,183,124,29,74,60,125,1,41,61,170,250,171,84,42,
117,74,54,155,45,24,125,225,188,126,24,198,149,203,229,138,132,96,10,163,
239,59,192,13,80,44,205,170,202,192,192,0,119,223,125,247,177,237,10,22,
224,146,51,225,47,22,199,88,116,238,28,236,84,7,86,162,5,177,227,65,156,
93,22,85,23,81,1,119,248,221,38,57,239,173,132,17,88,225,9,14,252,82,200,
143,171,213,179,184,79,122,147,119,226,141,129,221,132,88,49,212,27,135,
252,33,176,147,152,237,15,116,170,231,85,116,43,43,240,229,31,87,144,122,
129,133,111,133,111,124,172,114,171,240,93,214,194,5,239,253,32,166,178,
155,247,209,68,34,113,74,57,139,63,106,245,135,209,60,211,88,252,235,129,
143,80,134,252,153,244,251,69,55,60,163,163,171,192,37,255,13,190,253,231,
14,241,246,183,97,37,59,16,219,6,20,245,12,104,62,32,95,193,203,54,73,188,
227,159,84,109,81,23,41,125,44,57,184,94,204,193,126,72,244,34,118,10,188,
81,52,63,4,38,3,160,88,49,80,185,87,157,164,63,62,159,170,21,87,216,184,
250,101,248,240,67,190,54,40,167,5,68,132,219,254,236,30,244,212,235,43,
25,125,15,196,98,177,69,1,233,147,200,47,85,255,21,84,127,120,123,187,240,
141,190,145,162,157,1,249,119,223,125,119,221,253,126,20,71,94,0,222,14,
96,163,158,193,100,135,145,80,255,170,71,104,181,139,142,206,179,109,93,
105,245,125,224,194,252,182,7,39,186,231,73,80,112,119,85,216,151,219,38,
78,203,125,24,5,91,234,234,219,20,95,8,86,191,60,89,126,68,132,229,43,150,
99,78,189,8,75,202,146,127,135,109,219,31,43,117,243,150,235,247,171,176,
248,243,192,205,192,43,69,247,23,144,191,108,217,178,195,66,62,28,97,1,
8,251,83,85,197,228,199,17,99,34,45,75,69,188,193,115,237,120,252,14,167,
231,146,91,172,182,119,166,114,47,62,140,201,101,38,181,254,105,160,128,
138,149,250,164,104,44,35,6,176,4,21,219,183,13,235,68,244,30,68,132,11,
23,44,96,193,130,139,252,64,210,201,228,95,105,89,214,125,165,129,29,149,
140,190,105,44,126,128,219,129,159,22,237,136,24,125,135,139,124,56,202,
163,0,85,227,91,81,238,208,13,78,75,250,83,177,158,223,188,212,110,62,85,
242,187,215,145,221,240,21,76,238,224,68,48,70,45,16,190,43,150,251,67,
204,16,150,248,115,71,216,150,79,206,97,184,239,112,110,191,52,154,55,32,
229,116,17,121,36,145,72,196,50,153,12,192,148,228,87,97,241,127,21,88,
94,174,194,192,192,0,203,150,45,155,113,191,31,197,81,31,6,154,177,55,150,
165,206,184,246,51,246,156,211,36,247,250,127,49,182,249,155,162,174,255,
226,234,120,44,191,245,139,44,67,140,138,37,168,37,88,94,30,141,193,23,
31,171,239,164,81,88,150,85,20,216,81,66,126,232,230,109,203,229,114,168,
234,148,253,126,21,110,222,167,129,79,78,218,25,233,247,15,39,249,48,11,
2,160,134,23,51,175,63,135,251,252,227,76,209,217,215,130,65,44,187,95,
196,66,212,6,181,241,60,143,95,109,53,124,241,241,153,241,47,34,60,244,
208,67,147,2,59,2,18,28,85,93,25,143,199,231,71,221,188,165,228,151,170,
254,41,200,127,17,191,223,47,114,243,30,73,242,97,22,4,192,106,236,253,
134,55,182,111,171,201,155,255,5,92,28,241,189,213,220,97,11,128,147,60,
132,7,98,89,8,14,72,2,227,89,252,248,217,161,25,171,255,197,139,23,19,143,
199,25,28,28,164,161,161,1,219,182,163,113,253,75,29,199,185,22,124,55,
239,84,228,79,209,242,67,132,110,222,162,8,159,195,109,241,151,195,81,116,
5,91,190,127,198,115,193,74,172,182,82,173,151,170,218,191,111,92,182,27,
23,140,139,6,159,85,23,207,5,167,229,140,180,241,180,209,120,22,198,56,
24,141,163,78,59,119,92,145,152,145,151,107,225,194,133,204,155,55,143,
93,187,118,177,115,231,78,246,239,223,207,240,240,48,227,227,227,168,234,
45,182,109,127,198,113,156,34,55,111,157,253,190,226,183,252,34,134,15,
135,155,183,26,28,81,1,40,76,199,26,240,114,163,152,177,253,120,99,251,
49,153,65,76,118,68,21,254,13,56,75,61,190,92,175,16,56,173,111,137,153,
172,123,139,170,133,49,130,122,2,70,176,156,24,119,252,102,125,247,157,
78,167,89,184,112,33,129,31,159,3,7,14,176,111,223,62,6,7,7,49,198,92,96,
219,246,131,241,120,92,178,217,172,192,244,70,223,52,22,255,82,224,169,
162,29,135,201,205,91,13,142,248,202,160,85,47,194,194,183,121,164,155,
131,40,26,215,5,207,67,141,9,39,128,92,85,190,111,92,78,87,195,185,106,
2,215,128,255,57,93,17,177,19,88,13,29,103,122,227,135,190,226,203,179,
160,158,139,151,27,227,87,47,185,252,234,229,218,238,55,157,78,115,195,
13,55,96,219,54,241,120,156,48,228,202,243,60,26,26,26,122,231,206,157,
251,147,84,42,213,22,68,243,74,116,125,94,181,241,124,76,144,255,48,240,
103,229,42,28,14,55,111,53,56,226,93,128,42,220,120,63,220,248,143,240,
95,47,128,49,224,121,65,11,246,195,242,80,127,198,246,147,248,125,97,77,
200,236,218,76,170,239,172,183,155,124,238,3,254,60,127,16,26,85,231,123,
91,184,112,33,150,101,17,143,199,81,213,194,202,156,253,251,247,39,251,
251,251,31,55,198,244,229,114,185,170,140,190,105,44,254,103,241,199,251,
71,204,205,91,13,142,218,218,192,29,7,224,219,107,252,150,187,240,52,10,
147,118,133,94,16,178,192,2,96,62,149,93,249,165,16,80,177,27,218,80,207,
155,167,94,254,159,177,252,71,50,249,44,171,107,212,0,75,150,44,225,148,
83,78,33,145,72,16,174,204,13,91,241,240,240,240,131,45,45,45,215,110,221,
186,21,219,182,165,173,173,173,98,60,95,21,195,189,93,192,85,192,254,162,
157,71,193,232,43,197,81,141,7,80,133,251,127,8,103,124,26,126,185,45,24,
5,78,188,35,197,31,10,77,58,44,82,107,28,63,42,102,60,178,93,71,95,94,141,
149,104,186,212,228,198,206,66,117,234,233,188,10,88,178,100,9,243,230,
205,43,168,253,168,106,207,100,50,119,182,180,180,252,1,64,127,127,191,
124,245,171,95,229,233,167,159,46,204,234,213,104,241,231,129,37,192,206,
114,143,121,207,178,101,108,222,60,80,152,54,143,150,35,129,163,239,7,32,
16,132,167,225,225,143,249,219,34,124,29,42,83,29,252,232,156,187,129,255,
4,60,32,1,214,121,136,92,140,122,151,97,220,133,217,55,54,219,226,36,71,
212,115,177,156,120,77,247,148,78,167,11,228,7,9,25,10,228,91,150,117,117,
42,149,90,214,210,210,194,186,117,235,100,104,104,136,161,161,33,86,172,
88,193,134,13,27,184,249,230,155,139,226,250,43,132,116,21,30,29,248,56,
176,186,104,135,250,145,231,111,137,255,132,37,23,12,176,228,130,242,247,
169,234,175,139,248,89,157,107,35,202,97,214,66,194,126,245,50,124,233,
199,240,201,43,139,54,191,22,249,30,62,227,99,76,118,144,100,16,107,53,
34,171,177,236,127,4,17,196,82,44,43,24,74,216,85,55,153,208,232,115,28,
7,219,182,11,22,125,64,228,153,201,100,242,145,190,190,190,88,127,127,63,
7,15,30,100,100,100,132,209,209,81,70,71,71,249,254,247,191,207,182,109,
219,248,196,39,62,65,83,83,211,148,228,7,26,225,94,224,95,202,68,13,179,
121,243,0,139,23,253,19,23,126,100,10,247,117,96,218,92,245,103,240,147,
254,74,149,106,195,172,133,132,133,154,160,228,97,223,160,88,229,127,153,
50,222,49,255,4,97,252,159,7,234,41,198,69,189,60,234,101,49,185,49,170,
89,71,38,34,44,89,178,4,219,182,113,28,167,148,252,214,68,34,241,196,188,
121,243,154,183,108,217,194,222,189,123,101,120,120,152,145,145,17,198,
198,198,200,100,50,228,114,57,54,109,218,196,95,255,245,95,243,242,203,
47,23,214,232,151,222,105,176,237,251,192,93,229,238,99,243,230,1,204,203,
119,163,146,64,237,78,112,58,193,110,159,92,98,221,96,55,243,163,123,203,
7,181,212,131,89,93,24,242,149,255,71,169,4,132,26,64,129,207,225,143,12,
74,92,163,97,81,140,241,252,226,185,24,207,95,243,239,229,178,120,185,81,
52,159,43,39,96,69,88,188,120,49,182,109,19,139,197,10,33,91,1,249,78,44,
22,91,57,119,238,220,249,59,118,236,96,215,174,93,50,60,60,204,232,232,
40,99,99,99,140,143,143,19,140,4,0,216,187,119,47,95,248,194,23,88,179,
102,77,112,143,133,171,134,228,111,113,93,247,102,245,3,78,35,207,226,27,
125,143,61,250,40,106,20,36,133,98,161,196,80,137,151,148,4,138,3,86,19,
88,141,252,240,139,190,16,204,212,86,56,106,33,97,229,96,9,108,249,28,216,
197,98,248,113,124,3,233,169,210,250,33,161,171,127,205,180,214,189,170,
95,103,117,133,122,161,197,31,143,251,246,66,116,56,231,56,206,125,61,61,
61,127,146,207,231,217,184,113,163,12,14,14,50,52,52,84,212,250,131,197,
153,69,16,17,174,189,246,90,174,189,246,90,100,34,184,112,248,224,193,131,
23,37,18,137,173,169,84,170,48,161,52,49,183,127,55,207,111,30,96,244,41,
193,78,180,251,189,153,191,46,221,22,242,87,41,206,42,36,126,40,92,159,
134,226,7,180,230,134,48,94,158,191,89,89,70,200,21,62,255,173,234,236,
132,89,95,24,82,6,15,150,219,24,146,191,234,215,112,235,242,233,53,252,
84,187,67,55,111,44,22,67,68,138,198,238,142,227,220,58,103,206,156,79,
217,182,77,127,127,191,148,18,159,205,102,43,46,217,82,85,158,124,242,73,
118,238,220,201,173,183,222,74,42,149,202,143,140,140,252,222,240,240,240,
86,219,182,139,234,129,239,230,221,188,121,128,167,150,1,26,15,180,128,
191,79,36,123,171,48,246,191,5,54,121,218,118,169,146,24,241,147,82,8,170,
14,216,14,72,142,187,62,28,118,59,193,184,218,228,80,227,241,211,141,240,
243,42,178,198,205,170,0,132,36,77,55,114,11,213,254,135,31,242,91,244,
76,44,224,168,155,183,212,226,23,145,133,169,84,234,193,142,142,14,121,
246,217,103,229,208,161,67,5,163,111,124,124,188,208,242,167,115,208,172,
91,183,78,247,236,217,195,45,183,220,114,215,174,93,187,126,208,217,217,
73,99,99,99,81,157,205,3,3,124,251,177,71,249,203,15,193,162,119,90,126,
238,33,227,167,168,83,1,199,49,215,186,173,55,139,152,209,115,172,67,79,
174,112,77,215,141,170,162,138,141,239,190,113,80,43,57,225,107,87,15,76,
30,65,80,29,227,61,239,172,78,0,102,53,73,148,0,11,78,131,116,91,180,111,
47,83,240,201,255,213,97,32,63,116,243,58,142,83,32,63,32,53,157,76,38,
159,78,167,211,45,27,55,110,44,107,244,85,67,62,193,45,14,13,13,253,115,
62,159,255,75,17,193,113,28,26,26,26,104,110,110,198,18,225,249,205,3,100,
6,238,230,123,127,165,92,122,118,28,43,54,7,177,226,19,135,43,66,178,247,
1,25,126,38,69,126,15,166,241,226,179,36,179,181,197,152,216,15,53,88,213,
236,39,181,202,131,230,253,132,87,234,250,159,193,132,202,47,6,224,23,85,
248,146,102,93,3,220,186,156,233,147,67,212,239,217,45,32,180,248,67,66,
162,45,223,24,211,148,72,36,158,72,167,211,125,47,188,240,2,187,119,239,
158,68,126,80,175,154,71,2,88,213,214,214,118,251,158,61,123,200,231,243,
168,42,205,205,205,244,245,245,210,229,173,226,142,211,255,1,235,204,6,
136,55,33,118,2,21,48,198,195,82,215,239,2,100,236,55,140,75,171,228,93,
200,239,23,216,161,218,120,241,159,88,67,63,191,208,152,212,189,170,177,
159,162,234,138,184,157,64,7,232,107,198,196,119,23,70,70,53,96,214,109,
0,13,254,28,105,175,247,226,197,139,139,124,252,145,126,95,82,169,212,131,
61,61,61,23,238,218,181,139,29,59,118,20,44,254,80,237,7,33,222,85,61,10,
176,203,182,237,37,227,227,227,25,215,117,25,25,25,97,104,104,8,99,12,167,
191,237,52,206,208,21,224,196,80,187,17,212,6,215,67,69,253,117,145,98,
16,43,239,88,146,185,7,141,137,186,65,187,24,217,38,164,44,213,206,155,
23,145,221,177,72,188,49,69,28,112,154,208,177,237,48,246,210,48,134,183,
160,214,161,90,223,227,172,11,192,209,64,232,230,141,14,247,66,171,63,30,
143,223,213,210,210,114,83,38,147,225,133,23,94,40,59,220,171,97,229,237,
48,240,1,207,243,222,240,60,143,76,38,195,200,200,8,7,15,30,228,245,215,
95,231,153,95,252,156,181,247,28,66,61,7,242,89,176,61,84,196,207,48,32,
138,145,188,99,203,248,253,116,95,121,185,57,248,75,138,6,141,249,173,194,
208,86,36,153,6,137,11,106,192,27,130,100,90,213,229,144,162,35,160,53,
123,193,223,244,2,144,78,167,73,167,211,196,98,49,128,162,148,107,241,120,
252,154,198,198,198,101,169,84,138,53,107,214,20,212,254,232,232,104,161,
229,79,145,164,33,138,208,121,117,59,176,54,186,35,92,13,156,201,100,24,
27,29,241,13,94,240,215,37,6,121,15,16,183,213,146,204,141,146,104,190,
67,186,175,57,219,61,176,30,198,71,202,83,153,47,154,66,80,198,14,170,138,
117,59,98,123,98,77,68,93,87,171,9,222,212,2,144,78,167,89,178,100,9,142,
227,76,154,224,177,44,235,157,137,68,98,101,71,71,135,172,93,187,86,6,7,
7,39,13,247,202,141,245,203,32,124,215,159,7,190,89,180,35,48,24,243,249,
60,163,163,163,147,189,119,38,159,16,198,254,201,158,115,250,141,118,231,
130,148,230,14,145,127,253,103,104,45,209,209,194,191,97,39,159,66,252,
108,135,181,70,194,191,105,5,32,36,223,182,237,73,62,126,85,237,76,36,18,
79,244,246,246,54,15,12,12,176,127,255,254,162,225,94,29,228,255,95,252,
5,156,147,16,146,95,246,96,227,93,168,134,91,173,88,143,100,182,61,66,249,
229,204,83,94,91,17,231,211,24,69,172,32,127,2,82,147,22,120,211,10,64,
24,216,17,250,248,67,47,159,49,198,73,38,147,143,244,244,244,156,241,210,
75,47,241,250,235,175,23,25,125,97,170,214,106,135,123,192,22,42,68,243,
2,97,158,223,242,176,18,207,24,215,253,124,246,181,255,186,19,136,5,231,
172,69,8,250,17,221,137,184,136,101,1,30,38,239,226,36,225,11,143,84,119,
130,89,79,18,117,36,16,26,125,81,242,67,213,31,139,197,238,111,111,111,
191,124,255,254,253,108,223,190,189,200,232,171,131,252,189,192,117,148,
89,191,7,48,50,50,50,165,38,81,4,156,198,165,138,115,145,231,178,202,115,
193,203,163,94,30,166,44,46,24,187,21,207,101,48,56,6,55,39,184,89,139,
204,16,220,243,127,170,154,11,3,222,132,26,96,225,194,133,164,211,105,28,
199,153,100,241,39,147,201,63,108,110,110,190,77,85,121,254,249,231,39,
181,252,26,45,254,112,253,222,75,209,141,33,249,149,230,11,84,125,63,14,
40,120,185,96,66,75,251,85,229,189,198,213,149,192,135,168,66,19,56,169,
102,140,55,210,171,74,193,141,170,6,220,113,200,143,87,251,8,111,50,13,
144,78,167,185,232,162,139,112,28,95,174,195,62,63,151,203,145,72,36,46,
75,38,147,15,52,55,55,179,126,253,122,25,26,26,42,180,252,26,198,250,48,
209,250,255,20,63,64,101,98,71,196,232,11,151,137,21,239,135,103,54,131,
231,122,152,204,40,38,63,142,201,231,208,188,135,113,213,53,30,31,53,121,
182,79,167,1,76,30,242,131,187,113,218,207,58,211,184,230,92,227,106,33,
190,210,84,53,104,153,192,155,70,0,66,163,47,92,193,19,181,248,129,183,
196,98,177,111,117,117,117,197,250,251,251,41,181,248,107,28,238,1,60,68,
144,167,175,20,83,26,125,192,13,247,194,51,207,43,158,167,190,42,15,214,
55,24,23,212,99,196,243,248,90,53,235,33,220,108,78,140,177,196,205,154,
63,86,13,146,94,249,137,175,106,194,155,66,0,68,132,197,139,23,35,34,216,
182,93,148,130,77,85,155,26,26,26,158,236,238,238,238,125,254,249,231,217,
187,119,175,132,228,215,105,241,255,2,127,188,95,188,51,104,253,149,200,
159,168,7,191,123,159,95,138,136,157,136,144,94,165,38,88,71,235,23,173,
84,178,251,182,131,114,139,241,212,9,5,160,86,188,41,4,32,36,191,52,170,
39,151,203,73,67,67,195,55,58,58,58,206,126,237,181,215,120,237,181,215,
164,116,184,87,99,203,223,78,153,52,109,81,163,175,218,147,253,114,155,
31,46,239,5,45,90,189,192,112,211,162,44,96,225,117,223,192,247,51,44,70,
88,140,240,5,96,189,25,31,244,143,48,36,212,212,58,128,240,113,220,27,129,
75,150,44,97,238,220,185,101,45,254,134,134,134,165,141,141,141,215,143,
140,140,20,185,121,163,45,191,134,216,251,138,105,218,96,122,139,191,20,
10,252,242,69,248,135,31,192,127,255,205,162,16,175,76,164,10,248,139,71,
62,62,177,93,0,190,139,200,103,80,237,64,36,175,170,163,120,30,88,181,183,
231,227,90,3,164,211,233,2,249,209,9,158,92,46,71,42,149,186,33,149,74,
45,141,199,227,108,220,184,113,82,203,175,114,184,7,19,110,222,138,105,
218,42,89,252,213,156,248,75,79,83,234,177,217,203,68,216,251,95,1,183,
50,33,20,19,83,163,254,197,247,161,122,168,16,27,89,199,61,28,183,26,32,
157,78,115,253,245,215,23,82,180,69,23,105,196,98,177,243,98,177,216,138,
214,214,86,89,179,102,77,193,226,15,103,247,106,36,31,166,72,211,86,201,
226,175,5,37,119,50,10,92,137,223,205,172,45,83,125,242,17,193,189,132,
143,84,203,244,249,113,41,0,233,116,186,208,239,91,150,85,52,193,3,244,
36,18,137,239,117,117,117,53,111,216,176,129,3,7,14,204,116,184,247,29,
234,112,243,206,16,171,203,109,44,16,59,5,193,171,127,237,103,66,171,22,
199,165,0,44,88,176,0,96,82,72,23,224,52,52,52,60,218,217,217,121,202,182,
109,219,120,227,141,55,164,116,184,87,35,249,21,211,180,193,52,110,222,
42,81,83,88,28,240,165,255,172,76,112,61,177,21,199,221,239,6,46,94,188,
152,185,115,231,98,219,118,97,69,78,184,68,43,149,74,125,181,165,165,229,
250,3,7,14,240,194,11,47,20,245,251,117,140,245,119,1,239,199,239,147,39,
118,214,105,244,85,66,200,249,69,167,77,31,22,247,145,135,224,241,117,19,
70,73,105,153,201,245,143,11,44,94,188,152,190,190,62,194,8,219,232,143,
40,55,52,52,220,209,208,208,240,165,88,44,198,154,53,107,10,1,157,83,133,
113,87,128,226,187,121,223,79,133,76,93,135,139,252,16,18,252,57,210,97,
113,229,112,220,116,1,115,231,206,165,175,175,175,200,232,139,144,127,101,
44,22,187,175,177,177,145,213,171,87,203,240,240,112,85,97,220,101,16,190,
227,138,105,218,66,161,59,156,56,90,97,113,229,112,92,12,3,211,233,52,31,
252,224,7,1,138,226,248,131,126,255,116,203,178,30,233,236,236,140,173,
95,191,158,67,135,14,213,28,198,29,32,172,84,49,77,219,17,52,250,102,13,
199,133,0,92,119,221,117,168,106,145,197,159,203,229,0,154,26,27,27,159,
236,238,238,110,27,24,24,96,223,190,125,50,67,242,43,166,105,131,233,221,
188,199,35,142,121,1,184,238,186,235,48,198,20,249,248,115,185,28,34,226,
164,82,169,149,109,109,109,243,95,121,229,21,118,238,220,41,117,132,113,
195,4,249,21,211,180,65,245,110,222,227,13,199,180,0,92,119,221,117,244,
246,246,150,117,243,58,142,179,180,161,161,225,218,225,225,97,182,109,219,
38,35,35,35,181,134,113,71,81,49,77,27,28,126,163,239,88,194,49,43,0,23,
92,112,1,189,189,189,69,195,189,144,252,198,198,198,91,146,201,228,103,
28,199,97,195,134,13,50,131,48,238,112,4,85,49,77,91,189,110,222,227,5,
199,164,0,244,245,245,113,254,249,231,23,44,254,146,144,174,11,44,203,122,
176,173,173,77,214,175,95,95,152,224,169,113,94,31,38,84,127,197,52,109,
135,195,205,123,172,227,152,19,128,190,190,62,174,185,230,26,128,114,129,
29,189,142,227,124,175,187,187,59,181,126,253,122,14,28,56,80,79,24,55,
20,207,180,253,77,185,10,111,70,139,191,28,142,57,1,56,255,252,243,81,213,
34,163,47,32,63,153,74,165,30,239,238,238,46,172,223,171,35,140,27,38,200,
175,152,166,13,14,143,155,247,120,192,49,37,0,191,253,219,191,77,79,79,
79,33,142,63,154,130,45,149,74,61,48,103,206,156,139,119,239,222,205,43,
175,188,34,51,152,218,133,41,126,141,3,222,220,70,95,41,142,25,79,224,239,
252,206,239,20,200,47,53,250,26,26,26,238,76,38,147,127,224,186,46,155,
55,111,46,12,247,106,36,63,68,217,52,109,39,34,249,112,140,104,128,222,
222,94,186,187,187,203,26,125,13,13,13,87,199,98,177,101,13,13,13,172,95,
191,94,102,16,198,29,90,252,101,211,180,69,175,123,34,97,214,5,160,183,
183,151,171,175,190,186,144,59,167,196,205,123,166,136,60,210,213,213,21,
123,238,185,231,24,26,26,170,103,106,23,38,84,255,189,192,191,20,237,40,
89,191,119,162,97,214,5,224,234,171,175,6,202,206,237,183,166,82,169,39,
250,250,250,154,55,109,218,196,190,125,251,164,142,48,110,152,32,191,98,
154,182,19,149,124,152,101,1,120,223,251,222,87,176,248,163,70,31,224,36,
147,201,149,157,157,157,243,127,253,235,95,179,115,231,78,169,35,140,27,
14,199,250,189,55,57,102,77,0,222,255,254,247,87,52,250,28,199,249,226,
156,57,115,126,235,208,161,67,188,244,210,75,82,71,24,55,76,144,31,186,
121,7,139,118,158,160,70,95,41,102,101,20,112,238,185,231,210,213,213,53,
41,154,55,48,250,110,77,38,147,159,178,44,171,224,230,173,51,140,27,124,
139,255,247,128,173,209,141,39,138,155,183,26,28,117,13,208,211,211,195,
217,103,159,93,136,234,137,146,31,139,197,22,218,182,253,96,123,123,187,
172,91,183,174,222,177,62,76,180,254,187,128,31,20,237,56,129,220,188,213,
224,168,10,64,79,79,15,87,94,121,101,225,135,151,74,140,190,180,227,56,
143,247,246,246,198,214,173,91,199,224,224,96,209,212,110,29,228,255,51,
190,213,63,9,39,178,209,87,138,163,42,0,87,93,117,21,192,164,245,123,64,
83,50,153,124,162,175,175,175,47,92,191,55,195,225,222,42,102,176,126,239,
68,194,81,19,128,43,174,184,2,99,76,185,185,125,73,38,147,15,182,183,183,
95,184,115,231,78,94,125,245,213,153,146,191,11,223,211,87,164,223,223,
236,129,29,245,226,168,24,129,87,94,121,37,157,157,157,147,114,245,4,73,
27,238,74,165,82,55,101,179,89,182,108,217,34,229,178,113,215,128,97,224,
3,248,139,41,11,56,105,241,87,198,17,215,0,221,221,221,116,116,116,76,74,
218,16,76,240,92,19,143,199,151,53,53,53,209,223,223,95,239,88,31,38,220,
188,147,210,180,157,200,110,222,106,112,68,5,160,187,187,155,203,46,187,
172,108,210,134,88,44,246,78,17,89,217,221,221,45,207,62,251,172,12,13,
13,213,51,214,135,9,213,63,109,154,182,147,152,140,35,38,0,221,221,221,
92,126,249,229,69,73,27,194,214,15,116,218,182,253,68,58,157,110,222,184,
113,35,7,15,30,172,39,146,23,38,200,175,43,77,219,73,28,65,1,120,199,59,
222,129,170,78,74,211,6,56,137,68,226,145,158,158,158,51,182,109,219,198,
235,175,191,46,53,102,227,14,113,210,205,123,24,112,68,4,224,178,203,46,
163,179,179,179,224,233,139,186,121,45,203,186,191,181,181,245,242,3,7,
14,240,242,203,47,75,29,97,220,48,65,254,140,210,180,157,196,17,24,5,156,
117,214,89,116,118,118,78,250,29,158,48,77,91,67,67,195,109,150,101,177,
105,211,166,122,135,123,33,234,74,211,118,18,197,56,172,26,160,171,171,
139,249,243,231,99,219,118,209,47,111,186,174,75,42,149,186,44,22,139,61,
208,222,222,206,218,181,107,37,186,106,183,70,242,195,214,95,115,154,182,
147,152,140,195,38,0,93,93,93,44,90,180,168,108,210,6,85,125,139,136,124,
107,238,220,185,177,181,107,215,50,52,52,84,207,188,62,204,48,77,219,73,
76,198,97,235,2,222,243,158,247,248,39,44,249,53,14,160,41,145,72,60,217,
215,215,215,27,6,118,204,96,172,15,51,76,211,118,18,197,56,44,26,96,209,
162,69,69,110,222,232,175,113,196,227,241,111,116,119,119,159,253,218,107,
175,177,99,199,142,153,146,203,249,163,213,0,0,7,247,73,68,65,84,191,131,
195,144,166,237,36,38,48,99,1,88,180,104,17,237,237,237,101,231,246,19,
137,196,210,166,166,166,235,199,199,199,217,186,117,171,212,57,181,27,34,
116,243,30,150,52,109,39,225,99,70,2,208,209,209,65,91,91,219,164,223,223,
11,200,191,33,145,72,44,109,108,108,100,253,250,245,51,33,255,136,165,105,
59,137,25,8,64,71,71,7,151,92,114,73,225,215,56,162,228,59,142,115,158,
109,219,43,122,123,123,101,205,154,53,50,50,50,82,239,112,239,168,164,105,
59,145,81,151,17,216,217,217,201,37,151,92,82,201,205,219,99,219,246,247,
230,205,155,215,252,220,115,207,49,56,56,56,83,242,103,35,77,219,9,131,
186,52,192,25,103,156,1,64,44,22,43,253,41,22,39,22,139,61,154,78,167,79,
217,186,117,43,187,119,239,150,25,14,247,54,113,132,211,180,157,232,168,
89,0,46,190,248,226,194,244,110,52,176,195,117,93,44,203,122,160,163,163,
99,209,158,61,123,216,190,125,251,76,45,254,55,56,233,230,61,226,168,169,
11,184,248,226,139,105,111,111,159,244,19,108,174,235,18,143,199,239,104,
106,106,250,152,101,89,108,222,188,89,234,156,218,13,145,7,126,31,120,37,
186,241,36,249,135,31,85,107,128,246,246,118,218,218,218,10,110,222,18,
242,175,140,199,227,247,181,181,181,177,102,205,26,9,23,110,214,17,198,
61,43,105,218,78,100,84,45,0,11,22,44,64,85,17,145,34,181,175,170,167,139,
200,35,233,116,58,182,118,237,90,66,139,191,206,225,30,156,96,105,218,102,
27,85,9,192,105,167,157,22,186,117,139,178,114,27,99,154,98,177,216,147,
167,158,122,106,219,134,13,27,216,191,127,191,204,144,252,159,112,130,165,
105,155,109,84,101,3,52,54,54,226,186,46,182,109,227,186,46,198,24,68,196,
137,199,227,43,231,206,157,59,127,251,246,237,236,220,185,83,102,56,220,
123,17,127,21,207,73,55,239,81,68,85,2,208,208,208,64,62,159,71,130,116,
214,158,231,145,74,165,150,54,55,55,95,59,58,58,202,182,109,219,234,37,
63,196,9,155,166,109,182,81,85,23,16,142,227,115,185,28,185,92,14,219,182,
207,83,213,59,27,27,27,121,238,185,231,100,6,97,220,39,124,154,182,217,
70,85,26,32,92,197,19,182,238,120,60,254,153,166,166,166,216,166,77,155,
136,90,252,53,226,100,154,182,99,0,85,11,0,248,63,133,110,89,86,114,108,
108,236,154,100,50,201,158,61,123,164,206,177,126,72,254,191,114,130,167,
105,155,109,84,37,0,225,52,111,224,251,63,51,151,203,37,69,164,158,72,94,
40,78,211,246,113,74,220,188,224,231,7,60,233,230,61,58,168,218,19,24,182,
242,124,62,223,234,186,46,99,99,99,50,3,242,139,210,180,57,142,67,50,153,
164,189,189,157,83,78,57,133,84,42,85,175,7,241,184,130,170,242,157,239,
124,167,238,99,15,7,202,10,128,148,249,241,154,48,192,211,113,156,76,96,
241,171,49,53,253,222,125,136,124,99,99,227,146,182,182,182,157,169,84,
138,166,166,38,186,186,186,152,59,119,46,243,230,205,163,179,179,179,144,
45,236,205,14,85,101,241,226,197,53,31,55,149,208,168,42,91,182,108,97,
203,150,45,101,247,149,66,66,178,231,207,159,207,252,249,243,11,228,95,
127,253,245,133,74,207,60,243,12,175,188,242,10,67,67,67,28,58,116,168,
105,247,238,221,251,61,207,139,81,219,79,206,40,160,141,141,141,31,125,
251,219,223,254,47,205,205,205,204,153,51,135,246,246,118,186,186,186,104,
107,107,163,177,177,177,176,134,176,156,16,158,68,117,45,191,92,157,168,
80,68,53,143,220,117,215,93,204,159,63,223,255,167,228,165,139,8,170,202,
238,221,187,121,245,213,87,217,187,119,47,131,131,131,172,90,181,234,223,
129,223,162,122,1,80,128,57,115,230,252,195,185,231,158,251,167,115,230,
204,161,165,165,133,214,214,86,90,90,90,104,105,105,33,153,76,22,178,134,
68,238,67,74,62,143,55,104,201,231,236,220,68,137,64,68,255,119,222,241,
142,119,0,83,183,184,80,77,91,150,69,34,145,224,244,211,79,95,246,210,75,
47,93,29,236,158,142,28,5,112,28,231,7,231,156,115,206,103,122,123,123,
99,205,205,205,180,180,180,208,220,220,76,67,67,67,57,242,5,223,71,17,126,
30,207,48,248,239,32,252,156,14,81,161,41,87,95,43,124,175,136,114,13,59,
132,83,133,170,149,120,60,46,115,230,204,65,85,197,113,28,121,247,187,223,
253,236,208,208,208,231,246,238,221,251,217,200,77,148,59,145,2,52,54,54,
174,190,237,182,219,62,113,234,169,167,54,137,72,69,66,35,228,219,248,246,
73,44,248,126,60,107,0,15,127,122,219,13,190,79,71,90,40,40,94,80,202,9,
78,40,28,38,40,80,94,112,42,9,81,1,242,240,195,15,23,253,79,113,203,179,
84,213,10,191,227,147,97,3,162,170,246,242,229,203,239,24,24,24,184,211,
243,188,138,198,228,91,223,250,214,167,110,190,249,230,191,239,233,233,
201,227,11,92,120,254,74,176,240,137,79,4,37,22,185,167,227,69,16,162,4,
229,129,108,80,242,76,16,86,233,56,131,47,44,185,160,148,19,130,80,56,66,
193,50,148,23,156,210,50,73,19,133,2,16,182,186,24,16,15,74,172,76,9,247,
57,170,106,3,206,214,173,91,79,91,179,102,205,13,207,63,255,252,89,163,
163,163,221,0,77,77,77,251,206,56,227,140,23,23,44,88,240,147,179,206,58,
107,167,136,36,129,164,136,84,67,102,216,250,147,65,137,71,142,57,158,16,
190,236,28,126,186,154,12,19,90,160,82,253,168,208,132,199,68,133,38,172,
19,10,72,38,248,12,207,27,21,156,124,153,18,221,231,1,42,15,63,252,176,
224,147,155,2,230,0,173,64,19,208,8,52,48,65,68,88,18,76,8,65,216,82,147,
170,154,192,39,78,152,24,93,88,248,173,190,150,214,44,193,121,10,194,198,
132,29,112,188,8,65,216,194,74,91,179,75,101,149,92,141,214,136,10,64,22,
95,0,178,193,255,225,117,194,237,209,50,134,255,163,212,35,248,9,51,135,
240,127,161,60,31,190,220,56,208,6,244,1,243,128,110,124,65,104,198,23,
130,20,197,66,16,3,108,17,9,251,233,120,208,186,109,138,141,182,168,102,
113,152,232,207,167,83,231,209,46,231,120,83,255,33,162,132,70,85,242,116,
245,67,53,238,18,105,169,145,122,225,249,194,22,29,181,47,162,154,35,131,
79,242,24,254,108,235,32,176,7,120,13,223,17,231,1,94,216,98,99,248,68,
119,3,167,2,167,0,237,248,26,33,20,128,104,43,14,213,178,93,82,66,226,162,
195,183,176,148,18,57,221,16,175,26,65,41,173,127,52,81,237,208,46,74,236,
84,231,41,53,220,12,147,143,141,26,126,94,73,9,187,155,168,246,8,5,96,8,
56,128,223,120,115,192,33,124,30,51,81,227,173,84,242,194,207,60,197,173,
23,38,212,180,148,28,27,246,223,161,32,132,55,47,193,13,150,19,8,40,79,
94,244,193,167,35,247,104,251,11,166,35,53,90,175,218,243,84,34,60,68,72,
124,116,52,17,21,134,144,175,28,197,220,69,185,156,52,18,113,152,144,156,
97,124,213,64,240,189,133,9,59,32,21,148,176,95,142,218,2,33,145,54,197,
6,100,185,225,91,72,124,180,91,152,78,16,166,194,108,116,21,181,170,246,
74,231,8,63,67,82,67,117,95,105,216,23,85,251,225,232,32,106,104,134,125,
127,184,127,156,9,13,48,138,223,234,247,224,115,60,28,212,49,78,112,146,
44,126,31,225,226,171,139,157,76,244,251,225,103,168,254,19,20,219,2,33,
1,161,225,22,214,45,24,132,145,7,9,5,37,236,78,226,20,107,146,90,200,155,
13,99,177,30,227,110,170,243,68,45,250,80,109,151,246,249,229,12,191,168,
229,95,58,106,8,13,199,176,238,120,228,115,4,159,252,145,96,191,134,2,224,
5,21,242,193,78,135,9,71,76,244,179,116,168,24,85,247,161,6,72,82,76,108,
37,1,8,5,37,218,122,107,193,108,13,23,107,29,222,77,119,30,143,98,139,126,
42,1,136,14,253,162,218,167,116,248,87,174,43,119,75,190,27,2,1,8,47,18,
117,46,148,246,213,86,201,247,130,67,136,98,213,27,245,222,217,101,30,58,
60,62,42,68,97,189,122,212,255,209,118,24,213,235,224,169,116,46,240,223,
121,148,188,74,93,74,169,243,167,212,118,40,117,0,105,201,247,104,253,2,
202,121,240,202,93,188,156,229,94,78,109,71,133,165,28,9,81,161,138,10,
81,61,132,205,166,203,184,30,23,111,165,243,148,115,251,86,154,3,40,117,
255,66,113,119,82,110,68,49,37,170,13,8,169,101,86,171,84,229,79,85,111,
166,214,251,108,78,26,213,58,201,83,14,213,250,236,107,158,0,170,22,255,
31,228,190,91,114,150,166,162,115,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_6 = 456;
static unsigned char xml_res_file_6[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,106,73,68,65,84,120,218,164,83,63,75,195,64,20,127,151,187,20,170,
68,4,49,137,20,28,4,33,144,15,80,180,34,8,25,252,4,153,221,92,116,235,226,
39,112,115,113,235,183,200,34,150,116,40,56,249,1,156,106,59,88,16,29,50,
132,182,8,185,75,226,189,171,45,28,162,144,246,193,143,59,30,239,253,238,
247,254,28,41,203,18,214,49,22,134,225,129,60,155,18,86,197,220,137,196,
51,203,243,252,168,221,110,223,216,182,237,231,185,0,33,114,9,14,156,227,
93,64,81,20,48,23,73,129,16,166,192,88,13,146,36,121,233,116,238,110,153,
12,216,154,205,102,254,104,52,82,193,8,73,170,240,223,93,194,143,162,104,
147,153,166,89,4,65,176,82,253,221,110,151,48,41,147,204,101,86,107,38,
33,4,75,84,4,198,66,86,21,51,12,3,9,140,37,1,162,138,81,74,231,4,156,115,
3,187,221,127,47,225,233,147,106,65,123,53,1,167,230,43,76,167,83,205,239,
56,14,52,26,13,192,92,150,101,25,197,215,31,6,2,238,207,183,181,192,235,
199,47,56,222,21,208,106,181,52,127,28,199,224,186,46,96,46,18,168,18,134,
227,15,232,15,184,22,56,28,39,144,214,82,192,17,107,27,52,153,168,146,49,
119,169,224,236,176,14,87,113,162,5,54,119,8,164,105,10,189,94,79,243,123,
158,183,32,160,76,46,145,137,35,185,240,55,20,126,219,201,159,99,84,185,
150,101,93,202,142,238,175,178,72,82,197,27,145,103,253,231,35,177,138,
249,2,219,65,214,253,206,223,2,12,0,147,178,225,133,173,98,29,0,0,0,0,0,
73,69,78,68,174,66,96,130};
static size_t xml_res_size_7 = 468;
static unsigned char xml_res_file_7[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,118,73,68,65,84,120,218,156,83,49,75,195,64,24,125,119,57,83,139,
138,105,42,56,57,136,166,45,181,8,5,21,92,170,131,238,66,252,47,10,130,
46,254,5,17,252,11,182,163,56,56,85,235,88,113,168,14,181,163,155,139,155,
214,228,238,188,187,52,133,170,181,198,7,225,72,114,239,125,223,123,247,
29,57,57,61,131,144,178,42,165,244,165,4,160,159,62,6,94,250,32,148,128,
0,53,74,233,46,227,66,84,43,155,21,223,203,229,193,185,80,28,2,170,120,
22,168,162,135,106,183,248,46,64,8,218,157,39,255,186,222,168,178,48,12,
253,76,54,139,151,178,135,183,139,91,20,106,203,232,236,180,112,116,53,
139,227,173,103,220,221,55,161,180,116,197,1,172,173,174,32,8,2,159,113,
206,145,117,28,180,207,47,49,231,76,161,185,125,131,249,204,36,246,214,
219,200,184,211,240,114,139,170,162,41,219,115,21,217,114,93,215,116,172,
59,192,68,202,70,185,144,51,63,102,74,249,104,131,227,153,213,113,138,24,
6,205,101,66,117,160,209,122,120,236,251,251,13,178,215,65,105,169,8,33,
56,88,252,33,157,78,143,36,127,21,209,43,19,34,74,57,165,108,36,21,208,
92,102,142,206,8,164,144,20,38,196,88,205,30,179,19,11,24,11,92,68,33,218,
202,66,44,54,10,177,85,205,85,167,16,89,24,87,22,226,60,70,65,141,112,148,
129,182,16,207,187,86,181,44,43,169,9,208,191,38,63,204,10,235,118,223,
235,251,7,135,27,60,228,67,111,223,15,84,88,204,66,24,124,212,117,249,5,
61,177,255,108,226,245,83,128,1,0,252,66,151,102,82,249,150,146,0,0,0,0,
73,69,78,68,174,66,96,130};
static size_t xml_res_size_8 = 602;
static unsigned char xml_res_file_8[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,252,73,68,65,84,120,218,164,147,207,75,20,97,28,198,159,119,230,221,
214,102,103,195,93,100,217,68,52,216,130,132,214,75,118,136,232,232,49,
40,196,75,251,15,116,235,176,55,187,20,212,57,10,130,14,222,116,47,94,180,
168,107,93,196,16,33,15,29,4,77,164,214,81,219,129,153,162,117,103,198,
153,121,183,247,251,238,20,171,184,40,52,240,242,254,152,121,62,207,247,
121,191,12,107,183,219,248,159,135,63,158,159,7,65,24,99,127,231,59,242,
252,226,25,245,123,188,123,71,144,48,12,7,159,85,42,175,79,171,139,201,
241,168,86,123,208,13,80,206,18,114,123,117,107,11,214,90,245,4,149,148,
201,42,251,240,11,19,147,31,112,24,4,140,247,114,30,47,45,246,116,126,247,
102,10,145,16,240,19,192,17,231,23,31,25,184,6,232,114,68,2,200,246,1,41,
185,30,206,3,3,230,121,220,191,89,4,231,169,14,192,243,24,63,238,60,91,
234,157,249,253,218,166,18,30,70,231,16,118,0,26,167,28,177,204,245,101,
161,208,67,214,65,151,239,53,100,37,177,2,236,239,90,106,110,81,5,148,131,
54,154,102,34,157,22,234,158,148,84,103,208,83,58,68,44,32,100,22,250,38,
142,125,229,108,89,62,34,105,234,181,90,76,163,28,244,242,229,171,33,124,
90,41,192,48,12,100,50,25,228,138,69,12,93,191,129,66,233,50,76,51,171,
0,235,78,7,116,117,226,41,116,206,225,58,142,206,41,7,81,55,214,183,97,
255,232,151,135,6,134,71,116,92,187,53,130,129,108,25,129,215,144,162,223,
202,185,121,16,41,231,231,51,51,111,31,78,79,47,197,205,166,205,91,73,5,
213,170,43,203,255,41,163,104,170,173,246,246,87,100,47,44,193,174,71,112,
172,0,229,113,129,43,253,158,114,142,124,255,179,189,188,92,147,73,93,78,
57,136,186,179,35,146,139,139,21,192,112,66,176,76,132,253,111,2,141,239,
49,70,143,58,239,165,115,185,221,192,117,193,41,7,81,239,62,177,79,108,
223,165,100,62,238,252,175,79,249,177,177,138,110,154,131,103,249,115,200,
249,160,94,159,35,231,238,70,167,229,200,39,235,211,30,82,122,221,7,127,
4,24,0,138,132,23,84,221,35,102,201,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_9 = 305;
static unsigned char xml_res_file_9[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,0,211,73,68,65,84,120,218,156,147,221,9,195,48,12,132,165,36,248,161,
166,3,180,157,169,27,116,128,46,97,28,200,18,29,160,27,116,166,226,1,26,
23,242,95,159,32,134,190,69,17,8,67,208,119,156,46,54,215,117,125,37,162,
19,233,43,120,239,95,213,56,142,231,166,105,30,90,218,57,119,199,89,77,
211,68,203,178,72,111,45,102,38,112,34,48,12,3,207,243,172,22,0,39,2,105,
5,17,64,111,173,162,40,8,220,234,64,224,213,210,214,2,39,2,125,223,179,
86,0,43,128,203,25,0,214,10,228,12,246,56,64,6,217,65,215,117,106,129,178,
44,9,220,110,7,152,255,115,160,205,0,179,217,65,140,145,113,137,52,247,
0,243,224,68,32,132,80,33,20,99,140,42,68,112,242,71,172,181,183,244,225,
162,125,76,201,241,187,109,219,39,108,28,82,31,17,174,130,71,96,159,180,
202,247,39,192,0,252,76,170,213,210,75,189,20,0,0,0,0,73,69,78,68,174,66,
96,130};
static size_t xml_res_size_10 = 442;
static unsigned char xml_res_file_10[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,92,73,68,65,84,120,218,164,147,49,78,195,48,24,133,159,237,52,137,
99,42,145,84,66,8,6,36,102,6,134,78,112,8,36,118,216,145,24,144,24,96,106,
39,36,24,146,130,96,97,133,11,112,10,102,78,129,16,8,24,10,116,72,98,19,
59,109,18,90,1,169,234,33,122,177,252,62,255,254,159,77,148,82,152,101,
88,250,179,123,124,117,23,199,201,86,154,202,90,38,198,40,26,13,235,254,
230,116,127,211,0,180,249,54,60,192,227,251,0,248,175,34,66,176,228,115,
236,28,158,111,20,21,232,157,251,95,41,158,223,250,198,79,126,241,170,220,
143,166,99,99,84,173,149,83,41,132,199,176,186,56,95,167,0,179,86,123,10,
128,239,81,108,239,157,33,78,210,90,71,104,88,12,203,1,47,1,107,11,9,174,
79,142,48,248,252,24,22,250,39,1,92,204,225,242,34,42,1,113,162,32,149,
196,211,203,107,173,20,86,60,207,120,10,128,150,82,42,216,182,93,11,160,
215,170,234,61,200,91,76,224,100,0,146,157,145,82,138,209,5,211,255,227,
154,84,114,50,173,212,147,218,228,186,46,90,173,0,189,94,4,33,4,130,192,
159,208,156,243,31,27,208,130,148,41,33,56,58,157,14,218,237,54,156,44,
235,110,183,59,161,93,215,49,81,150,149,103,164,48,12,213,180,99,232,201,
123,192,24,235,71,81,212,148,82,142,5,86,134,90,213,250,8,218,99,230,77,
83,8,89,215,156,41,31,98,154,121,31,200,172,207,249,91,128,1,0,143,73,185,
134,246,77,109,68,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_11 = 669;
static unsigned char xml_res_file_11[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,
69,7,220,7,9,6,37,36,182,125,173,234,0,0,2,42,73,68,65,84,56,203,165,147,
79,72,84,81,20,198,127,247,189,55,53,99,76,76,36,131,204,194,32,153,77,
211,162,85,81,187,64,112,64,23,34,217,96,32,184,11,66,90,9,18,72,224,166,
104,51,3,3,110,102,210,141,27,9,68,4,25,28,107,49,208,42,181,133,80,144,
127,70,168,25,194,22,35,105,60,168,59,231,222,105,209,100,105,36,88,7,62,
206,229,112,207,185,223,57,223,61,240,159,166,250,251,251,47,2,215,128,
240,9,115,191,0,175,60,99,204,245,145,145,145,7,209,104,52,97,140,32,98,
16,169,83,175,11,34,130,181,150,70,3,192,69,41,15,165,60,60,239,20,181,
90,237,109,46,151,126,236,89,107,207,250,190,159,216,222,222,198,90,139,
181,22,99,12,198,152,99,207,214,218,196,252,252,252,25,47,16,8,216,206,
206,206,127,234,191,88,44,42,79,68,212,15,154,141,147,13,79,41,68,68,57,
34,226,24,99,16,145,63,176,191,187,198,214,202,45,246,119,215,14,98,149,
74,133,185,185,57,202,229,50,34,226,28,91,96,125,117,148,104,52,202,250,
234,40,34,66,181,90,101,121,121,153,174,174,46,10,133,2,34,226,120,245,
122,221,17,17,74,31,27,188,252,228,30,162,121,33,244,144,234,139,97,66,
109,247,201,102,179,100,179,89,54,54,54,72,167,211,116,119,119,179,176,
176,224,56,90,107,215,24,67,97,83,243,232,198,233,3,220,49,183,121,227,
95,162,253,74,158,186,61,79,46,151,99,112,112,144,142,142,14,98,177,24,
241,120,28,173,181,235,105,173,29,99,12,229,202,14,165,205,250,175,231,
219,158,82,46,237,176,248,122,145,124,62,79,95,95,31,147,147,147,140,143,
143,19,137,68,216,90,73,161,181,118,188,159,12,110,198,67,12,63,175,29,
106,33,246,190,196,196,244,4,189,189,189,76,77,77,49,48,48,128,235,186,
180,182,182,210,126,121,26,173,147,174,231,251,126,64,41,197,80,162,133,
161,68,203,65,242,210,210,18,99,207,158,144,76,38,153,157,157,37,147,201,
208,211,211,115,72,70,223,247,3,42,28,14,223,117,93,183,253,168,206,123,
123,123,247,82,169,84,100,102,102,198,15,6,131,197,96,48,248,238,232,29,
99,204,7,5,132,154,139,228,253,46,0,112,21,24,3,50,64,9,208,77,124,107,
250,175,192,103,245,151,143,118,174,89,216,54,33,128,57,226,45,96,191,3,
75,8,66,197,24,125,248,245,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_12 = 1367;
static unsigned char xml_res_file_12[] = {
60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101,
110,99,111,100,105,110,103,61,34,85,84,70,45,56,34,63,62,10,60,114,101,
115,111,117,114,99,101,32,120,109,108,110,115,61,34,104,116,116,112,58,
47,47,119,119,119,46,119,120,119,105,110,100,111,119,115,46,111,114,103,
47,119,120,120,114,99,34,32,118,101,114,115,105,111,110,61,34,50,46,51,
46,48,46,49,34,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,
61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,109,95,98,
109,112,70,111,108,100,101,114,34,62,85,73,95,119,120,99,114,97,102,116,
101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,
111,117,114,99,101,115,95,102,111,108,100,101,114,46,112,110,103,60,47,
111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,
115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,
109,95,98,109,112,87,120,67,114,97,102,116,101,114,76,111,103,111,34,62,
85,73,95,119,120,99,114,97,102,116,101,114,99,98,95,98,105,116,109,97,112,
115,46,99,112,112,36,82,101,115,111,117,114,99,101,115,95,119,120,99,45,
108,111,103,111,45,49,54,46,112,110,103,60,47,111,98,106,101,99,116,62,
10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,
105,116,109,97,112,34,32,110,97,109,101,61,34,110,101,119,45,114,101,115,
111,117,114,99,101,34,62,85,73,95,119,120,99,114,97,102,116,101,114,99,
98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,111,117,114,
99,101,115,95,110,101,119,45,114,101,115,111,117,114,99,101,46,112,110,
103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,
99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,
101,61,34,112,114,111,106,101,99,116,34,62,85,73,95,119,120,99,114,97,102,
116,101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,
115,111,117,114,99,101,115,95,112,114,111,106,101,99,116,46,112,110,103,
60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,
108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,
61,34,115,101,116,116,105,110,103,115,34,62,85,73,95,119,120,99,114,97,
102,116,101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,
101,115,111,117,114,99,101,115,95,115,101,116,116,105,110,103,115,46,112,
110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,
32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,
101,61,34,119,105,122,97,114,100,34,62,85,73,95,119,120,99,114,97,102,116,
101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,
111,117,114,99,101,115,95,119,105,122,97,114,100,46,112,110,103,60,47,111,
98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,119,
120,100,105,97,108,111,103,34,62,85,73,95,119,120,99,114,97,102,116,101,
114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,111,
117,114,99,101,115,95,119,120,100,105,97,108,111,103,46,112,110,103,60,
47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,
97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,
34,119,120,102,114,97,109,101,34,62,85,73,95,119,120,99,114,97,102,116,
101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,
111,117,114,99,101,115,95,119,120,102,114,97,109,101,46,112,110,103,60,
47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,
97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,
34,119,120,105,109,103,108,105,115,116,34,62,85,73,95,119,120,99,114,97,
102,116,101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,82,
101,115,111,117,114,99,101,115,95,119,120,105,109,103,108,105,115,116,46,
112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,
116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,
97,109,101,61,34,119,120,112,97,110,101,108,34,62,85,73,95,119,120,99,114,
97,102,116,101,114,99,98,95,98,105,116,109,97,112,115,46,99,112,112,36,
82,101,115,111,117,114,99,101,115,95,119,120,112,97,110,101,108,46,112,
110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,
32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,
101,61,34,119,120,112,111,112,117,112,119,105,110,100,111,119,34,62,85,
73,95,119,120,99,114,97,102,116,101,114,99,98,95,98,105,116,109,97,112,
115,46,99,112,112,36,82,101,115,111,117,114,99,101,115,95,119,120,112,111,
112,117,112,119,105,110,100,111,119,46,112,110,103,60,47,111,98,106,101,
99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,
119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,119,120,119,105,
122,97,114,100,34,62,85,73,95,119,120,99,114,97,102,116,101,114,99,98,95,
98,105,116,109,97,112,115,46,99,112,112,36,82,101,115,111,117,114,99,101,
115,95,119,120,119,105,122,97,114,100,46,112,110,103,60,47,111,98,106,101,
99,116,62,10,60,47,114,101,115,111,117,114,99,101,62,10};
void wxC8968InitBitmapResources()
{
// Check for memory FS. If not present, load the handler:
{
wxMemoryFSHandler::AddFile(wxT("XRC_resource/dummy_file"), wxT("dummy one"));
wxFileSystem fsys;
wxFSFile *f = fsys.OpenFile(wxT("memory:XRC_resource/dummy_file"));
wxMemoryFSHandler::RemoveFile(wxT("XRC_resource/dummy_file"));
if (f) delete f;
else wxFileSystem::AddHandler(new wxMemoryFSHandlerBase);
}
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_folder.png"), xml_res_file_0, xml_res_size_0, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxc-logo-16.png"), xml_res_file_1, xml_res_size_1, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_new-resource.png"), xml_res_file_2, xml_res_size_2, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_project.png"), xml_res_file_3, xml_res_size_3, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_settings.png"), xml_res_file_4, xml_res_size_4, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wizard.png"), xml_res_file_5, xml_res_size_5, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxdialog.png"), xml_res_file_6, xml_res_size_6, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxframe.png"), xml_res_file_7, xml_res_size_7, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wximglist.png"), xml_res_file_8, xml_res_size_8, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxpanel.png"), xml_res_file_9, xml_res_size_9, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxpopupwindow.png"), xml_res_file_10, xml_res_size_10, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$Resources_wxwizard.png"), xml_res_file_11, xml_res_size_11, wxT("image/x-apple-ios-png"));
XRC_ADD_FILE(wxT("XRC_resource/UI_wxcraftercb_bitmaps.cpp$_home_eran_devl_wxCrafterCB_UI_wxcraftercb_bitmaps.xrc"), xml_res_file_12, xml_res_size_12, wxT("text/xml"));
wxXmlResource::Get()->Load(wxT("memory:XRC_resource/UI_wxcraftercb_bitmaps.cpp$_home_eran_devl_wxCrafterCB_UI_wxcraftercb_bitmaps.xrc"));
}