-
Notifications
You must be signed in to change notification settings - Fork 1
/
nohup.out
1558 lines (1558 loc) · 201 KB
/
nohup.out
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
[21:06:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker
[21:06:52] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker
[21:06:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker
[21:06:53] [main/INFO] [FML]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading
[21:06:53] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_80, running on Linux:amd64:3.16.0-0.bpo.4-amd64, installed at /usr/lib/jvm/java-7-oracle/jre
[21:06:54] [main/INFO] [FML]: [AppEng] Core Init
[21:06:54] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/INFO] [STDERR]: [codechicken.core.launch.DepLoader$DepLoadInst:checkExisting:436]: Warning: version of bspkrsCore, 6.16 is newer than request 6.15
[21:06:54] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/ERROR] [FML]: Coremod RemoteIOCorePlugin: Unable to class load the plugin dmillerw.remoteio.asm.RemoteIOCorePlugin
java.lang.ClassNotFoundException: dmillerw.remoteio.asm.RemoteIOCorePlugin
at java.net.URLClassLoader$1.run(URLClassLoader.java:366) ~[?:1.7.0_80]
at java.net.URLClassLoader$1.run(URLClassLoader.java:355) ~[?:1.7.0_80]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_80]
at java.net.URLClassLoader.findClass(URLClassLoader.java:354) ~[?:1.7.0_80]
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:117) ~[launchwrapper-1.11.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:425) ~[?:1.7.0_80]
at java.lang.ClassLoader.loadClass(ClassLoader.java:358) ~[?:1.7.0_80]
at java.lang.Class.forName0(Native Method) ~[?:1.7.0_80]
at java.lang.Class.forName(Class.java:278) ~[?:1.7.0_80]
at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:417) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:346) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:214) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.setupServer(FMLLaunchHandler.java:74) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForServerLaunch(FMLLaunchHandler.java:39) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.common.launcher.FMLServerTweaker.injectIntoClassLoader(FMLServerTweaker.java:23) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_80]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_80]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_80]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_80]
at cpw.mods.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:43) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:12) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
[21:06:54] [main/WARN] [FML]: The coremod fastcraft.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod ivorius.ivtoolkit.IvToolkitLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod chylex.java7check.JavaCheckerCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod openeye.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/WARN] [FML]: The coremod lumien.randomthings.Transformer.RTLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:06:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:06:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:06:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:06:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:06:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:56] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[21:06:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [INpurePreloader]: Attempting to detect JVM version...
[21:06:57] [main/INFO] [INpurePreloader]: Detected JVM: 1.7
[21:06:57] [main/INFO] [INpurePreloader]: Starting library configuration...
[21:06:57] [main/INFO] [INpureLogInterceptor]: System attached to FML. Now intercepting all logging calls.
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:06:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:06:59] [main/INFO] [STDOUT]: [cofh.asm.CoFHAccessTransformer:readMappingFile:40]: Adding Accesstransformer map: CoFH_at.cfg
[21:07:00] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:00] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:01] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:01] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[21:07:01] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[21:07:02] [main/INFO] [RandomThingsCore]: Found World Class: net/minecraft/world/World
[21:07:04] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer crash_handler for method a((Ljava/io/File;)Z)
[21:07:04] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
[21:07:04] [main/INFO] [RandomThingsCore]: Found Item Class: net/minecraft/item/Item
[21:07:05] [main/INFO] [RandomThingsCore]: Found Leave Class: net/minecraft/block/BlockLeavesBase
[21:07:05] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer tile_entity_load for method c((Ldh;)Laor;)
[21:07:05] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'tile_entity_construct'
[21:07:05] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'tile_entity_read'
[21:07:06] [main/INFO] [ttCore]: Transforming Class [net.minecraft.entity.projectile.EntityArrow], Method [func_70071_h_]
[21:07:06] [main/INFO] [ttCore]: Transforming net.minecraft.entity.projectile.EntityArrow Finished.
[21:07:06] [main/INFO] [ttCore]: Transforming Class [net.minecraft.item.ItemStack], Method [func_77953_t]
[21:07:06] [main/INFO] [ttCore]: Transforming net.minecraft.item.ItemStack Finished.
[21:07:06] [main/INFO] [ttCore]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
[21:07:06] [main/INFO] [ttCore]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
[21:07:06] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer entity_load for method a((Ldh;Lahb;)Lsa;)
[21:07:06] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'entity_construct'
[21:07:06] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'entity_read'
[21:07:08] [Server thread/INFO]: Starting minecraft server version 1.7.10
[21:07:08] [Server console handler/ERROR]: Exception handling console input
java.io.IOException: Bad file descriptor
at java.io.FileInputStream.readBytes(Native Method) ~[?:1.7.0_80]
at java.io.FileInputStream.read(FileInputStream.java:272) ~[?:1.7.0_80]
at java.io.BufferedInputStream.read1(BufferedInputStream.java:273) ~[?:1.7.0_80]
at java.io.BufferedInputStream.read(BufferedInputStream.java:334) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:283) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:325) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:177) ~[?:1.7.0_80]
at java.io.InputStreamReader.read(InputStreamReader.java:184) ~[?:1.7.0_80]
at java.io.BufferedReader.fill(BufferedReader.java:154) ~[?:1.7.0_80]
at java.io.BufferedReader.readLine(BufferedReader.java:317) ~[?:1.7.0_80]
at java.io.BufferedReader.readLine(BufferedReader.java:382) ~[?:1.7.0_80]
at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:97) [lv.class:?]
[21:07:08] [Server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[21:07:08] [Server thread/INFO] [FML]: MinecraftForge v10.13.4.1448 Initialized
[21:07:08] [Server thread/INFO] [FML]: Replaced 183 ore recipies
[21:07:08] [Server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[21:07:08] [Server thread/INFO] [FML]: [AppEng] Core Init
[21:07:08] [Server thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[21:07:08] [Server thread/INFO] [FML]: Searching /home/adam_braimbridge_com/minecraft/mods for mods
[21:07:08] [Server thread/INFO] [FML]: Also searching /home/adam_braimbridge_com/minecraft/mods/1.7.10 for mods
[21:07:09] [Server thread/INFO] [AppleCore]: Mod AppleCore is missing the required element 'name'. Substituting AppleCore
[21:07:09] [Server thread/INFO] [asietweaks]: Mod asietweaks is missing the required element 'name'. Substituting asietweaks
[21:07:09] [Server thread/INFO] [FML]: Attempting to reparse the mod container BIGTREES-172B-FORGE1060.jar
[21:07:09] [Server thread/WARN] [ChickenChunks]: Mod ChickenChunks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.3.4.19
[21:07:10] [Server thread/INFO] [debug]: Mod debug is missing the required element 'name'. Substituting debug
[21:07:10] [Server thread/WARN] [debug]: Mod debug is missing the required element 'version' and no fallback can be found. Substituting '1.0'.
[21:07:10] [Server thread/WARN] [EnderStorage]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.36
[21:07:12] [Server thread/WARN] [neiintegration]: Mod neiintegration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9
[21:07:12] [Server thread/WARN] [ProjRed|Core]: Mod ProjRed|Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Compatibility]: Mod ProjRed|Compatibility is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Integration]: Mod ProjRed|Integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Transmission]: Mod ProjRed|Transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Illumination]: Mod ProjRed|Illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Expansion]: Mod ProjRed|Expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Transportation]: Mod ProjRed|Transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ProjRed|Exploration]: Mod ProjRed|Exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:07:12] [Server thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:07:12] [Server thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:07:12] [Server thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:07:12] [Server thread/WARN] [MrTJPCoreMod]: Mod MrTJPCoreMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.8.16
[21:07:12] [Server thread/INFO] [FML]: Forge Mod Loader has identified 123 mods to load
[21:07:12] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.transmitters (owned by Mekanism) without associated API reference
[21:07:12] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api (owned by Mekanism) without associated API reference
[21:07:12] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.gas (owned by Mekanism) without associated API reference
[21:07:14] [Server thread/INFO] [FML]: FML has found a non-mod file COFHLIB-[1.7.10]1.0.2-160.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:07:14] [Server thread/INFO] [FML]: FML has found a non-mod file INDUSTRIALCRAFT-2-2.2.736-EXPERIMENTAL-API.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:07:14] [Server thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-universal.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:07:14] [Server thread/INFO] [FML]: FML has found a non-mod file commons-codec-1.9.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:07:14] [Server thread/INFO] [FML]: FML has found a non-mod file commons-compress-1.8.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:07:14] [Server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, ivtoolkit, NotEnoughItems, OpenEye, OpenModsCore, <CoFH ASM>, Treecapitator, ae2stuff, AncientWarfareAutomation, AncientWarfare, AncientWarfareNEIPlugin, AncientWarfareNpc, AncientWarfareStructure, aobd, AppleCore, appliedenergistics2, asielib, asietweaks, Backpack, bdlib, bigtrees, BiomesOPlenty, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Silicon, BuildCraft|Robotics, BuildCraft|Core, BuildCraft|Compat, bcadditions, CarpentersBlocks, ChickenChunks, CoFHCore, ComputerCraft, CosmeticArmor, debug, denseores, Enchiridion, Enchiridion2, endercompass, EnderIO, EnderStorage, EnderZoo, enhancedportals, eureka, extracells, FastCraft, FloodLights, Forestry, guideapi, inpure|core, iridiummod, IronChest, JABBA, LogisticsPipes, LunatriusCore, Mantle, Mekanism, MekanismGenerators, MekanismTools, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, modtweaker2, Natura, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, RandomThings, reccomplex, StevesCarts, StevesWorkshop, ThermalExpansion, ThermalFoundation, ttCore, Waila, WailaHarvestability, wailaplugins, wawla, bspkrsCore, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at CLIENT
[21:07:14] [Server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, ivtoolkit, NotEnoughItems, OpenEye, OpenModsCore, <CoFH ASM>, Treecapitator, ae2stuff, AncientWarfareAutomation, AncientWarfare, AncientWarfareNEIPlugin, AncientWarfareNpc, AncientWarfareStructure, aobd, AppleCore, appliedenergistics2, asielib, asietweaks, Backpack, bdlib, bigtrees, BiomesOPlenty, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Silicon, BuildCraft|Robotics, BuildCraft|Core, BuildCraft|Compat, bcadditions, CarpentersBlocks, ChickenChunks, CoFHCore, ComputerCraft, CosmeticArmor, debug, denseores, Enchiridion, Enchiridion2, endercompass, EnderIO, EnderStorage, EnderZoo, enhancedportals, eureka, extracells, FastCraft, FloodLights, Forestry, guideapi, inpure|core, iridiummod, IronChest, JABBA, LogisticsPipes, LunatriusCore, Mantle, Mekanism, MekanismGenerators, MekanismTools, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, modtweaker2, Natura, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, RandomThings, reccomplex, StevesCarts, StevesWorkshop, ThermalExpansion, ThermalFoundation, ttCore, Waila, WailaHarvestability, wailaplugins, wawla, bspkrsCore, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at SERVER
[21:07:15] [OpenEye mod meta collector/INFO] [OpenEye]: openeye.logic.ModMetaCollector.<init>(ModMetaCollector.java:193): Starting mod metadatadata collection
[21:07:17] [OpenEye mod meta collector/INFO] [OpenEye]: openeye.logic.ModMetaCollector.<init>(ModMetaCollector.java:204): Collection of mod metadata finished. Duration: 2121.5381 ms
[21:07:18] [Server thread/ERROR] [Backpack]: The mod Backpack is expecting signature @FINGERPRINT@ for source BACKPACK-2.0.1-1.7.X.jar, however there is no signature matching that description
[21:07:18] [Server thread/INFO] [ttCore]: Transforming Class [net.minecraft.inventory.ContainerRepair], Method [func_82848_d]
[21:07:18] [Server thread/INFO] [ttCore]: Transforming net.minecraft.inventory.ContainerRepair Finished.
[21:07:51] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker
[21:07:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker
[21:07:51] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker
[21:07:51] [main/INFO] [FML]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading
[21:07:51] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_80, running on Linux:amd64:3.16.0-0.bpo.4-amd64, installed at /usr/lib/jvm/java-7-oracle/jre
[21:07:53] [main/INFO] [FML]: [AppEng] Core Init
[21:07:53] [main/WARN] [FML]: The coremod codechicken.core.launch.CodeChickenCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/INFO] [STDERR]: [codechicken.core.launch.DepLoader$DepLoadInst:checkExisting:436]: Warning: version of bspkrsCore, 6.16 is newer than request 6.15
[21:07:53] [main/WARN] [FML]: The coremod cofh.asm.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/ERROR] [FML]: Coremod RemoteIOCorePlugin: Unable to class load the plugin dmillerw.remoteio.asm.RemoteIOCorePlugin
java.lang.ClassNotFoundException: dmillerw.remoteio.asm.RemoteIOCorePlugin
at java.net.URLClassLoader$1.run(URLClassLoader.java:366) ~[?:1.7.0_80]
at java.net.URLClassLoader$1.run(URLClassLoader.java:355) ~[?:1.7.0_80]
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_80]
at java.net.URLClassLoader.findClass(URLClassLoader.java:354) ~[?:1.7.0_80]
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:117) ~[launchwrapper-1.11.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:425) ~[?:1.7.0_80]
at java.lang.ClassLoader.loadClass(ClassLoader.java:358) ~[?:1.7.0_80]
at java.lang.Class.forName0(Native Method) ~[?:1.7.0_80]
at java.lang.Class.forName(Class.java:278) ~[?:1.7.0_80]
at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:417) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:346) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:214) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.setupServer(FMLLaunchHandler.java:74) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForServerLaunch(FMLLaunchHandler.java:39) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.common.launcher.FMLServerTweaker.injectIntoClassLoader(FMLServerTweaker.java:23) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_80]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_80]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_80]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_80]
at cpw.mods.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:43) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
at cpw.mods.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:12) [forge-1.7.10-10.13.4.1448-1.7.10-universal.jar:?]
[21:07:53] [main/WARN] [FML]: The coremod fastcraft.LoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod ivorius.ivtoolkit.IvToolkitLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod chylex.java7check.JavaCheckerCoremod does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod logisticspipes.asm.LogisticsPipesCoreLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod mekanism.common.asm.LoadingHook does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod mrtjp.core.handler.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod codechicken.nei.asm.NEICorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod openblocks.OpenBlocksCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod openeye.CorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod openmods.core.OpenModsCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/WARN] [FML]: The coremod lumien.randomthings.Transformer.RTLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:07:53] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:53] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[21:07:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:53] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [INpurePreloader]: Attempting to detect JVM version...
[21:07:55] [main/INFO] [INpurePreloader]: Detected JVM: 1.7
[21:07:55] [main/INFO] [INpurePreloader]: Starting library configuration...
[21:07:55] [main/INFO] [INpureLogInterceptor]: System attached to FML. Now intercepting all logging calls.
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:56] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:57] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:58] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:58] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:58] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:58] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[21:07:58] [main/INFO] [STDOUT]: [cofh.asm.CoFHAccessTransformer:readMappingFile:40]: Adding Accesstransformer map: CoFH_at.cfg
[21:07:58] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[21:07:59] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[21:07:59] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[21:08:00] [main/INFO] [RandomThingsCore]: Found World Class: net/minecraft/world/World
[21:08:01] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer crash_handler for method a((Ljava/io/File;)Z)
[21:08:01] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
[21:08:02] [main/INFO] [RandomThingsCore]: Found Item Class: net/minecraft/item/Item
[21:08:02] [main/INFO] [RandomThingsCore]: Found Leave Class: net/minecraft/block/BlockLeavesBase
[21:08:02] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer tile_entity_load for method c((Ldh;)Laor;)
[21:08:02] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'tile_entity_construct'
[21:08:02] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'tile_entity_read'
[21:08:04] [main/INFO] [ttCore]: Transforming Class [net.minecraft.entity.projectile.EntityArrow], Method [func_70071_h_]
[21:08:04] [main/INFO] [ttCore]: Transforming net.minecraft.entity.projectile.EntityArrow Finished.
[21:08:04] [main/INFO] [ttCore]: Transforming Class [net.minecraft.item.ItemStack], Method [func_77953_t]
[21:08:04] [main/INFO] [ttCore]: Transforming net.minecraft.item.ItemStack Finished.
[21:08:04] [main/INFO] [ttCore]: Transforming Class [net.minecraft.inventory.ContainerFurnace], Method [func_82846_b]
[21:08:04] [main/INFO] [ttCore]: Transforming net.minecraft.inventory.ContainerFurnace Finished.
[21:08:04] [main/INFO] [OpenEye]: openeye.asm.SingleClassTransformer.visitMethod(SingleClassTransformer.java:26): Applying method transformer entity_load for method a((Ldh;Lahb;)Lsa;)
[21:08:04] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'entity_construct'
[21:08:04] [main/INFO] [OpenEye]: openeye.asm.injectors.ExceptionHandlerInjector.addHandler(ExceptionHandlerInjector.java:63): Adding handler for 'entity_read'
[21:08:05] [Server thread/INFO]: Starting minecraft server version 1.7.10
[21:08:05] [Server console handler/ERROR]: Exception handling console input
java.io.IOException: Bad file descriptor
at java.io.FileInputStream.readBytes(Native Method) ~[?:1.7.0_80]
at java.io.FileInputStream.read(FileInputStream.java:272) ~[?:1.7.0_80]
at java.io.BufferedInputStream.read1(BufferedInputStream.java:273) ~[?:1.7.0_80]
at java.io.BufferedInputStream.read(BufferedInputStream.java:334) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:283) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:325) ~[?:1.7.0_80]
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:177) ~[?:1.7.0_80]
at java.io.InputStreamReader.read(InputStreamReader.java:184) ~[?:1.7.0_80]
at java.io.BufferedReader.fill(BufferedReader.java:154) ~[?:1.7.0_80]
at java.io.BufferedReader.readLine(BufferedReader.java:317) ~[?:1.7.0_80]
at java.io.BufferedReader.readLine(BufferedReader.java:382) ~[?:1.7.0_80]
at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:97) [lv.class:?]
[21:08:05] [Server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[21:08:05] [Server thread/INFO] [FML]: MinecraftForge v10.13.4.1448 Initialized
[21:08:05] [Server thread/INFO] [FML]: Replaced 183 ore recipies
[21:08:05] [Server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[21:08:05] [Server thread/INFO] [FML]: [AppEng] Core Init
[21:08:06] [Server thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[21:08:06] [Server thread/INFO] [FML]: Searching /home/adam_braimbridge_com/minecraft/mods for mods
[21:08:06] [Server thread/INFO] [FML]: Also searching /home/adam_braimbridge_com/minecraft/mods/1.7.10 for mods
[21:08:06] [Server thread/INFO] [AppleCore]: Mod AppleCore is missing the required element 'name'. Substituting AppleCore
[21:08:06] [Server thread/INFO] [asietweaks]: Mod asietweaks is missing the required element 'name'. Substituting asietweaks
[21:08:06] [Server thread/INFO] [FML]: Attempting to reparse the mod container BIGTREES-172B-FORGE1060.jar
[21:08:07] [Server thread/WARN] [ChickenChunks]: Mod ChickenChunks is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.3.4.19
[21:08:07] [Server thread/INFO] [debug]: Mod debug is missing the required element 'name'. Substituting debug
[21:08:07] [Server thread/WARN] [debug]: Mod debug is missing the required element 'version' and no fallback can be found. Substituting '1.0'.
[21:08:08] [Server thread/WARN] [EnderStorage]: Mod EnderStorage is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.4.7.36
[21:08:09] [Server thread/WARN] [neiintegration]: Mod neiintegration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.9
[21:08:09] [Server thread/WARN] [ProjRed|Core]: Mod ProjRed|Core is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Compatibility]: Mod ProjRed|Compatibility is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Integration]: Mod ProjRed|Integration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Transmission]: Mod ProjRed|Transmission is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Illumination]: Mod ProjRed|Illumination is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Expansion]: Mod ProjRed|Expansion is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Transportation]: Mod ProjRed|Transportation is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:09] [Server thread/WARN] [ProjRed|Exploration]: Mod ProjRed|Exploration is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 4.6.2.82
[21:08:10] [Server thread/WARN] [ForgeMicroblock]: Mod ForgeMicroblock is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:08:10] [Server thread/WARN] [ForgeMultipart]: Mod ForgeMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:08:10] [Server thread/WARN] [McMultipart]: Mod McMultipart is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.2.0.344
[21:08:10] [Server thread/WARN] [MrTJPCoreMod]: Mod MrTJPCoreMod is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.0.8.16
[21:08:10] [Server thread/INFO] [FML]: Forge Mod Loader has identified 123 mods to load
[21:08:10] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.transmitters (owned by Mekanism) without associated API reference
[21:08:10] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api (owned by Mekanism) without associated API reference
[21:08:10] [Server thread/INFO] [FML]: Found mod(s) [EnderIO] containing declared API package mekanism.api.gas (owned by Mekanism) without associated API reference
[21:08:11] [Server thread/INFO] [FML]: FML has found a non-mod file COFHLIB-[1.7.10]1.0.2-160.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:08:11] [Server thread/INFO] [FML]: FML has found a non-mod file INDUSTRIALCRAFT-2-2.2.736-EXPERIMENTAL-API.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:08:11] [Server thread/INFO] [FML]: FML has found a non-mod file CodeChickenLib-1.7.10-1.1.3.138-universal.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:08:11] [Server thread/INFO] [FML]: FML has found a non-mod file commons-codec-1.9.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:08:11] [Server thread/INFO] [FML]: FML has found a non-mod file commons-compress-1.8.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[21:08:12] [Server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, ivtoolkit, NotEnoughItems, OpenEye, OpenModsCore, <CoFH ASM>, Treecapitator, ae2stuff, AncientWarfareAutomation, AncientWarfare, AncientWarfareNEIPlugin, AncientWarfareNpc, AncientWarfareStructure, aobd, AppleCore, appliedenergistics2, asielib, asietweaks, Backpack, bdlib, bigtrees, BiomesOPlenty, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Silicon, BuildCraft|Robotics, BuildCraft|Core, BuildCraft|Compat, bcadditions, CarpentersBlocks, ChickenChunks, CoFHCore, ComputerCraft, CosmeticArmor, debug, denseores, Enchiridion, Enchiridion2, endercompass, EnderIO, EnderStorage, EnderZoo, enhancedportals, eureka, extracells, FastCraft, FloodLights, Forestry, guideapi, inpure|core, iridiummod, IronChest, JABBA, LogisticsPipes, LunatriusCore, Mantle, Mekanism, MekanismGenerators, MekanismTools, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, modtweaker2, Natura, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, RandomThings, reccomplex, StevesCarts, StevesWorkshop, ThermalExpansion, ThermalFoundation, ttCore, Waila, WailaHarvestability, wailaplugins, wawla, bspkrsCore, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at CLIENT
[21:08:12] [Server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, CodeChickenCore, ivtoolkit, NotEnoughItems, OpenEye, OpenModsCore, <CoFH ASM>, Treecapitator, ae2stuff, AncientWarfareAutomation, AncientWarfare, AncientWarfareNEIPlugin, AncientWarfareNpc, AncientWarfareStructure, aobd, AppleCore, appliedenergistics2, asielib, asietweaks, Backpack, bdlib, bigtrees, BiomesOPlenty, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Silicon, BuildCraft|Robotics, BuildCraft|Core, BuildCraft|Compat, bcadditions, CarpentersBlocks, ChickenChunks, CoFHCore, ComputerCraft, CosmeticArmor, debug, denseores, Enchiridion, Enchiridion2, endercompass, EnderIO, EnderStorage, EnderZoo, enhancedportals, eureka, extracells, FastCraft, FloodLights, Forestry, guideapi, inpure|core, iridiummod, IronChest, JABBA, LogisticsPipes, LunatriusCore, Mantle, Mekanism, MekanismGenerators, MekanismTools, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, modtweaker2, Natura, NEIAddons, NEIAddons|AppEng, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NetherOres, OpenBlocks, OpenMods, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Expansion, ProjRed|Transportation, ProjRed|Exploration, RandomThings, reccomplex, StevesCarts, StevesWorkshop, ThermalExpansion, ThermalFoundation, ttCore, Waila, WailaHarvestability, wailaplugins, wawla, bspkrsCore, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, libsandstone, MrTJPCoreMod] at SERVER
[21:08:12] [OpenEye mod meta collector/INFO] [OpenEye]: openeye.logic.ModMetaCollector.<init>(ModMetaCollector.java:193): Starting mod metadatadata collection
[21:08:14] [OpenEye mod meta collector/INFO] [OpenEye]: openeye.logic.ModMetaCollector.<init>(ModMetaCollector.java:204): Collection of mod metadata finished. Duration: 1900.5824 ms
[21:08:15] [Server thread/ERROR] [Backpack]: The mod Backpack is expecting signature @FINGERPRINT@ for source BACKPACK-2.0.1-1.7.X.jar, however there is no signature matching that description
[21:08:15] [Server thread/INFO] [ttCore]: Transforming Class [net.minecraft.inventory.ContainerRepair], Method [func_82848_d]
[21:08:15] [Server thread/INFO] [ttCore]: Transforming net.minecraft.inventory.ContainerRepair Finished.
[21:08:19] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
[21:08:20] [Server thread/INFO] [FML]: Found 413 ObjectHolder annotations
[21:08:20] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
[21:08:20] [Server thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[21:08:20] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[21:08:20] [Server thread/INFO] [Treecapitator]: Loading configuration file /home/adam_braimbridge_com/minecraft/config/Treecapitator.cfg
[21:08:20] [Server thread/INFO] [Treecapitator]: Proceeding to load tree/mod configs from file.
[21:08:20] [Server thread/INFO] [AE2:S]: Pre Initialization ( started )
[21:08:20] [Server thread/INFO] [AE2-CORE]: func_145839_a(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed
[21:08:20] [Server thread/INFO] [AE2-CORE]: func_145841_b(Lnet/minecraft/nbt/NBTTagCompound;)V - Transformed
[21:08:20] [Server thread/INFO] [AE2-CORE]: Removing Interface ic2.api.energy.tile.IEnergySink from appeng/tile/powersink/IC2 because IC2 integration is disabled.
[21:08:20] [Server thread/INFO] [AE2-CORE]: Updated appeng/tile/powersink/IC2
[21:08:20] [Server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Power.AdvancedShaftPowerReceiver from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[21:08:20] [Server thread/INFO] [AE2-CORE]: Removing Interface Reika.RotaryCraft.API.Interfaces.Transducerable from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[21:08:20] [Server thread/INFO] [AE2-CORE]: Removing Method Tick_RotaryCraft from appeng/tile/powersink/RotaryCraft because RotaryCraft integration is disabled.
[21:08:20] [Server thread/INFO] [AE2-CORE]: Updated appeng/tile/powersink/RotaryCraft
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/tile/powersink/RedstoneFlux because RF integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface mekanism.api.energy.IStrictEnergyAcceptor from appeng/tile/powersink/MekJoules because Mekanism integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection from appeng/block/networking/BlockCableBus because MFR integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Method getConnectionType from appeng/block/networking/BlockCableBus because MFR integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/quartz/ToolQuartzWrench because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Removing Interface ic2.api.item.ISpecialElectricItem from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Removing Interface ic2.api.item.IElectricItemManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Removing Method getManager from appeng/items/tools/powered/powersink/IC2 because IC2 integration is disabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Updated appeng/items/tools/powered/powersink/IC2
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyContainerItem from appeng/items/tools/powered/powersink/RedstoneFlux because RFItem integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.tools.IToolWrench from appeng/items/tools/ToolNetworkTool because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/misc/PartStorageBus because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface buildcraft.api.transport.IPipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Method overridePipeConnection from appeng/parts/p2p/PartP2PItems because BC integration is enabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Removing Interface ic2.api.energy.tile.IEnergySink from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is disabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Removing Interface ic2.api.energy.tile.IEnergySource from appeng/parts/p2p/PartP2PIC2Power because IC2 integration is disabled.
[21:08:21] [Server thread/INFO] [AE2-CORE]: Updated appeng/parts/p2p/PartP2PIC2Power
[21:08:21] [Server thread/INFO] [AE2-CORE]: Allowing Interface cofh.api.energy.IEnergyReceiver from appeng/parts/p2p/PartP2PRFPower because RF integration is enabled.
[21:08:21] [Server thread/INFO] [AE2:S]: Starting AE2 VersionChecker
[21:08:21] [Server thread/INFO] [AE2:S]: Pre Initialization ( ended after 1003ms )
[21:08:21] [Server thread/INFO] [bdlib]: bdlib 1.8.2.92 loaded
Exception in thread "AE2 VersionChecker" [21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: Raw channel stable did not contain any of the pre-programmed types.
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.version.VersionParser.parseChannel(VersionParser.java:117)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.version.VersionParser.parseVersion(VersionParser.java:72)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.version.VersionParser.parse(VersionParser.java:34)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.version.ModVersionFetcher.get(ModVersionFetcher.java:34)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.VersionChecker.processInterval(VersionChecker.java:106)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at appeng.services.VersionChecker.run(VersionChecker.java:86)
[21:08:21] [AE2 VersionChecker/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.Thread.run(Thread.java:745)
[21:08:21] [Server thread/INFO] [bdlib]: Initialized network channel 'bdew.multiblock' for mod 'bdlib'
[21:08:21] [Server thread/INFO] [bdlib]: Loading internal config files for mod AE2 Stuff
[21:08:21] [Server thread/INFO] [bdlib]: Loading config: jar:file:/home/adam_braimbridge_com/minecraft/mods/AE2STUFF-0.4.0.38-MC1.7.10.jar!/assets/ae2stuff/config/tuning.cfg
[21:08:22] [Server thread/INFO] [bdlib]: Loading config: jar:file:/home/adam_braimbridge_com/minecraft/mods/AE2STUFF-0.4.0.38-MC1.7.10.jar!/assets/ae2stuff/config/recipes.cfg
[21:08:22] [Server thread/INFO] [bdlib]: Loading user config files for mod AE2 Stuff
[21:08:22] [Server thread/INFO] [bdlib]: Config loading for mod AE2 Stuff finished
[21:08:22] [Server thread/INFO] [bdlib]: Loaded creative tabs for ae2stuff
[21:08:22] [Server thread/INFO] [CoFHWorld]: Registering Default Templates.
[21:08:22] [Server thread/INFO] [CoFHWorld]: Registering default generators
[21:08:22] [Server thread/INFO] [CoFHWorld]: Complete
[21:08:23] [Server thread/INFO] [BuildCraft]: Starting BuildCraft 7.0.12
[21:08:23] [Server thread/INFO] [BuildCraft]: Copyright (c) SpaceToad, 2011-2015
[21:08:23] [Server thread/INFO] [BuildCraft]: http://www.mod-buildcraft.com
[21:08:23] [Thread-12/INFO] [BuildCraft]: Beginning version check
[21:08:23] [Server thread/INFO] [AncientWarfare]: Detecting BuildCraft|Core is loaded, enabling BC Compatibility
[21:08:23] [Server thread/INFO] [AncientWarfare]: Detecting CoFHCore is loaded, enabling RF Compatibility
[21:08:23] [Server thread/INFO] [AncientWarfare]: RF Compatability loaded successfully
[21:08:23] [Thread-12/WARN] [BuildCraft]: Using outdated version [7.0.12] for Minecraft 1.7.10. Consider updating to 7.0.20.
[21:08:24] [CoFHUpdater:CoFHCore/INFO] [CoFHCore]: An updated version of CoFH Core is available: CoFH Core 3.0.3 for Minecraft 1.7.10.
[21:08:24] [Server thread/INFO] [Mantle]: Mantle (1.7.10-0.3.2.jenkins184) -- Preparing for launch.
[21:08:24] [Server thread/INFO] [Mantle]: Entering preinitialization phase.
[21:08:24] [Server thread/INFO] [Mantle]: Loading configuration from disk.
[21:08:24] [Server thread/INFO] [Mantle]: Configuration load completed.
[21:08:25] [Server thread/INFO] [PulseManager-Natura]: Skipping Pulse Natura Thaumcraft Compatibility; missing dependency: Thaumcraft
[21:08:25] [Server thread/INFO] [FML]: [BiomesOPlenty] Extending Potions Array.
[21:08:26] [Server thread/INFO] [ttCore]: Transforming Class [net.minecraft.world.WorldType], Method [func_76564_j]
[21:08:26] [Server thread/INFO] [ttCore]: Transforming net.minecraft.world.WorldType Finished.
[21:08:26] [Server thread/INFO] [Forestry]: Module BuildCraft 6 Recipes Plugin failed to load: Compatible BuildCraftAPI|recipes version not found
[21:08:26] [Server thread/INFO] [Forestry]: Module BuildCraft 6 Transport Plugin failed to load: BuildCraft|Transport not found
[21:08:26] [Server thread/INFO] [Forestry]: Module Pipes Plugin failed to load: BuildCraft|Transport not found
[21:08:26] [Server thread/INFO] [Forestry]: Module Chisel Plugin failed to load: Chisel not found
[21:08:26] [Server thread/INFO] [Forestry]: Module ExtraUtilities Plugin failed to load: ExtraUtilities not found
[21:08:26] [Server thread/INFO] [Forestry]: Module Equivalent Exchange 2 Plugin failed to load: Equivalent Exchange not found
[21:08:26] [Server thread/INFO] [Forestry]: Module FarmCraftory Plugin failed to load: FarmCraftory not found
[21:08:26] [Server thread/INFO] [Forestry]: Module IndustrialCraft2 Plugin failed to load: IndustrialCraft2 not found
[21:08:26] [Server thread/INFO] [Forestry]: Module HarvestCraft Plugin failed to load: HarvestCraft not found
[21:08:26] [Server thread/INFO] [Forestry]: Module MagicalCrops Plugin failed to load: Magical Crops not found
[21:08:26] [Server thread/INFO] [Forestry]: Module PlantMegaPack Plugin failed to load: Plant Mega Pack not found
[21:08:28] [Server thread/INFO] [STDOUT]: [karob.bigtrees.KGetOptions:setFile:35]: Loading BigTrees options file '/home/adam_braimbridge_com/minecraft/config/bigtrees/kbigtrees.txt'.
[21:08:28] [Server thread/INFO] [STDOUT]: [karob.bigtrees.KGetOptions:setFile:37]: Picking cherries.
[21:08:28] [Server thread/INFO] [BuildCraft Additions]: CompatModule 'Buildcraft' activated.
[21:08:28] [Server thread/INFO] [BuildCraft Additions]: CompatModule 'Eureka' activated.
[21:08:28] [Server thread/ERROR] [BuildCraft Additions]: CompatModule 'Framez' is missing a dependency: 'framez'! This module will not be loaded.
[21:08:28] [Server thread/INFO] [BuildCraft Additions]: CompatModule 'Metals' activated.
[21:08:28] [Server thread/INFO] [BuildCraft Additions]: CompatModule 'MineTweaker' activated.
[21:08:28] [Server thread/ERROR] [BuildCraft Additions]: CompatModule 'Railcraft' is missing a dependency: 'Railcraft'! This module will not be loaded.
[21:08:28] [Server thread/INFO] [BuildCraft Additions]: CompatModule 'Waila' activated.
[21:08:29] [Thread-13/INFO] [BuildCraft Additions]: Trying to get the special list file...
[21:08:29] [Thread-13/INFO] [BuildCraft Additions]: Successfully downloaded and read the special list file!
[21:08:29] [Server thread/INFO] [CarpentersBlocks]: Designs found: Bed(6), Chisel(9), FlowerPot(18), Tile(13)
[21:08:29] [Server thread/INFO] [STDOUT]: [dmillerw.armor.core.handler.LocalizationUpdater:<init>:54]: https://api.github.com/repos/dmillerw/CosmeticArmor/contents/src/main/resources/assets/cosmeticarmor/lang/?ref=master
[21:08:29] [Server thread/INFO] [STDOUT]: [dmillerw.armor.core.handler.LocalizationUpdater:<init>:55]: https://raw.githubusercontent.com/dmillerw/CosmeticArmor/master/%s
[21:08:29] [Thread-14/INFO] [dmillerw.armor.core.handler.LocalizationUpdater]: Discovered en_US.lang. Downloading...
[21:08:30] [Thread-14/INFO] [dmillerw.armor.core.handler.LocalizationUpdater]: Discovered zh_CN.lang. Downloading...
[21:08:31] [Server thread/INFO] [EnderIO]: XP Juice regististration left to Open Blocks.
[21:08:32] [CoFHUpdater:ThermalFoundation/INFO] [ThermalFoundation]: An updated version of Thermal Foundation is available: Thermal Foundation 1.2.0 for Minecraft 1.7.10.
[21:08:32] [Server thread/INFO] [ThermalFoundation]: Loading Plugins...
[21:08:32] [Server thread/INFO] [STDOUT]: [cofh.thermalfoundation.plugins.mfr.MFRPlugin:preInit:14]: should work
[21:08:32] [Server thread/INFO] [ThermalFoundation]: Finished Loading Plugins.
[21:08:32] [CoFHUpdater:ThermalExpansion/INFO] [ThermalExpansion]: An updated version of Thermal Expansion is available: Thermal Expansion 4.0.2B3 for Minecraft 1.7.10.
[21:08:32] [Server thread/INFO] [ThermalExpansion]: Loading Plugins...
[21:08:32] [Server thread/INFO] [ThermalExpansion]: Finished Loading Plugins.
[21:08:32] [Server thread/INFO] [ThermalExpansion]: There are no crafting files present in /home/adam_braimbridge_com/minecraft/config/cofh/thermalexpansion/crafting.
[21:08:32] [Server thread/INFO] [FastCraft]: FastCraft 1.21 loaded.
[21:08:32] [Thread-15/INFO] [FastCraft]: You are using the latest suitable version.
[21:08:32] [Server thread/INFO] [inpure|core]: Constructing submodule info.inpureprojects.core.Preloader.ModulePreloader
[21:08:32] [Server thread/INFO] [inpure|core]: Constructing submodule info.inpureprojects.core.Updater.UpdateModule
[21:08:32] [Server thread/INFO] [inpure|core]: Constructing submodule info.inpureprojects.core.Scripting.ScriptExtractor
[21:08:32] [Server thread/INFO] [inpure|core]: Processing preinit event for submodule info.inpureprojects.core.Preloader.ModulePreloader
[21:08:32] [Server thread/INFO] [inpure|core]: Processing preinit event for submodule info.inpureprojects.core.Updater.UpdateModule
[21:08:32] [Server thread/INFO] [inpure|core]: Processing preinit event for submodule info.inpureprojects.core.Scripting.ScriptExtractor
[21:08:33] [Server thread/INFO] [modtweaker2]: Starting PreInitialization for modtweaker2
[21:08:33] [Server thread/INFO] [NEIAddons|AppEng]: Version check success: appliedenergistics2 required / rv2-stable-8 detected
[21:08:33] [Server thread/INFO] [NEIAddons|Botany]: Wrong side: SERVER, Botany Addon not loading
[21:08:33] [Server thread/INFO] [NEIAddons|Forestry]: Version check success: Forestry@[2.2.9.0,) required / 3.5.7.16 detected
[21:08:33] [Server thread/INFO] [NEIAddons|CraftingTables]: Wrong side: SERVER, Crafting Tables Addon not loading
[21:08:33] [Server thread/INFO] [NEIAddons|ExNihilo]: Wrong side: SERVER, Ex Nihilo Addon not loading
[21:08:33] [Server thread/INFO] [neiintegration]: Starting NEI Integration
[21:08:33] [Server thread/INFO] [neiintegration]: Loading configuration files
[21:08:33] [Server thread/WARN] [Project Red]: Failed to load PR Plugin: Treecapitator gem axe compatibility
[21:08:33] [Server thread/WARN] [Project Red]: Failed to load PR Plugin: Red Alloy Ingot recipe for Tinker's Construct
[21:08:33] [Server thread/WARN] [Project Red]: Failed to load PR Plugin: CPT Colored Lights Compat for Illumination lighting
[21:08:34] [Server thread/INFO] [ttCore]: Adding package tterrag.core to handler search.
[21:08:34] [Server thread/INFO] [ttCore]: Adding package tterrag.wailaplugins to handler search.
[21:08:34] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin AWWayofTime as its dependency was not found.
[21:08:34] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin ExtraUtilities as its dependency was not found.
[21:08:34] [Server thread/INFO] [WAILA Plugins]: Attempting to load plugin for Forestry.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Successfully loaded plugin for Forestry.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Attempting to load plugin for Forge.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Successfully loaded plugin for Forge.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Attempting to load plugin for Mekanism.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Successfully loaded plugin for Mekanism.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Attempting to load plugin for MineFactoryReloaded.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Successfully loaded plugin for MineFactoryReloaded.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin Railcraft as its dependency was not found.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin RedLogic as its dependency was not found.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin Steamcraft as its dependency was not found.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Attempting to load plugin for ThermalExpansion.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Successfully loaded plugin for ThermalExpansion.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin harvestcraft as its dependency was not found.
[21:08:35] [Server thread/INFO] [WAILA Plugins]: Skipping over plugin magicalcrops as its dependency was not found.
[21:08:35] [Server thread/INFO] [FML]: Applying holder lookups
[21:08:35] [Server thread/INFO] [FML]: Holder lookups applied
[21:08:35] [Server thread/INFO] [FML]: Injecting itemstacks
[21:08:35] [Server thread/INFO] [FML]: Itemstack injection complete
[21:08:35] [Server thread/INFO]: Loading properties
[21:08:35] [Server thread/INFO]: Default game type: SURVIVAL
[21:08:35] [Server thread/INFO]: Generating keypair
[21:08:35] [Server thread/INFO]: Starting Minecraft server on *:25565
[21:08:35] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[21:08:35] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[21:08:35] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[21:08:35] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[21:08:35] [Server thread/INFO] [bspkrsCore]: Initializing ModVersionChecker for mod bspkrsCore
[21:08:36] [Server thread/INFO] [bspkrsCore]: Initializing ModVersionChecker for mod Treecapitator
[21:08:36] [Server thread/INFO] [AE2:S]: Initialization ( started )
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.WoodenGear:0
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronNugget:0
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.GoldDust:0
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.IronDust:0
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0
[21:08:36] [Server thread/WARN] [AE2:S]: Unable to register a recipe:Unable to find item: appliedenergistics2:ItemMaterial.Silicon:0
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: OreRegistration: 14 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Shaped: 202 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Crusher: 9 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Press: 3 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Shapeless: 55 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: GrindFZ: 7 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Macerator: 8 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Inscribe: 8 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Pulverizer: 9 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Grind: 4 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: MekEnrichment: 2 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: Smelt: 2 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: HCCrusher: 9 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Recipes Loading: MekCrusher: 3 loaded.
[21:08:36] [Server thread/INFO] [AE2:S]: Initialization ( ended after 255ms )
[21:08:36] [Server thread/INFO] [bdlib]: Initialized network channel 'bdew.ae2stuff' for mod 'ae2stuff'
[21:08:36] [Server thread/INFO] [Mantle]: Entering initialization phase.
[21:08:36] [Server thread/INFO] [Natura]: Waila detected.
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module ForgeMultipart
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module Waila
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module CarpentersBlocks
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module IronChest
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module Forestry
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module MineTweaker3
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module MineFactoryReloaded
[21:08:37] [Server thread/INFO] [BuildCraft]: Loading compat module EnderIO
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 1, Name: Iron, Color multiplier: 13815497, Dust type: Metal
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 2, Name: Gold, Color multiplier: 16310039, Dust type: Metal
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 3, Name: Diamond, Color multiplier: 1305852, Dust type: Gem
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 55, Name: Emerald, Color multiplier: 45112, Dust type: Gem
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 56, Name: Coal, Color multiplier: 1776411, Dust type: Coal
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 57, Name: Charcoal, Color multiplier: 5458234, Dust type: Charcoal
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 58, Name: Obsidian, Color multiplier: 1511716, Dust type: Obsidian
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 59, Name: EnderPearl, Color multiplier: 1072721, Dust type: Ender Pearl
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 60, Name: NetherQuartz, Color multiplier: 14404799, Dust type: Nether Quartz
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added a dust: Meta: 83, Name: GildedRedMetal, Color multiplier: 16739867, Dust type: Metal
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreRedstone Output: 10xitem.redstone@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreCoal Output: 2xitem.coal@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreLapis Output: 12xitem.dyePowder@4
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreQuartz Output: 2xitem.netherquartz@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: stone Output: 1xtile.gravel@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: cobblestone Output: 1xtile.sand@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreDiamond Output: 2xitem.diamond@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreEmerald Output: 2xitem.emerald@0
[21:08:37] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: 1xitem.blazeRod@0 Output: 4xitem.blazePowder@0
[21:08:37] [Server thread/INFO] [Mekanism]: Version 8.1.5 initializing...
[21:08:38] [Server thread/INFO] [Mekanism]: Loading complete.
[21:08:38] [Server thread/INFO] [Mekanism]: Mod loaded.
[21:08:38] [Server thread/INFO] [AE2:S]: Recipes Loading: Shaped: 36 loaded.
[21:08:38] [Server thread/INFO] [AE2:S]: Recipes Loading: Shapeless: 29 loaded.
[21:08:38] [Server thread/INFO] [inpure|core]: Processing init event for submodule info.inpureprojects.core.Preloader.ModulePreloader
[21:08:38] [Server thread/INFO] [inpure|core]: Processing init event for submodule info.inpureprojects.core.Updater.UpdateModule
[21:08:38] [Server thread/INFO] [inpure|core]: Processing init event for submodule info.inpureprojects.core.Scripting.ScriptExtractor
[21:08:38] [Server thread/INFO] [Mekanism]: Loaded MekanismGenerators module.
[21:08:38] [Server thread/INFO] [Mekanism]: Loaded MekanismTools module.
[21:08:38] [Server thread/INFO] [MineFactoryReloaded]: Forestry logs null at 9.
[21:08:39] [LunatriusCore Version Check/INFO] [LunatriusCore]: LunatriusCore is up to date!
[21:08:39] [Server thread/INFO] [modtweaker2]: Starting Initialization for modtweaker2
[21:08:39] [Server thread/INFO] [NEIAddons]: Loading NEI Addons
[21:08:39] [Server thread/INFO] [NEIAddons]: Loading Applied Energistics 2 Addon...
[21:08:39] [Server thread/INFO] [NEIAddons]: Applied Energistics 2 Addon successfully loadded
[21:08:39] [Server thread/INFO] [NEIAddons]: Loading Forestry Addon...
[21:08:39] [Server thread/INFO] [NEIAddons|Forestry]: Version check success: Forestry@[2.3.0.5,) required / 3.5.7.16 detected
[21:08:39] [Server thread/INFO] [NEIAddons|Forestry]: Version check success: Forestry@[3.5.0.0,) required / 3.5.7.16 detected
[21:08:39] [Server thread/INFO] [NEIAddons]: Forestry Addon successfully loadded
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'mineshaftCorridor'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'pyramidDesertyChest'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'pyramidJungleChest'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'pyramidJungleDispenser'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'strongholdCorridor'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'strongholdLibrary'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'strongholdCrossing'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'villageBlacksmith'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'bonusChest'
[21:08:39] [Server thread/INFO] [reccomplex]: Registered inventory generator with id 'dungeonChest'
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class IModelTT, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class ClientProxy, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class BaseConfigGui, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class GuiEnhancedModList, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class GuiEventHandler, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class ClientHandler, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class DirectionalModelRenderer, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class SimpleModelRenderer, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class BlockSound, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Skipping client class RenderingUtils, we are on a dedicated server
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Registering handler ConfigHandler to busses: [FML]
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Registering handler AutoSmeltHandler to busses: [FORGE]
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Registering handler EnchantTooltipHandler to busses: [FORGE]
[21:08:39] [Server thread/INFO] [ttCore]: [Handlers] Registering handler FireworkHandler to busses: [FORGE, FML]
[21:08:40] [Server thread/INFO] [ttCore]: [Handlers] Registering handler OreDictTooltipHandler to busses: [FORGE]
[21:08:40] [Server thread/INFO] [ttCore]: [Handlers] Registering handler RightClickCropHandler to busses: [FORGE]
[21:08:40] [Server thread/INFO] [ttCore]: [Handlers] Registering handler XPBoostHandler to busses: [FORGE]
[21:08:40] [Server thread/INFO] [ttCore]: [Handlers] Registering handler Scheduler to busses: [FML]
[21:08:40] [Server thread/ERROR] [ttCore]: [Handlers] tterrag.wailaplugins.config.WPConfigGui threw an error on load, skipping...
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalStateException: java.lang.ClassNotFoundException: tterrag.wailaplugins.config.WPConfigGui
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.reflect.ClassPath$ClassInfo.load(ClassPath.java:269)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at tterrag.core.common.Handlers.register(Handlers.java:190)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at tterrag.core.TTCore.init(TTCore.java:98)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.eventbus.EventBus.post(EventBus.java:275)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.Loader.initializeMods(Loader.java:737)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:97)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:319)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:210)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: Caused by: java.lang.ClassNotFoundException: tterrag.wailaplugins.config.WPConfigGui
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.common.reflect.ClassPath$ClassInfo.load(ClassPath.java:266)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: ... 33 more
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: Caused by: java.lang.NoClassDefFoundError: tterrag/core/client/config/BaseConfigGui
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.defineClass1(Native Method)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: ... 36 more
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: Caused by: java.lang.ClassNotFoundException: tterrag.core.client.config.BaseConfigGui
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:101)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
[21:08:40] [Server thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: ... 40 more
[21:08:40] [Server thread/INFO] [ttCore]: Sending dummy event to all mods
[21:08:40] [Server thread/INFO] [EnderIO]: Updating config...
[21:08:40] [Server thread/INFO] [ttCore]: Reloading ingame configs for modid: ttCore
[21:08:40] [Server thread/INFO] [ttCore]: Reloading ingame configs for modid: wailaplugins
[21:08:40] [Server thread/INFO] [denseores]: Ph'nglui mglw'nafh, y'uln Dense Ores shugg ch'agl
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.lairBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern10 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zorgBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin9 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:grimstone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:voidstonePillar2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin14 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:tyrian as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:iron_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern8 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.agonBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_green as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern13 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name ExtraTrees:log as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:carpet_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin3 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:voidstone2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern16 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zomeBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.krypBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:technical as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zaneBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:gold_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin6 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zythBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin13 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:lavastone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:bone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:cloud as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:laboratoryblock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern5 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stone_snakestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_red as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin16 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:technical2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:bookshelf as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:fantasyblock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.mystBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:voidstonePillar as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_lime as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:birch_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jungle_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name witchery:witchlog as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.jeltBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern15 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin10 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:sandstone_scribbles as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.tankBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zestBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin5 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:fantasyblock2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:lapis_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:arcane as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:dark_oak_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:marble_pillar as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern4 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:waterstone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_yellow as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:stoneTile as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin8 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_blue as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern12 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:emerald_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.fortBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin2 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:auroraBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:obsidian_snakestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.azurBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern7 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:futura as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.reedBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:leaves as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.solsBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:concrete as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.syncBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern1 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:glowstone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:woolen_clay as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.redsBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_gray as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name witchery:witchwood as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_lightblue as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zetaBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:scorching as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:sand_snakestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zionBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.ztylBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:netherrack as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin12 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_white as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:ice_pillar as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name ExtraTrees:planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stonebricksmooth as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:diamond_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.vectBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:sandstone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin15 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zoeaBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:nether_brick as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_lightgray as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:voidstone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.glaxx as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:warningSign as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:limestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin4 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.mintBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_magenta as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:glass as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:brickCustom as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern9 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern14 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_brown as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zoneBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern3 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:holystone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:dirt as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:oak_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_purple as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:templeblock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:redstone_block as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin7 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:marble as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern11 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.crayBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.iszmBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.bittBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:spruce_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.laveBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:acacia_planks as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:obsidian as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:jackolantern6 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:mossy_templeblock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_cyan as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_orange as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:cobblestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin1 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:mossy_cobblestone as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:ice as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_pink as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.venaBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:stained_glass_black as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.korpBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zechBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.zkulBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name Ztones:tile.roenBlock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:pumpkin11 as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:factoryblock as it doesn't exist
[21:08:40] [Server thread/WARN] [ForgeMicroblock]: Unable to add micro material for block with unlocalised name chisel:hexPlating as it doesn't exist
[21:08:40] [Server thread/INFO] [Treecapitator]: Received IMC message from mod Natura.
[21:08:40] [Server thread/WARN] [Treecapitator]: Unknown tag "useShiftedItemID" found while verifying a ThirdPartyModConfig NBTTagCompound object
[21:08:40] [Server thread/WARN] [Treecapitator]: Unknown tag "trees" found while verifying a ThirdPartyModConfig NBTTagCompound object
[21:08:40] [Server thread/INFO] [Treecapitator]: Received IMC message from mod BiomesOPlenty.
[21:08:40] [Server thread/WARN] [Treecapitator]: Unknown tag "trees" found while verifying a ThirdPartyModConfig NBTTagCompound object
[21:08:40] [Server thread/INFO] [BuildCraft Additions]: Successfully added duster recipe with Input: oreIridium Output: 2xitem.aobd.dustIridium@0
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 1 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 2 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 3 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 4 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 5 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 6 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 7 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 8 recipes avaliable.
[21:08:40] [Server thread/WARN] [EnderIO]: RecipeParser: Root element not specified before element recipeGroup.
[21:08:40] [Server thread/INFO] [EnderIO]: Found 1 valid SAG Mill recipes in config.
[21:08:40] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 9 recipes avaliable.
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ EnderIO ] for method crazypants.enderio.waila.WailaCompat.load
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ EnderZoo ] for method crazypants.enderzoo.waila.WailaCompat.load
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ appliedenergistics2 ] for method appeng.integration.modules.Waila.register
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ ae2stuff ] for method net.bdew.ae2stuff.waila.WailaHandler.loadCallback
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ Natura ] for method mods.natura.plugins.waila.WailaRegistrar.wailaCallback
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ BuildCraft|Compat ] for method buildcraft.compat.waila.WailaCallback.callback
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ bcadditions ] for method buildcraftAdditions.compat.waila.BCACallbackRegister.register
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ Mekanism ] for method mekanism.common.integration.WailaDataProvider.register
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ extracells ] for method extracells.integration.waila.Waila.register
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ FloodLights ] for method de.keridos.floodlights.compatability.WailaTileHandler.callbackRegister
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ JABBA ] for method mcp.mobius.betterbarrels.BBWailaProvider.callbackRegister
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.vanillamc.AddonVanillaEntities.registerAddon
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.vanillamc.AddonVanillaTiles.registerAddon
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.generic.AddonGenericEntities.registerAddon
[21:08:40] [Server thread/INFO] [Waila]: Receiving registration request from [ wawla ] for method net.darkhax.wawla.addons.generic.AddonGenericTiles.registerAddon
[21:08:40] [Server thread/INFO] [FML]: Injecting itemstacks
[21:08:40] [Server thread/INFO] [FML]: Itemstack injection complete
[21:08:40] [Server thread/INFO] [Treecapitator]: Prioritizing User and IMC mod configs...
[21:08:40] [Server thread/INFO] [Treecapitator]: Registering items and trees...
[21:08:40] [Server thread/INFO] [Treecapitator]: Skipping Ore Dictionary processing.
[21:08:40] [Server thread/INFO] [AE2:S]: Post Initialization ( started )
[21:08:40] [Server thread/ERROR] [ForgeMultipart]: Trait already registered for net/minecraftforge/fluids/IFluidHandler
[21:08:40] [Server thread/ERROR] [ForgeMultipart]: Trait already registered for net/minecraftforge/fluids/IFluidHandler
[21:08:40] [Server thread/ERROR] [ForgeMultipart]: Trait already registered for net/minecraft/inventory/ISidedInventory
[21:08:40] [Server thread/ERROR] [ForgeMultipart]: Trait already registered for net/minecraft/inventory/ISidedInventory
[21:08:40] [Server thread/INFO] [AE2:S]: Layer: appeng/parts/layers/LayerISidedInventory_TileCableBus loaded successfully - 5294 bytes
[21:08:40] [Server thread/INFO] [AE2:S]: Layer: appeng/parts/layers/LayerIFluidHandler_TileCableBus loaded successfully - 2442 bytes
[21:08:40] [Server thread/INFO] [AE2:S]: Layer: appeng/parts/layers/LayerITileStorageMonitorable_TileCableBus loaded successfully - 1070 bytes
[21:08:40] [Server thread/INFO] [AE2:S]: Layer: appeng/parts/layers/LayerIEnergyHandler_TileCableBus loaded successfully - 1811 bytes
[21:08:40] [Server thread/INFO] [AE2:S]: Layer: appeng/parts/layers/LayerIPipeConnection_TileCableBus loaded successfully - 1352 bytes
[21:08:40] [Server thread/INFO] [AE2:S]: Industrial Craft 2 - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Rotary Craft - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Railcraft - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: BuildCraft - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: RedstoneFlux Power - Tiles - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: RedstoneFlux Power - Items - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: Mine Factory Reloaded - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: Deep Storage Unit - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: Factorization - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Forge MultiPart - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: Rotatable Blocks - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Colored Lights Core - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Waila - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: Mekanism - Integration Enable
[21:08:40] [Server thread/INFO] [AE2:S]: ImmibisMicroblocks - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: BetterStorage - Integration Disabled
[21:08:40] [Server thread/INFO] [AE2:S]: Post Initialization ( ended after 312ms )
[21:08:40] [Server thread/INFO] [BuildCraft]: BuildCraft's fake player: UUID = 77456a1f-b9f9-3f84-8863-ddef5b8e2209, name = '[BuildCraft]'!
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded NPC Module Structure Plugin
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Automation Module Structure Plugin
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [big_fortress] WorldGen: true Survival: false
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [desert_tower] WorldGen: true Survival: false
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [jungle_fortress] WorldGen: true Survival: false
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [lava_trap_new] WorldGen: true Survival: false
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [pirate_fortress] WorldGen: true Survival: false
[21:08:41] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [trading_post] WorldGen: true Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [viking_tower] WorldGen: true Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_church] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_garden_large] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_garden_small] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_house] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_house_garden] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_hut1] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_hut2] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_library] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [village_smith] WorldGen: false Survival: true
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_fountain_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_log_pile] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_outhouse_pelirow] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_pavillion_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_rubble_pile] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_stable] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [cosmetic_tree_swing_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_archer_tent] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_armory_tent] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_barracks_tent] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_barracks_tent2] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_empty_lot] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_officer_house] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [house_tinkers_house] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [lamp_post] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_barracks_pelirow] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_creeper_church_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_generals_tent] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_giant_oak] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_mayoral_manor_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_mayors_mansion] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_ranchhouse_pelirow] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_realty_office] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_tavern_pelirow] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_waterwheel_dulciphi] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [unique_windmill] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_bandit_corner] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_bandit_gate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_bandit_lgate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_bandit_rgate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_bandit_straight] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_cobble_corner] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_cobble_gate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_cobble_lgate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_cobble_rgate] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded Structure Template: [wall_cobble_straight] WorldGen: false Survival: false
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded 52 structure(s)
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loading Town Templates:
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loading town template: bandit_settlement
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loading town template: large_village
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loading town template: small_town
[21:08:42] [Server thread/INFO] [AncientWarfare]: Loaded : 3 Town Templates.
[21:08:42] [Server thread/INFO] [Mantle]: Entering postinitialization phase.
[21:08:42] [Server thread/INFO] [Mantle]: Loading Manual XML from: /assets/mantle/manuals/test.xml
[21:08:42] [Server thread/INFO] [Forestry]: Skipping CraftGuide integration.
[21:08:43] [Server thread/INFO] [Mekanism]: Finished loading Cardboard Box blacklist (loaded 0 entries)
[21:08:44] [Server thread/INFO] [Mekanism]: Hooking complete.
[21:08:44] [Server thread/INFO] [EnderIO]: Loaded 2 grinding balls from SAG Mill config.
[21:08:44] [Server thread/INFO] [EnderIO]: Excluding 16 recipes from grinding balls bonus.
[21:08:44] [Server thread/INFO] [EnderIO]: Found 95 valid SAG Mill recipes in config.
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@4
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@3
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.for.resources@2
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@2
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.for.resources@1
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@4
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@68
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.OreBlock@0
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@2
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@5
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@66
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xtile.thermalfoundation.ore@6
[21:08:44] [Server thread/WARN] [EnderIO]: Not adding supplied recipe as a recipe already exists for the input: 1xitem.thermalfoundation.material@73
[21:08:44] [Server thread/INFO] [EnderIO]: Finished processing SAG Mill recipes. 91 recipes avaliable.
[21:08:44] [Server thread/INFO] [EnderIO]: Found 32 valid Alloy Smelter recipes in config.
[21:08:44] [Server thread/INFO] [EnderIO]: Finished processing Alloy Smelter recipes. 32 recipes avaliable.
[21:08:44] [Server thread/INFO] [EnderIO]: AlloyRecipeManager: Vannila smelting in AlloySmelting enabled=true
[21:08:44] [Server thread/INFO] [EnderIO]: Found 4 valid Slice'N'Splice recipes in config.
[21:08:44] [Server thread/INFO] [EnderIO]: Finished processing Slice'N'Splice recipes. 4 recipes avaliable.
[21:08:44] [Server thread/INFO] [EnderIO]: Found 4 valid Vat recipes in config.
[21:08:44] [Server thread/INFO] [EnderIO]: Finished processing Vat recipes. 4 recipes avaliable.
[21:08:44] [Server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherArrow when parsing enchanter recipes.
[21:08:44] [Server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.
[21:08:44] [Server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.enderzoo.witherWeapon when parsing enchanter recipes.
[21:08:44] [Server thread/WARN] [EnderIO]: Could not find enchantment with name enchantment.repair when parsing enchanter recipes.
[21:08:44] [Server thread/INFO] [EnderIO]: Loaded 27 recipes for Enchanter
[21:08:44] [Server thread/INFO] [EnderZoo]: Loaded 5 entries from core spawn config.
[21:08:44] [Server thread/INFO] [EnderZoo]: Loaded 0 entries from user spawn config.
[21:08:44] [Server thread/INFO] [EnderZoo]: Applying 5 spawn entries from config.
[21:08:45] [Server thread/INFO] [inpure|core]: Processing postinit event for submodule info.inpureprojects.core.Preloader.ModulePreloader
[21:08:45] [Server thread/INFO] [inpure|core]: Processing postinit event for submodule info.inpureprojects.core.Updater.UpdateModule
[21:08:45] [Server thread/INFO] [inpure|core]: Processing postinit event for submodule info.inpureprojects.core.Scripting.ScriptExtractor
[21:08:45] [inpure|coreUpdateCheck/INFO] [inpure|core]: Local: 1.7.10R1.0.0B9, Remote: 1.7.10R1.0.0B9
[21:08:45] [inpure|coreUpdateCheck/INFO] [inpure|core]: No update found for INpureCore
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded BCProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded ForestryProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded IC2 DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded CCProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded ThaumCraft DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded ThermalExpansionProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded BetterStorage DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded NEIProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded Factorization DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded EnderIOProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded IronChestProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded EnderStorageProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded OpenComputers DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded ToolWrenchProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded ExtraCellsProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded CoFHPowerProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded TD DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded Binnie DummyProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded CCLProxy
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded SpecialInventoryHandler: logisticspipes.proxy.specialinventoryhandler.AEInterfaceInventoryHandler
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded SpecialInventoryHandler: logisticspipes.proxy.specialinventoryhandler.JABBAInventoryHandler
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded SpecialInventoryHandler: logisticspipes.proxy.specialinventoryhandler.DSUInventoryHandler
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded SpecialTankHandler: logisticspipes.proxy.specialtankhandler.BuildCraftTankHandler
[21:08:50] [Server thread/INFO] [LogisticsPipes]: Loaded SpecialTankHandler: logisticspipes.proxy.specialtankhandler.AETankHandler
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Loaded AutoWorkbench RecipeProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Loaded AssemblyAdvancedWorkbench RecipeProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Loaded AssemblyTable RecipeProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Didn't load RollingMachine RecipeProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Didn't load ImmibisCraftingTableMk2 RecipeProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Loaded Generic ProgressProvider
[21:08:51] [Server thread/INFO] [LogisticsPipes]: Loaded Generic ProgressProvider