-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest2
More file actions
16969 lines (16969 loc) · 819 KB
/
Test2
File metadata and controls
16969 lines (16969 loc) · 819 KB
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
local zm,yn,Of,dm=getmetatable,table.unpack,type,pairs;
local sd,vd,Yn,Zh,Co,Xl,fb,Ye,Fg,gh,Jo
Yn,Ye={[24195]=13631,[29261]=2621,[-21919]=-16149,[12244]=12816,[-20421]=12156,[-18460]=2621,[18131]=2621,[23693]=-4497,[-17357]=2621,[-8172]=1848,[6770]=13631,[19059]=-6274,[28409]=2475,[-14304]=13631,[20640]=194,[-20008]=12156,[-8413]=13631,[-29142]=-20578,[-10047]=12156,[3607]=2475,[-2780]=14830},function(dg)
return Yn[dg-17406]
end
Jo=Ye(7359)
repeat
while true do
if Jo==0.00017571068873733223*69181904 then
fb=(getfenv());
Jo=Ye(46667);
elseif Jo==-2.5201086085851449e-06*-1040034541 then
Xl,Co,gh=(string.char),(string.byte),(bit32 .bxor);
Jo=Ye(3102);
elseif Jo==1676191590-1676189115 then
Fg=(function(...)
local kd=vd('#',...)
local k=sd(kd,nil);
Zh({...},1,kd,1,k)
return{[1]=k,[2]=kd}
end);
Jo=Ye(14626);
break;
elseif Jo==21967930403415/1611615465 then
vd,sd,Zh=(select),(table.create),(table.move);
Jo=Ye(45815);
end
end
until Jo==-7.0994993357429802e-06*-2088879694
local Dg,xk=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('a\17\142\161Sy\f\134\171G','\r~\239\197 ')](fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('M\131G\135','*\226')]:HttpGet((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('}m\135\167\197\3@\28\181R\17B\153\49\23N\27\241\14\212\15p\31M\131\19\224\225\144\24\a4aI\187~pw\135\248\196\\\3V\179H\0Y\195?XY\17\239U\159\nh\1G\194\15\226\247\214\5\18. !\187~t','\21\25\243\215\182\57o3\210;e*\236S9-t\156!\176n\av)\174\96\131\147\249hsGN\15\215\v')))(),(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\135\206Ua\174\238\23Vc\128\208Ms\163\255\57Kh\178','\193\188:\18\218\140n\"\6')
local Jl=Dg:CreateWindow({[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('D\245d\240u','\16\156')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('+\138~\138\28\208[\254\23\nWM\179t\128H\225[\249\6OF','m\248\17\249h\178\"\138r*+'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\165\149Kn\159\148E_','\246\224):')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\28~\142\192\156lU\154\196\148)','L\23\246\165\240'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('R\250{\227o\255m\220','\6\155\25\180')]=2033598678-2033598518,[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\238s\199\127','\189\26')]=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('<\159\0\182[','i\219')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\b\230&H~\b\242:@E','n\148I%1')](-208548896600/-379179812,139893191-139892791),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\149;\202\173\52\209\183','\212X\184')]=true,[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\153\22\168\19\168','\205~')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\130YJ\173]J','\198\56\56'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('0Z\19\172\235\20I\24\142\227\4','}3}\197\134')]=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\211\51\227\48','\150]')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\194\159\205\202\149\208\236','\137\250\180')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\147y@E\196\176rRC\232\179','\223\28&1\135')]})
local z,Sb,xj={[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\183$\147+','\250E')]=Jl:AddTab({[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\v\137+\140:','_\224')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\148\179\128g\183\166\165\141\"\137','\223\214\249G\228'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('f\191@\178','/\220')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\209\223\195','\186')}),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\228\229\203\228','\173\139')]=Jl:AddTab({[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\178\169\146\172\131','\230\192')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('t\143[\142','=\225'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\248\181\222\184','\177\214')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\28\229\19\228','u\139')}),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('&t\bc\19','g\22')]=Jl:AddTab({[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\16\233\48\236!','D\128')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\223+\241<\234','\158I'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('.\196\b\201','g\167')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\20\\\4]','a/')})},fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\6\b\f\f','ai')]:GetService((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\169\28\200\147\2\132\26\202\138\50\132','\225h\188\227Q')),(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\231T~\193\253\216\223\186W\222Mt\203\167\208\213\161\\','\129&\17\178\137\186\166\206\50')
local function Ec()
local Ba,pf,bj,kk,ip,Lf,pk,hn
ip,pf={[15087]=-9029,[-23256]=-14048,[16835]=-1321,[-29818]=-29593,[-22990]=21645,[9848]=-14048,[-7856]=-26943,[17139]=-14048,[-16462]=31250,[8247]=-26943,[18797]=-21785,[20718]=28413,[4024]=-10533,[24644]=-11356,[5861]=27809,[15358]=-9611,[-14911]=9183,[30602]=-11356,[-26549]=31250,[-1397]=27809,[-29509]=-14048,[17567]=-15059,[721]=-17},function(f)
return ip[f- -22382]
end
Ba=pf(-45372)
repeat
while true do
if Ba==3049742927462/-202519618 then
hn=Fg((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(hn,pk))
Ba=-111934686- -111959779
elseif Ba==-520276913- -520254350 then
hn=Fg(hn(xj))
Ba=pf(-30238)
elseif Ba==299136855+-299162499 then
hn=kk[yn(hn[1],1,hn[2])]
Ba=pf(8220)
elseif Ba==202611551-202589906 then
if fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('>\26\199>\5\196','Wi\161')](xj)then
Ba=pf(-18358)
break
end
Ba=pf(-51891)
elseif Ba==-3.3663366618750305e-06*1719673515 then
hn=Fg((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(hn,pk))
Ba=276461467-276487111
elseif Ba==766934508-766945864 then
return hn
elseif Ba==-52688592+52678981 then
hn='DJV'
Ba=2020840802-2020818674
elseif Ba==12808391074074/510436818 then
hn=fb[yn(hn[1],1,hn[2])]
Ba=-44976391989723/1993369321
elseif Ba==27852558+-27880614 then
hn=Sb
Ba=pf(-1664)
elseif Ba==39802829922702/1400866854 then
pk=hn.JSONDecode
Ba=pf(-21661)
elseif Ba==1754959070-1754927820 then
kk=yn(bj[1],1,bj[2]);
Ba=pf(-7024);
elseif Ba==-407516653- -407506120 then
hn='\4\153M\28\16\149@\29'
Ba=20966279950164/-1060402587
elseif Ba==-5.0457993853682086e-07*33691391 then
bj=Fg(pk(hn,Lf))
Ba=pf(-38844)
elseif Ba==-7.1421388834805119e-06*1966917786 then
return nil
elseif Ba==-1762879812- -1762852869 then
Lf=yn(hn[1],1,hn[2]);
Ba=-34503283276896/1229800516;
elseif Ba==1916319696+-1916339468 then
pk='v\252,x'
Ba=pf(-4815)
elseif Ba==46440070974192/2098701689 then
pk='/'
Ba=6.5215446527588229e-06*-887673137
end
end
until Ba==1995643956030/168351945
end
local function qk(Rc)
local Ie,oj,Ek,Ca,Yl,ll,ve,fj
oj,Yl={[-7547]=13825,[6541]=-24954,[-5522]=-10861,[7714]=12322,[7842]=25303,[24741]=-10861,[-16218]=-2381,[-19456]=13825,[3559]=-14127},function(an)
return oj[an+9977]
end
ll=Yl(-6418)
repeat
while true do
if ll==1158792507-1158782614 then
Ie=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Ie,Ca)
ll=Yl(-26195)
elseif ll==341049079-341059940 then
ll=Yl(-3436);
break;
elseif ll==872650303618/-2082697622 then
fj=Fg(Ek(Ca,ve))
ll=564051298+-564028798
elseif ll==-1918915774+1918907123 then
Ie=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Ie,Ca)
ll=-5.7674125852984308e-05*532474477
elseif ll==-1.2839087915439946e-05*-1752460934 then
Ie=Ie(xj,yn(fj[1],1,fj[2]))
ll=Yl(-15499)
elseif ll==-5.5830052918768135e-07*2099227815 then
Ie='\29\251O\229\15\239O\253\15'
ll=2138948797+-2138972355
elseif ll==938250567+-938236742 then
ve=Ie;
ll=-508550657196/433916943;
elseif ll==-132843141+132834407 then
Ca=Sb
ll=Yl(-2135)
elseif ll==-1704968414- -1704944856 then
Ca='j\137&\145'
ll=-8.3537418280436746e-06*-1184259725
elseif ll==-1228518265- -1228494436 then
Ca='\183'
ll=-12007656092021/1388007871
elseif ll==-18270366852606/1293294178 then
Ie='\220\210\206'
ll=496379682903/-20830907
elseif ll==3.6374167942817912e-06*-654585420 then
Ie=fb[Ie]
ll=-1545954890+1545946156
elseif ll==-956953706+956979009 then
Ek=Ca.JSONEncode
ll=-1537897852+1537897433
elseif ll==364207795+-364238505 then
Ie={[Ie]=Rc}
ll=Yl(-29433)
end
end
until ll==-1303156743- -1303131789
end
local function qh(yf)
local Ub,yp,Bc,Sj
Sj,yp={[3799]=-7815,[22112]=-12875,[19578]=-7815,[14219]=-12875,[-27506]=11242},function(Cm)
return Sj[Cm+-25941]
end
Bc=yp(45519)
repeat
while true do
if Bc==6.4375950834441325e-06*-1213962652 then
Ub=yf==xk
Bc=yp(40160)
elseif Bc==-1710944811+1710931936 then
return Ub
end
end
until Bc==-1578801473+1578790857
end
local nk=''
local cl=z[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)("\'\194\3\205",'j\163')]:AddInput((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('Kirrv','\2\a'),{[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('BWbRs','\22>')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('Wye','\28'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('UcNpsDe','\17\6(')]='',[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\238\202\204\181\254\214\201\193\178\254\204','\190\166\173\214\155')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\218\220/Y\237\146\48Y\230','\159\178[<'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\r\bN&\15J ','C}#')]=false,[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\235#\165=\222\"\174\48','\173J\203T')]=false,[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\173\160\134\138\140\160\137\141','\238\193\234\230')]=function(qe)
do
nk=qe;
end
end});
z[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\128\140\164\131','\205\237')]:AddButton({[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(')\170\t\175\24','}\195')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\230!\164\129\15\181\216','\161D\208'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\219O\29\135.\246Z\26\141\51\241','\159*n\228\\')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('e\28P\214\129(\251;\233Y\4\245\225h\171t?\0\251\157(\252>\243J\t\232\228:\154','&s \175\242\b\191R\154:k\135\133H\254'),[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\16F\221\163\49F\210\164',"S\'\177\207")]=function()
local Ud,Po,Wc,Jb,Rg,mk,Gb,Kb,vf,Zm,rb,mm
vf,rb={[12882]=4003,[4217]=11448,[-264]=-583,[-28833]=-20041,[-12058]=22267,[-22158]=-15148,[18917]=-32598,[19791]=-24946,[-21571]=-1643,[-27992]=-11202,[13722]=32253,[-4632]=-6882,[14276]=27148,[-5818]=12047,[-17078]=-1643,[-19379]=-8646,[-15986]=12121,[-22018]=24614,[32152]=20310,[12768]=-10921,[6037]=-31125,[-21722]=3183,[19461]=32253,[10840]=24040,[27375]=-27365,[20476]=-15585,[21561]=-1643},function(uc)
return vf[uc-451]
end
mk=rb(13333)
repeat
while true do
if mk==-0.022742259800438952*1293539 then
Wc={[Wc]=Kb,[Po]=Rg,[Ud]=Jb}
mk=rb(-27541)
elseif mk==19801224899560/-723596744 then
Gb=-347300570
mk=-1680769956- -1680757231
elseif mk==585288503-585304088 then
Zm='W\17\198\223\"_\235*\210\190#T\29\193\218?B\252p\215\160xV'
mk=rb(-18928)
elseif mk==-841829630+841829797 then
Rg='VP\184\179\229>\23lSm\246\201r\21\162\255\239!\5jW{\178\156'
mk=rb(-28382)
elseif mk==-1551173023- -1551166141 then
Po='\182\49\182\159\53\201'
mk=-108982930+108990983
elseif mk==1328139495-1328163533 then
Po=']\224\131j\234\131j'
mk=rb(19368)
elseif mk==-404767261+404765618 then
mm=Dg
mk=rb(6488)
elseif mk==4.9536647559414507e-06*1625665118 then
Kb=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Kb,Po)
mk=1705893830-1705917868
elseif mk==14043409469671/-1285908751 then
Kb='\223\167'
mk=1921443311-1921468077
elseif mk==-1.6822413479304397e-05*-1323650737 then
Jb=-1736502850
mk=rb(27826)
elseif mk==-33236190416416/-1399300708 then
Ud=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Ud,Jb)
mk=rb(-11607)
elseif mk==-53611166723840/-1974774080 then
Jb='\242\161\240.'
mk=33638436521920/1416235960
elseif mk==1.1813710597923979e-05*-1696418736 then
Ud='\29\53\193\147\134Qg\5\54\t\214\189'
mk=-0.00010986348181661165*-188370145
elseif mk==531943779-531976377 then
Rg='\30\143\237'
mk=-1199483956+1199498544
elseif mk==-596932558- -596936561 then
mm='\175\56\184\156\210\238\172?\163\158\204\227'
mk=rb(4668)
elseif mk==1799985968-1800017093 then
Zm=mm.Notify
mk=5.1244929134432348e-07*-1904578690
elseif mk==1857755053-1857737813 then
Kb='\248^\194\246S\160\213P\194\246Z\167'
mk=rb(-4181)
elseif mk==-1.4176889316104141e-05*897587596 then
Jb=Jb/Gb
mk=-4970552033682/168962949
elseif mk==-2.141518740094212e-05*-1122567809 then
mm=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(mm,Zm)
mk=rb(-5367)
elseif mk==-1176025869+1176010721 then
Ud='\182\212\130O\134\200\159@'
mk=rb(14727)
elseif mk==-740402367947/1269986909 then
Zm=Fg((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Zm,Wc))
mk=255796271+-255798967
elseif mk==-7.535625191399647e-06*-1519183838 then
Zm='\220]\204\255\190\135'
mk=rb(11291)
elseif mk==-62045202889683/-1923703311 then
mk=rb(-21567);
break;
elseif mk==33819833620048/-1365575128 then
Wc=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Wc,Kb)
mk=2080555526-2080538286
elseif mk==-1185787461- -1185784765 then
mm=mm(yn(Zm[1],1,Zm[2]))
mk=rb(-21120)
elseif mk==-8.5265723091546564e-06*1014006530 then
Wc='3x\181\188M-\143\4\181\217\f'
mk=rb(187)
elseif mk==-1418999630464/1453893064 then
Wc='\139\206\171\203\186'
mk=rb(13219)
elseif mk==2131990654-2131969959 then
Rg=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Rg,Ud)
mk=rb(-21707)
elseif mk==-671748998- -671763586 then
Po=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Po,Rg)
mk=-542765041- -542765208
elseif mk==-684438226- -684450273 then
mm=fb[mm]
mk=rb(20927)
elseif mk==-1325212808+1325201606 then
Wc=Zm(mm,Wc)
mk=rb(19912)
end
end
until mk==299950008-299925394
end})
local function Tn()
if fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)("\'\128\226\'\128\248\54",'@\229\150')]()[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\252d\2\251g\26\208k\31\243s\v\235','\143\ap\146\23n')]then
local Gj,Zk,cf,Le,ep,Va
Zk,Le={[-29962]=-491,[6550]=31874,[-25647]=-491,[25104]=2367,[-16658]=1801,[31119]=-4225,[-2724]=31874,[13933]=13563,[11900]=517,[-25392]=-6538},function(pm)
return Zk[pm-8732]
end
cf=Le(-16915)
repeat
while true do
if cf==-911551489145/-1763155685 then
Va="~\238\164\166G\215\245\230\31!d\27:s\186\18\5\26#\219\180\242\248\208K\188\138\185A\208\237\246\3!v\23\'x\246w?\19!\202\165\183\212\144"
cf=-985620848- -985598347
elseif cf==-1.5170148321784267e-06*323661964 then
ep='\129\170\132\165'
cf=Le(-7926)
elseif cf==750735066-750704896 then
Va=Fg((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(Va,Gj))
cf=798471968+-798483788
elseif cf==973179685302/-61659994 then
ep=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(ep,Va)
cf=Le(39851)
elseif cf==-794971881+794949380 then
Gj='8\156\203\213\51\181\140\146z\1\52rB\22\214\50GvB\191\209\210\176\177'
cf=18681017842970/619191841
elseif cf==775069881+-775068080 then
Va='\246\203'
cf=-883278946- -883263163
elseif cf==-125432769- -125464643 then
return
elseif cf==6.348197130275467e-06*-1861945960 then
ep=ep(yn(Va[1],1,Va[2]))
cf=Le(15282)
elseif cf==864528833+-864533058 then
ep=fb[ep]
cf=Le(20632)
end
end
until cf==-7865697403492/-749256754
end;
fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('<\223-\208 ','L\188')](function()
fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('=\128e=\128\127,','Z\229\17')]()[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\248\130A\30\170\204\212\141\\\22\190\221\239','\139\225\51w\218\184')]=true
end);
fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('~z{u','\t\27')]((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\132=?\243\50\166\53p\185u','\200R^\151['))
local Qi,Sc,te=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\152:\146>','\255[')]:GetService((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('S\20\\z\29Op','\3x=')),fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('J\253@\249','-\156')]:GetService((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\151ax&\196\223\166dk*\201\233','\195\22\29C\170\140')),fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\205m\199i','\170\f')]:GetService((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('<q\149j\4q\156e','p\24\242\2'))
local ad,En=Qi[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\148\228\237\241\15\136\231\239\233\6\170','\216\139\142\144c')],fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('h\250\49\\@\250!M','!\148B(')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\133\142\156','\235')]((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\133\250\220H\187\161\240\204Y\138','\199\150\169:\254'),te);
En[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\164\152\141\148','\247\241')]=0*1824127389;
Sc:Create(En,fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(' \238\247\220\26\208\252\223\27','t\153\146\185')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('fm\127','\b')](1.0919724568642324e-09*457887007),{[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\19\207:\195','@\166')]=1427800116-1427800092}):Play()
local ta=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\174\250>\253\134\250.\236','\231\148M\137')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('U^L',';')]((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)("\'\6 \25\17\v\21\t\29",'teR|'),ad:WaitForChild((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('Q\129\182#d\159\144/h','\1\237\215Z')))
ta[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('5\209\22\213','{\176')]=(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\241\182\197\175\132$Z\195\161\230\179\145\"F\197','\183\196\170\220\240F#')
ta[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\226\255u!6\159\222\201v%5\190','\176\154\6DB\208')]=false;
ta[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\145\207\215jOmb\173\193\240kNmQ','\216\168\185\5=\b%')]=true;
local On=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\144;*)\184;:8','\217UY]')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('w|n','\25')]((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\t\27.\4*','Oi'),ta)
On[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\166\205\143\193','\245\164')]=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)(')\t\21 N','|M')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('*!3','D')](1076913444-1076913443,-0/-958172316,-819070642- -819070643,-898509859+898509859)
On[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('G0\189\232m_\178\255\147\147\236w0\176\240zL\175\239\147\148\193','\5Q\222\131\n-\221\138\253\247\184')]=374421233/374421233;
local Ri=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('E\140\134\158m\140\150\143','\f\226\245\234')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\131\136\154','\237')]((function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\202\180\237\171\233','\140\198'),On)
Ri[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\198\237\239\225','\149\132')]=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('MCqj*','\24\a')][(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('8\51!','V')](1655504974/1655504974,-794044971- -794044971,1000425697-1000425696,0*974416738)
Ri[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe
end)('\217\245\17@V\150\16c\245\240\49D]\139\r%','\155\148r+1\228\127\22')]=fb[(function(Ph,u)
local fe=''
for tl=0,#Ph-1 do
fe=fe..Xl(gh(Co(Ph,tl+1),Co(u,tl%#u+1)))
end
return fe