-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBMpostInstall-v2.sh.x.c
1468 lines (1402 loc) · 69.1 KB
/
BMpostInstall-v2.sh.x.c
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
#if 0
shc Version 4.0.3, Generic Shell Script Compiler
GNU GPL Version 3 Md Jahidul Hamid <[email protected]>
shc -f BMpostInstall-v2.sh -o install_v2
#endif
static char data [] =
#define rlax_z 1
#define rlax ((&data[0]))
"\016"
#define tst2_z 19
#define tst2 ((&data[1]))
"\025\320\064\310\245\273\376\153\305\012\232\074\315\322\221\347"
"\011\357\156\004\236\110\010"
#define msg2_z 19
#define msg2 ((&data[24]))
"\274\033\376\145\353\033\021\126\011\340\044\373\360\316\313\300"
"\011\227\365\324\300\201\003"
#define chk2_z 19
#define chk2 ((&data[51]))
"\242\371\214\225\145\024\032\052\177\131\023\346\305\261\267\030"
"\300\234\046\073\166\067\274\042\115\073"
#define opts_z 1
#define opts ((&data[73]))
"\205"
#define lsto_z 1
#define lsto ((&data[74]))
"\300"
#define shll_z 10
#define shll ((&data[75]))
"\341\224\072\237\252\004\302\003\217\160"
#define text_z 12135
#define text ((&data[98]))
"\316\321\167\211\026\377\203\312\257\310\111\162\011\007\236\262"
"\356\356\153\131\176\213\232\026\173\340\013\143\204\101\375\364"
"\222\017\123\361\074\116\165\340\147\321\335\111\024\041\346\101"
"\077\150\046\105\162\345\204\134\305\132\341\215\314\057\215\357"
"\111\224\360\363\356\175\215\250\256\362\153\231\202\065\031\174"
"\012\372\324\017\354\160\144\061\336\040\371\205\316\111\073\126"
"\231\061\011\210\017\102\207\265\207\162\313\106\006\376\170\142"
"\073\142\133\333\315\066\041\264\153\176\161\352\034\313\161\343"
"\047\022\164\175\222\111\073\231\124\136\026\133\366\273\330\264"
"\316\355\163\225\347\227\265\312\334\043\053\160\010\227\265\273"
"\200\263\334\171\003\013\255\003\245\020\165\137\067\005\267\333"
"\052\216\230\004\102\035\203\072\111\125\367\040\370\235\154\043"
"\351\307\232\103\054\235\172\147\146\140\113\033\017\052\332\042"
"\031\072\367\152\344\331\267\307\212\310\044\263\171\065\151\274"
"\252\305\033\317\320\201\246\100\125\242\115\205\033\054\006\040"
"\045\166\262\253\011\242\045\036\135\037\340\242\226\337\226\366"
"\271\314\226\244\010\335\173\202\157\170\127\167\365\370\133\303"
"\330\044\135\264\055\224\237\254\250\365\105\257\024\110\242\256"
"\050\156\143\216\270\300\223\360\051\101\024\175\306\255\106\054"
"\344\340\011\241\324\137\274\344\123\014\106\210\352\217\072\023"
"\132\174\326\021\136\317\036\247\377\062\071\116\053\251\126\301"
"\136\223\113\043\357\260\223\035\046\374\005\026\177\022\165\216"
"\364\205\212\157\350\051\077\321\044\232\063\356\324\024\133\253"
"\243\243\141\124\345\027\013\047\237\156\317\156\157\346\073\065"
"\226\035\107\134\004\056\224\236\253\336\052\144\223\350\005\130"
"\020\155\225\241\105\014\011\006\105\173\212\157\111\064\007\275"
"\275\321\023\373\036\200\002\232\250\141\013\352\114\251\235\177"
"\100\015\204\012\075\026\376\211\017\142\342\204\224\224\235\241"
"\206\365\154\213\252\212\371\231\274\370\121\075\125\161\137\224"
"\227\161\230\371\126\110\331\136\332\255\212\202\222\233\236\320"
"\230\060\065\130\256\052\177\164\111\055\150\354\046\036\024\317"
"\313\076\121\206\237\276\044\335\140\076\031\047\236\137\223\307"
"\162\313\347\234\303\105\274\210\101\336\212\147\175\356\073\064"
"\243\311\171\155\274\047\372\311\372\142\342\112\106\227\057\022"
"\237\343\117\117\247\264\267\035\317\073\255\227\360\253\144\025"
"\324\154\021\202\004\233\354\112\147\154\045\056\172\320\175\305"
"\013\264\177\344\124\015\113\014\114\104\024\156\054\240\364\161"
"\066\325\060\302\211\326\211\044\221\002\107\267\073\300\351\304"
"\340\137\213\141\155\146\345\344\371\144\344\064\210\062\345\165"
"\303\022\116\145\314\032\131\352\173\136\143\206\365\115\371\321"
"\166\217\062\014\233\366\037\203\245\353\134\351\313\206\133\102"
"\277\002\053\203\261\041\247\230\265\142\001\276\203\107\366\062"
"\072\313\113\000\051\067\155\073\220\246\034\247\206\004\210\315"
"\175\104\361\032\062\161\040\122\332\322\364\021\162\133\064\342"
"\146\364\127\055\271\176\072\146\315\115\226\334\121\326\340\063"
"\236\001\227\103\123\302\117\233\102\044\352\263\232\055\363\040"
"\035\315\076\257\066\322\344\041\131\070\100\055\201\070\306\126"
"\232\176\052\230\032\301\370\274\071\316\244\341\225\266\313\233"
"\250\377\036\371\005\176\161\040\336\042\277\266\222\330\333\306"
"\114\222\276\167\322\266\264\207\226\066\064\237\206\053\212\236"
"\337\057\160\206\222\160\056\301\377\335\033\014\370\037\114\144"
"\341\264\374\260\010\251\224\322\001\302\333\372\345\375\251\220"
"\123\337\165\127\145\343\322\375\156\363\024\266\371\106\355\240"
"\050\047\273\202\235\115\336\061\165\036\330\241\153\115\162\156"
"\007\317\054\343\300\376\121\265\213\177\114\067\114\306\007\151"
"\356\040\002\220\123\015\016\142\357\126\163\314\215\276\144\325"
"\031\223\225\154\344\350\213\174\102\024\316\323\123\042\051\361"
"\202\322\150\351\017\240\237\105\075\347\274\204\060\106\052\101"
"\127\273\234\352\325\121\264\347\254\100\340\060\020\045\370\162"
"\335\312\317\203\320\240\244\060\274\225\016\261\237\322\034\053"
"\076\070\264\367\350\001\133\025\103\311\321\020\332\304\005\005"
"\260\041\112\032\101\042\370\053\070\236\356\262\172\375\253\233"
"\251\113\136\067\030\350\227\176\324\351\225\062\325\003\233\047"
"\112\071\340\216\232\251\337\310\137\203\120\056\352\125\200\216"
"\035\107\330\261\231\140\275\226\354\043\027\035\011\204\036\037"
"\251\147\312\110\221\236\104\144\322\124\017\012\062\077\157\330"
"\275\340\132\074\304\317\102\111\162\062\037\310\054\067\206\320"
"\254\322\117\105\237\172\361\042\352\220\363\125\241\351\225\232"
"\030\321\262\217\366\371\157\006\201\350\376\302\062\273\363\334"
"\043\024\321\325\163\052\133\316\070\157\100\214\027\215\250\223"
"\110\331\005\354\241\376\335\121\132\250\376\054\021\014\122\015"
"\354\331\356\115\377\375\371\256\221\240\105\111\013\311\037\031"
"\313\041\363\177\337\026\363\277\302\047\152\257\011\310\124\315"
"\126\065\242\304\376\132\320\017\136\137\151\324\137\326\356\214"
"\001\372\016\027\105\176\071\367\276\012\351\001\161\350\043\070"
"\312\031\023\105\255\145\065\117\106\330\207\330\342\275\213\356"
"\163\336\157\356\157\210\135\121\357\374\217\013\216\131\246\000"
"\342\213\226\120\307\357\050\276\101\132\155\306\325\135\252\120"
"\016\321\315\320\173\027\205\351\353\234\324\011\106\313\176\360"
"\231\350\063\030\323\142\264\104\130\263\060\121\011\373\230\202"
"\234\316\126\336\250\263\344\156\136\041\101\312\207\157\073\222"
"\256\313\336\022\235\027\057\050\052\241\244\043\341\137\276\374"
"\301\061\042\122\023\176\212\144\073\175\267\327\163\261\152\172"
"\121\143\126\114\311\174\172\337\276\213\134\115\350\113\050\257"
"\040\112\205\353\211\065\177\211\023\017\033\122\044\153\101\316"
"\260\177\276\257\356\371\177\134\046\243\304\313\356\173\035\134"
"\225\014\032\047\357\000\010\061\124\065\062\032\207\166\230\235"
"\335\144\036\316\047\041\162\130\221\102\263\204\230\330\137\157"
"\260\231\245\004\037\003\124\321\271\064\321\270\024\273\106\007"
"\124\230\165\373\016\110\133\045\075\227\153\235\045\126\315\007"
"\133\074\217\322\106\162\126\043\004\301\167\156\015\047\153\357"
"\322\270\312\005\303\067\375\347\036\065\227\141\372\016\175\312"
"\312\132\215\157\030\273\352\017\264\123\367\243\055\142\055\054"
"\036\324\235\310\232\371\351\041\166\155\242\001\043\151\110\136"
"\127\055\323\245\304\112\324\167\042\117\102\140\116\147\201\221"
"\206\041\173\176\376\221\210\156\307\077\175\162\252\045\325\020"
"\215\232\231\121\155\274\114\373\146\340\076\277\000\100\227\136"
"\015\376\210\362\322\235\300\141\031\366\331\005\347\323\057\242"
"\174\211\262\010\245\064\251\221\211\215\120\144\216\272\355\201"
"\124\203\334\113\307\204\353\236\250\212\273\105\274\012\106\246"
"\030\066\356\345\206\127\301\367\034\005\214\353\024\012\235\334"
"\115\322\214\165\117\110\234\047\160\010\061\016\231\207\145\174"
"\300\347\127\373\305\145\272\213\036\355\140\223\003\374\121\320"
"\244\027\371\127\346\124\161\007\360\056\176\152\105\310\174\323"
"\115\265\076\052\064\351\322\313\314\223\032\334\017\354\250\275"
"\336\133\051\134\343\316\123\351\234\257\117\072\327\350\042\313"
"\105\374\160\025\017\026\063\264\134\123\077\211\323\210\277\125"
"\073\270\343\146\055\340\302\363\112\053\044\051\024\071\015\120"
"\045\040\365\334\364\230\345\344\373\142\253\303\371\251\323\232"
"\005\012\370\005\230\200\343\031\146\167\255\351\246\372\002\340"
"\113\050\235\335\032\203\176\011\306\023\067\115\316\123\067\245"
"\375\051\026\123\357\337\007\256\220\341\161\253\201\051\042\201"
"\006\177\111\111\074\337\144\034\327\273\363\067\372\130\053\100"
"\152\330\325\374\001\146\117\126\145\353\337\011\175\247\316\110"
"\324\044\265\361\245\310\141\204\357\274\240\363\311\214\237\175"
"\227\222\116\137\045\331\127\164\101\046\262\027\157\012\375\064"
"\240\175\111\323\160\146\104\371\025\134\041\000\012\237\321\365"
"\304\013\162\264\316\211\133\254\302\375\273\177\161\316\217\373"
"\027\370\130\066\324\117\364\272\062\217\272\141\072\367\174\033"
"\112\107\334\062\357\210\064\323\146\213\101\052\033\004\215\070"
"\307\002\350\013\226\306\045\067\322\020\303\002\125\127\340\327"
"\245\005\072\312\277\110\367\214\335\315\360\107\362\065\025\240"
"\104\232\366\275\343\040\315\052\347\001\174\137\347\034\022\326"
"\104\232\006\222\215\061\246\041\122\161\144\216\220\153\117\062"
"\160\350\120\227\205\361\121\010\320\101\162\253\300\230\341\137"
"\341\265\070\344\322\357\016\234\073\203\263\357\233\276\314\275"
"\232\141\055\055\024\125\377\146\034\156\223\107\330\154\012\224"
"\262\356\335\165\117\275\162\266\235\201\270\325\177\314\370\043"
"\275\377\332\075\017\265\270\332\216\317\314\374\144\362\263\101"
"\212\344\373\301\032\345\270\377\015\312\363\105\036\025\173\132"
"\102\000\207\036\054\261\321\262\337\267\030\355\343\321\255\274"
"\044\061\114\234\030\011\074\247\055\240\111\271\255\372\175\261"
"\270\052\271\333\264\064\132\115\174\356\004\052\022\165\363\244"
"\133\121\066\373\226\260\057\207\325\102\342\131\013\320\001\113"
"\150\253\362\177\254\216\242\167\255\271\214\100\347\327\073\015"
"\005\141\100\021\162\054\077\102\371\273\001\242\037\232\163\041"
"\233\313\332\070\265\154\233\370\327\024\122\246\144\347\111\367"
"\102\370\020\035\107\346\042\265\327\114\055\160\205\213\252\200"
"\211\055\253\007\142\202\217\233\111\365\040\375\254\104\130\200"
"\261\120\230\001\307\123\016\373\243\146\064\263\077\202\173\114"
"\142\261\250\213\036\337\213\044\247\077\351\307\264\376\335\102"
"\341\264\005\347\127\202\112\331\236\076\065\074\000\122\331\247"
"\226\262\302\303\175\074\307\103\365\116\215\005\233\027\107\035"
"\243\136\163\365\042\215\211\260\321\226\250\272\336\336\153\216"
"\043\333\305\226\121\327\106\102\234\001\253\171\015\117\267\013"
"\230\177\222\125\254\377\023\342\024\262\235\233\275\371\015\277"
"\176\260\022\123\201\227\044\053\140\357\255\310\223\120\176\215"
"\233\264\005\042\330\125\210\041\306\367\163\121\066\265\360\002"
"\236\132\152\345\355\302\306\336\024\057\032\321\334\044\174\344"
"\305\102\033\146\255\000\070\175\075\140\132\361\264\014\124\251"
"\037\330\362\373\333\307\302\355\236\326\150\024\001\172\230\137"
"\276\037\077\363\056\303\025\123\036\027\074\273\340\156\114\162"
"\161\330\034\303\132\111\061\027\264\343\176\373\314\141\004\077"
"\030\203\260\247\215\250\144\344\177\045\006\313\175\377\021\250"
"\045\173\213\041\040\077\266\246\360\351\104\004\252\152\300\155"
"\225\266\111\132\077\356\122\342\236\220\232\354\270\364\171\012"
"\010\242\074\362\234\042\143\125\257\334\227\153\321\246\131\104"
"\077\054\001\221\140\227\027\100\201\052\235\277\330\304\053\327"
"\313\100\071\332\107\021\111\366\247\020\170\227\052\065\175\247"
"\276\271\372\261\067\074\113\005\177\233\003\044\342\242\016\325"
"\175\234\106\142\113\336\124\354\217\233\040\114\035\346\316\235"
"\073\117\322\116\210\344\273\174\077\270\052\311\040\011\153\176"
"\312\065\035\326\000\370\056\052\131\020\372\055\223\061\240\125"
"\060\375\342\244\320\005\203\261\246\040\320\176\363\110\113\276"
"\136\070\355\070\072\346\360\006\364\313\366\117\215\105\250\274"
"\005\276\164\005\112\354\026\003\174\266\220\233\235\253\223\057"
"\071\337\341\056\032\152\037\275\270\254\102\123\372\135\317\216"
"\163\073\231\061\306\303\260\047\373\111\176\115\227\340\007\231"
"\255\011\142\240\343\173\114\102\246\030\061\367\321\352\315\230"
"\321\172\202\302\130\370\374\051\143\311\172\006\211\362\020\231"
"\013\007\066\316\166\076\335\377\075\226\121\300\301\305\027\223"
"\264\156\327\272\271\204\242\012\321\173\215\055\325\200\245\322"
"\021\322\376\345\127\234\135\133\064\000\036\103\316\057\366\157"
"\325\220\014\163\270\213\162\355\141\244\312\171\076\016\210\313"
"\241\040\042\330\161\016\145\302\334\374\353\107\126\017\364\342"
"\075\163\163\126\271\167\335\252\263\331\341\314\024\004\313\203"
"\353\102\356\017\010\032\115\215\103\165\176\206\141\276\213\305"
"\333\004\376\367\235\101\325\343\111\043\126\260\111\105\124\133"
"\060\007\013\340\225\322\100\122\276\155\371\374\165\333\025\060"
"\032\326\111\003\301\300\021\307\157\053\077\152\273\167\260\052"
"\071\135\200\376\347\231\272\243\041\354\244\322\106\316\164\072"
"\115\152\377\362\207\060\056\225\072\272\040\104\150\324\250\147"
"\323\371\000\366\361\205\032\117\314\225\124\364\130\153\044\215"
"\107\132\353\244\007\070\300\136\122\242\132\032\215\022\202\251"
"\203\207\374\052\340\241\230\021\121\015\014\110\116\001\155\314"
"\006\317\254\267\262\333\311\025\330\016\241\137\262\204\325\224"
"\271\125\120\265\243\334\101\006\170\044\365\153\055\311\057\106"
"\362\275\010\335\205\131\152\237\015\172\066\335\371\245\321\306"
"\244\020\246\340\171\006\310\272\131\213\116\234\217\036\372\233"
"\234\255\356\333\266\244\200\171\165\021\133\015\115\103\332\134"
"\204\204\154\015\230\254\334\317\165\362\325\020\343\246\310\262"
"\201\203\034\363\174\103\215\004\204\220\320\274\205\373\157\011"
"\024\066\220\375\057\216\275\040\100\253\345\314\114\107\235\007"
"\171\156\327\267\043\126\312\204\122\100\373\123\100\341\330\133"
"\011\005\002\150\137\155\035\116\251\347\325\116\363\065\051\201"
"\001\227\112\035\224\323\342\123\025\060\231\131\204\044\215\131"
"\117\007\135\166\057\146\233\242\203\065\154\075\020\314\247\223"
"\123\301\054\015\230\326\241\123\264\265\053\150\021\145\110\162"
"\325\040\145\353\342\135\170\031\213\142\214\077\042\315\000\236"
"\103\230\152\337\152\222\235\255\044\117\312\330\064\330\127\273"
"\016\076\045\202\021\056\232\164\176\307\021\166\036\203\331\103"
"\370\257\067\026\167\276\226\004\006\330\246\317\230\232\375\054"
"\310\204\345\125\223\012\203\214\144\135\270\341\157\046\334\240"
"\152\060\124\161\174\376\046\075\213\340\037\222\133\210\111\023"
"\054\070\160\020\341\225\243\376\261\250\124\124\125\223\217\055"
"\004\154\177\075\141\251\024\075\075\133\027\265\356\121\154\125"
"\017\044\061\061\305\134\266\366\272\074\031\213\344\200\036\236"
"\310\225\235\207\161\113\344\334\312\050\070\215\013\023\173\347"
"\235\100\257\354\334\050\257\103\144\305\173\302\237\362\306\220"
"\276\147\166\375\167\051\037\315\133\070\042\346\124\071\317\056"
"\346\036\053\372\014\253\047\051\200\256\342\300\231\273\166\037"
"\276\172\154\041\242\230\060\135\077\111\377\053\313\134\212\136"
"\133\123\271\206\016\131\363\351\237\137\233\132\001\324\205\360"
"\271\253\263\107\244\207\010\242\236\256\253\146\356\070\362\162"
"\065\132\244\252\120\076\276\023\236\246\306\231\145\010\060\135"
"\175\351\203\116\050\271\044\034\150\374\032\132\152\031\002\303"
"\043\351\344\023\105\107\325\301\053\344\273\314\321\134\032\254"
"\314\145\076\027\026\154\033\327\054\046\277\000\262\213\110\256"
"\075\056\373\172\246\100\123\120\062\060\135\205\115\335\253\112"
"\166\007\366\067\173\201\316\257\063\174\050\324\151\303\207\250"
"\260\143\171\347\131\330\137\230\333\012\166\147\033\155\242\167"
"\024\341\162\074\240\305\305\176\021\216\021\174\123\241\201\257"
"\123\316\015\025\273\112\040\364\176\202\342\041\322\050\026\104"
"\362\347\317\274\056\116\066\152\346\212\255\116\236\251\113\236"
"\155\251\043\222\233\106\257\360\135\146\254\333\272\022\103\002"
"\302\247\163\124\306\000\377\202\102\341\101\235\202\235\114\144"
"\141\132\144\110\232\373\074\246\034\025\063\106\357\347\166\053"
"\221\071\372\200\333\174\127\305\122\070\234\322\305\371\340\272"
"\033\351\317\340\224\316\314\037\222\154\357\315\134\135\162\315"
"\104\377\230\033\204\156\227\326\247\160\340\223\103\100\056\076"
"\101\353\111\235\166\310\013\120\036\215\127\043\155\240\101\001"
"\155\074\305\165\355\245\254\245\241\151\171\360\324\374\253\237"
"\130\301\216\162\122\201\250\161\047\265\117\072\144\304\374\015"
"\044\075\150\312\120\105\362\321\066\120\234\275\302\333\350\161"
"\207\154\052\342\006\356\350\260\172\065\344\340\301\133\047\230"
"\104\023\051\362\031\123\111\234\343\013\323\243\011\002\217\075"
"\015\004\266\013\271\141\112\033\202\265\240\372\357\376\323\322"
"\160\212\173\274\135\242\020\376\200\365\327\174\333\144\055\046"
"\320\123\143\247\032\017\045\224\235\364\363\331\053\100\342\352"
"\055\247\055\311\172\030\066\311\322\062\275\323\031\036\374\216"
"\355\115\326\020\237\101\313\360\013\070\014\370\267\070\245\155"
"\361\167\226\102\327\344\240\224\357\175\255\164\036\046\124\077"
"\307\122\266\054\101\067\215\306\071\106\012\353\317\325\245\253"
"\061\356\020\256\057\050\351\221\221\315\247\031\031\044\367\064"
"\346\114\120\025\311\241\061\276\247\204\027\237\174\305\161\347"
"\120\027\343\257\136\146\003\353\010\133\217\054\251\244\101\022"
"\060\341\065\161\114\210\106\245\243\061\322\345\022\156\014\341"
"\037\106\235\002\050\061\033\212\216\302\107\253\054\003\052\163"
"\124\367\262\265\360\016\063\011\324\134\014\123\063\171\123\332"
"\101\147\006\233\310\317\040\341\343\045\263\224\053\350\034\073"
"\167\175\017\224\254\221\202\146\365\156\043\361\336\122\074\357"
"\277\265\334\277\367\252\113\012\164\337\266\370\124\311\114\207"
"\255\274\341\047\034\236\102\061\070\057\273\025\331\303\207\234"
"\262\324\063\366\024\273\032\153\315\025\037\042\073\331\376\304"
"\256\021\163\257\166\120\313\346\144\367\277\301\165\352\257\321"
"\276\175\244\273\336\052\267\057\174\303\302\043\042\110\141\335"
"\314\224\035\076\256\004\212\110\060\362\120\106\323\317\106\366"
"\150\135\132\254\251\275\116\356\175\107\101\345\373\045\135\311"
"\144\101\172\035\100\042\327\045\201\306\036\175\246\074\371\161"
"\274\274\265\103\251\114\036\246\200\054\130\002\347\220\310\027"
"\367\216\336\262\251\000\332\177\342\034\231\222\342\025\270\055"
"\143\127\111\114\016\164\010\012\072\146\014\375\137\275\105\141"
"\357\275\046\234\230\132\277\127\342\144\047\136\201\275\027\107"
"\102\346\146\210\125\211\075\272\230\162\304\370\324\057\155\315"
"\314\363\316\055\012\262\354\217\145\221\132\317\102\364\321\154"
"\057\111\143\351\341\240\340\036\100\376\062\162\265\356\202\067"
"\136\207\071\023\125\271\200\271\235\040\007\233\114\012\105\217"
"\022\363\121\130\321\030\152\072\130\333\323\277\265\122\010\101"
"\022\056\231\262\151\321\334\110\217\200\161\012\212\306\221\137"
"\327\154\012\255\257\010\042\260\000\117\274\365\340\144\276\233"
"\134\036\234\212\333\026\227\234\076\045\142\062\304\066\003\363"
"\371\064\151\377\244\032\116\376\217\042\161\002\250\360\151\124"
"\330\272\356\154\005\347\043\206\172\205\257\051\006\067\221\110"
"\171\104\037\114\216\347\350\106\011\136\354\264\371\003\217\052"
"\040\256\112\360\302\061\250\312\213\351\356\023\113\335\033\025"
"\251\002\002\047\377\361\214\044\107\076\227\201\247\261\051\043"
"\072\230\110\272\277\036\032\322\270\256\204\301\316\115\251\134"
"\331\160\376\305\131\074\141\156\065\340\320\044\061\132\230\261"
"\012\014\211\220\106\304\366\271\216\362\023\166\076\025\103\167"
"\174\210\346\367\350\107\016\312\135\266\023\367\217\112\260\130"
"\210\362\370\154\270\030\215\234\000\230\241\154\371\066\165\266"
"\175\165\023\254\216\062\237\256\312\320\372\217\122\020\034\310"
"\045\374\217\247\341\242\033\344\137\005\212\133\055\037\102\027"
"\133\006\335\344\254\161\074\364\110\332\102\056\300\331\051\112"
"\344\062\311\122\263\100\313\201\122\271\166\112\302\070\175\025"
"\222\115\020\252\004\134\252\113\143\252\076\377\015\341\115\377"
"\014\322\377\223\333\014\044\053\111\176\212\324\206\221\301\345"
"\267\237\117\122\001\372\175\313\012\126\010\016\063\001\114\113"
"\224\240\211\046\317\225\014\231\346\360\314\132\102\114\373\272"
"\057\003\003\367\305\320\342\006\133\013\302\070\317\236\014\260"
"\050\110\102\043\362\052\261\023\105\311\237\132\353\046\160\014"
"\276\075\017\165\140\322\005\031\031\376\315\155\221\056\353\301"
"\371\027\065\356\271\337\342\276\205\105\005\135\062\065\326\133"
"\111\070\241\157\003\247\242\065\004\307\041\240\071\104\242\300"
"\006\032\347\360\250\106\142\322\306\217\212\015\114\023\113\155"
"\236\265\355\321\241\341\124\066\130\073\155\302\331\047\206\255"
"\222\014\317\374\261\001\246\125\276\047\262\362\276\232\240\161"
"\141\265\161\077\223\335\315\112\106\245\004\241\331\377\252\014"
"\011\077\272\254\243\360\213\262\302\344\024\246\155\171\301\026"
"\302\016\306\231\010\036\131\075\044\273\307\113\323\074\266\250"
"\372\372\133\374\267\270\364\025\016\224\067\163\077\020\236\044"
"\366\217\065\363\312\047\136\124\072\107\245\171\277\252\105\027"
"\310\053\133\327\245\362\006\137\166\214\353\020\052\207\121\266"
"\026\244\142\156\336\250\302\116\067\112\003\337\376\170\345\130"
"\025\047\341\122\235\166\215\062\261\102\062\026\255\006\226\105"
"\020\061\311\170\350\240\344\243\203\157\207\237\102\112\220\364"
"\074\235\150\353\375\226\154\260\044\143\062\154\237\137\131\133"
"\064\107\142\123\320\134\176\100\342\137\167\244\212\231\147\017"
"\020\064\222\316\031\252\126\143\375\056\026\374\062\327\210\043"
"\140\031\200\376\316\314\202\210\362\132\363\216\276\326\223\362"
"\322\330\054\153\206\004\132\205\253\376\242\105\062\160\177\363"
"\162\011\041\325\021\031\005\230\022\101\302\152\342\216\053\325"
"\033\314\113\010\210\363\273\065\302\031\264\102\227\134\351\120"
"\051\017\340\133\373\046\335\236\276\014\052\052\263\223\313\252"
"\134\355\026\355\272\023\076\304\012\070\014\052\206\015\374\375"
"\107\306\040\072\256\357\242\376\236\230\114\102\021\106\340\241"
"\352\060\332\151\116\066\027\211\112\321\250\203\341\243\013\043"
"\050\375\244\367\252\035\032\252\023\250\364\251\265\316\072\004"
"\107\220\016\310\157\022\206\360\056\065\043\017\024\151\001\057"
"\363\205\272\325\127\253\004\141\276\370\057\311\174\277\331\043"
"\125\160\175\171\100\140\172\232\213\275\115\365\324\260\302\057"
"\371\036\232\105\072\155\273\145\063\257\311\023\124\323\113\365"
"\334\011\026\233\320\132\272\121\144\201\036\317\214\071\202\047"
"\136\136\222\376\125\235\357\262\330\031\026\030\244\330\220\317"
"\377\173\302\160\207\353\266\324\166\154\245\310\224\265\074\273"
"\321\176\254\107\327\322\212\057\076\343\204\002\026\067\153\023"
"\270\070\052\155\117\120\023\345\066\033\021\353\116\245\340\272"
"\160\160\356\375\046\230\077\067\131\215\140\145\364\260\270\055"
"\370\372\122\321\172\156\032\256\334\117\053\177\032\314\377\356"
"\220\127\252\076\061\245\315\207\072\357\141\266\356\146\356\337"
"\105\010\370\121\234\220\143\160\021\167\170\244\207\111\353\147"
"\061\175\010\113\134\075\162\101\263\371\227\145\055\214\147\334"
"\350\113\070\145\323\010\146\146\063\307\151\017\257\311\216\316"
"\112\260\347\323\213\360\000\155\327\105\172\245\030\317\333\212"
"\004\034\375\371\033\255\063\054\011\042\324\330\013\327\366\155"
"\165\217\246\262\241\171\033\347\370\032\116\256\040\110\331\374"
"\044\021\301\132\014\062\236\064\270\351\011\030\006\073\161\126"
"\256\050\144\027\055\216\070\255\270\026\103\317\264\033\175\050"
"\247\243\265\301\063\000\344\055\277\137\247\253\213\231\113\350"
"\027\026\107\335\342\363\136\343\316\163\362\043\212\370\075\173"
"\126\320\316\014\172\374\223\063\252\231\163\046\334\113\350\345"
"\240\242\032\007\110\031\115\107\156\220\072\172\210\166\344\020"
"\125\041\302\362\225\123\223\245\010\346\364\264\364\331\200\071"
"\165\167\234\213\065\161\035\043\205\073\001\246\227\225\324\043"
"\006\203\317\070\142\066\345\164\012\251\155\355\276\217\300\357"
"\357\341\172\335\162\174\004\243\204\170\167\240\377\144\232\323"
"\156\127\061\252\066\221\031\026\261\153\272\246\175\020\217\306"
"\301\165\356\155\312\357\315\222\264\364\366\130\212\323\071\023"
"\326\130\146\004\317\262\245\257\101\001\050\352\053\365\137\241"
"\371\230\174\263\170\205\304\305\020\230\246\022\176\351\201\322"
"\147\173\112\127\373\327\025\326\342\140\037\230\273\056\130\122"
"\142\353\141\054\010\024\356\167\103\215\301\361\313\027\103\123"
"\110\111\007\221\351\250\004\066\350\210\012\075\177\346\135\167"
"\024\205\225\350\172\204\226\161\370\355\170\312\032\140\050\004"
"\301\072\272\157\220\321\355\212\223\077\167\214\220\235\321\307"
"\025\277\306\246\041\311\071\047\165\030\352\266\322\315\112\342"
"\005\125\237\053\220\240\265\242\315\357\165\376\253\117\346\133"
"\364\053\046\220\036\326\022\076\214\014\257\230\177\034\347\144"
"\170\040\130\346\024\065\014\126\363\075\075\170\340\277\365\321"
"\040\116\245\222\272\067\244\303\375\071\176\144\043\310\267\055"
"\354\000\337\165\004\245\057\251\357\160\240\246\124\341\151\310"
"\212\202\134\333\176\013\364\045\175\010\357\227\107\245\002\024"
"\024\027\341\330\334\163\216\004\352\314\261\154\331\325\300\127"
"\237\152\301\345\002\304\243\240\361\356\222\336\024\046\221\256"
"\003\316\005\034\353\173\033\340\362\301\376\276\203\353\376\157"
"\121\236\104\121\240\025\014\345\337\313\355\151\323\110\221\072"
"\361\200\035\372\011\156\307\141\250\137\075\266\362\050\321\213"
"\335\127\217\061\344\311\005\112\120\376\244\307\070\002\201\125"
"\130\052\136\254\165\240\372\345\131\331\043\150\205\136\232\215"
"\050\240\315\303\241\335\377\142\341\332\305\373\332\151\027\056"
"\023\327\337\257\112\043\144\373\023\332\106\132\154\100\026\342"
"\012\111\157\367\011\221\143\345\305\222\217\000\065\372\322\366"
"\307\014\211\271\065\034\026\351\277\022\370\307\201\345\033\203"
"\117\151\104\335\213\001\344\065\161\013\061\375\103\035\213\255"
"\233\264\045\213\012\377\043\145\040\364\372\227\213\015\077\162"
"\376\236\201\225\137\337\163\367\213\214\127\302\203\261\201\333"
"\211\174\162\246\266\225\274\064\077\236\047\027\260\056\370\064"
"\114\207\225\363\051\336\230\370\267\000\116\253\222\346\274\345"
"\246\026\350\037\347\276\236\150\106\152\073\236\333\063\061\256"
"\267\222\214\321\211\147\274\304\220\363\133\373\264\021\356\141"
"\235\262\143\302\135\176\162\244\173\112\232\011\175\021\270\364"
"\166\174\330\301\127\334\216\103\071\013\312\275\261\244\074\147"
"\154\365\004\106\160\143\261\016\346\270\306\207\246\031\177\213"
"\242\037\202\110\246\311\316\130\371\235\257\165\216\340\132\235"
"\147\277\055\144\116\320\240\273\061\141\067\216\213\204\321\030"
"\120\030\023\007\300\337\132\203\262\200\044\232\311\374\222\357"
"\261\023\114\102\351\024\333\120\155\055\156\364\013\056\341\111"
"\127\175\116\341\205\347\376\215\256\146\334\114\015\064\336\372"
"\071\106\265\255\102\316\242\256\054\341\141\107\171\051\253\264"
"\041\321\214\322\240\170\015\237\304\215\011\034\132\364\036\053"
"\327\260\271\121\340\356\126\371\347\336\006\325\374\077\313\323"
"\260\065\065\346\354\017\214\141\041\031\303\070\205\123\301\136"
"\267\042\276\235\051\117\216\205\133\307\054\323\122\200\344\144"
"\000\215\356\033\211\210\160\161\361\371\047\323\205\011\303\075"
"\130\037\143\066\002\277\135\064\003\316\235\166\273\247\203\150"
"\360\351\000\332\072\274\300\166\217\367\105\110\065\007\173\275"
"\062\130\257\264\152\373\375\144\263\236\256\171\314\276\051\140"
"\364\013\353\204\133\270\117\247\243\002\135\165\307\377\224\131"
"\014\063\155\357\105\312\333\107\305\112\035\047\240\000\326\203"
"\130\311\142\300\374\014\332\132\311\166\350\220\215\044\302\100"
"\310\326\316\175\023\173\367\305\246\262\050\353\003\014\156\066"
"\071\062\304\165\327\272\326\106\161\244\372\332\215\107\336\064"
"\001\320\177\223\152\212\036\327\303\065\063\103\120\341\144\024"
"\342\334\146\322\267\156\315\261\255\217\367\054\164\227\375\225"
"\075\041\372\076\046\032\164\051\131\045\347\004\040\054\256\331"
"\243\263\041\007\267\174\266\152\355\103\170\016\236\131\272\211"
"\072\323\275\176\267\033\106\030\365\352\067\347\156\160\013\260"
"\136\062\024\316\065\076\112\101\215\111\302\317\312\207\262\317"
"\354\301\240\016\275\017\237\260\100\355\332\144\040\002\004\152"
"\254\060\370\022\127\124\304\132\077\002\367\132\004\105\352\242"
"\027\204\211\232\341\035\074\151\144\334\063\137\163\253\350\114"
"\211\162\257\243\375\250\312\035\074\150\100\145\062\120\161\221"
"\120\377\056\011\025\052\030\277\260\173\254\052\232\240\122\250"
"\170\141\053\104\055\246\055\022\256\351\176\143\046\125\321\365"
"\236\060\064\373\154\021\206\074\055\336\175\021\217\315\203\356"
"\203\274\050\244\242\265\333\334\232\341\214\014\010\325\232\373"
"\150\372\105\245\123\012\132\264\113\055\314\171\125\334\363\320"
"\223\376\334\365\121\364\042\155\155\026\356\276\150\026\374\041"
"\130\373\136\103\223\071\025\103\136\056\164\006\365\325\011\101"
"\160\127\001\150\026\005\264\222\355\031\237\072\062\156\277\230"
"\320\175\224\366\133\047\315\017\162\242\143\365\136\302\327\147"
"\027\133\220\045\037\014\133\101\165\007\132\363\003\135\206\320"
"\156\142\215\262\337\145\004\045\165\354\046\065\112\030\164\210"
"\351\060\365\345\260\027\120\127\361\075\142\335\103\020\241\162"
"\117\201\237\355\043\020\323\040\345\332\156\072\022\330\212\077"
"\171\175\130\006\033\337\265\124\371\025\360\345\132\344\327\150"
"\324\044\203\026\177\010\105\266\073\024\062\246\244\111\015\353"
"\073\247\003\250\011\167\064\232\034\076\206\100\023\342\203\213"
"\341\113\146\211\267\150\215\311\221\243\357\102\354\374\341\237"
"\320\243\363\043\327\257\147\123\054\057\167\216\205\201\073\045"
"\157\244\376\071\176\231\074\255\372\005\345\142\216\377\044\174"
"\263\355\144\357\053\306\333\053\245\172\213\071\237\347\372\153"
"\153\251\160\062\045\260\140\173\054\224\307\306\015\143\257\105"
"\210\131\274\126\012\051\116\113\170\364\133\243\122\203\026\057"
"\307\326\173\270\127\367\201\155\155\104\001\067\345\011\247\055"
"\316\324\264\166\266\115\017\173\250\002\164\003\322\177\347\155"
"\253\111\107\124\240\067\375\334\037\273\131\202\031\067\252\340"
"\144\334\321\000\154\367\134\042\060\162\154\213\134\143\010\045"
"\252\014\102\110\132\175\121\246\136\330\252\114\073\362\127\337"
"\346\072\016\244\230\107\227\072\215\234\065\265\165\025\032\336"
"\053\012\224\200\265\316\236\220\320\276\375\123\364\114\075\251"
"\315\301\060\253\136\240\156\151\075\117\374\341\024\252\235\061"
"\111\361\244\072\244\044\030\121\041\252\123\226\263\110\107\237"
"\351\364\227\012\065\103\125\236\056\064\101\252\307\101\233\160"
"\143\333\323\372\001\232\202\143\307\276\072\323\001\273\347\176"
"\077\362\017\225\133\144\107\311\105\160\146\037\115\074\376\015"
"\054\071\341\103\310\035\347\126\026\202\303\032\374\077\011\067"
"\322\114\206\070\064\305\340\326\260\020\351\331\272\002\373\263"
"\266\274\217\212\143\047\002\054\315\133\226\017\070\011\241\333"
"\202\356\105\361\125\344\036\235\356\145\346\253\265\032\332\267"
"\326\007\072\363\175\233\107\106\174\121\330\335\002\150\325\067"
"\100\243\130\325\377\107\321\167\105\347\062\277\235\370\305\204"
"\245\053\361\346\144\243\131\154\300\360\342\027\264\320\040\040"
"\114\012\133\374\135\372\172\145\052\110\043\323\254\070\144\113"
"\050\363\304\263\035\202\341\042\231\310\124\062\111\010\362\262"
"\267\007\226\372\335\125\241\273\314\333\250\013\010\240\102\375"
"\372\121\136\364\155\051\166\104\370\100\165\241\366\166\064\214"
"\027\101\204\161\166\106\261\264\121\371\131\174\156\242\062\325"
"\337\077\242\233\100\304\303\331\313\240\277\077\303\027\015\374"
"\073\073\302\023\035\040\061\011\105\046\175\040\341\135\243\204"
"\144\053\375\025\203\316\256\347\067\011\232\262\106\273\370\206"
"\364\367\212\355\362\355\303\066\062\340\223\345\147\322\202\041"
"\336\301\136\314\251\060\016\140\000\247\057\117\025\135\303\350"
"\122\251\025\373\067\122\127\317\117\354\331\012\254\331\230\115"
"\006\057\272\011\227\277\265\373\200\220\311\201\015\167\053\020"
"\023\060\245\216\370\312\003\265\027\337\332\011\270\334\345\337"
"\152\353\060\357\274\230\252\007\075\367\240\142\105\105\264\340"
"\115\314\247\015\061\324\345\204\127\316\330\200\124\037\133\332"
"\025\264\356\211\210\123\016\131\312\006\241\130\112\345\067\063"
"\305\323\133\004\365\337\156\252\275\125\143\354\053\370\215\147"
"\026\134\124\351\011\277\235\255\113\126\354\042\166\106\362\202"
"\224\001\273\146\104\216\131\316\073\332\353\174\240\044\205\175"
"\225\102\300\216\254\205\203\170\130\222\020\030\164\161\167\206"
"\305\124\100\375\366\161\056\271\135\371\132\155\362\304\340\047"
"\247\017\362\346\240\125\323\027\162\250\117\131\317\316\071\261"
"\134\155\142\162\164\007\224\022\233\220\075\212\120\041\121\261"
"\361\213\003\004\350\032\217\006\005\251\116\070\115\265\222\367"
"\027\262\127\276\324\372\221\374\277\236\240\212\357\347\146\076"
"\377\325\332\136\233\174\050\127\061\162\030\306\213\063\023\146"
"\333\222\260\105\170\322\256\147\007\314\336\124\261\365\051\136"
"\154\040\077\075\026\040\343\014\240\041\126\225\125\045\066\233"
"\345\257\064\053\207\007\037\320\233\111\224\165\201\127\151\151"
"\347\200\100\101\357\145\026\217\235\075\322\150\353\036\370\325"
"\107\330\372\222\154\322\356\050\130\314\303\104\344\217\142\366"
"\204\106\263\154\276\333\325\136\177\320\110\356\167\153\365\261"
"\024\200\141\264\344\101\343\317\065\045\120\060\351\212\146\317"
"\274\316\064\251\163\255\352\246\114\121\220\323\106\253\210\353"
"\032\145\255\213\232\243\372\077\377\321\135\065\201\163\277\135"
"\252\007\055\016\217\141\156\007\264\123\133\314\033\057\035\143"
"\240\262\032\165\171\372\173\226\240\207\163\320\000\226\233\177"
"\331\265\045\004\045\324\246\375\132\044\012\267\302\066\100\313"
"\307\141\332\017\317\136\274\156\015\251\254\021\114\125\171\036"
"\214\002\170\267\356\203\341\202\326\026\247\343\070\067\161\043"
"\156\370\010\316\202\340\074\344\343\051\115\252\367\166\164\155"
"\156\026\047\166\352\262\131\270\047\111\313\263\170\111\203\126"
"\026\373\200\365\255\354\330\137\030\130\371\247\316\355\304\033"
"\265\236\271\356\125\321\321\272\252\124\127\202\046\223\101\130"
"\033\106\322\251\166\014\166\014\031\122\125\211\146\102\101\005"
"\352\003\004\363\357\143\127\027\062\367\300\172\065\224\034\101"
"\134\133\234\013\047\030\126\202\000\220\211\147\035\015\003\267"
"\200\253\046\056\175\164\222\321\126\032\365\017\361\055\235\275"
"\150\356\251\000\353\203\222\335\256\033\070\024\315\145\067\157"
"\116\323\104\210\217\346\352\317\145\005\221\066\225\310\342\166"
"\152\272\101\044\217\335\370\022\153\265\353\205\062\270\260\001"
"\073\061\354\164\071\126\145\144\042\202\363\241\273\362\124\204"
"\122\114\315\022\304\360\102\167\363\133\106\321\070\266\005\243"
"\164\322\314\375\003\375\257\321\166\227\171\164\332\142\316\277"
"\033\226\370\105\334\162\374\230\356\334\007\110\103\060\042\320"
"\131\167\377\034\306\152\116\272\075\107\272\264\327\132\307\062"
"\133\220\225\312\306\233\247\234\055\302\240\321\343\211\335\132"
"\302\312\105\066\064\235\042\343\154\154\362\361\355\000\245\013"
"\115\316\354\310\355\044\374\114\333\057\012\057\047\102\202\034"
"\000\061\124\231\070\137\240\237\252\340\276\321\333\167\214\256"
"\104\274\127\006\003\336\026\302\225\112\222\244\070\111\363\314"
"\156\314\166\011\321\223\012\112\000\354\264\152\257\141\146\003"
"\227\031\025\046\236\205\021\101\330\030\340\164\241\065\266\043"
"\151\054\167\077\217\367\001\221\247\076\230\306\035\207\051\201"
"\146\173\231\105\103\331\234\017\233\140\154\361\000\261\374\313"
"\045\021\233\305\061\321\021\222\334\043\003\136\056\166\362\325"
"\166\247\203\274\337\026\355\303\050\266\032\274\356\070\016\263"
"\165\203\343\112\130\344\227\176\060\343\022\002\366\102\104\050"
"\172\036\336\264\142\301\137\250\042\211\231\351\103\373\342\205"
"\246\010\032\102\104\112\030\363\126\310\065\057\231\327\034\232"
"\264\224\225\135\160\065\262\372\347\075\253\323\010\030\124\154"
"\036\026\046\236\023\120\302\322\302\132\073\242\041\021\353\110"
"\166\031\306\237\244\300\145\351\166\107\045\250\055\373\035\011"
"\264\050\124\203\004\375\257\034\157\225\374\005\041\063\101\220"
"\207\346\050\306\345\043\015\024\044\355\377\043\046\147\357\034"
"\173\172\003\204\022\231\306\154\126\310\005\114\272\032\342\357"
"\344\021\105\330\043\055\235\262\063\113\360\237\043\164\022\162"
"\004\241\162\103\372\000\267\215\325\244\201\332\333\201\010\126"
"\224\324\114\151\064\135\156\160\304\037\051\030\204\250\154\131"
"\050\050\160\175\177\133\067\135\032\021\131\055\357\367\132\027"
"\316\375\127\141\267\154\363\246\214\122\050\032\305\127\070\176"
"\012\362\310\125\232\140\041\021\365\147\233\002\066\354\301\033"
"\136\176\361\363\036\076\253\156\001\031\225\313\042\175\357\316"
"\166\175\071\210\065\345\157\212\341\324\372\257\140\326\244\127"
"\203\224\255\011\122\276\264\332\325\236\262\140\230\207\176\252"
"\204\031\100\201\312\122\201\362\310\333\171\275\041\341\160\016"
"\372\037\266\070\123\112\144\346\204\324\247\357\005\122\025\257"
"\116\073\140\243\157\002\324\301\023\151\156\336\036\374\326\140"
"\367\337\166\170\333\230\273\033\343\220\333\223\062\151\221\321"
"\222\325\241\166\107\270\253\114\221\057\111\173\153\003\204\231"
"\023\146\004\001\320\015\161\144\156\325\070\030\377\000\355\141"
"\044\062\121\012\114\136\322\167\276\111\117\042\341\206\305\267"
"\073\103\177\177\132\101\063\112\102\204\140\177\204\274\145\042"
"\241\336\122\265\121\105\306\005\006\135\020\064\251\353\076\242"
"\346\131\345\142\305\323\270\150\346\213\250\272\050\050\360\024"
"\232\345\216\325\226\344\377\363\112\073\151\241\115\050\370\340"
"\154\215\326\376\314\064\076\354\341\216\200\266\317\343\072\123"
"\027\270\271\201\142\071\114\374\116\014\154\322\250\004\257\212"
"\013\211\025\300\170\110\151\363\321\116\026\254\213\311\335\146"
"\041\144\071\246\027\061\355\112\250\327\153\146\255\232\364\232"
"\076\111\230\016\361\254\327\312\232\165\150\031\334\351\134\023"
"\324\057\034\133\254\140\020\140\215\160\362\060\031\040\226\103"
"\270\001\337\155\337\275\237\000\153\044\211\000\016\227\242\014"
"\344\111\076\070\103\354\167\304\041\343\043\141\154\023\124\214"
"\220\060\061\343\052\203\046\304\146\024\347\300\126\057\355\056"
"\326\376\306\176\350\112\152\125\317\367\224\042\227\353\265\351"
"\151\374\367\152\234\227\252\133\254\120\025\065\004\270\176\202"
"\373\146\104\230\036\034\160\024\277\070\022\161\015\310\261\041"
"\307\304\102\346\263\233\234\142\115\362\226\364\356\240\156\034"
"\125\240\007\333\025\315\134\365\212\110\207\372\375\276\306\214"
"\337\023\113\042\336\201\104\302\010\255\054\377\207\363\233\272"
"\025\034\031\320\300\006\324\201\201\326\235\105\074\015\153\004"
"\043\264\215\235\067\026\366\341\031\322\365\365\313\273\155\031"
"\326\361\223\072\325\277\261\132\012\121\056\315\066\304\107\107"
"\235\377\131\030\133\074\342\376\202\102\067\042\064\070\141\130"
"\175\354\260\231\152\216\120\017\122\322\225\235\367\357\227\304"
"\346\127\164\225\352\204\072\003\227\313\105\236\036\154\135\116"
"\117\030\276\144\066\153\075\344\042\321\223\266\330\347\006\243"
"\365\254\213\365\163\012\343\076\370\135\044\164\104\172\023\063"
"\007\042\320\366\204\216\302\227\153\124\071\364\167\344\230\331"
"\335\160\150\043\207\175\047\113\020\066\326\321\205\005\301\222"
"\011\355\320\262\052\244\146\225\342\202\270\140\166\213\175\125"
"\011\011\352\313\036\254\042\103\225\373\207\202\047\333\311\263"
"\266\367\111\177\144\251\163\151\132\376\164\267\244\235\115\042"
"\026\303\273\006\317\203\113\002\203\014\224\376\205\045\370\172"
"\330\077\361\262\222\254\155\074\260\367\243\062\135\022\030\340"
"\300\374\061\046\170\153\143\065\317\360\002\142\222\115\114\065"
"\007\200\104\072\216\131\044\322\165\322\032\355\104\177\006\002"
"\226\015\056\177\021\321\206\355\177\232\246\064\040\213\062\300"
"\134\355\077\272\264\217\201\024\254\315\161\317\307\124\336\156"
"\172\237\061\051\202\224\114\265\047\135\122\362\164\362\125\002"
"\267\367\054\360\116\045\152\161\227\354\004\101\070\074\024\300"
"\205\220\365\040\341\066\377\322\156\045\021\037\120\234\232\247"
"\233\264\363\143\001\105\132\047\103\017\223\044\352\361\334\047"
"\012\070\235\115\053\255\150\134\162\347\371\171\140\012\307\027"
"\154\171\243\325\230\241\007\037\122\176\032\314\050\211\357\117"
"\333\066\120\345\351\132\163\025\301\217\054\012\203\014\025\001"
"\233\273\253\224\027\250\164\302\154\202\102\264\040\272\344\160"
"\004\111\301\340\201\066\150\057\331\340\316\023\325\225\266\027"
"\242\251\235\055\242\210\225\374\231\264\345\334\315\037\011\317"
"\060\370\132\347\146\077\102\035\066\175\301\025\125\217\227\025"
"\345\076\326\124\014\045\166\176\105\006\270\357\315\072\136\303"
"\006\051\264\216\013\356\051\363\337\125\375\306\101\153\375\333"
"\022\377\312\154\141\270\213\231\013\321\205\066\256\151\042\250"
"\313\213\245\277\333\231\074\001\105\016\111\046\254\263\030\061"
"\033\170\203\143\051\175\302\041\240\117\131\117\263\022\213\357"
"\335\257\161\004\231\056\324\021\265\343\003\216\035\073\021\363"
"\037\121\133\365\033\223\313\057\373\333\164\061\232\146\100\312"
"\001\064\103\350\377\160\016\206\360\105\236\216\026\372\231\320"
"\242\272\333\124\125\352\262\221\072\356\010\056\302\177\007\256"
"\140\336\221\331\373\350\340\043\210\021\226\162\125\144\306\332"
"\354\311\005\264\254\235\112\124\313\221\140\333\360\120\326\344"
"\225\176\037\077\167\165\145\175\226\344\004\257\203\101\003\366"
"\262\243\022\073\215\022\306\123\371\303\322\221\371\155\052\152"
"\125\164\120\171\354\166\007\124\000\021\235\346\233\235\326\075"
"\366\121\054\124\063\201\053\116\322\244\274\351\051\334\011\235"
"\124\333\142\047\372\124\365\005\365\155\137\203\032\352\217\355"
"\201\032\334\273\051\157\346\147\001\161\010\105\146\036\174\060"
"\261\127\337\275\251\310\064\016\077\026\364\000\160\301\174\063"
"\214\005\244\371\067\064\333\015\166\150\255\000\327\030\106\305"
"\010\015\370\114\110\116\070\226\116\000\345\242\367\220\176\002"
"\102\321\206\072\063\010\116\173\073\105\136\121\324\117\115\046"
"\363\264\073\126\102\203\045\024\172\240\355\347\354\335\074\016"
"\343\374\377\363\076\165\075\033\205\151\065\212\364\041\245\043"
"\050\103\162\060\223\317\213\243\023\203\331\372\054\014\243\207"
"\176\206\342\153\344\125\114\120\310\163\312\131\335\263\166\055"
"\142\164\251\021\075\231\036\366\226\251\015\343\122\371\306\221"
"\163\272\004\232\300\324\117\065\321\131\140\072\006\353\105\201"
"\151\035\370\362\004\163\076\331\162\315\243\336\136\207\045\161"
"\250\307\270\215\227\363\023\120\322\210\260\064\214\362\174\024"
"\002\271\144\204\257\341\315\300\364\205\224\226\140\310\375\371"
"\131\313\314\136\126\014\074\330\212\174\321\123\035\276\361\162"
"\001\071\221\226\077\175\366\262\110\067\357\306\006\042\377\174"
"\161\171\325\263\057\347\225\153\021\200\273\011\240\311\101\355"
"\215\310\061\271\151\264\205\003\253\006\037\245\102\235\156\211"
"\327\370\034\036\326\273\213\176\204\116\352\315\155\245\277\166"
"\331\355\145\347\350\341\336\340\110\241\206\014\336\275\022\000"
"\005\270\055\161\140\005\221\135\350\070\304\232\345\363\135\161"
"\101\016\030\141\217\103\252\244\200\052\311\241\030\127\137\061"
"\254\367\344\125\272\347\215\177\227\013\253\346\124\157\056\016"
"\160\103\345\056\130\221\056\246\270\125\000\343\054\032\251\347"
"\062\120\030\001\233\377\135\172\226\334\163\317\003\336\374\363"
"\261\212\167\260\171\345\067\315\002\151\027\262\366\252\172\100"
"\004\225\170\166\001\214\277\073\230\306\043\105\013\106\035\316"
"\257\314\125\277\261\032\276\034\010\213\115\056\235\247\341\254"
"\367\150\360\322\067\273\012\263\336\367\356\143\151\135\051\072"
"\262\263\240\037\121\022\316\111\201\344\167\151\161\246\346\314"
"\261\160\042\055\312\242\344\246\302\011\124\015\214\220\360\010"
"\233\024\314\136\323\331\263\224\070\224\302\157\315\177\015\332"
"\176\134\310\326\056\326\167\042\163\171\135\226\205\306\211\111"
"\236\241\202\256\263\347\035\212\214\014\276\177\325\377\033\373"
"\155\233\134\023\241\072\131\125\220\032\022\254\335\222\253\263"
"\156\150\163\235\332\135\063\356\356\241\246\155\014\273\117\214"
"\251\353\150\063\311\024\024\222\011\002\043\010\074\210\101\170"
"\166\100\254\225\354\122\046\373\250\077\266\377\277\056\224\066"
"\250\314\230\265\135\125\270\225\326\072\075\310\267\334\121\134"
"\105\364\055\307\160\367\323\221\070\127\027\340\142\005\212\357"
"\161\007\277\100\367\265\261\062\305\362\224\163\312\027\120\101"
"\177\037\172\262\003\164\063\112\341\345\135\263\241\367\070\166"
"\331\233\043\245\146\234\172\345\303\151\217\145\173\265\005\316"
"\057\361\056\220\171\005\210\256\222\142\323\346\165\103\247\303"
"\351\051\026\037\047\072\210\316\340\172\003\325\025\262\354\102"
"\330\313\014\055\377\035\113\162\026\174\066\162\167\235\054\002"
"\016\243\020\257\152\210\120\341\355\071\202\215\341\205\136\066"
"\220\177\302\346\160\236\003\314\271\102\166\126\051\235\222\357"
"\004\365\115\160\226\364\274\330\071\243\370\373\343\050\100\120"
"\016\146\224\371\301\213\131\006\151\315\317\056\326\367\260\074"
"\102\322\271\320\055\243\036\245\046\257\162\156\145\066\202\253"
"\377\346\261\200\150\320\220\072\311\351\032\023\205\024\153\225"
"\170\077\045\367\325\224\077\164\001\041\375\052\244\002\330\177"
"\313\047\124\120\107\350\052\310\226\300\246\123\350\321\160\345"
"\320\261\167\312\010\204\171\024\326\127\061\061\030\153\117\142"
"\106\364\276\212\133\307\067\163\255\161\074\363\116\345\143\311"
"\254\333\060\047\033\122\150\117\331\202\323\314\314\106\220\026"
"\063\207\152\217\261\106\174\206\234\300\244\133\124\235\056\122"
"\016\230\270\040\012\041\132\265\245\267\344\144\307\213\354\263"
"\053\233\100\073\344\030\152\300\277\010\037\130\134\157\251\176"
"\234\066\246\026\151\246\363\030\026\123\065\272\074\261\020\253"
"\316\334\216\202\307\367\336\054\056\062\013\334\352\152\057\202"
"\007\270\076\132\057\214\261\017\165\127\167\200\343\067\221\263"
"\014\027\230\251\301\220\102\051\340\072\211\323\217\255\175\247"
"\337\147\006\133\200\012\370\340\116\377\055\056\332\056\222\161"
"\027\027\361\077\176\320\061\110\325\146\162\156\376\215\265\000"
"\311\037\060\325\171\255\231\044\141\201\164\321\145\343\127\217"
"\305\044\337\234\257\001\313\056\017\327\204\162\053\334\320\132"
"\221\101\040\363\303\360\110\013\167\037\103\152\140\265\207\246"
"\000\242\043\327\133\151\332\331\070\055\374\032\156\224\055\217"
"\117\066\047\354\205\267\333\202\133\335\036\126\251\356\200\015"
"\263\147\123\114\212\332\044\305\056\034\376\205\205\171\077\076"
"\034\114\237\341\234\126\335\061\313\142\377\367\224\223\360\235"
"\170\311\035\055\020\326\347\235\170\177\010\204\035\175\031\063"
"\244\003\355\176\277\043\177\065\261\003\242\322\223\162\304\365"
"\310\347\220\074\140\310\277\277\351\206\220\264\137\364\156\040"
"\366\226\010\253\255\010\070\122\356\116\334\277\031\247\040\131"
"\056\241\220\044\127\040\102\156\063\376\016\336\005\213\007\120"
"\225\264\217\164\254\064\176\101\064\204\154\171\276\200\174\046"
"\346\144\254\322\331\214\125\264\212\302\165\320\161\344\302\175"
"\056\144\106\051\012\327\162\326\143\222\373\351\143\144\175\307"
"\143\157\161\155\030\224\026\303\335\302\211\247\243\327\332\334"
"\066\211\140\266\330\104\155\333\066\122\201\233\047\022\112\336"
"\310\224\205\074\120\122\103\223\003\254\331\125\135\253\113\123"
"\252\302\272\204\246\232\363\224\156\304\054\176\002\365\154\321"
"\362\205\045\056\361\263\320\243\171\054\256\305\261\014\153\272"
"\363\314\243\110\310\233\363\012\034\274\342\064\200\151\031\172"
"\127\225\356\110\311\310\313\014\111\160\067\020\241\133\252\322"
"\264\071\043\250\110\257\265\153\354\032\152\213\207\151\003\151"
"\001\356\314\051\250\300\354\007\352\044\216\331\220\126\036\306"
"\363\324\017\174\223\066\237\373\316\321\223\151\332\363\235\044"
"\122\240\253\163\034\011\276\312\071\166\132\143\376\163\345\066"
"\217\300\351\260\152\350\234\166\173\121\023\212\306\056\042\126"
"\137\150\030\054\173\321\174\377\276\313\341\350\130\055\103\013"
"\127\060\351\370\330\240\173\230\341\057\353\162\123\222\217\015"
"\023\212\007\012\203\033\166\060\067\317\072\114\042\203\324\361"
"\354\326\267\313\201\261\077\116\004\075\274\170\134\250\333\033"
"\233\351\322\262\121\041\207\325\067\313\275\053\257\062\206\325"
"\124\366\016\360\321\021\366\254\041\067\171\167\122\027\164\174"
"\203\302\374\262\061\267\201\230\036\216\341\060\356\147\342\173"
"\124\055\005\026\136\071\223\055\216\350\304\340\174\257\351\305"
"\331\345\132\220\070\016\376\151\135\170\171\264\212\233\355\251"
"\153\076\217\335\310\070\260\054\061\130\174\263\207\017\300\354"
"\214\123\001\375\174\125\164\356\370\102\321\033\356\277\065\043"
"\017\326\015\367\305\166\171\120\015\127\075\047\340\255\301\050"
"\241\026\326\353\250\002\252\127\152\370\304\203\361\045\024\040"
"\333\203\374\243\367\157\063\061\163\115\123\232\060\134\244\032"
"\135\321\035\114\365\211\014\303\017\074\243\133\133\346\147\351"
"\174\071\374\276\023\101\113\320\336\021\316\107\212\220\001\200"
"\113\250\230\231\052\204\164\177\032\151\206\251\234\160\071\246"
"\144\050\001\056\345\212\340\071\335\144\232\200\066\025\260\303"
"\312\152\076\302\121\102\356\222\230\327\214\342\105\333\162\035"
"\036\136\131\111\276\254\251\210\361\336\172\373\162\012\076\312"
"\177\112\055\215\132\103\120\226\274\202\025\064\031\262\123\167"
"\072\206\127\132\140\333\316\071\354\174\236\340\033\275\067\354"
"\244\034\316\027\221\002\070\100\364\234\040\177\035\056\003\324"
"\060\372\323\007\023\321\107\121\016\262\074\051\265\340\105\140"
"\133\243\206\115\324\330\056\005\062\271\304\360\133\237\136\203"
"\162\105\127\262\072\031\000\361\333\114\030\131\012\260\071\001"
"\307\273\035\265\236\016\310\363\350\234\346\077\104\170\162\324"
"\072\211\257\323\122\253\213\274\131\127\160\351\376\350\327\261"
"\160\252\133\202\352\244\155\071\005\035\151\333\153\223\136\230"
"\356\004\323\354\371\060\035\036\340\216\014\315\361\070\343\032"
"\045\207\023\257\361\344\112\004\005\214\074\034\150\246\233\016"
"\251\012\116\121\223\065\000\357\042\372\047\203\234\220\076\011"
"\025\262\276\142\275\175\345\157\236\040\146\256\143\370\357\243"
"\370\320\136\225\304\145\065\235\124\032\361\017\164\120\050\004"
"\235\175\361\114\364\316\234\335\353\235\171\162\111\315\305\366"
"\237\342\221\267\210\215\345\377\066\146\012\074\136\124\327\210"
"\171\233\374\243\322\002\054\370\112\165\201\355\251\371\257\000"
"\371\135\025\234\277\301\206\371\203\102\223\256\132\232\056\311"
"\325\254\375\013\236\232\175\327\330\351\120\125\366\247\314\104"
"\317\025\000\313\207\030\300\116\242\005\356\323\371\165\062\010"
"\061\151\237\347\172\360\136\166\137\225\243\237\342\234\054\326"
"\260\034\100\037\034\100\044\053\214\322\300\350\320\026\247\214"
"\012\006\370\033\041\154\120\306\337\235\360\302\347\365\116\054"
"\246\240\115\251\165\176\152\122\125\347\030\043\076\052\023\353"
"\147\157\035\321\377\131\366\136\040\302\146\121\355\342\264\306"
"\055\157\277\120\170\350\032\373\264\251\307\173\030\164\267\023"
"\342\271\344\371\160\113\274\354\261\207\104\055\005\173\306\316"
"\313\101\144\166\033\253\353\052\212\330\030\046\121\153\144\175"
"\010\202\023\054\306\122\107\273\161\042\057\004\350\242\227\152"
"\200\247\337\017\124\006\015\273\267\100\264\010\127\255\175\203"
"\041\266\023\023\301\106\141\113\236\335\306\034\127\002\303\105"
"\113\361\267\304\177\310\134\167\324\215\326\232\330\151\330\253"
"\241\157\371\164\373\155\071\022\201\353\263\307\254\322\177\311"
"\350\260\102\222\331\165\012\374\356\035\301\003\316\120\277\035"
"\363\176\142\114\302\022\247\357\354\055\153\152\246\201\137\103"
"\276\272\347\223\052\104\243\066\113\102\312\113\211\373\246\272"
"\226\250\336\023\343\264\064\203\020\150\361\365\202\120\106\234"
"\131\135\312\253\040\323\147\222\213\324\062\027\261\110\332\373"
"\131\320\167\307\062\173\247\024\223\020\147\333\040\235\240\032"
"\377\264\346\062\160\330\157\142\314\013\371\011\315\032\345\231"
"\331\140\137\233\130\214\251\125\347\156\375\366\373\251\175\115"
"\212\330\155\044\263\166\211\130\012\043\346\000\220\060\071\170"
"\074\045\047\307\155\153\306\017\231\365\013\242\027\032\122\302"
"\306\255\213\265\260\021\212\253\255\155\102\147\372\304\141\033"
"\377\012\307\376\011\054\162\255\127\333\373\053\217\353\130\276"
"\037\022\075\111\356\041\326\235\070\147\024\300\060\035\336\314"
"\144\170\336\002\230\304\352\212\364\274\244\336\130\033\211\020"
"\306\317\371\255\107\227\351\247\004\211\113\075\372\212\131\144"
"\052\214\320\263\141\172\004\003\256\175\141\074\024\275\153\105"
"\264\136\247\317\164\332\157\177\176\365\140\314\216\340\374\272"
"\216\046\307\205\307\046\011\267\056\322\142\336\064\267\017\331"
"\116\204\271\252\347\226\321\304\321\266\320\206\176\355\264\147"
"\143\317\064\247\243\316\152\253\156\340\164\115\104\124\337\062"
"\213\125\236\005\244\332\255\050\151\151\210\272\207\372\256\210"
"\361\171\332\305\207\375\211\011\244\271\233\003\035\016\371\121"
"\103\303\131\302\136\013\123\226\256\041\114\112\311\355\215\273"
"\244\270\221\043\274\274\356\201\371\163\360\176\114\171\053\050"
"\306\224\321\322\174\245\342\121\004\207\264\206\140\275\171\163"
"\265\060\272\125\065\211\277\041\376\322\202\135\215\035\333\250"
"\110\305\040\323\113\322\031\103\067\273\234\043\101\372\345\040"
"\174\125\245\305\364\316\233\064\062\146\075\133\142\057\003\311"
"\203\225"
#define pswd_z 256
#define pswd ((&data[12632]))
"\135\170\361\124\016\264\054\154\230\166\210\327\242\047\244\351"
"\141\011\302\220\102\341\165\106\303\132\073\231\312\266\340\060"
"\166\237\333\371\116\163\047\032\201\010\154\332\150\175\233\067"
"\252\336\135\371\132\111\315\143\241\120\046\171\270\361\373\276"
"\254\075\140\304\320\141\213\367\302\111\017\124\204\105\174\053"
"\075\353\351\157\174\216\330\036\221\223\334\242\371\153\051\136"
"\002\215\325\316\022\324\132\145\112\202\177\025\144\173\165\241"
"\354\217\035\162\031\122\243\273\033\205\102\250\276\373\126\142"
"\043\203\037\122\061\360\161\172\170\164\076\330\207\236\374\222"
"\032\317\351\123\156\151\350\153\055\276\325\277\067\106\234\277"
"\014\012\161\346\276\066\166\132\204\166\353\254\126\223\175\120"
"\063\237\136\235\317\263\227\246\367\255\340\131\371\227\026\164"
"\137\037\027\074\005\165\223\160\013\315\176\113\061\125\007\240"
"\056\202\006\223\176\140\376\223\233\154\117\026\223\155\203\203"
"\141\173\170\022\334\254\307\242\023\230\267\307\234\347\316\103"
"\235\152\004\043\246\263\064\322\230\246\125\225\240\025\044\352"
"\317\163\013\014\121\153\322\223\217\004\150\267\046\254\237\161"
"\356\277\224\032\232\025\374\222\344\004\057\370\153\101\114"
#define chk1_z 22
#define chk1 ((&data[12922]))
"\212\300\047\312\047\167\024\351\350\141\313\233\314\023\264\050"
"\000\032\252\121\350\323\312\224\037\370\301\243\035\074"
#define inlo_z 3
#define inlo ((&data[12948]))
"\240\123\023"
#define msg1_z 65
#define msg1 ((&data[12956]))
"\011\247\311\356\041\026\161\175\307\157\042\043\275\236\050\153"
"\065\307\346\324\153\045\056\325\363\027\057\043\237\171\300\250"
"\365\344\006\133\200\046\155\002\334\017\024\203\174\234\004\147"
"\224\040\212\076\021\210\237\020\200\027\000\311\331\164\361\025"
"\140\214\023\076\235\042\006\160\031\266\145\354\162"
#define date_z 1
#define date ((&data[13028]))
"\320"
#define tst1_z 22
#define tst1 ((&data[13032]))
"\307\337\334\030\171\314\175\173\023\070\300\242\017\315\225\152"
"\217\104\000\111\130\117\255\226\220"
#define xecc_z 15
#define xecc ((&data[13057]))
"\252\225\300\265\002\107\056\163\361\217\330\111\043\262\330\014"
"\070\031\373\315\244"/* End of data[] */;
#define hide_z 4096
#define SETUID 0 /* Define as 1 to call setuid(0) at start of script */
#define DEBUGEXEC 0 /* Define as 1 to debug execvp calls */
#define TRACEABLE 1 /* Define as 1 to enable ptrace the executable */
#define HARDENING 0 /* Define as 1 to disable ptrace/dump the executable */
#define BUSYBOXON 0 /* Define as 1 to enable work with busybox */
#if HARDENING
static const char * shc_x[] = {
"/*",
" * Copyright 2019 - Intika <[email protected]>",
" * Replace ******** with secret read from fd 21",
" * Also change arguments location of sub commands (sh script commands)",
" * gcc -Wall -fpic -shared -o shc_secret.so shc_secret.c -ldl",
" */",
"",
"#define _GNU_SOURCE /* needed to get RTLD_NEXT defined in dlfcn.h */",
"#define PLACEHOLDER \"********\"",
"#include <dlfcn.h>",
"#include <stdlib.h>",
"#include <string.h>",
"#include <unistd.h>",
"#include <stdio.h>",
"#include <signal.h>",
"",
"static char secret[128000]; //max size",
"typedef int (*pfi)(int, char **, char **);",
"static pfi real_main;",
"",
"// copy argv to new location",
"char **copyargs(int argc, char** argv){",
" char **newargv = malloc((argc+1)*sizeof(*argv));",
" char *from,*to;",
" int i,len;",
"",
" for(i = 0; i<argc; i++){",
" from = argv[i];",
" len = strlen(from)+1;",
" to = malloc(len);",
" memcpy(to,from,len);",
" // zap old argv space",
" memset(from,'\\0',len);",
" newargv[i] = to;",
" argv[i] = 0;",
" }",
" newargv[argc] = 0;",
" return newargv;",
"}",
"",
"static int mymain(int argc, char** argv, char** env) {",
" //fprintf(stderr, \"Inject main argc = %d\\n\", argc);",
" return real_main(argc, copyargs(argc,argv), env);",
"}",
"",
"int __libc_start_main(int (*main) (int, char**, char**),",
" int argc,",
" char **argv,",
" void (*init) (void),",
" void (*fini)(void),",
" void (*rtld_fini)(void),",
" void (*stack_end)){",
" static int (*real___libc_start_main)() = NULL;",
" int n;",
"",
" if (!real___libc_start_main) {",
" real___libc_start_main = dlsym(RTLD_NEXT, \"__libc_start_main\");",
" if (!real___libc_start_main) abort();",
" }",
"",
" n = read(21, secret, sizeof(secret));",
" if (n > 0) {",
" int i;",
"",
" if (secret[n - 1] == '\\n') secret[--n] = '\\0';",
" for (i = 1; i < argc; i++)",
" if (strcmp(argv[i], PLACEHOLDER) == 0)",
" argv[i] = secret;",
" }",
"",
" real_main = main;",
"",
" return real___libc_start_main(mymain, argc, argv, init, fini, rtld_fini, stack_end);",
"}",
"",
0};
#endif /* HARDENING */
/* rtc.c */
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
/* 'Alleged RC4' */
static unsigned char stte[256], indx, jndx, kndx;
/*
* Reset arc4 stte.
*/
void stte_0(void)
{
indx = jndx = kndx = 0;
do {
stte[indx] = indx;
} while (++indx);
}
/*
* Set key. Can be used more than once.
*/
void key(void * str, int len)
{
unsigned char tmp, * ptr = (unsigned char *)str;
while (len > 0) {
do {
tmp = stte[indx];
kndx += tmp;
kndx += ptr[(int)indx % len];
stte[indx] = stte[kndx];
stte[kndx] = tmp;
} while (++indx);
ptr += 256;
len -= 256;
}
}
/*
* Crypt data.
*/