-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoors Bypass Anticheat LBOB Messed.lua
2787 lines (2786 loc) · 80.4 KB
/
Doors Bypass Anticheat LBOB Messed.lua
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
--[[
Messed with Lua Beautier and Lua Obfuscator - Ry
]]--
warn("Loading")
local v0 = string.char;
local v1 = string.byte;
local v2 = string.sub;
local v3 = bit32 or bit;
local v4 = v3.bxor;
local v5 = table.concat;
local v6 = table.insert;
local function v7(v24, v25)
local v26 = {};
for v41 = 1, #v24 do
v6(v26, v0(v4(v1(v2(v24, v41, v41 + 1)), v1(v2(v25, 1 + (v41 % #v25), 1 + (v41 % #v25) + 1))) % 256));
end
return v5(v26);
end
local v8 = tonumber;
local v9 = string.byte;
local v10 = string.char;
local v11 = string.sub;
local v12 = string.gsub;
local v13 = string.rep;
local v14 = table.concat;
local v15 = table.insert;
local v16 = math.ldexp;
local v17 = getfenv or function()
return _ENV;
end;
local v18 = setmetatable;
local v19 = pcall;
local v20 = select;
local v21 = unpack or table.unpack;
local v22 = tonumber;
local function v23(v27, v28, ...)
local v29 = 1;
local v30;
v27 = v12(v11(v27, 5), v7("\100\102", "\22\74\72\193\35"), function(v42)
if (v9(v42, 5 - 3) == 79) then
local v95 = 0;
while true do
if (0 == v95) then
v30 = v8(v11(v42, 1, 1));
return "";
end
end
else
local v96 = v10(v8(v42, 16));
if v30 then
local v106 = 0;
local v107;
while true do
if (v106 == 0) then
v107 = v13(v96, v30);
v30 = nil;
v106 = 1;
end
if (v106 == 1) then
return v107;
end
end
else
return v96;
end
end
end);
local function v31(v43, v44, v45)
if v45 then
local v97 = 0;
local v98;
while true do
if (v97 == 0) then
v98 = (v43 / (2 ^ (v44 - 1))) % (2 ^ (((v45 - 1) - (v44 - 1)) + 1));
return v98 - (v98 % 1);
end
end
else
local v99 = 0;
local v100;
while true do
if (0 == v99) then
v100 = 2 ^ (v44 - 1);
return (((v43 % (v100 + v100)) >= v100) and 1) or 0;
end
end
end
end
local function v32()
local v46 = 0;
local v47;
while true do
if (v46 == 0) then
v47 = v9(v27, v29, v29);
v29 = v29 + 1;
v46 = 1;
end
if (v46 == 1) then
return v47;
end
end
end
local function v33()
local v48 = 0;
local v49;
local v50;
while true do
if (v48 == 0) then
v49, v50 = v9(v27, v29, v29 + 2);
v29 = v29 + (5 - 3);
v48 = 1;
end
if (v48 == 1) then
return (v50 * 256) + v49;
end
end
end
local function v34()
local v51 = 0;
local v52;
local v53;
local v54;
local v55;
while true do
if (v51 == 0) then
v52, v53, v54, v55 = v9(v27, v29, v29 + 3);
v29 = v29 + 4;
v51 = 1;
end
if (v51 == 1) then
return (v55 * 16777216) + (v54 * 65536) + (v53 * 256) + v52;
end
end
end
local function v35()
local v56 = 0;
local v57;
local v58;
local v59;
local v60;
local v61;
local v62;
while true do
if (3 == v56) then
if (v61 == 0) then
if (v60 == (619 - (555 + 64))) then
return v62 * 0;
else
v61 = 1;
v59 = 0;
end
elseif (v61 == 2047) then
return ((v60 == 0) and (v62 * (1 / 0))) or (v62 * NaN);
end
return v16(v62, v61 - 1023) * (v59 + (v60 / (2 ^ 52)));
end
if (0 == v56) then
v57 = v34();
v58 = v34();
v56 = 1;
end
if (v56 == 2) then
v61 = v31(v58, 21, 31);
v62 = ((v31(v58, 32) == 1) and -(2 - 1)) or 1;
v56 = 3;
end
if (1 == v56) then
v59 = 1 - 0;
v60 = (v31(v58, 1, 20) * (2 ^ 32)) + v57;
v56 = 2;
end
end
end
local function v36(v63)
local v64;
if not v63 then
local v101 = 0;
while true do
if (v101 == 0) then
v63 = v34();
if (v63 == 0) then
return "";
end
break;
end
end
end
v64 = v11(v27, v29, (v29 + v63) - 1);
v29 = v29 + v63;
local v65 = {};
for v79 = 1, #v64 do
v65[v79] = v10(v9(v11(v64, v79, v79)));
end
return v14(v65);
end
local v37 = v34;
local function v38(...)
return {...}, v20("#", ...);
end
local function v39()
local v66 = 0;
local v67;
local v68;
local v69;
local v70;
local v71;
local v72;
while true do
if (2 == v66) then
for v108 = 1, v34() do
local v109 = 0;
local v110;
while true do
if (v109 == 0) then
v110 = v32();
if (v31(v110, 928 - (214 + 713), 1 + 0) == 0) then
local v122 = 0;
local v123;
local v124;
local v125;
while true do
if (v122 == 1) then
v125 = {v33(),v33(),nil,nil};
if (v123 == (1637 - (1523 + 114))) then
local v127 = 0;
while true do
if (0 == v127) then
v125[3] = v33();
v125[4] = v33();
break;
end
end
elseif (v123 == 1) then
v125[3] = v34();
elseif (v123 == (2 + 0)) then
v125[3] = v34() - (2 ^ 16);
elseif (v123 == 3) then
local v1075 = 0;
while true do
if (v1075 == 0) then
v125[3] = v34() - (2 ^ 16);
v125[4] = v33();
break;
end
end
end
v122 = 2;
end
if (v122 == 2) then
if (v31(v124, 1, 1) == (1 - 0)) then
v125[1067 - (68 + 997)] = v72[v125[2]];
end
if (v31(v124, 2, 2) == 1) then
v125[3] = v72[v125[3]];
end
v122 = 3;
end
if (3 == v122) then
if (v31(v124, 3, 3) == 1) then
v125[4] = v72[v125[4]];
end
v67[v108] = v125;
break;
end
if (0 == v122) then
v123 = v31(v110, 1 + 1, 3);
v124 = v31(v110, 4, 6);
v122 = 1;
end
end
end
break;
end
end
end
for v111 = 1, v34() do
v68[v111 - 1] = v39();
end
return v70;
end
if (v66 == 0) then
v67 = {};
v68 = {};
v69 = {};
v70 = {v67,v68,nil,v69};
v66 = 1;
end
if (v66 == 1) then
v71 = v34();
v72 = {};
for v113 = 1, v71 do
local v114 = 0;
local v115;
local v116;
while true do
if (v114 == 1) then
if (v115 == 1) then
v116 = v32() ~= 0;
elseif (v115 == (570 - (367 + 201))) then
v116 = v35();
elseif (v115 == 3) then
v116 = v36();
end
v72[v113] = v116;
break;
end
if (v114 == 0) then
v115 = v32();
v116 = nil;
v114 = 1;
end
end
end
v70[3] = v32();
v66 = 2;
end
end
end
local function v40(v73, v74, v75)
local v76 = v73[1];
local v77 = v73[2];
local v78 = v73[3];
return function(...)
local v81 = v76;
local v82 = v77;
local v83 = v78;
local v84 = v38;
local v85 = 1;
local v86 = -(1271 - (226 + 1044));
local v87 = {};
local v88 = {...};
local v89 = v20("#", ...) - (4 - 3);
local v90 = {};
local v91 = {};
for v102 = 0, v89 do
if (v102 >= v83) then
v87[v102 - v83] = v88[v102 + 1];
else
v91[v102] = v88[v102 + 1];
end
end
local v92 = (v89 - v83) + 1;
local v93;
local v94;
while true do
v93 = v81[v85];
v94 = v93[1];
if (v94 <= 31) then
if (v94 <= 15) then
if (v94 <= (124 - (32 + 85))) then
if (v94 <= 3) then
if (v94 <= 1) then
if (v94 == 0) then
v91[v93[2]] = v93[3];
else
local v136 = v93[2];
do
return v91[v136](v21(v91, v136 + 1, v93[3]));
end
end
elseif (v94 > 2) then
local v137 = v93[2];
do
return v21(v91, v137, v86);
end
else
local v138 = 0;
local v139;
local v140;
local v141;
while true do
if (v138 == 2) then
if (v140 > 0) then
if (v141 <= v91[v139 + 1]) then
v85 = v93[3 + 0];
v91[v139 + 3] = v141;
end
elseif (v141 >= v91[v139 + 1]) then
local v1078 = 0;
while true do
if (0 == v1078) then
v85 = v93[3];
v91[v139 + 3] = v141;
break;
end
end
end
break;
end
if (1 == v138) then
v141 = v91[v139] + v140;
v91[v139] = v141;
v138 = 2;
end
if (0 == v138) then
v139 = v93[2];
v140 = v91[v139 + 2];
v138 = 1;
end
end
end
elseif (v94 <= 5) then
if (v94 > (1 + 3)) then
local v142 = 0;
local v143;
while true do
if (1 == v142) then
v91[v93[959 - (892 + 65)]] = v75[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v142 = 2;
end
if (v142 == 2) then
v85 = v85 + 1;
v93 = v81[v85];
v143 = v93[2];
v91[v143](v21(v91, v143 + 1, v93[3]));
v142 = 3;
end
if (v142 == 3) then
v85 = v85 + 1;
v93 = v81[v85];
v85 = v93[3];
break;
end
if (v142 == 0) then
v143 = nil;
v91[v93[2]] = v91[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v142 = 1;
end
end
else
v91[v93[2]] = v93[3] * v91[v93[4]];
end
elseif (v94 == 6) then
v91[v93[2]] = v40(v82[v93[3]], nil, v75);
else
local v146 = 0;
local v147;
local v148;
local v149;
local v150;
local v151;
while true do
if (v146 == 6) then
v93 = v81[v85];
v91[v93[2]] = v91[v93[955 - (802 + 150)]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[7 - 4]][v93[6 - 2]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[3 + 1]];
v146 = 7;
end
if (v146 == 8) then
v93 = v81[v85];
v91[v93[2]] = v75[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v146 = 9;
end
if (v146 == 3) then
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + (181 - (67 + 113));
v93 = v81[v85];
v151 = v93[2];
v148, v149 = v84(v91[v151](v21(v91, v151 + 1 + 0, v93[3])));
v86 = (v149 + v151) - (2 - 1);
v146 = 4;
end
if (v146 == 2) then
v91[v151 + 1] = v150;
v91[v151] = v150[v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v74[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[3 - 1]] = v93[353 - (87 + 263)];
v146 = 3;
end
if (v146 == 5) then
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v146 = 6;
end
if (v146 == 9) then
v85 = v85 + (2 - 1);
v93 = v81[v85];
v151 = v93[2];
v150 = v91[v93[2 + 1]];
v91[v151 + 1] = v150;
v91[v151] = v150[v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v146 = 10;
end
if (v146 == 4) then
v147 = 0;
for v1007 = v151, v86 do
local v1008 = 0;
while true do
if (v1008 == 0) then
v147 = v147 + 1;
v91[v1007] = v148[v147];
break;
end
end
end
v85 = v85 + 1 + 0;
v93 = v81[v85];
v151 = v93[7 - 5];
v91[v151] = v91[v151](v21(v91, v151 + 1, v86));
v85 = v85 + 1;
v93 = v81[v85];
v146 = 5;
end
if (v146 == 10) then
v151 = v93[2];
v91[v151](v91[v151 + 1]);
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v93 = v81[v85];
v85 = v93[3];
break;
end
if (0 == v146) then
v147 = nil;
v148, v149 = nil;
v150 = nil;
v151 = nil;
v151 = v93[2];
v91[v151] = v91[v151]();
v85 = v85 + 1;
v93 = v81[v85];
v146 = 1;
end
if (1 == v146) then
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v75[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v151 = v93[4 - 2];
v150 = v91[v93[5 - 2]];
v146 = 2;
end
if (v146 == 7) then
v85 = v85 + 1;
v93 = v81[v85];
v151 = v93[2];
v91[v151] = v91[v151](v91[v151 + 1]);
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]];
v85 = v85 + (998 - (915 + 82));
v146 = 8;
end
end
end
elseif (v94 <= 11) then
if (v94 <= (11 - 2)) then
if (v94 > 8) then
if v91[v93[1189 - (1069 + 118)]] then
v85 = v85 + 1;
else
v85 = v93[3];
end
else
local v152;
v91[v93[2]][v91[v93[3]]] = v91[v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v74[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[6 - 3];
v85 = v85 + (1 - 0);
v93 = v81[v85];
v152 = v93[2];
v91[v152] = v91[v152](v21(v91, v152 + 1, v93[3]));
end
elseif (v94 > 10) then
local v162 = 0;
local v163;
while true do
if (v162 == 0) then
v163 = nil;
v91[v93[2]][v91[v93[1 + 2]]] = v91[v93[6 - 2]];
v85 = v85 + 1 + 0;
v162 = 1;
end
if (v162 == 3) then
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v162 = 4;
end
if (2 == v162) then
v93 = v81[v85];
v91[v93[793 - (368 + 423)]] = v93[3];
v85 = v85 + 1;
v162 = 3;
end
if (v162 == 4) then
v93 = v81[v85];
v163 = v93[2];
v91[v163] = v91[v163](v21(v91, v163 + 1, v93[3]));
break;
end
if (v162 == 1) then
v93 = v81[v85];
v91[v93[2]] = v74[v93[3]];
v85 = v85 + 1;
v162 = 2;
end
end
else
local v164 = 0;
local v165;
while true do
if (v164 == 0) then
v165 = nil;
v91[v93[2]][v91[v93[9 - 6]]] = v91[v93[22 - (10 + 8)]];
v85 = v85 + (3 - 2);
v164 = 1;
end
if (v164 == 4) then
v93 = v81[v85];
v165 = v93[2];
v91[v165] = v91[v165](v21(v91, v165 + (443 - (416 + 26)), v93[3]));
break;
end
if (2 == v164) then
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v164 = 3;
end
if (1 == v164) then
v93 = v81[v85];
v91[v93[2]] = v74[v93[3]];
v85 = v85 + 1;
v164 = 2;
end
if (v164 == 3) then
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v164 = 4;
end
end
end
elseif (v94 <= 13) then
if (v94 > 12) then
v91[v93[2]] = v91[v93[3]] % v91[v93[4]];
else
local v167 = 0;
local v168;
local v169;
local v170;
local v171;
local v172;
while true do
if (v167 == 7) then
v85 = v85 + (1139 - (116 + 1022));
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[8 - 6]] = v93[3];
v85 = v85 + 1 + 0;
v93 = v81[v85];
v172 = v93[2];
v169, v170 = v84(v91[v172](v21(v91, v172 + 1, v93[10 - 7])));
v167 = 8;
end
if (v167 == 2) then
v91[v93[2]] = v74[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v93[3];
v85 = v85 + 1;
v93 = v81[v85];
v172 = v93[2];
v167 = 3;
end
if (v167 == 6) then
v91[v93[2]] = v75[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v172 = v93[2];
v171 = v91[v93[3]];
v91[v172 + 1] = v171;
v91[v172] = v171[v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v74[v93[3]];
v167 = 7;
end
if (v167 == 0) then
v168 = nil;
v169, v170 = nil;
v171 = nil;
v172 = nil;
v172 = v93[2];
v91[v172] = v91[v172]();
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[6 - 4]] = v91[v93[3]][v93[2 + 2]];
v85 = v85 + 1;
v167 = 1;
end
if (5 == v167) then
v91[v93[2]] = v75[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v172 = v93[774 - (201 + 571)];
v91[v172] = v91[v172]();
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v167 = 6;
end
if (9 == v167) then
v85 = v85 + (860 - (814 + 45));
v93 = v81[v85];
v172 = v93[2];
v91[v172] = v91[v172](v91[v172 + 1]);
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]];
v85 = v85 + (2 - 1);
v93 = v81[v85];
v91[v93[2]] = v93[3];
v167 = 10;
end
if (4 == v167) then
v91[v93[2]] = v91[v93[3 + 0]][v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v172 = v93[2];
v91[v172] = v91[v172](v91[v172 + 1]);
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]];
v85 = v85 + 1;
v93 = v81[v85];
v167 = 5;
end
if (8 == v167) then
v86 = (v170 + v172) - 1;
v168 = 0;
for v1009 = v172, v86 do
v168 = v168 + 1;
v91[v1009] = v169[v168];
end
v85 = v85 + (3 - 2);
v93 = v81[v85];
v172 = v93[2];
v91[v172] = v91[v172](v21(v91, v172 + 1, v86));
v85 = v85 + 1;
v93 = v81[v85];
v91[v93[2]] = v91[v93[3]][v93[4]];
v167 = 9;
end
if (v167 == 3) then
v169, v170 = v84(v91[v172](v21(v91, v172 + 1, v93[3])));
v86 = (v170 + v172) - 1;
v168 = 0;
for v1012 = v172, v86 do
local v1013 = 0;
while true do
if (v1013 == 0) then
v168 = v168 + 1;
v91[v1012] = v169[v168];
break;
end
end
end
v85 = v85 + 1;
v93 = v81[v85];
v172 = v93[1488 - (998 + 488)];
v91[v172] = v91[v172](v21(v91, v172 + 1, v86));
v85 = v85 + 1 + 0;
v93 = v81[v85];
v167 = 4;
end
if (v167 == 10) then
v85 = v85 + 1;
v93 = v81[v85];
v85 = v93[1 + 2];
break;
end
if (v167 == 1) then
v93 = v81[v85];
v91[v93[2]] = v75[v93[4 - 1]];
v85 = v85 + (439 - (145 + 293));
v93 = v81[v85];
v172 = v93[2];
v171 = v91[v93[3]];
v91[v172 + (431 - (44 + 386))] = v171;
v91[v172] = v171[v93[4]];
v85 = v85 + 1;
v93 = v81[v85];
v167 = 2;
end
end
end
elseif (v94 == 14) then
v91[v93[2]] = v75[v93[3]];
else
v91[v93[2]] = v91[v93[3]] - v91[v93[4]];
end
elseif (v94 <= 23) then
if (v94 <= 19) then
if (v94 <= 17) then
if (v94 > 16) then
local v176 = 0;
local v177;
local v178;
local v179;
while true do
if (v176 == 0) then
v177 = v82[v93[3]];
v178 = nil;
v176 = 1;
end
if (v176 == 1) then
v179 = {};
v178 = v18({}, {[v7("\19\70\237\86\40\124\252", "\56\76\25\132")]=function(v1014, v1015)
local v1016 = 0;
local v1017;
while true do
if (v1016 == 0) then
v1017 = v179[v1015];
return v1017[1][v1017[2]];
end
end
end,[v7("\97\254\165\35\216\87\207\175\35\215", "\175\62\161\203\70")]=function(v1018, v1019, v1020)
local v1021 = 0;
local v1022;
while true do
if (v1021 == 0) then
v1022 = v179[v1019];
v1022[1][v1022[2]] = v1020;
break;
end
end
end});
v176 = 2;
end
if (v176 == 2) then
for v1023 = 1, v93[4] do
local v1024 = 0;
local v1025;
while true do
if (1 == v1024) then
if (v1025[1] == 33) then
v179[v1023 - 1] = {v91,v1025[3]};
else
v179[v1023 - 1] = {v74,v1025[3]};
end
v90[#v90 + 1] = v179;
break;
end
if (v1024 == 0) then
v85 = v85 + 1;
v1025 = v81[v85];
v1024 = 1;
end
end
end
v91[v93[2]] = v40(v177, v178, v75);
break;
end
end
else
local v180 = 0;
local v181;
local v182;
while true do
if (v180 == 1) then
for v1026 = v181 + 1, v93[4] do
v182 = v182 .. v91[v1026];
end
v91[v93[2]] = v182;
break;
end
if (v180 == 0) then
v181 = v93[3];
v182 = v91[v181];
v180 = 1;
end
end
end
elseif (v94 > (903 - (261 + 624))) then
v91[v93[2]][v91[v93[3]]] = v91[v93[4]];
else
local v185 = v93[2];
local v186, v187 = v84(v91[v185](v91[v185 + 1]));
v86 = (v187 + v185) - 1;
local v188 = 0;
for v330 = v185, v86 do
local v331 = 0;
while true do
if (0 == v331) then
v188 = v188 + 1;
v91[v330] = v186[v188];
break;
end
end
end
end
elseif (v94 <= 21) then
if (v94 > 20) then
v91[v93[2]] = v93[3] + v91[v93[4]];
else
local v190 = 0;
local v191;
local v192;
local v193;
local v194;
while true do
if (2 == v190) then
for v1029 = v191, v86 do
local v1030 = 0;
while true do
if (v1030 == 0) then
v194 = v194 + 1;
v91[v1029] = v192[v194];
break;
end
end
end
break;
end
if (v190 == 0) then
v191 = v93[2];
v192, v193 = v84(v91[v191](v21(v91, v191 + 1, v93[4 - 1])));
v190 = 1;
end
if (1 == v190) then
v86 = (v193 + v191) - 1;
v194 = 0;
v190 = 2;
end
end
end
elseif (v94 == 22) then
local v195 = 0;
local v196;
while true do
if (v195 == 0) then
v196 = v93[2];
v91[v196] = v91[v196](v91[v196 + 1]);
break;
end
end
else
v91[v93[2]] = v91[v93[3]] + v93[1084 - (1020 + 60)];
end
elseif (v94 <= (1450 - (630 + 793))) then
if (v94 <= (84 - 59)) then
if (v94 == 24) then
v91[v93[2]] = v91[v93[3]][v93[4]];
else
v85 = v93[3];
end
elseif (v94 > 26) then
local v201 = 0;
local v202;