-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain(T,1.3.4).java
7921 lines (7004 loc) · 393 KB
/
Main(T,1.3.4).java
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
package ims;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.*;
import java.net.*;
public class Main extends JFrame {
Main() {
getContentPane().setLayout(new FlowLayout());
JPanel p0 = new JPanel();
JPanel p1 = new JPanel();
JPanel p2 = new JPanel();
JLabel l6 = new JLabel("必須Forgeバージョン : ");
JLabel l7 = new JLabel("MinecraftForge1.12.2-14.23.5.2768");
l7.setForeground(Color.BLUE.darker());
l7.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
l7.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
// ラベルをクリックしたとき
try {
Desktop.getDesktop().browse(new URI("https://files.minecraftforge.net/maven/net/minecraftforge/forge/1.12.2-14.23.5.2768/forge-1.12.2-14.23.5.2768-installer.jar"));
} catch (IOException | URISyntaxException e1) {
e1.printStackTrace();
}
}
});
p0.add(l6);
p0.add(l7);
JButton jb1 = new JButton("通常ダウンロード開始");
JButton jb2 = new JButton("プログラム終了");
JButton jb3 = new JButton("IMSおすすめMod(1.12.2)のダウンロード開始");
JLabel l4 = new JLabel("©2018 - 2020 IMServer");
JLabel l5 = new JLabel("Version : 1.3.4T");
JPanel p3 = new JPanel();
JPanel p6 = new JPanel();
JPanel p4 = new JPanel();
JPanel p5 = new JPanel();
p6.add(l5);
p4.add(jb1);
p4.add(jb3);
p4.add(jb2);
p5.add(l4);
//jb1はメインDL
//jb1がクリックされたら
jb1.addActionListener(ev -> { //以下のことをする
String osname = System.getProperty("os.name");
// Windowsであったときの処理
if(osname.contains("Windows")){
String userhome = System.getProperty("user.home");
try {
URL url1 = new URL("https://media.forgecdn.net/files/2766/172/industrialcraft-2-2.8.187-ex112.jar");
//IC2ex 112
URL url2 = new URL("https://media.forgecdn.net/files/2569/56/TheCampingMod_2.4.3.jar");
//TCM
URL url3 = new URL("https://media.forgecdn.net/files/2569/880/RikMuldsCore_1.3.3.jar");
//TCM前提
URL url4 = new URL("https://media.forgecdn.net/files/2714/940/shutters-1.12.2-1.0b.jar");
//Shutters
URL url5 = new URL("https://media.forgecdn.net/files/2571/951/SpiceOfLife-mc1.12-1.3.12.jar");
//SOL
URL url6 = new URL("https://media.forgecdn.net/files/2679/415/AppleCore-mc1.12.2-3.2.0.jar");
//Applecore
URL url7 = new URL("https://mod-buildcraft.com/releases/BuildCraft/7.99.24.2/buildcraft-all-7.99.24.2.jar");
//bc
URL url8 = new URL("https://media.forgecdn.net/files/2755/790/ForgeMultipart-1.12.2-2.6.2.83-universal.jar");
//forge multipart
URL url9 = new URL("https://media.forgecdn.net/files/2735/197/MrTJPCore-1.12.2-2.1.4.43-universal.jar");
//MRTjp
URL url10 = new URL("https://media.forgecdn.net/files/2745/545/ProjectRed-1.12.2-4.9.4.120-Base.jar");
//prbase
URL url11 = new URL("https://media.forgecdn.net/files/2745/548/ProjectRed-1.12.2-4.9.4.120-integration.jar");
//prin
URL url12 = new URL("https://media.forgecdn.net/files/2745/549/ProjectRed-1.12.2-4.9.4.120-lighting.jar");
//prlig
URL url13 = new URL("https://media.forgecdn.net/files/2709/670/energyconverters_1.12.2-1.3.0.15.jar");
//EneCon
URL url14 = new URL("https://media.forgecdn.net/files/2701/842/Fureniku%27s+Roads-1.0.2.1.jar");
//Fucking Roads
URL url15 = new URL("https://media.forgecdn.net/files/2448/283/JustAFewFish-1.7_for_1.12.jar");
//JUSTsakana
URL url16 = new URL("https://media.forgecdn.net/files/2779/848/CodeChickenLib-1.12.2-3.2.3.358-universal.jar");
//コード鶏
URL url17 = new URL("https://media.forgecdn.net/files/2526/674/malisisdoors-1.12.2-7.3.0.jar");
//Door
URL url18 = new URL("https://media.forgecdn.net/files/2680/892/malisiscore-1.12.2-6.5.1.jar");
//Doorcore
URL url19 = new URL("https://media.forgecdn.net/files/2755/8/Mekanism-1.12.2-9.8.1.383.jar");
//Mekanism
URL url20 = new URL("https://media.forgecdn.net/files/2755/10/MekanismGenerators-1.12.2-9.8.1.383.jar");
//MekanismGen
URL url21 = new URL("https://media.forgecdn.net/files/2463/318/ModernLights-1.0.3_1.12.jar");
//モダン照明
URL url22 = new URL("https://media.forgecdn.net/files/2771/840/Pam%27s+HarvestCraft+1.12.2zf.jar");
//パンみたいなやつの
URL url23 = new URL("https://media.forgecdn.net/files/2749/993/furniture-6.3.1-1.12.2.jar");
//ファーwwwwww
URL url24 = new URL("https://media.forgecdn.net/files/2625/165/obfuscate-0.2.6-1.12.2.jar");
//おf
URL url25 = new URL("https://media.forgecdn.net/files/2762/988/vehicle-mod-0.41.1-1.12.2.jar");
//びーぐる
URL url26 = new URL("https://media.forgecdn.net/files/2776/707/guns-0.15.2-1.12.2.jar");
//guns
URL url27 = new URL("https://media.forgecdn.net/files/2712/805/thuttech-1.12.2-6.1.6.jar");
//nanntaraTech
URL url28 = new URL("https://media.forgecdn.net/files/2713/584/thutcore-1.12.2-5.21.0.jar");
//TechCore
URL url29 = new URL("https://ucf9638be9f64fdf46987b76d4de.dl.dropboxusercontent.com/cd/0/get/A8rN1HpDCSiABh3sQuyk5w9MrmS4rk6_u6BqcpGc-fdn7X_yH1gIKEgP8K7wtm7JuUUMepvQgB871VjhWpxAQe4dEMNs2GVG2MB7ynSwMiQkOg/file?dl=1#");
//CDM
URL url30 = new URL("https://media.forgecdn.net/files/2750/633/architecturecraft-1.12-3.98.jar");
//Archite~~~~
URL url31 = new URL("https://media.forgecdn.net/files/2528/295/VeinMiner-1.12-0.38.2.647%2Bb31535a.jar");
//ベインマイナー
URL url32 = new URL("https://media.forgecdn.net/files/2777/929/StorageDrawers-1.12.2-5.4.0.jar");
//ドロワー
URL url33 = new URL("https://media.forgecdn.net/files/2450/900/Chameleon-1.12-4.1.3.jar");
//カメレオン
URL url34 = new URL("https://media.forgecdn.net/files/2963/616/IndustrialRenewal_1.12.2-0.17.6.jar");
//renewal?
URL url35 = new URL("https://media.forgecdn.net/files/2633/646/CompactSolars-1.12.2-5.0.18.341-universal.jar");
URL url36 = new URL("https://media.forgecdn.net/files/2785/465/Forgelin-1.8.4.jar");
URL url37 = new URL("https://media.forgecdn.net/files/2580/52/tesla-core-lib-1.12.2-1.0.15.jar");
URL url38 = new URL("https://media.forgecdn.net/files/2609/759/industrialforegoing-1.12.2-1.11.2-212.jar");
URL url39 = new URL("https://media.forgecdn.net/files/2713/194/invisiblights-3.1-9.jar");
URL url40 = new URL("https://media.forgecdn.net/files/2732/851/Useful+Interior+-+0.13.1+%5b1.12.2%5d.jar");
URL url41 = new URL("https://media.forgecdn.net/files/2518/31/bdlib-1.14.3.12-mc1.12.2.jar");
URL url42 = new URL("https://media.forgecdn.net/files/2685/154/PTRLib-1.0.4.jar");
URL url43 = new URL("https://media.forgecdn.net/files/2777/813/Decocraft-2.6.3_1.12.2.jar");
URL url44 = new URL("https://media.forgecdn.net/files/2625/854/engineers_doors-1.12.2-0.8.0.jar");
URL url45 = new URL("https://media.forgecdn.net/files/2693/578/alternatingflux-0.12.2-2.jar");
URL url46 = new URL("https://media.forgecdn.net/files/2568/579/immersivetech-1.12-1.3.10.jar");
URL url47 = new URL("https://media.forgecdn.net/files/2544/919/immersivepetroleum-1.12.2-1.1.9.jar");
URL url48 = new URL("https://media.forgecdn.net/files/2676/501/ImmersiveEngineering-0.12-89.jar");
URL url49 = new URL("https://media.forgecdn.net/files/2516/219/generators-0.9.20.12-mc1.12.2.jar");
//ここは”Generators-0.0.20.12-im1.12.2.jar”。これ以降の#入り方(単純)に記載されているURLは入っていません。
//なお、Mac/Linuxの時の場合にも移されておりません。
URL url50 = new URL("");
URL url51 = new URL("");
URL url52 = new URL("");
URL url53 = new URL("");
URL url54 = new URL("");
URL url55 = new URL("");
URL url56 = new URL("");
URL url57 = new URL("");
URL url58 = new URL("");
URL url59 = new URL("");
URL url60 = new URL("");
URL url61 = new URL("");
URL url62 = new URL("");
URL url63 = new URL("");
URL url64 = new URL("");
URL url65 = new URL("");
URL url66 = new URL("");
URL url67 = new URL("");
URL url68 = new URL("");
URL url69 = new URL("");
URL url70 = new URL("");
URL url71 = new URL("");
URL url72 = new URL("");
URL url73 = new URL("");
URL url74 = new URL("");
URL url75 = new URL("");
URL url76 = new URL("");
URL url77 = new URL("");
URL url78 = new URL("");
URL url79 = new URL("");
URL url80 = new URL("");
URL url81 = new URL("");
URL url82 = new URL("");
URL url83 = new URL("");
URL url84 = new URL("");
URL url85 = new URL("");
URL url86 = new URL("");
URL url87 = new URL("");
URL url88 = new URL("");
URL url89 = new URL("");
URL url90 = new URL("");
URL url91 = new URL("");
URL url92 = new URL("");
URL url93 = new URL("");
URL url94 = new URL("");
URL url95 = new URL("");
URL url96 = new URL("");
HttpURLConnection con1 =
(HttpURLConnection) url1.openConnection();
con1.setAllowUserInteraction(false);
con1.setInstanceFollowRedirects(true);
con1.setRequestMethod("GET");
con1.connect();
HttpURLConnection con2 =
(HttpURLConnection) url2.openConnection();
con2.setAllowUserInteraction(false);
con2.setInstanceFollowRedirects(true);
con2.setRequestMethod("GET");
con2.connect();
HttpURLConnection con3 =
(HttpURLConnection) url3.openConnection();
con3.setAllowUserInteraction(false);
con3.setInstanceFollowRedirects(true);
con3.setRequestMethod("GET");
con3.connect();
HttpURLConnection con4 =
(HttpURLConnection) url4.openConnection();
con4.setAllowUserInteraction(false);
con4.setInstanceFollowRedirects(true);
con4.setRequestMethod("GET");
con4.connect();
HttpURLConnection con5 =
(HttpURLConnection) url5.openConnection();
con5.setAllowUserInteraction(false);
con5.setInstanceFollowRedirects(true);
con5.setRequestMethod("GET");
con5.connect();
HttpURLConnection con6 =
(HttpURLConnection) url6.openConnection();
con6.setAllowUserInteraction(false);
con6.setInstanceFollowRedirects(true);
con6.setRequestMethod("GET");
con6.connect();
HttpURLConnection con7 =
(HttpURLConnection) url7.openConnection();
con7.setAllowUserInteraction(false);
con7.setInstanceFollowRedirects(true);
con7.setRequestMethod("GET");
con7.connect();
HttpURLConnection con8 =
(HttpURLConnection) url8.openConnection();
con8.setAllowUserInteraction(false);
con8.setInstanceFollowRedirects(true);
con8.setRequestMethod("GET");
con8.connect();
HttpURLConnection con9 =
(HttpURLConnection) url9.openConnection();
con9.setAllowUserInteraction(false);
con9.setInstanceFollowRedirects(true);
con9.setRequestMethod("GET");
con9.connect();
HttpURLConnection con10 =
(HttpURLConnection) url10.openConnection();
con10.setAllowUserInteraction(false);
con10.setInstanceFollowRedirects(true);
con10.setRequestMethod("GET");
con10.connect();
HttpURLConnection con11 =
(HttpURLConnection) url11.openConnection();
con11.setAllowUserInteraction(false);
con11.setInstanceFollowRedirects(true);
con11.setRequestMethod("GET");
con11.connect();
HttpURLConnection con12 =
(HttpURLConnection) url12.openConnection();
con12.setAllowUserInteraction(false);
con12.setInstanceFollowRedirects(true);
con12.setRequestMethod("GET");
con12.connect();
HttpURLConnection con13 =
(HttpURLConnection) url13.openConnection();
con13.setAllowUserInteraction(false);
con13.setInstanceFollowRedirects(true);
con13.setRequestMethod("GET");
con13.connect();
HttpURLConnection con14 =
(HttpURLConnection) url14.openConnection();
con14.setAllowUserInteraction(false);
con14.setInstanceFollowRedirects(true);
con14.setRequestMethod("GET");
con14.connect();
HttpURLConnection con15 =
(HttpURLConnection) url15.openConnection();
con15.setAllowUserInteraction(false);
con15.setInstanceFollowRedirects(true);
con15.setRequestMethod("GET");
con15.connect();
HttpURLConnection con16 =
(HttpURLConnection) url16.openConnection();
con16.setAllowUserInteraction(false);
con16.setInstanceFollowRedirects(true);
con16.setRequestMethod("GET");
con16.connect();
HttpURLConnection con17 =
(HttpURLConnection) url17.openConnection();
con17.setAllowUserInteraction(false);
con17.setInstanceFollowRedirects(true);
con17.setRequestMethod("GET");
con17.connect();
HttpURLConnection con18 =
(HttpURLConnection) url18.openConnection();
con18.setAllowUserInteraction(false);
con18.setInstanceFollowRedirects(true);
con18.setRequestMethod("GET");
con18.connect();
HttpURLConnection con19 =
(HttpURLConnection) url19.openConnection();
con19.setAllowUserInteraction(false);
con19.setInstanceFollowRedirects(true);
con19.setRequestMethod("GET");
con19.connect();
HttpURLConnection con20 =
(HttpURLConnection) url20.openConnection();
con20.setAllowUserInteraction(false);
con20.setInstanceFollowRedirects(true);
con20.setRequestMethod("GET");
con20.connect();
HttpURLConnection con21 =
(HttpURLConnection) url21.openConnection();
con21.setAllowUserInteraction(false);
con21.setInstanceFollowRedirects(true);
con21.setRequestMethod("GET");
con21.connect();
HttpURLConnection con22 =
(HttpURLConnection) url22.openConnection();
con22.setAllowUserInteraction(false);
con22.setInstanceFollowRedirects(true);
con22.setRequestMethod("GET");
con22.connect();
HttpURLConnection con23 =
(HttpURLConnection) url23.openConnection();
con23.setAllowUserInteraction(false);
con23.setInstanceFollowRedirects(true);
con23.setRequestMethod("GET");
con23.connect();
HttpURLConnection con24 =
(HttpURLConnection) url24.openConnection();
con24.setAllowUserInteraction(false);
con24.setInstanceFollowRedirects(true);
con24.setRequestMethod("GET");
con24.connect();
HttpURLConnection con25 =
(HttpURLConnection) url25.openConnection();
con25.setAllowUserInteraction(false);
con25.setInstanceFollowRedirects(true);
con25.setRequestMethod("GET");
con25.connect();
HttpURLConnection con26 =
(HttpURLConnection) url26.openConnection();
con26.setAllowUserInteraction(false);
con26.setInstanceFollowRedirects(true);
con26.setRequestMethod("GET");
con26.connect();
HttpURLConnection con27 =
(HttpURLConnection) url27.openConnection();
con27.setAllowUserInteraction(false);
con27.setInstanceFollowRedirects(true);
con27.setRequestMethod("GET");
con27.connect();
HttpURLConnection con28 =
(HttpURLConnection) url28.openConnection();
con28.setAllowUserInteraction(false);
con28.setInstanceFollowRedirects(true);
con28.setRequestMethod("GET");
con28.connect();
HttpURLConnection con29 =
(HttpURLConnection) url29.openConnection();
con29.setAllowUserInteraction(false);
con29.setInstanceFollowRedirects(true);
con29.setRequestMethod("GET");
con29.connect();
HttpURLConnection con30 =
(HttpURLConnection) url30.openConnection();
con30.setAllowUserInteraction(false);
con30.setInstanceFollowRedirects(true);
con30.setRequestMethod("GET");
con30.connect();
HttpURLConnection con31 =
(HttpURLConnection) url31.openConnection();
con31.setAllowUserInteraction(false);
con31.setInstanceFollowRedirects(true);
con31.setRequestMethod("GET");
con31.connect();
HttpURLConnection con32 =
(HttpURLConnection) url32.openConnection();
con32.setAllowUserInteraction(false);
con32.setInstanceFollowRedirects(true);
con32.setRequestMethod("GET");
con32.connect();
HttpURLConnection con33 =
(HttpURLConnection) url33.openConnection();
con33.setAllowUserInteraction(false);
con33.setInstanceFollowRedirects(true);
con33.setRequestMethod("GET");
con33.connect();
HttpURLConnection con34 =
(HttpURLConnection) url34.openConnection();
con34.setAllowUserInteraction(false);
con34.setInstanceFollowRedirects(true);
con34.setRequestMethod("GET");
con34.connect();
HttpURLConnection con35 =
(HttpURLConnection) url35.openConnection();
con35.setAllowUserInteraction(false);
con35.setInstanceFollowRedirects(true);
con35.setRequestMethod("GET");
con35.connect();
HttpURLConnection con36 =
(HttpURLConnection) url36.openConnection();
con36.setAllowUserInteraction(false);
con36.setInstanceFollowRedirects(true);
con36.setRequestMethod("GET");
con36.connect();
HttpURLConnection con37 =
(HttpURLConnection) url37.openConnection();
con37.setAllowUserInteraction(false);
con37.setInstanceFollowRedirects(true);
con37.setRequestMethod("GET");
con37.connect();
HttpURLConnection con38 =
(HttpURLConnection) url38.openConnection();
con38.setAllowUserInteraction(false);
con38.setInstanceFollowRedirects(true);
con38.setRequestMethod("GET");
con38.connect();
HttpURLConnection con39 =
(HttpURLConnection) url39.openConnection();
con39.setAllowUserInteraction(false);
con39.setInstanceFollowRedirects(true);
con39.setRequestMethod("GET");
con39.connect();
HttpURLConnection con40 =
(HttpURLConnection) url40.openConnection();
con40.setAllowUserInteraction(false);
con40.setInstanceFollowRedirects(true);
con40.setRequestMethod("GET");
con40.connect();
HttpURLConnection con41 =
(HttpURLConnection) url41.openConnection();
con41.setAllowUserInteraction(false);
con41.setInstanceFollowRedirects(true);
con41.setRequestMethod("GET");
con41.connect();
HttpURLConnection con42 =
(HttpURLConnection) url42.openConnection();
con42.setAllowUserInteraction(false);
con42.setInstanceFollowRedirects(true);
con42.setRequestMethod("GET");
con42.connect();
HttpURLConnection con43 =
(HttpURLConnection) url43.openConnection();
con43.setAllowUserInteraction(false);
con43.setInstanceFollowRedirects(true);
con43.setRequestMethod("GET");
con43.connect();
HttpURLConnection con44 =
(HttpURLConnection) url44.openConnection();
con44.setAllowUserInteraction(false);
con44.setInstanceFollowRedirects(true);
con44.setRequestMethod("GET");
con44.connect();
HttpURLConnection con45 =
(HttpURLConnection) url45.openConnection();
con45.setAllowUserInteraction(false);
con45.setInstanceFollowRedirects(true);
con45.setRequestMethod("GET");
con45.connect();
HttpURLConnection con46 =
(HttpURLConnection) url46.openConnection();
con46.setAllowUserInteraction(false);
con46.setInstanceFollowRedirects(true);
con46.setRequestMethod("GET");
con46.connect();
HttpURLConnection con47 =
(HttpURLConnection) url47.openConnection();
con47.setAllowUserInteraction(false);
con47.setInstanceFollowRedirects(true);
con47.setRequestMethod("GET");
con47.connect();
HttpURLConnection con48 =
(HttpURLConnection) url48.openConnection();
con48.setAllowUserInteraction(false);
con48.setInstanceFollowRedirects(true);
con48.setRequestMethod("GET");
con48.connect();
HttpURLConnection con49 =
(HttpURLConnection) url49.openConnection();
con49.setAllowUserInteraction(false);
con49.setInstanceFollowRedirects(true);
con49.setRequestMethod("GET");
con49.connect();
HttpURLConnection con50 =
(HttpURLConnection) url50.openConnection();
con50.setAllowUserInteraction(false);
con50.setInstanceFollowRedirects(true);
con50.setRequestMethod("GET");
con50.connect();
HttpURLConnection con51 =
(HttpURLConnection) url51.openConnection();
con51.setAllowUserInteraction(false);
con51.setInstanceFollowRedirects(true);
con51.setRequestMethod("GET");
con51.connect();
HttpURLConnection con52 =
(HttpURLConnection) url52.openConnection();
con52.setAllowUserInteraction(false);
con52.setInstanceFollowRedirects(true);
con52.setRequestMethod("GET");
con52.connect();
HttpURLConnection con53 =
(HttpURLConnection) url53.openConnection();
con53.setAllowUserInteraction(false);
con53.setInstanceFollowRedirects(true);
con53.setRequestMethod("GET");
con53.connect();
HttpURLConnection con54 =
(HttpURLConnection) url54.openConnection();
con54.setAllowUserInteraction(false);
con54.setInstanceFollowRedirects(true);
con54.setRequestMethod("GET");
con54.connect();
HttpURLConnection con55 =
(HttpURLConnection) url55.openConnection();
con55.setAllowUserInteraction(false);
con55.setInstanceFollowRedirects(true);
con55.setRequestMethod("GET");
con55.connect();
HttpURLConnection con56 =
(HttpURLConnection) url56.openConnection();
con56.setAllowUserInteraction(false);
con56.setInstanceFollowRedirects(true);
con56.setRequestMethod("GET");
con56.connect();
HttpURLConnection con57 =
(HttpURLConnection) url57.openConnection();
con57.setAllowUserInteraction(false);
con57.setInstanceFollowRedirects(true);
con57.setRequestMethod("GET");
con57.connect();
HttpURLConnection con58 =
(HttpURLConnection) url58.openConnection();
con58.setAllowUserInteraction(false);
con58.setInstanceFollowRedirects(true);
con58.setRequestMethod("GET");
con58.connect();
HttpURLConnection con59 =
(HttpURLConnection) url59.openConnection();
con59.setAllowUserInteraction(false);
con59.setInstanceFollowRedirects(true);
con59.setRequestMethod("GET");
con59.connect();
HttpURLConnection con60 =
(HttpURLConnection) url60.openConnection();
con60.setAllowUserInteraction(false);
con60.setInstanceFollowRedirects(true);
con60.setRequestMethod("GET");
con60.connect();
HttpURLConnection con61 =
(HttpURLConnection) url61.openConnection();
con61.setAllowUserInteraction(false);
con61.setInstanceFollowRedirects(true);
con61.setRequestMethod("GET");
con61.connect();
HttpURLConnection con62 =
(HttpURLConnection) url62.openConnection();
con62.setAllowUserInteraction(false);
con62.setInstanceFollowRedirects(true);
con62.setRequestMethod("GET");
con62.connect();
HttpURLConnection con63 =
(HttpURLConnection) url63.openConnection();
con63.setAllowUserInteraction(false);
con63.setInstanceFollowRedirects(true);
con63.setRequestMethod("GET");
con63.connect();
HttpURLConnection con64 =
(HttpURLConnection) url64.openConnection();
con64.setAllowUserInteraction(false);
con64.setInstanceFollowRedirects(true);
con64.setRequestMethod("GET");
con64.connect();
HttpURLConnection con65 =
(HttpURLConnection) url65.openConnection();
con65.setAllowUserInteraction(false);
con65.setInstanceFollowRedirects(true);
con65.setRequestMethod("GET");
con65.connect();
HttpURLConnection con66 =
(HttpURLConnection) url66.openConnection();
con66.setAllowUserInteraction(false);
con66.setInstanceFollowRedirects(true);
con66.setRequestMethod("GET");
con66.connect();
HttpURLConnection con67 =
(HttpURLConnection) url67.openConnection();
con67.setAllowUserInteraction(false);
con67.setInstanceFollowRedirects(true);
con67.setRequestMethod("GET");
con67.connect();
HttpURLConnection con68 =
(HttpURLConnection) url68.openConnection();
con68.setAllowUserInteraction(false);
con68.setInstanceFollowRedirects(true);
con68.setRequestMethod("GET");
con68.connect();
HttpURLConnection con69 =
(HttpURLConnection) url69.openConnection();
con69.setAllowUserInteraction(false);
con69.setInstanceFollowRedirects(true);
con69.setRequestMethod("GET");
con69.connect();
HttpURLConnection con70 =
(HttpURLConnection) url70.openConnection();
con70.setAllowUserInteraction(false);
con70.setInstanceFollowRedirects(true);
con70.setRequestMethod("GET");
con70.connect();
HttpURLConnection con71 =
(HttpURLConnection) url71.openConnection();
con71.setAllowUserInteraction(false);
con71.setInstanceFollowRedirects(true);
con71.setRequestMethod("GET");
con71.connect();
HttpURLConnection con72 =
(HttpURLConnection) url72.openConnection();
con72.setAllowUserInteraction(false);
con72.setInstanceFollowRedirects(true);
con72.setRequestMethod("GET");
con72.connect();
HttpURLConnection con73 =
(HttpURLConnection) url73.openConnection();
con73.setAllowUserInteraction(false);
con73.setInstanceFollowRedirects(true);
con73.setRequestMethod("GET");
con73.connect();
HttpURLConnection con74 =
(HttpURLConnection) url74.openConnection();
con74.setAllowUserInteraction(false);
con74.setInstanceFollowRedirects(true);
con74.setRequestMethod("GET");
con74.connect();
HttpURLConnection con75 =
(HttpURLConnection) url75.openConnection();
con75.setAllowUserInteraction(false);
con75.setInstanceFollowRedirects(true);
con75.setRequestMethod("GET");
con75.connect();
HttpURLConnection con76 =
(HttpURLConnection) url76.openConnection();
con76.setAllowUserInteraction(false);
con76.setInstanceFollowRedirects(true);
con76.setRequestMethod("GET");
con76.connect();
HttpURLConnection con77 =
(HttpURLConnection) url77.openConnection();
con77.setAllowUserInteraction(false);
con77.setInstanceFollowRedirects(true);
con77.setRequestMethod("GET");
con77.connect();
HttpURLConnection con78 =
(HttpURLConnection) url78.openConnection();
con78.setAllowUserInteraction(false);
con78.setInstanceFollowRedirects(true);
con78.setRequestMethod("GET");
con78.connect();
HttpURLConnection con79 =
(HttpURLConnection) url79.openConnection();
con79.setAllowUserInteraction(false);
con79.setInstanceFollowRedirects(true);
con79.setRequestMethod("GET");
con79.connect();
HttpURLConnection con80 =
(HttpURLConnection) url80.openConnection();
con80.setAllowUserInteraction(false);
con80.setInstanceFollowRedirects(true);
con80.setRequestMethod("GET");
con80.connect();
HttpURLConnection con81 =
(HttpURLConnection) url81.openConnection();
con81.setAllowUserInteraction(false);
con81.setInstanceFollowRedirects(true);
con81.setRequestMethod("GET");
con81.connect();
HttpURLConnection con82 =
(HttpURLConnection) url82.openConnection();
con82.setAllowUserInteraction(false);
con82.setInstanceFollowRedirects(true);
con82.setRequestMethod("GET");
con82.connect();
HttpURLConnection con83 =
(HttpURLConnection) url83.openConnection();
con83.setAllowUserInteraction(false);
con83.setInstanceFollowRedirects(true);
con83.setRequestMethod("GET");
con83.connect();
HttpURLConnection con84 =
(HttpURLConnection) url84.openConnection();
con84.setAllowUserInteraction(false);
con84.setInstanceFollowRedirects(true);
con84.setRequestMethod("GET");
con84.connect();
HttpURLConnection con85 =
(HttpURLConnection) url85.openConnection();
con85.setAllowUserInteraction(false);
con85.setInstanceFollowRedirects(true);
con85.setRequestMethod("GET");
con85.connect();
HttpURLConnection con86 =
(HttpURLConnection) url86.openConnection();
con86.setAllowUserInteraction(false);
con86.setInstanceFollowRedirects(true);
con86.setRequestMethod("GET");
con86.connect();
HttpURLConnection con87 =
(HttpURLConnection) url87.openConnection();
con87.setAllowUserInteraction(false);
con87.setInstanceFollowRedirects(true);
con87.setRequestMethod("GET");
con87.connect();
HttpURLConnection con88 =
(HttpURLConnection) url88.openConnection();
con88.setAllowUserInteraction(false);
con88.setInstanceFollowRedirects(true);
con88.setRequestMethod("GET");
con88.connect();
HttpURLConnection con89 =
(HttpURLConnection) url89.openConnection();
con89.setAllowUserInteraction(false);
con89.setInstanceFollowRedirects(true);
con89.setRequestMethod("GET");
con89.connect();
HttpURLConnection con90 =
(HttpURLConnection) url90.openConnection();
con90.setAllowUserInteraction(false);
con90.setInstanceFollowRedirects(true);
con90.setRequestMethod("GET");
con90.connect();
HttpURLConnection con91 =
(HttpURLConnection) url91.openConnection();
con91.setAllowUserInteraction(false);
con91.setInstanceFollowRedirects(true);
con91.setRequestMethod("GET");
con91.connect();
HttpURLConnection con92 =
(HttpURLConnection) url92.openConnection();
con92.setAllowUserInteraction(false);
con92.setInstanceFollowRedirects(true);
con92.setRequestMethod("GET");
con92.connect();
HttpURLConnection con93 =
(HttpURLConnection) url93.openConnection();
con93.setAllowUserInteraction(false);
con93.setInstanceFollowRedirects(true);
con93.setRequestMethod("GET");
con93.connect();
HttpURLConnection con94 =
(HttpURLConnection) url94.openConnection();
con94.setAllowUserInteraction(false);
con94.setInstanceFollowRedirects(true);
con94.setRequestMethod("GET");
con94.connect();
HttpURLConnection con95 =
(HttpURLConnection) url95.openConnection();
con95.setAllowUserInteraction(false);
con95.setInstanceFollowRedirects(true);
con95.setRequestMethod("GET");
con95.connect();
HttpURLConnection con96 =
(HttpURLConnection) url96.openConnection();
con96.setAllowUserInteraction(false);
con96.setInstanceFollowRedirects(true);
con96.setRequestMethod("GET");
con96.connect();
int http1 = con1.getResponseCode();
int http2 = con2.getResponseCode();
int http3 = con3.getResponseCode();
int http4 = con4.getResponseCode();
int http5 = con5.getResponseCode();
int http6 = con6.getResponseCode();
int http7 = con7.getResponseCode();
int http8 = con8.getResponseCode();
int http9 = con9.getResponseCode();
int http10 = con10.getResponseCode();
int http11 = con11.getResponseCode();
int http12 = con12.getResponseCode();
int http13 = con13.getResponseCode();
int http14 = con14.getResponseCode();
int http15 = con15.getResponseCode();
int http16 = con16.getResponseCode();
int http17 = con17.getResponseCode();
int http18 = con18.getResponseCode();
int http19 = con19.getResponseCode();
int http20 = con20.getResponseCode();
int http21 = con21.getResponseCode();
int http22 = con22.getResponseCode();
int http23 = con23.getResponseCode();
int http24 = con24.getResponseCode();
int http25 = con25.getResponseCode();
int http26 = con26.getResponseCode();
int http27 = con27.getResponseCode();
int http28 = con28.getResponseCode();
int http29 = con29.getResponseCode();
int http30 = con30.getResponseCode();
int http31 = con31.getResponseCode();
int http32 = con32.getResponseCode();
int http33 = con33.getResponseCode();
int http34 = con34.getResponseCode();
int http35 = con35.getResponseCode();
int http36 = con36.getResponseCode();
int http37 = con37.getResponseCode();
int http38 = con38.getResponseCode();
int http39 = con39.getResponseCode();
int http40 = con40.getResponseCode();
int http41 = con41.getResponseCode();
int http42 = con42.getResponseCode();
int http43 = con43.getResponseCode();
int http44 = con44.getResponseCode();
int http45 = con45.getResponseCode();
int http46 = con46.getResponseCode();
int http47 = con47.getResponseCode();
int http48 = con48.getResponseCode();
int http49 = con49.getResponseCode();
int http50 = con50.getResponseCode();
int http51 = con51.getResponseCode();
int http52 = con52.getResponseCode();
int http53 = con53.getResponseCode();
int http54 = con54.getResponseCode();
int http55 = con55.getResponseCode();
int http56 = con56.getResponseCode();
int http57 = con57.getResponseCode();
int http58 = con58.getResponseCode();
int http59 = con59.getResponseCode();
int http60 = con60.getResponseCode();
int http61 = con61.getResponseCode();
int http62 = con62.getResponseCode();
int http63 = con63.getResponseCode();
int http64 = con64.getResponseCode();
int http65 = con65.getResponseCode();
int http66 = con66.getResponseCode();
int http67 = con67.getResponseCode();
int http68 = con68.getResponseCode();
int http69 = con69.getResponseCode();
int http70 = con70.getResponseCode();
int http71 = con71.getResponseCode();
int http72 = con72.getResponseCode();
int http73 = con73.getResponseCode();
int http74 = con74.getResponseCode();
int http75 = con75.getResponseCode();
int http76 = con76.getResponseCode();
int http77 = con77.getResponseCode();
int http78 = con78.getResponseCode();
int http79 = con79.getResponseCode();
int http80 = con80.getResponseCode();
int http81 = con81.getResponseCode();
int http82 = con82.getResponseCode();
int http83 = con83.getResponseCode();
int http84 = con84.getResponseCode();
int http85 = con65.getResponseCode();
int http86 = con86.getResponseCode();
int http87 = con87.getResponseCode();
int http88 = con88.getResponseCode();
int http89 = con89.getResponseCode();
int http90 = con90.getResponseCode();
int http91 = con91.getResponseCode();